[Checkins] SVN: z3c.recipe.dev/trunk/ - fix rst rendering

Roger Ineichen roger at projekt01.ch
Sun Feb 22 02:22:09 EST 2009


Log message for revision 97003:
  - fix rst rendering
  - added dev marker

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

-=-
Modified: z3c.recipe.dev/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.dev/trunk/CHANGES.txt	2009-02-22 07:20:58 UTC (rev 97002)
+++ z3c.recipe.dev/trunk/CHANGES.txt	2009-02-22 07:22:09 UTC (rev 97003)
@@ -2,6 +2,12 @@
 CHANGES
 =======
 
+0.5.5dev (unreleased)
+---------------------
+
+- ...
+
+
 0.5.4 (2009-02-22)
 ------------------
 

Modified: z3c.recipe.dev/trunk/setup.py
===================================================================
--- z3c.recipe.dev/trunk/setup.py	2009-02-22 07:20:58 UTC (rev 97002)
+++ z3c.recipe.dev/trunk/setup.py	2009-02-22 07:22:09 UTC (rev 97003)
@@ -21,12 +21,11 @@
 
 
 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.dev',
-    version = '0.5.4',
+    version = '0.5.5dev',
     author = 'Roger Ineichen and the Zope Community',
     author_email = 'zope-dev at zope.org',
     description = 'Zope3 development server setup recipes',

Modified: z3c.recipe.dev/trunk/src/z3c/recipe/dev/README.txt
===================================================================
--- z3c.recipe.dev/trunk/src/z3c/recipe/dev/README.txt	2009-02-22 07:20:58 UTC (rev 97002)
+++ z3c.recipe.dev/trunk/src/z3c/recipe/dev/README.txt	2009-02-22 07:22:09 UTC (rev 97003)
@@ -18,7 +18,7 @@
 
 
 Options
-*******
+~~~~~~~
 
 The 'app' recipe accepts the following options:
 
@@ -46,7 +46,7 @@
 
 
 Test
-****
+~~~~
 
 Lets define some (bogus) eggs that we can use in our application:
 
@@ -217,7 +217,7 @@
 
 
 Options
-*******
+~~~~~~~
 
 The 'script' recipe accepts the following options:
 
@@ -238,7 +238,7 @@
 
 
 Test
-****
+~~~~
 
 Lets define a egg that we can use in our application:
 
@@ -314,15 +314,15 @@
 
 
 Test with parameters
-********************
+--------------------
 
 Of the same script defined above.
 
-Use the option `arguments = ` to pass arguments to the script.
-All the string will be copied to the script 1:1.
+Use the option ``arguments = `` to pass arguments to the script.
+All the string will be copied to the script ``1:1``.
 So what you enter here is what you get.
 
-We'll create a `buildout.cfg` file that defines our script:
+We'll create a ``buildout.cfg`` file that defines our script:
 
   >>> write('buildout.cfg',
   ... '''
@@ -375,7 +375,7 @@
 
 
 Creating Directories
-====================
+--------------------
 
   >>> write(sample_buildout, 'buildout.cfg',
   ... """
@@ -488,7 +488,7 @@
 
 
 Creating Files
-==============
+--------------
 
 The mkfile recipe creates a file with a given path, content and
 permissions.



More information about the Checkins mailing list