commit/galaxy-central: greg: Add more granular lists of writable repositories for the current user: repositories with missing tool test components, repositories with failing tool tests and repositories with no failing tool tests.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/f8d07c988129/ Changeset: f8d07c988129 User: greg Date: 2013-04-29 23:09:44 Summary: Add more granular lists of writable repositories for the current user: repositories with missing tool test components, repositories with failing tool tests and repositories with no failing tool tests. Affected #: 8 files diff -r 8264c77e4f07c0dee932add796f5ee7ce02245b3 -r f8d07c98812903dc98de2665874a2c31b65b84da lib/galaxy/webapps/tool_shed/buildapp.py --- a/lib/galaxy/webapps/tool_shed/buildapp.py +++ b/lib/galaxy/webapps/tool_shed/buildapp.py @@ -77,19 +77,19 @@ # Add the web API. # A good resource for RESTful services - http://routes.readthedocs.org/en/latest/restful.html webapp.add_api_controllers( 'galaxy.webapps.tool_shed.api', app ) webapp.mapper.resource( 'repository', - 'repositories', - controller='repositories', - collection={ 'get_repository_revision_install_info' : 'GET', - 'get_ordered_installable_revisions' : 'GET' }, - name_prefix='repository_', - path_prefix='/api', - parent_resources=dict( member_name='repository', collection_name='repositories' ) ) + 'repositories', + controller='repositories', + collection={ 'get_repository_revision_install_info' : 'GET', + 'get_ordered_installable_revisions' : 'GET' }, + name_prefix='repository_', + path_prefix='/api', + parent_resources=dict( member_name='repository', collection_name='repositories' ) ) webapp.mapper.resource( 'repository_revision', - 'repository_revisions', - controller='repository_revisions', - name_prefix='repository_revision_', - path_prefix='/api', - parent_resources=dict( member_name='repository_revision', collection_name='repository_revisions' ) ) + 'repository_revisions', + controller='repository_revisions', + name_prefix='repository_revision_', + path_prefix='/api', + parent_resources=dict( member_name='repository_revision', collection_name='repository_revisions' ) ) webapp.finalize_config() # Wrap the webapp in some useful middleware if kwargs.get( 'middleware', True ): This diff is so big that we needed to truncate the remainder. Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org