[Checkins] SVN: z3c.pagelet/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Jan 23 17:29:58 EST 2008


Log message for revision 83141:
  Get ready for release.
  

Changed:
  U   z3c.pagelet/trunk/CHANGES.txt
  U   z3c.pagelet/trunk/setup.py

-=-
Modified: z3c.pagelet/trunk/CHANGES.txt
===================================================================
--- z3c.pagelet/trunk/CHANGES.txt	2008-01-23 22:28:20 UTC (rev 83140)
+++ z3c.pagelet/trunk/CHANGES.txt	2008-01-23 22:29:57 UTC (rev 83141)
@@ -2,23 +2,17 @@
 CHANGES
 =======
 
-1.0.3dev (unreleased)
----------------------
-
-- ...
-
-
-1.0.2 (2007-01-21)
+1.0.2 (2008-01-21)
 ------------------
 
 * Added a `form.zcml` which can be included to have a template for
-  PageletAddForm, PageletEditForm and PageletDisplayForm.
+  ``PageletAddForm``, ``PageletEditForm`` and ``PageletDisplayForm``.
 
 
 1.0.1 (2007-10-08)
 ------------------
 
-* Added ``update()`` and ``render()`` method to ``IPagelet`` which was 
+* Added ``update()`` and ``render()`` method to ``IPagelet`` which was
   not specified but used.
 
 * Fixed a infinite recursion bug when a layout template was registered for "*"

Modified: z3c.pagelet/trunk/setup.py
===================================================================
--- z3c.pagelet/trunk/setup.py	2008-01-23 22:28:20 UTC (rev 83140)
+++ z3c.pagelet/trunk/setup.py	2008-01-23 22:29:57 UTC (rev 83141)
@@ -16,16 +16,18 @@
 $Id$
 """
 import os
+import xml.sax.saxutils
 from setuptools import setup, find_packages
 
 def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+    text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+    return xml.sax.saxutils.escape(text)
 
 setup (
     name='z3c.pagelet',
-    version='1.0.3dev',
+    version='1.0.2',
     author = "Roger Ineichen and the Zope Community",
-    author_email = "zope3-dev at zope.org",
+    author_email = "zope-dev at zope.org",
     description = "Pagelets are way to specify a template without the O-wrap.",
     long_description=(
         read('README.txt')



More information about the Checkins mailing list