Author: justi9
Date: 2007-10-23 17:09:57 -0400 (Tue, 23 Oct 2007)
New Revision: 1151
Modified:
mgmt/cumin/python/cumin/exchange.py
mgmt/cumin/python/cumin/queue.py
mgmt/notes/Todo
Log:
Reorders the queue and exchange tabs. Makes stats first.
Modified: mgmt/cumin/python/cumin/exchange.py
===================================================================
--- mgmt/cumin/python/cumin/exchange.py 2007-10-23 20:55:55 UTC (rev 1150)
+++ mgmt/cumin/python/cumin/exchange.py 2007-10-23 21:09:57 UTC (rev 1151)
@@ -87,9 +87,9 @@
self.tabs = TabSet(app, "tabs")
self.add_child(self.tabs)
+ self.tabs.add_tab(ExchangeStatistics(app, "stats"))
self.tabs.add_tab(ProducerSet(app, "producers"))
self.tabs.add_tab(ExchangeBindingSet(app, "bindings"))
- self.tabs.add_tab(ExchangeStatistics(app, "stats"))
def render_title(self, session, exchange):
return "Exchange '%s'" % exchange.name
Modified: mgmt/cumin/python/cumin/queue.py
===================================================================
--- mgmt/cumin/python/cumin/queue.py 2007-10-23 20:55:55 UTC (rev 1150)
+++ mgmt/cumin/python/cumin/queue.py 2007-10-23 21:09:57 UTC (rev 1151)
@@ -114,9 +114,9 @@
self.tabs = TabSet(app, "tabs")
self.add_child(self.tabs)
+ self.tabs.add_tab(QueueStatistics(app, "stats"))
self.tabs.add_tab(ConsumerSet(app, "consumers"))
self.tabs.add_tab(QueueBindingSet(app, "bindings"))
- self.tabs.add_tab(QueueStatistics(app, "stats"))
def render_title(self, session, queue):
return "Queue '%s'" % queue.name
Modified: mgmt/notes/Todo
===================================================================
--- mgmt/notes/Todo 2007-10-23 20:55:55 UTC (rev 1150)
+++ mgmt/notes/Todo 2007-10-23 21:09:57 UTC (rev 1151)
@@ -117,10 +117,6 @@
* Add producers to the default exchange
- * queue: make stats first
-
* queue: link consumers stat to consumers view
- * exch: make stats first
-
* exch: link bindings, proucers stats to respective views
Show replies by date