commit/galaxy-central: greg: Column cleanup in the repositories grid in the tool shed.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/4d4d8dd42491/ Changeset: 4d4d8dd42491 User: greg Date: 2013-05-03 17:26:12 Summary: Column cleanup in the repositories grid in the tool shed. Affected #: 2 files diff -r 4a1a2b6b4e8a14db4a7689ef09b8a2db965ddc8f -r 4d4d8dd42491a81869642f1cfcb2f552e4af5a40 lib/galaxy/webapps/tool_shed/controllers/repository.py --- a/lib/galaxy/webapps/tool_shed/controllers/repository.py +++ b/lib/galaxy/webapps/tool_shed/controllers/repository.py @@ -95,7 +95,9 @@ kwd[ 'id' ] = trans.security.encode_id( repository.id ) except: pass - return self.browse_repositories( trans, **kwd ) + return trans.response.send_redirect( web.url_for( controller='repository', + action='browse_repositories', + **kwd ) ) if 'operation' in kwd: operation = kwd[ 'operation' ].lower() if operation in [ "repositories_by_category", "repositories_by_user" ]: diff -r 4a1a2b6b4e8a14db4a7689ef09b8a2db965ddc8f -r 4d4d8dd42491a81869642f1cfcb2f552e4af5a40 lib/tool_shed/grids/repository_grids.py --- a/lib/tool_shed/grids/repository_grids.py +++ b/lib/tool_shed/grids/repository_grids.py @@ -211,11 +211,7 @@ key="description", attach_popup=False ), MetadataRevisionColumn( "Metadata Revisions" ), - TipRevisionColumn( "Tip Revision" ), - CategoryColumn( "Category", - model_class=model.Category, - key="Category.name", - attach_popup=False ), + ToolsFunctionallyCorrectColumn( "Tools Verified" ), UserColumn( "Owner", model_class=model.User, link=( lambda item: dict( operation="repositories_by_user", id=item.id ) ), 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