[Checkins] SVN: z3c.recipe.paster/trunk/ - reflect changes in zope packages

Roger Ineichen roger at projekt01.ch
Sun Feb 22 01:51:51 EST 2009


Log message for revision 96994:
  - reflect changes in zope packages
  - prepare for initial release

Changed:
  U   z3c.recipe.paster/trunk/CHANGES.txt
  U   z3c.recipe.paster/trunk/README.txt
  U   z3c.recipe.paster/trunk/setup.py
  U   z3c.recipe.paster/trunk/src/z3c/recipe/paster/README.txt
  U   z3c.recipe.paster/trunk/src/z3c/recipe/paster/paster.txt
  U   z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py

-=-
Modified: z3c.recipe.paster/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.paster/trunk/CHANGES.txt	2009-02-22 06:03:49 UTC (rev 96993)
+++ z3c.recipe.paster/trunk/CHANGES.txt	2009-02-22 06:51:51 UTC (rev 96994)
@@ -2,7 +2,7 @@
 CHANGES
 =======
 
-Version 0.5.0dev (unreleased)
------------------------------
+Version 0.5.0 (2009-02-22)
+--------------------------
 
 - Initial Release

Modified: z3c.recipe.paster/trunk/README.txt
===================================================================
--- z3c.recipe.paster/trunk/README.txt	2009-02-22 06:03:49 UTC (rev 96993)
+++ z3c.recipe.paster/trunk/README.txt	2009-02-22 06:51:51 UTC (rev 96994)
@@ -1,6 +1,6 @@
 The ``z3c.recipe.paster:serve`` generates a paste deploy serve scripts and 
 configuration files for starting a paste deploy based Zope 3 setup. The 
-paste deploy *.ini file content can get defined in the buildout.cfg file.
+paste deploy ``*.ini`` file content can get defined in the buildout.cfg file.
 
 Note, you have to define an entry_point in your projects setup.py file for
 using a application_factory via the section name.

Modified: z3c.recipe.paster/trunk/setup.py
===================================================================
--- z3c.recipe.paster/trunk/setup.py	2009-02-22 06:03:49 UTC (rev 96993)
+++ z3c.recipe.paster/trunk/setup.py	2009-02-22 06:51:51 UTC (rev 96994)
@@ -19,20 +19,26 @@
 import xml.sax.saxutils
 from setuptools import setup, find_packages
 
-
 def read(*rnames):
-    text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-    return xml.sax.saxutils.escape(text)
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
+
 setup(
     name = 'z3c.recipe.paster',
-    version = '0.5.0dev',
+    version = '0.5.0',
     author = 'Roger Ineichen and the Zope Community',
     author_email = 'zope-dev at zope.org',
     description = 'Zope3 paste deploy setup recipe',
     long_description=(
         read('README.txt')
         + '\n\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n\n' +
+        read('src', 'z3c', 'recipe', 'paster', 'README.txt')
+        + '\n\n' +
+        read('src', 'z3c', 'recipe', 'paster', 'paster.txt')
+        + '\n\n' +
         read('CHANGES.txt')
         ),
     license = 'ZPL 2.1',

Modified: z3c.recipe.paster/trunk/src/z3c/recipe/paster/README.txt
===================================================================
--- z3c.recipe.paster/trunk/src/z3c/recipe/paster/README.txt	2009-02-22 06:03:49 UTC (rev 96993)
+++ z3c.recipe.paster/trunk/src/z3c/recipe/paster/README.txt	2009-02-22 06:51:51 UTC (rev 96994)
@@ -1,18 +1,15 @@
-======
-README
-======
+=======================
+z3c.recipe.paster:serve
+=======================
 
-z3c.recipe.paster
------------------
-
 This Zope 3 recipes offers a Paste Deploy setup for Zope3 projects. It requires
-to define a PAste DEploy *.ini file in the buoldout.cfg. If you need a simple 
+to define a Paste Deploy *.ini file in the buoldout.cfg. If you need a simple 
 PasteScript setup you can use the z3c.recipe.paster:paster recipe which allows
-to run already existing *.ini files.
+to run already existing ``*.ini`` files.
 
 
 Options
-*******
+-------
 
 The 'serve' recipe accepts the following options:
 
@@ -21,7 +18,7 @@
   be included in the Python path of the generated scripts.
 
 ini
-  The paste deploy *.ini file content.
+  The paste deploy ``*.ini`` file content.
 
 zope.conf
   The zope.conf file defining the DB used in the WSGI app and the error log
@@ -32,7 +29,7 @@
 
 
 Test
-****
+----
 
 Lets define a (bogus) eggs that we can use in our application:
 
@@ -156,10 +153,10 @@
 define such a app:main entry point using the default ``application_factory``
 offered from the ``z3c.recipe.paster.wsgi`` package. Of corse you can define
 your own application factory if you need to pass some additional configuration
-for your app to the factroy defined in your custom *.ini file.
+for your app to the factroy defined in your custom ``*.ini`` file.
 
 The default entry_point offered from the z3c.recipe.paster could be included in
-your custom setup.py file like:
+your custom setup.py file like::
 
   setup(
       name = 'something',

Modified: z3c.recipe.paster/trunk/src/z3c/recipe/paster/paster.txt
===================================================================
--- z3c.recipe.paster/trunk/src/z3c/recipe/paster/paster.txt	2009-02-22 06:03:49 UTC (rev 96993)
+++ z3c.recipe.paster/trunk/src/z3c/recipe/paster/paster.txt	2009-02-22 06:51:51 UTC (rev 96994)
@@ -1,16 +1,9 @@
-======
-README
-======
+========================
+z3c.recipe.paster:paster
+========================
 
-z3c.recipe.paster
------------------
-
 This Zope 3 recipes offers a Paste Deploy script setup for Zope3 projects.
 
-
-z3c.recipe.paster:paster
-------------------------
-
 The paster part allows us to setup a plain paster executable which could be 
 used for start up your zope server using the paste deploy ".ini file like:
 ``bin/paster serve app.ini``. This recipe inherits the zc.recipe.egg class
@@ -22,7 +15,7 @@
 
 
 Options
-*******
+-------
 
 The 'serve' recipe accepts the following options:
 
@@ -31,7 +24,7 @@
   be included in the Python path of the generated scripts.
 
 ini
-  The paste deploy *.ini file content.
+  The paste deploy ``*.ini`` file content.
 
 zope.conf
   The zope.conf file defining the DB used in the WSGI app and the error log
@@ -42,7 +35,7 @@
 
 
 Test
-****
+----
 
 Lets define a (bogus) eggs that we can use in our application:
 

Modified: z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py
===================================================================
--- z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py	2009-02-22 06:03:49 UTC (rev 96993)
+++ z3c.recipe.paster/trunk/src/z3c/recipe/paster/tests.py	2009-02-22 06:51:51 UTC (rev 96994)
@@ -31,9 +31,11 @@
     zc.buildout.testing.install('PasteDeploy', test)
     zc.buildout.testing.install('PasteScript', test)
     zc.buildout.testing.install('RestrictedPython', test)
+    zc.buildout.testing.install('transaction', test)
     zc.buildout.testing.install('ZConfig', test)
     zc.buildout.testing.install('ZODB3', test)
     zc.buildout.testing.install('pytz', test)
+    zc.buildout.testing.install('zc.lockfile', test)
     zc.buildout.testing.install('zc.recipe.egg', test)
     zc.buildout.testing.install('zc.recipe.filestorage', test)
     zc.buildout.testing.install('zdaemon', test)
@@ -43,39 +45,26 @@
     zc.buildout.testing.install('zope.app.appsetup', test)
     zc.buildout.testing.install('zope.app.authentication', test)
     zc.buildout.testing.install('zope.app.basicskin', test)
-    zc.buildout.testing.install('zope.app.broken', test)
     zc.buildout.testing.install('zope.app.component', test)
     zc.buildout.testing.install('zope.app.container', test)
-    zc.buildout.testing.install('zope.app.content', test)
-    zc.buildout.testing.install('zope.app.debug', test)
     zc.buildout.testing.install('zope.app.dependable', test)
-    zc.buildout.testing.install('zope.app.error', test)
     zc.buildout.testing.install('zope.app.exception', test)
-    zc.buildout.testing.install('zope.app.folder', test)
     zc.buildout.testing.install('zope.app.form', test)
-    zc.buildout.testing.install('zope.app.generations', test)
     zc.buildout.testing.install('zope.app.http', test)
-    zc.buildout.testing.install('zope.app.i18n', test)
     zc.buildout.testing.install('zope.app.interface', test)
-    zc.buildout.testing.install('zope.app.locales', test)
     zc.buildout.testing.install('zope.app.pagetemplate', test)
-    zc.buildout.testing.install('zope.app.principalannotation', test)
     zc.buildout.testing.install('zope.app.publication', test)
     zc.buildout.testing.install('zope.app.publisher', test)
-    zc.buildout.testing.install('zope.app.renderer', test)
-    zc.buildout.testing.install('zope.app.rotterdam', test)
-    zc.buildout.testing.install('zope.app.schema', test)
     zc.buildout.testing.install('zope.app.security', test)
-    zc.buildout.testing.install('zope.app.session', test)
-    zc.buildout.testing.install('zope.app.testing', test)
     zc.buildout.testing.install('zope.app.wsgi', test)
-    zc.buildout.testing.install('zope.app.zapi', test)
-    zc.buildout.testing.install('zope.app.zcmlfiles', test)
-    zc.buildout.testing.install('zope.app.zopeappgenerations', test)
+    zc.buildout.testing.install('zope.browser', test)
+    zc.buildout.testing.install('zope.broken', test)
     zc.buildout.testing.install('zope.cachedescriptors', test)
     zc.buildout.testing.install('zope.component', test)
     zc.buildout.testing.install('zope.configuration', test)
+    zc.buildout.testing.install('zope.container', test)
     zc.buildout.testing.install('zope.contenttype', test)
+    zc.buildout.testing.install('zope.copy', test)
     zc.buildout.testing.install('zope.copypastemove', test)
     zc.buildout.testing.install('zope.datetime', test)
     zc.buildout.testing.install('zope.deferredimport', test)
@@ -94,21 +83,18 @@
     zc.buildout.testing.install('zope.lifecycleevent', test)
     zc.buildout.testing.install('zope.location', test)
     zc.buildout.testing.install('zope.minmax', test)
-    zc.buildout.testing.install('zope.modulealias', test)
     zc.buildout.testing.install('zope.pagetemplate', test)
     zc.buildout.testing.install('zope.proxy', test)
     zc.buildout.testing.install('zope.publisher', test)
     zc.buildout.testing.install('zope.schema', test)
     zc.buildout.testing.install('zope.security', test)
     zc.buildout.testing.install('zope.session', test)
+    zc.buildout.testing.install('zope.site', test)
     zc.buildout.testing.install('zope.size', test)
-    zc.buildout.testing.install('zope.structuredtext', test)
     zc.buildout.testing.install('zope.tal', test)
     zc.buildout.testing.install('zope.tales', test)
     zc.buildout.testing.install('zope.testing', test)
-    zc.buildout.testing.install('zope.thread', test)
     zc.buildout.testing.install('zope.traversing', test)
-    # The BIG dependency mess in zope is really a pain
 
 
 checker = renormalizing.RENormalizing([



More information about the Checkins mailing list