[rhmessaging-commits] rhmessaging commits: r1748 - in mgmt: notes and 1 other directory.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Mon Mar 3 08:17:48 EST 2008


Author: justi9
Date: 2008-03-03 08:17:48 -0500 (Mon, 03 Mar 2008)
New Revision: 1748

Modified:
   mgmt/cumin/python/cumin/__init__.py
   mgmt/cumin/python/cumin/model.py
   mgmt/notes/justin-todo.txt
Log:
Rename data_url param to data_uri

Modified: mgmt/cumin/python/cumin/__init__.py
===================================================================
--- mgmt/cumin/python/cumin/__init__.py	2008-03-03 13:08:47 UTC (rev 1747)
+++ mgmt/cumin/python/cumin/__init__.py	2008-03-03 13:17:48 UTC (rev 1748)
@@ -20,13 +20,13 @@
 from action import ActionPage
 
 class Cumin(Application):
-    def __init__(self, home, data_url, spec_path):
+    def __init__(self, home, data_uri, spec_path):
         super(Cumin, self).__init__()
 
         self.home = home
         self.add_resource_dir(os.path.join(self.home, "resources"))
 
-        self.model = CuminModel(self, data_url, spec_path)
+        self.model = CuminModel(self, data_uri, spec_path)
         self.broker_connect_thread = BrokerConnectThread(self.model)
 
         self.main_page = CuminPage(self, "index.html")

Modified: mgmt/cumin/python/cumin/model.py
===================================================================
--- mgmt/cumin/python/cumin/model.py	2008-03-03 13:08:47 UTC (rev 1747)
+++ mgmt/cumin/python/cumin/model.py	2008-03-03 13:17:48 UTC (rev 1748)
@@ -11,9 +11,9 @@
 from parameters import *
 
 class CuminModel(object):
-    def __init__(self, app, data_url, spec_path):
+    def __init__(self, app, data_uri, spec_path):
         self.app = app
-        self.data = MintModel(data_url, spec_path)
+        self.data = MintModel(data_uri, spec_path)
 
         self.classes = list()
         self.invocations = set()

Modified: mgmt/notes/justin-todo.txt
===================================================================
--- mgmt/notes/justin-todo.txt	2008-03-03 13:08:47 UTC (rev 1747)
+++ mgmt/notes/justin-todo.txt	2008-03-03 13:17:48 UTC (rev 1748)
@@ -10,8 +10,6 @@
 
 Deferred
 
- * Rename data_url to data_uri
-
  * Blow up if we try to call set_redirect_url twice in a session
 
  * Need to add cherrypy bsd license to binary dist?




More information about the rhmessaging-commits mailing list