commit/galaxy-central: greg: Add the ability to search for repositories in the new review grids.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/2914e5d87851/ changeset: 2914e5d87851 user: greg date: 2012-10-18 22:14:35 summary: Add the ability to search for repositories in the new review grids. affected #: 1 file diff -r 0698fc666bd04a28b88f1472ac8eeb8dfb3a6423 -r 2914e5d87851afcc9cadb7de02200a1eb75cc7e5 lib/galaxy/webapps/community/controllers/repository_review.py --- a/lib/galaxy/webapps/community/controllers/repository_review.py +++ b/lib/galaxy/webapps/community/controllers/repository_review.py @@ -76,6 +76,11 @@ ReviewersColumn( "Reviewers", attach_popup=False ) ] + columns.append( grids.MulticolFilterColumn( "Search repository name, description", + cols_to_filter=[ columns[0], columns[1] ], + key="free-text-search", + visible=False, + filterable="standard" ) ) operations = [ grids.GridOperation( "Inspect repository revisions", allow_multiple=False, @@ -103,6 +108,11 @@ RepositoriesWithReviewsGrid.UserColumn( "Owner", attach_popup=False ) ] + columns.append( grids.MulticolFilterColumn( "Search repository name, description", + cols_to_filter=[ columns[0], columns[1] ], + key="free-text-search", + visible=False, + filterable="standard" ) ) operations = [ grids.GridOperation( "Inspect repository revisions", allow_multiple=False, condition=( lambda item: not item.deleted ), 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)
-
Bitbucket