commit/galaxy-central: natefoo: Bugfix for new method in the quota agent and refactored quota UI.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/b5742d5409b7/ changeset: b5742d5409b7 user: natefoo date: 2011-09-26 22:40:16 summary: Bugfix for new method in the quota agent and refactored quota UI. affected #: 2 files (-1 bytes) --- a/lib/galaxy/quota/__init__.py Mon Sep 26 15:59:52 2011 -0400 +++ b/lib/galaxy/quota/__init__.py Mon Sep 26 16:40:16 2011 -0400 @@ -166,6 +166,7 @@ rval.append( dqa.quota ) for uqa in user.quotas: rval.append( uqa.quota ) - for gqa in [ uga.group for uga in user.groups ]: - rval.append( gqa.quota ) + for group in [ uga.group for uga in user.groups ]: + for gqa in group.quotas: + rval.append( gqa.quota ) return rval --- a/lib/galaxy/web/controllers/admin.py Mon Sep 26 15:59:52 2011 -0400 +++ b/lib/galaxy/web/controllers/admin.py Mon Sep 26 16:40:16 2011 -0400 @@ -384,7 +384,7 @@ preserve_state = False use_paging = True -class AdminGalaxy( BaseUIController, Admin, AdminActions, QuotaParamParser ): +class AdminGalaxy( BaseUIController, Admin, AdminActions, UsesQuota, QuotaParamParser ): user_list_grid = UserListGrid() role_list_grid = RoleListGrid() 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