[Checkins] SVN: zope.publisher/trunk/ added CHANGES.txt to long_description to have it on pypi in the next release

Christian Zagrodnick cz at gocept.com
Sun Jun 22 06:03:17 EDT 2008


Log message for revision 87648:
  added CHANGES.txt to long_description to have it on pypi in the next release

Changed:
  U   zope.publisher/trunk/CHANGES.txt
  U   zope.publisher/trunk/setup.py

-=-
Modified: zope.publisher/trunk/CHANGES.txt
===================================================================
--- zope.publisher/trunk/CHANGES.txt	2008-06-22 00:58:32 UTC (rev 87647)
+++ zope.publisher/trunk/CHANGES.txt	2008-06-22 10:03:14 UTC (rev 87648)
@@ -1,4 +1,3 @@
-=======
 CHANGES
 =======
 
@@ -91,7 +90,7 @@
 * Fix caching issue. The input stream never got cached in a temp file 
   because of a wrong content-length header lookup. Added CONTENT_LENGTH 
   header check in addition to the previous used HTTP_CONTENT_LENGTH. The 
-  HTTP_ prefix is sometimes added by some CGI proxies, but CONTENT_LENGTH
+  ``HTTP_`` prefix is sometimes added by some CGI proxies, but CONTENT_LENGTH
   is the right header info for the size.
 
 * Fix https://bugs.launchpad.net/zope3/+bug/98413:

Modified: zope.publisher/trunk/setup.py
===================================================================
--- zope.publisher/trunk/setup.py	2008-06-22 00:58:32 UTC (rev 87647)
+++ zope.publisher/trunk/setup.py	2008-06-22 10:03:14 UTC (rev 87648)
@@ -30,7 +30,9 @@
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
       description="The Zope publisher publishes Python objects on the web.",
-      long_description=open('README.txt').read(),
+      long_description=(open('README.txt').read()
+                        + '\n\n'
+                        + open('CHANGES.txt').read()),
 
       entry_points = entry_points,
 



More information about the Checkins mailing list