You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by tr...@apache.org on 2008/06/05 01:19:59 UTC

svn commit: r663413 - /incubator/qpid/trunk/qpid/python/qpid/managementdata.py

Author: tross
Date: Wed Jun  4 16:19:59 2008
New Revision: 663413

URL: http://svn.apache.org/viewvc?rev=663413&view=rev
Log:
Management cleanup - renamed config/inst elements to properties and statistics

Modified:
    incubator/qpid/trunk/qpid/python/qpid/managementdata.py

Modified: incubator/qpid/trunk/qpid/python/qpid/managementdata.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/qpid/managementdata.py?rev=663413&r1=663412&r2=663413&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/qpid/managementdata.py (original)
+++ incubator/qpid/trunk/qpid/python/qpid/managementdata.py Wed Jun  4 16:19:59 2008
@@ -467,7 +467,7 @@
       for eIdx in range (len (config)):
         key = config[eIdx][0]
         if key != "id":
-          row   = ("config", key)
+          row   = ("property", key)
           for id in ids:
             if timestamp == None or \
                timestamp < self.tables[classKey][id][0][0]:
@@ -480,7 +480,7 @@
       for eIdx in range (len (inst)):
         key = inst[eIdx][0]
         if key != "id":
-          row = ("inst", key)
+          row = ("statistic", key)
           for id in ids:
             (key, value) = self.tables[classKey][id][2][eIdx]
             row = row + (self.valueDisplay (classKey, key, value),)
@@ -511,7 +511,7 @@
         row = (className, len (tuple[0]), len (tuple[1]), len (tuple[2]), len (tuple[3]))
         rows.append (row)
       self.disp.table ("Classes in Schema:",
-                       ("Class", "ConfigElements", "InstElements", "Methods", "Events"),
+                       ("Class", "Properties", "Statistics", "Methods", "Events"),
                        rows)
     finally:
       self.lock.release ()