[Checkins] SVN: bobo/trunk/bobodoctestumentation/src/bobodoctestumentation/index.txt correct wrong decorator, changed hellowapp and configure to helloapp and config as used throughout the docs and tests

Michael Haubenwallner michael at d2m.at
Wed May 27 05:07:46 EDT 2009


Log message for revision 100439:
  correct wrong decorator, changed hellowapp and configure to helloapp and config as used throughout the docs and tests

Changed:
  U   bobo/trunk/bobodoctestumentation/src/bobodoctestumentation/index.txt

-=-
Modified: bobo/trunk/bobodoctestumentation/src/bobodoctestumentation/index.txt
===================================================================
--- bobo/trunk/bobodoctestumentation/src/bobodoctestumentation/index.txt	2009-05-26 22:35:39 UTC (rev 100438)
+++ bobo/trunk/bobodoctestumentation/src/bobodoctestumentation/index.txt	2009-05-27 09:07:45 UTC (rev 100439)
@@ -636,7 +636,7 @@
             self.request = request
             self.id = employee_id
 
-        @bobo.bobo.resource('', 'PUT')
+        @bobo.resource('', 'PUT')
         def put(self, request):
             "Save employee data"
 
@@ -648,11 +648,11 @@
         def get(self, request):
             "Get employee data"
 
-        @bobo.bobo.resource('/resume', 'PUT')
+        @bobo.resource('/resume', 'PUT')
         def save_resume(self, request):
             "Save employee data"
 
-        @bobo.bobo.query('/resume')
+        @bobo.query('/resume')
         def resume(self):
             "Save employee data"
 
@@ -680,8 +680,8 @@
 
     [app:main]
     use = egg:bobo
-    bobo_resources = hellowapp
-    bobo_configure = helloapp:configure
+    bobo_resources = helloapp
+    bobo_configure = helloapp:config
     employees_database = /home/databases/employees.db
 
     [server:main]



More information about the Checkins mailing list