[Checkins] SVN: Sandbox/ulif/grokcore.startup/src/grokcore/startup/README.txt Rollback r95977: the old path was already correct.

Uli Fouquet uli at gnufix.de
Mon Feb 2 11:42:50 EST 2009


Log message for revision 95988:
  Rollback r95977: the old path was already correct.

Changed:
  U   Sandbox/ulif/grokcore.startup/src/grokcore/startup/README.txt

-=-
Modified: Sandbox/ulif/grokcore.startup/src/grokcore/startup/README.txt
===================================================================
--- Sandbox/ulif/grokcore.startup/src/grokcore/startup/README.txt	2009-02-02 16:29:33 UTC (rev 95987)
+++ Sandbox/ulif/grokcore.startup/src/grokcore/startup/README.txt	2009-02-02 16:42:49 UTC (rev 95988)
@@ -72,12 +72,12 @@
         install_requires=['setuptools',],
         entry_points = """
         [paste.app_factory]
-        main = grokcore.startup.startup:application_factory
+        main = grokcore.startup:application_factory
         """,
         )
 
 Here the `paste.app_factory` entry point pointing to
-`grokcore.startup.startup:application_factory` is important.
+`grokcore.startup:application_factory` is important.
 
 Furthermore we need at least a minimal ``buildout.cfg`` which enables
 `zc.buildout`_ to create the control scripts for our instance::
@@ -232,12 +232,12 @@
 1) In your project's ``setup.py`` modify the lines reading::
 
       [paste.app_factory]
-      main = <myapplication>.startup.startup:application_factory
+      main = <myapplication>.startup:application_factory
 
   to::
 
       [paste.app_factory]
-      main = grokcore.startup.startup:application_factory
+      main = grokcore.startup:application_factory
 
   and rerun buildout::
 



More information about the Checkins mailing list