[Checkins] SVN: z3c.recipe.dev/tags/0.5.4/s fix rst rendering

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


Log message for revision 97002:
  fix rst rendering

Changed:
  U   z3c.recipe.dev/tags/0.5.4/setup.py
  U   z3c.recipe.dev/tags/0.5.4/src/z3c/recipe/dev/README.txt

-=-
Modified: z3c.recipe.dev/tags/0.5.4/setup.py
===================================================================
--- z3c.recipe.dev/tags/0.5.4/setup.py	2009-02-22 07:14:04 UTC (rev 97001)
+++ z3c.recipe.dev/tags/0.5.4/setup.py	2009-02-22 07:20:58 UTC (rev 97002)
@@ -21,8 +21,7 @@
 
 
 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',

Modified: z3c.recipe.dev/tags/0.5.4/src/z3c/recipe/dev/README.txt
===================================================================
--- z3c.recipe.dev/tags/0.5.4/src/z3c/recipe/dev/README.txt	2009-02-22 07:14:04 UTC (rev 97001)
+++ z3c.recipe.dev/tags/0.5.4/src/z3c/recipe/dev/README.txt	2009-02-22 07:20:58 UTC (rev 97002)
@@ -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