[Checkins] SVN: zope.publisher/branches/3.3/ Get us a branch for 3.3

Hanno Schlichting plone at hannosch.info
Mon Feb 9 07:34:18 EST 2009


Log message for revision 96306:
  Get us a branch for 3.3
  

Changed:
  A   zope.publisher/branches/3.3/
  A   zope.publisher/branches/3.3/CHANGES.txt
  U   zope.publisher/branches/3.3/README.txt
  U   zope.publisher/branches/3.3/setup.py

-=-
Copied: zope.publisher/branches/3.3/CHANGES.txt (from rev 96305, zope.publisher/branches/3.4/CHANGES.txt)
===================================================================
--- zope.publisher/branches/3.3/CHANGES.txt	                        (rev 0)
+++ zope.publisher/branches/3.3/CHANGES.txt	2009-02-09 12:34:18 UTC (rev 96306)
@@ -0,0 +1,12 @@
+Changes
+=======
+
+3.3.x (unreleased)
+------------------
+
+* ...
+
+3.3.2 (2007-07-03)
+------------------
+
+Release as a separate project, corresponds to zope.publisher from Zope 3.3.2

Modified: zope.publisher/branches/3.3/README.txt
===================================================================
--- zope.publisher/tags/3.3.2/README.txt	2009-02-09 12:24:33 UTC (rev 96305)
+++ zope.publisher/branches/3.3/README.txt	2009-02-09 12:34:18 UTC (rev 96306)
@@ -1,9 +1,9 @@
-zope.publisher Package Readme
-=============================
-
 Overview
 --------
 
-Python Object Publisher -- Publish Python objects on web servers.
-
-Provide an apply-like facility that works with any mapping object.
+zope.publisher allows you to publish Python objects on the web.  It
+has support for plain HTTP/WebDAV clients, web browsers as well as
+XML-RPC and FTP clients.  Input and output streams are represented by
+request and response objects which allow for easy client interaction
+from Python.  The behaviour of the publisher is geared towards WSGI
+compatibility.

Modified: zope.publisher/branches/3.3/setup.py
===================================================================
--- zope.publisher/tags/3.3.2/setup.py	2009-02-09 12:24:33 UTC (rev 96305)
+++ zope.publisher/branches/3.3/setup.py	2009-02-09 12:34:18 UTC (rev 96306)
@@ -20,16 +20,19 @@
 
 from setuptools import setup, find_packages
 
+
+long_description = (open('README.txt').read() +
+                    '\n\n' +
+                    open('CHANGES.txt').read())
+
 setup(name='zope.publisher',
-      version = '3.3.2',
+      version = '3.3dev',
       url='http://svn.zope.org/zope.publisher',
       license='ZPL 2.1',
       description='Zope publisher',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description="Publish Python objects on web servers."
-                       "Provide an apply-like facility that"
-                       "works with any mapping object.",
+      long_description=long_description,
 
       packages=find_packages('src'),
 	  package_dir = {'': 'src'},



More information about the Checkins mailing list