[Checkins] SVN: z3c.offlinepack/trunk/ Clarify some documentation

Ross Patterson me at rpatterson.net
Wed Sep 26 15:03:24 EDT 2007


Log message for revision 80121:
  Clarify some documentation
  

Changed:
  U   z3c.offlinepack/trunk/README.txt
  U   z3c.offlinepack/trunk/setup.py
  U   z3c.offlinepack/trunk/z3c/offlinepack/README.txt
  U   z3c.offlinepack/trunk/z3c/offlinepack/__init__.py

-=-
Modified: z3c.offlinepack/trunk/README.txt
===================================================================
--- z3c.offlinepack/trunk/README.txt	2007-09-26 18:56:13 UTC (rev 80120)
+++ z3c.offlinepack/trunk/README.txt	2007-09-26 19:03:24 UTC (rev 80121)
@@ -1,13 +1,11 @@
-;-*- rST -*-
-
 ==================
 Pack ZODBs Offline
 ==================
 
 Pack a ZODB storage without running any part of the Zope application
-server.  Only an appropriate version of Zope for the ZODB storage is
-required.  Use on a copy of a ZODB storage.  Do not run on a ZODB
-storage currently in use.
+server.  Only an appropriate version of ZODB3 for the ZODB storage is
+required.  Apply only to copies of ZODB storages, not ZODB storages
+currently in use.
 
 Install the distribution:
 
@@ -22,7 +20,7 @@
 
 A buildout.cfg is included that will install the offlinepack script
 to the buildout.  The buildout makes it possible to quickly use the
-offlinepack script without modifying your python installation.
+offlinepack script without modifying the system python installation.
 
   $ python bootsrtap/bootsrtap.py -v
   $ bin/buildout -v

Modified: z3c.offlinepack/trunk/setup.py
===================================================================
--- z3c.offlinepack/trunk/setup.py	2007-09-26 18:56:13 UTC (rev 80120)
+++ z3c.offlinepack/trunk/setup.py	2007-09-26 19:03:24 UTC (rev 80121)
@@ -1,16 +1,12 @@
 from setuptools import setup, find_packages
 import sys, os
 
-version = '0.1.1'
+version = '0.1.2'
 
 setup(name='z3c.offlinepack',
       version=version,
       description="Pack ZODB databases without running Zope or ZEO",
-      long_description="""\
-Pack a ZODB storage without running any part of the Zope application
-server.  Only an appropriate version of Zope for the ZODB storage is
-required.  Use on a copy of a ZODB storage.  Do not run on a ZODB
-storage currently in use.""",
+      long_description=open(os.path.dirname(__file__), 'README.txt').read(),
       # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
       classifiers=[
         "Framework :: Plone",

Modified: z3c.offlinepack/trunk/z3c/offlinepack/README.txt
===================================================================
--- z3c.offlinepack/trunk/z3c/offlinepack/README.txt	2007-09-26 18:56:13 UTC (rev 80120)
+++ z3c.offlinepack/trunk/z3c/offlinepack/README.txt	2007-09-26 19:03:24 UTC (rev 80121)
@@ -4,9 +4,9 @@
 ==================
 
 Pack a ZODB storage without running any part of the Zope application
-server.  Only an appropriate version of Zope for the ZODB storage is
-required.  Use on a copy of a ZODB storage.  Do not run on a ZODB
-storage currently in use.
+server.  Only an appropriate version of ZODB3 for the ZODB storage is
+required.  Apply only to copies of ZODB storages, not ZODB storages
+currently in use.
 
 Start with a FileStorage that has versions that would be removed on
 pack.

Modified: z3c.offlinepack/trunk/z3c/offlinepack/__init__.py
===================================================================
--- z3c.offlinepack/trunk/z3c/offlinepack/__init__.py	2007-09-26 18:56:13 UTC (rev 80120)
+++ z3c.offlinepack/trunk/z3c/offlinepack/__init__.py	2007-09-26 19:03:24 UTC (rev 80121)
@@ -1,8 +1,5 @@
 #!/usr/bin/python
-"""Pack a ZODB storage without running any part of the Zope application
-server.  Only an appropriate version of Zope for the ZODB storage is
-required.  Use on a copy of a ZODB storage.  Do not run on a ZODB
-storage currently in use."""
+"""Pack ZODB databases without running Zope or ZEO"""
 
 usage="usage: %prog [options] PATH..."
 



More information about the Checkins mailing list