[Checkins] SVN: grokproject/trunk/ Split changelog away from readme.

Philipp von Weitershausen philikon at philikon.de
Sun Nov 11 05:14:33 EST 2007


Log message for revision 81739:
  Split changelog away from readme.
  

Changed:
  A   grokproject/trunk/CHANGES.txt
  U   grokproject/trunk/README.txt
  U   grokproject/trunk/setup.py

-=-
Copied: grokproject/trunk/CHANGES.txt (from rev 81738, grokproject/trunk/README.txt)
===================================================================
--- grokproject/trunk/CHANGES.txt	                        (rev 0)
+++ grokproject/trunk/CHANGES.txt	2007-11-11 10:14:32 UTC (rev 81739)
@@ -0,0 +1,68 @@
+Changes
+=======
+
+0.7 (unreleased)
+------------------
+
+* Each of the interactive questions can now be set with an commandline
+  option.
+
+* Fix https://bugs.launchpad.net/bugs/161947: The buildout.cfg
+  template contained the [data] section twice.
+
+0.6 (2007-10-10)
+----------------
+
+* Added include package directive to ftesting.zcml_tmpl to enable functional
+  testing of the generated application.
+
+* Updated template for site.zcml, no annoying warning at start.
+
+* Added buildout support for i18n (thanks to lovely.recipe.i18n).
+
+* The buildout.cfg that is created now has an extends directive that points
+  to URL of the version.cfg of the current Grok release. This URL can be
+  overridden with the --version-info-url commandline option.
+
+  See http://grok.zope.org/releaseinfo/readme.html for more information.
+
+0.5.1 (2007-07-14)
+------------------
+
+* Use the new 'application' recipe from zc.zope3recipes so that we can
+  get rid of the dead chicken [zope3] section in buildout.cfg.
+
+0.5 (2007-07-14)
+----------------
+
+* The bin/instance script has been renamed to bin/zopectl for better
+  recognizability.
+
+* grokproject is much quieter by default (by quieting down
+  PasteScript, easy_install and zc.buildout).  Use the -v option for
+  verbose mode.
+
+* Fixed https://bugs.launchpad.net/grok/+bug/119805:
+  A new project created with grokproject can't be called 'grok' or 'zope'.
+
+* By default, zc.buildout will now be told to place eggs in a
+  user-specified shared eggs directory.  Also, it will not look for
+  newer versions of existing eggs by default.
+
+0.4 (2007-07-12)
+----------------
+
+* As grok now depends on Zope 3.4 eggs, use zc.zope3recipes
+  application and instance recipes.
+
+* Don't spawn processes to bootstrap and run the buildout.  Instead,
+  try to simply import zc.buildout.  If that doesn't work, call the
+  setuptools API to install it and then simply import it.
+
+* Fixed https://bugs.launchpad.net/grok/+bug/113103:
+  Default index template was missing closing html tag.
+
+0.1 thru 0.3
+------------
+
+Initial development versions, supporting Zope 3.3.

Modified: grokproject/trunk/README.txt
===================================================================
--- grokproject/trunk/README.txt	2007-11-11 10:12:16 UTC (rev 81738)
+++ grokproject/trunk/README.txt	2007-11-11 10:14:32 UTC (rev 81739)
@@ -18,72 +18,3 @@
 empty Python package in the ``src`` directory in which you can place
 the code for your web application.  To start the Zope server, execute
 ``bin/zopectl fg``.
-
-Changes
-=======
-
-0.7 (unreleased)
-------------------
-
-* Each of the interactive questions can now be set with an commandline
-  option.
-
-* Fix https://bugs.launchpad.net/bugs/161947: The buildout.cfg
-  template contained the [data] section twice.
-
-0.6 (2007-10-10)
-----------------
-
-* Added include package directive to ftesting.zcml_tmpl to enable functional
-  testing of the generated application.
-
-* Updated template for site.zcml, no annoying warning at start.
-
-* Added buildout support for i18n (thanks to lovely.recipe.i18n).
-
-* The buildout.cfg that is created now has an extends directive that points
-  to URL of the version.cfg of the current Grok release. This URL can be
-  overridden with the --version-info-url commandline option.
-
-  See http://grok.zope.org/releaseinfo/readme.html for more information.
-
-0.5.1 (2007-07-14)
-------------------
-
-* Use the new 'application' recipe from zc.zope3recipes so that we can
-  get rid of the dead chicken [zope3] section in buildout.cfg.
-
-0.5 (2007-07-14)
-----------------
-
-* The bin/instance script has been renamed to bin/zopectl for better
-  recognizability.
-
-* grokproject is much quieter by default (by quieting down
-  PasteScript, easy_install and zc.buildout).  Use the -v option for
-  verbose mode.
-
-* Fixed https://bugs.launchpad.net/grok/+bug/119805:
-  A new project created with grokproject can't be called 'grok' or 'zope'.
-
-* By default, zc.buildout will now be told to place eggs in a
-  user-specified shared eggs directory.  Also, it will not look for
-  newer versions of existing eggs by default.
-
-0.4 (2007-07-12)
-----------------
-
-* As grok now depends on Zope 3.4 eggs, use zc.zope3recipes
-  application and instance recipes.
-
-* Don't spawn processes to bootstrap and run the buildout.  Instead,
-  try to simply import zc.buildout.  If that doesn't work, call the
-  setuptools API to install it and then simply import it.
-
-* Fixed https://bugs.launchpad.net/grok/+bug/113103:
-  Default index template was missing closing html tag.
-
-0.1 thru 0.3
-------------
-
-Initial development versions, supporting Zope 3.3.

Modified: grokproject/trunk/setup.py
===================================================================
--- grokproject/trunk/setup.py	2007-11-11 10:12:16 UTC (rev 81738)
+++ grokproject/trunk/setup.py	2007-11-11 10:14:32 UTC (rev 81739)
@@ -1,5 +1,9 @@
 from setuptools import setup, find_packages
 
+long_description = (open('README.txt').read()
+                    + '\n\n' +
+                    open('CHANGES.txt').read())
+
 setup(
     name='grokproject',
     version='0.7dev',
@@ -8,7 +12,7 @@
     url='https://launchpad.net/grok',
     download_url='svn://svn.zope.org/repos/main/grokproject/trunk#egg=grokproject-dev',
     description='Script that sets up a grok project directory, installs Zope 3 and grok and creates a template for a grok application.',
-    long_description=open('README.txt').read(),
+    long_description=long_description,
     license='ZPL',
 
     packages=find_packages(),



More information about the Checkins mailing list