[Checkins] SVN: groktoolkit/tags/1.5/doc/ minimal updates in the grokdocs

Jan Wijbrand Kolman cvs-admin at zope.org
Wed May 2 12:28:58 UTC 2012


Log message for revision 125616:
  minimal updates in the grokdocs

Changed:
  U   groktoolkit/tags/1.5/doc/releases.rst
  U   groktoolkit/tags/1.5/doc/scripts/update-releaseinfo.py
  U   groktoolkit/tags/1.5/doc/upgrade.txt

-=-
Modified: groktoolkit/tags/1.5/doc/releases.rst
===================================================================
--- groktoolkit/tags/1.5/doc/releases.rst	2012-05-02 12:28:34 UTC (rev 125615)
+++ groktoolkit/tags/1.5/doc/releases.rst	2012-05-02 12:28:55 UTC (rev 125616)
@@ -6,6 +6,10 @@
 
 Information about new features, changes and bug fixes for releases of Grok.
 
+`Grok 1.5 <http://grok.zope.org/doc/1.5>`_
+  Grok 1.5 is a feature release of Grok including updates and bugfixes in
+  most of the comprsing grokcore.* packages.
+
 `Grok 1.4 <http://grok.zope.org/doc/1.4>`_
   Grok 1.4 is a feature release of Grok.
 

Modified: groktoolkit/tags/1.5/doc/scripts/update-releaseinfo.py
===================================================================
--- groktoolkit/tags/1.5/doc/scripts/update-releaseinfo.py	2012-05-02 12:28:34 UTC (rev 125615)
+++ groktoolkit/tags/1.5/doc/scripts/update-releaseinfo.py	2012-05-02 12:28:55 UTC (rev 125616)
@@ -46,6 +46,9 @@
     print >>out, TABLE_HEADER
     for package in sorted(packages):
         version = config.get('versions', package)
+        if package == 'IPython':
+            # XXX ugly ugly ugly hack.
+            package = 'ipython'
         doap_xml = urllib2.urlopen(
             'http://pypi.python.org/pypi?:action=doap&name=%s&version=%s' %
             (package, version)).read()
@@ -89,23 +92,17 @@
     print >>output, '=' * len(heading)
 
     print >>output, """
-Release yadda yadda.
 """
 
-    #ztk_version = None
-    #extends = config.get('buildout', 'extends').splitlines()
-    #for extend in extends:
-    #    if 'ztk-versions.cfg' not in extend:
-    #        continue
-
-    ztk_version = '1.1'
+    ztk_version = '1.1.4'
     print >>output, 'Zope Toolkit %s' % ztk_version
     print >>output, '------------------------------'
     print >>output, """
 This Grok released is based on Zope Toolkit %s.
 
-`Overview <http://docs.zope.org/zopetoolkit/releases/overview-%s.html>`_ of the
-ZTK. List of the ZTK `packages <http://docs.zope.org/zopetoolkit/releases/packages-%s.html>`_
+`Overview <http://docs.zope.org/zopetoolkit/releases/overview-%s.html>`_ of
+the ZTK. List of the ZTK `packages
+<http://docs.zope.org/zopetoolkit/releases/packages-%s.html>`_
 """ % (ztk_version, ztk_version, ztk_version)
 
     print >>output, 'Packages'
@@ -122,7 +119,7 @@
     print >>output, 'Other dependencies'
     print >>output, '------------------'
     all = config.options('versions')
-    dependencies = (set(all) - set(included)) - set(deprecating)
+    dependencies = (set(all) - set(included)) #- set(deprecating)
     package_list(dependencies, config, output)
     output.close()
 

Modified: groktoolkit/tags/1.5/doc/upgrade.txt
===================================================================
--- groktoolkit/tags/1.5/doc/upgrade.txt	2012-05-02 12:28:34 UTC (rev 125615)
+++ groktoolkit/tags/1.5/doc/upgrade.txt	2012-05-02 12:28:55 UTC (rev 125616)
@@ -12,6 +12,21 @@
 **Warning**. Please be sure to always backup your data (especially the
 ``Data.fs`` file) before you perform upgrades.
 
+.. _upgrade_notes_1.5:
+
+Upgrading to 1.5 (2012-05-02)
+-----------------------------
+
+To upgrade your Grok based project, make sure your project's ``buildout.cfg``
+extends from the ``versions.cfg`` of the latest Grok Toolkit release. This file
+can be found here::
+
+    http://grok.zope.org/releaseinfo/1.5/versions.cfg
+
+Then re-run ``bootstrap.py`` in your project to prevent potential
+``zc.buildout`` version conflicts. Then run ``bin/buildout`` to get the latest
+versions of all of the packages that comprise the Grok Toolkit.
+
 .. _upgrade_notes_1.4:
 
 Upgrading to 1.4 (2011-04-04)



More information about the checkins mailing list