Author: eallen
Date: 2009-10-23 13:49:21 -0400 (Fri, 23 Oct 2009)
New Revision: 3684
Modified:
mgmt/trunk/cumin/python/cumin/grid/negotiator.py
mgmt/trunk/cumin/python/cumin/grid/negotiator.strings
Log:
Fix number of arguments mismatch for columns so Group quotas will show up.
Fix class name in style sheet.
Modified: mgmt/trunk/cumin/python/cumin/grid/negotiator.py
===================================================================
--- mgmt/trunk/cumin/python/cumin/grid/negotiator.py 2009-10-23 14:55:28 UTC (rev 3683)
+++ mgmt/trunk/cumin/python/cumin/grid/negotiator.py 2009-10-23 17:49:21 UTC (rev 3684)
@@ -223,7 +223,7 @@
return items
class ExpandColumn(ItemTableColumn):
- def render_title(self, session):
+ def render_title(self, session, *args):
return ""
def get_class_list(self, session):
@@ -236,7 +236,7 @@
return ""
class GroupColumn(ItemTableColumn):
- def render_title(self, session):
+ def render_title(self, session, *args):
return "Group"
def render_content(self, session, group):
Modified: mgmt/trunk/cumin/python/cumin/grid/negotiator.strings
===================================================================
--- mgmt/trunk/cumin/python/cumin/grid/negotiator.strings 2009-10-23 14:55:28 UTC (rev
3683)
+++ mgmt/trunk/cumin/python/cumin/grid/negotiator.strings 2009-10-23 17:49:21 UTC (rev
3684)
@@ -16,7 +16,7 @@
left outer join negotiator_stats as c on c.id = n.stats_curr_id
{sql_where}
-[NegotiatorOverviewTab.css]
+[NegotiatorOverview.css]
div.GroupTable ul.actions {
display: inline;
}