[rhmessaging-commits] rhmessaging commits: r1108 - mgmt/cumin/python/cumin.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Wed Oct 17 14:48:17 EDT 2007


Author: justi9
Date: 2007-10-17 14:48:17 -0400 (Wed, 17 Oct 2007)
New Revision: 1108

Modified:
   mgmt/cumin/python/cumin/cluster.py
Log:
Removes the log tab from the cluster view.



Modified: mgmt/cumin/python/cumin/cluster.py
===================================================================
--- mgmt/cumin/python/cumin/cluster.py	2007-10-17 18:37:14 UTC (rev 1107)
+++ mgmt/cumin/python/cumin/cluster.py	2007-10-17 18:48:17 UTC (rev 1108)
@@ -92,9 +92,7 @@
 
         self.tabs.add_tab(self.ServerTab(app, "servers"))
         self.tabs.add_tab(self.VirtualHostTab(app, "vhosts"))
-        #self.tabs.add_tab(self.ConfigTab(app, "config"))
         self.tabs.add_tab(self.StatsTab(app, "stats"))
-        self.tabs.add_tab(self.LogTab(app, "log"))
 
     def render_title(self, session, cluster):
         return "Cluster '%s'" % cluster.name
@@ -112,18 +110,10 @@
         def get_items(self, session, cluster):
             return sorted_by(cluster.virtual_host_items())
 
-    class ConfigTab(Widget):
-        def render_title(self, session, cluster):
-            return "Configuration"
-
     class StatsTab(Widget):
         def render_title(self, session, cluster):
             return "Statistics"
 
-    class LogTab(Widget):
-        def render_title(self, session, cluster):
-            return "Log Messages"
-
 class ClusterBrowser(ItemSet):
     def __init__(self, app, name):
         super(ClusterBrowser, self).__init__(app, name)




More information about the rhmessaging-commits mailing list