[Checkins] SVN: five.localsitemanager/trunk/ Reformat documentation

Wichert Akkerman wichert at wiggy.net
Wed Jul 23 10:30:57 EDT 2008


Log message for revision 88764:
  Reformat documentation

Changed:
  U   five.localsitemanager/trunk/CHANGES.txt
  U   five.localsitemanager/trunk/INSTALL.txt
  U   five.localsitemanager/trunk/README.txt
  U   five.localsitemanager/trunk/setup.py

-=-
Modified: five.localsitemanager/trunk/CHANGES.txt
===================================================================
--- five.localsitemanager/trunk/CHANGES.txt	2008-07-23 14:22:40 UTC (rev 88763)
+++ five.localsitemanager/trunk/CHANGES.txt	2008-07-23 14:30:56 UTC (rev 88764)
@@ -1,23 +1,22 @@
-=======
-CHANGES
-=======
+Changelog
+=========
 
 0.3 - Unreleased
-================
+----------------
 
 * Rewrite PersistentComponents.registeredUtilities to not use
   internal methods. This makes it compatible with both zope.component <3.5.0dev
   and >3.5.0dev.
 
 
-five.localsitemanager 0.3 (2007-12-24)
-======================================
+0.3 - 2007-12-24
+----------------
 
 * Fixed potential aq problem when assigning various values to the utilities
   registry of the component registry.
 
-five.localsitemanager 0.2 (2007-06-30)
-======================================
+0.2 - 2007-06-30
+----------------
 
 * Refactored and fixed aq wrapping: Nested site managers now return utilities
   wrapped in the right context. RequestContainers are removed and wrapped
@@ -25,18 +24,22 @@
   'FiveVerifyingAdapterLookup' in all 'utilities' registries used below a
   five.localsitemanager site.
 
-five.localsitemanager 0.1.2 (2007-06-23)
-========================================
 
+0.1.2 - 2007-06-23
+------------------
+
 * Corrected the zip-safe flag to be False.
 
-five.localsitemanager 0.1.1 (2007-03-05)
-========================================
 
+0.1.1 - 2007-03-05
+------------------
+
 * Fixed aq wrapping when looking up a utility that is actually the component
   registry's parent (the ISite).
 
-five.localsitemanager 0.1 (2007-02-27)
-======================================
 
-Initial version
+0.1 (2007-02-27)
+----------------
+
+* Initial version
+

Modified: five.localsitemanager/trunk/INSTALL.txt
===================================================================
--- five.localsitemanager/trunk/INSTALL.txt	2008-07-23 14:22:40 UTC (rev 88763)
+++ five.localsitemanager/trunk/INSTALL.txt	2008-07-23 14:30:56 UTC (rev 88764)
@@ -1,5 +1,5 @@
-Installing This Package
-=======================
+Installation
+============
 
 Prerequisites
 -------------
@@ -42,3 +42,4 @@
 .. _workingenv: http://cheeseshop.python.org/pypi/workingenv.py
 .. _easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall
 .. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools
+

Modified: five.localsitemanager/trunk/README.txt
===================================================================
--- five.localsitemanager/trunk/README.txt	2008-07-23 14:22:40 UTC (rev 88763)
+++ five.localsitemanager/trunk/README.txt	2008-07-23 14:30:56 UTC (rev 88764)
@@ -1,22 +1,13 @@
-five.localsitemanager
-=====================
+Introduction
+============
 
 Overview
 --------
 
-``five.localsitemanager`` provides a local site manager based on the
-standard Zope 3 local site manager for Zope 2.
+five.localsitemanager attempts to provide a local site manager implementation
+that is as close to Zope 3's implemenation as possible.  Some reservations
+that do not conflict with Zope 3 have been made to easy the path with CMF.
 
-Changes
--------
-
-See CHANGES.txt.
-
-Installation
-------------
-
-See INSTALL.txt.
-
 Developer Resources
 -------------------
 
@@ -31,3 +22,4 @@
 - Writable Subversion checkout:
 
   $ svn co svn+ssh://svn.zope.org/repos/main/five.localsitemanager/trunk
+

Modified: five.localsitemanager/trunk/setup.py
===================================================================
--- five.localsitemanager/trunk/setup.py	2008-07-23 14:22:40 UTC (rev 88763)
+++ five.localsitemanager/trunk/setup.py	2008-07-23 14:30:56 UTC (rev 88764)
@@ -2,7 +2,6 @@
 
 $Id$
 """
-import os
 from setuptools import setup, Extension
 
 version = '0.4'
@@ -14,16 +13,12 @@
       description='Local site manager implementation for Zope 2',
       author='Rocky Burt and Contributors',
       author_email='z3-five at codespeak.net',
-      long_description="""\
-five.localsitemanager attempts to provide a local site manager implementation
-that is as close to Zope 3's implemenation as possible.  Some reservations
-that do not conflict with Zope 3 have been made to easy the path with CMF.
-""",
-
+      long_description=open("README.txt").read() + "\n" + 
+                       open("INSTALL.txt").read() + "\n" +
+                       open("CHANGES.txt").read(),
       classifiers=[
           'Environment :: Web Environment',
           'Framework :: Zope2',
-          'Framework :: Zope3',
           'License :: OSI Approved :: Zope Public License',
           'Operating System :: OS Independent',
           'Programming Language :: Python',
@@ -41,3 +36,4 @@
       ],
       zip_safe = False,
       )
+



More information about the Checkins mailing list