[Zope-Checkins] SVN: Zope/branches/2.13/ Factored out the `Products.ZCatalog` and `Products.PluginIndexes` packages into a new `Products.ZCatalog` distribution.

2010-12-25 Thread Hanno Schlichting
Log message for revision 119099:
  Factored out the `Products.ZCatalog` and `Products.PluginIndexes` packages 
into a new `Products.ZCatalog` distribution.
  

Changed:
  U   Zope/branches/2.13/buildout.cfg
  U   Zope/branches/2.13/doc/CHANGES.rst
  U   Zope/branches/2.13/setup.py
  U   Zope/branches/2.13/sources.cfg
  D   Zope/branches/2.13/src/Products/PluginIndexes/
  D   Zope/branches/2.13/src/Products/ZCatalog/
  U   Zope/branches/2.13/versions.cfg

-=-
Modified: Zope/branches/2.13/buildout.cfg
===
--- Zope/branches/2.13/buildout.cfg 2010-12-25 18:32:59 UTC (rev 119098)
+++ Zope/branches/2.13/buildout.cfg 2010-12-25 18:37:32 UTC (rev 119099)
@@ -59,6 +59,7 @@
 Products.OFSP
 Products.PythonScripts
 Products.StandardCacheManagers
+Products.ZCatalog
 Products.ZCTextIndex
 Record
 RestrictedPython

Modified: Zope/branches/2.13/doc/CHANGES.rst
===
--- Zope/branches/2.13/doc/CHANGES.rst  2010-12-25 18:32:59 UTC (rev 119098)
+++ Zope/branches/2.13/doc/CHANGES.rst  2010-12-25 18:37:32 UTC (rev 119099)
@@ -11,10 +11,14 @@
 Bugs Fixed
 ++
 
-- Fix `LazyMap` to avoid unnecessary function calls.
-
 - LP 686664: WebDAV Lock Manager ZMI view wasn't accessible.
 
+Restructuring
++
+
+- Factored out the `Products.ZCatalog` and `Products.PluginIndexes` packages
+  into a new `Products.ZCatalog` distribution.
+
 2.13.1 (2010-12-07)
 ---
 

Modified: Zope/branches/2.13/setup.py
===
--- Zope/branches/2.13/setup.py 2010-12-25 18:32:59 UTC (rev 119098)
+++ Zope/branches/2.13/setup.py 2010-12-25 18:37:32 UTC (rev 119099)
@@ -54,6 +54,7 @@
   'MultiMapping',
   'Persistence',
   'Products.OFSP = 2.13.2',
+  'Products.ZCatalog',
   'Products.ZCTextIndex',
   'Record',
   'RestrictedPython',

Modified: Zope/branches/2.13/sources.cfg
===
--- Zope/branches/2.13/sources.cfg  2010-12-25 18:32:59 UTC (rev 119098)
+++ Zope/branches/2.13/sources.cfg  2010-12-25 18:37:32 UTC (rev 119099)
@@ -15,6 +15,7 @@
 Products.OFSP = svn ^/Products.OFSP/trunk
 Products.PythonScripts = svn ^/Products.PythonScripts/trunk
 Products.StandardCacheManagers = svn ^/Products.StandardCacheManagers/trunk
+Products.ZCatalog = svn ^/Products.ZCatalog/trunk
 Products.ZCTextIndex = svn ^/Products.ZCTextIndex/trunk
 Record = svn ^/Record/trunk
 tempstorage = svn ^/tempstorage/trunk

Modified: Zope/branches/2.13/versions.cfg
===
--- Zope/branches/2.13/versions.cfg 2010-12-25 18:32:59 UTC (rev 119098)
+++ Zope/branches/2.13/versions.cfg 2010-12-25 18:37:32 UTC (rev 119099)
@@ -22,6 +22,7 @@
 Products.OFSP = 2.13.2
 Products.PythonScripts = 2.13.0
 Products.StandardCacheManagers = 2.13.0
+Products.ZCatalog = 2.13.0
 Products.ZCTextIndex = 2.13.1
 Record = 2.13.0
 tempstorage = 2.12.1

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
https://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Zope/trunk/ Merged c119099 from 2.13 branch

2010-12-25 Thread Hanno Schlichting
Log message for revision 119100:
  Merged c119099 from 2.13 branch
  

Changed:
  U   Zope/trunk/buildout.cfg
  U   Zope/trunk/doc/CHANGES.rst
  U   Zope/trunk/setup.py
  U   Zope/trunk/sources.cfg
  D   Zope/trunk/src/Products/PluginIndexes/
  D   Zope/trunk/src/Products/ZCatalog/
  U   Zope/trunk/versions.cfg

-=-
Modified: Zope/trunk/buildout.cfg
===
--- Zope/trunk/buildout.cfg 2010-12-25 18:37:32 UTC (rev 119099)
+++ Zope/trunk/buildout.cfg 2010-12-25 18:41:16 UTC (rev 119100)
@@ -54,6 +54,7 @@
 MultiMapping
 Persistence
 Products.OFSP
+Products.ZCatalog
 Products.ZCTextIndex
 Record
 RestrictedPython

Modified: Zope/trunk/doc/CHANGES.rst
===
--- Zope/trunk/doc/CHANGES.rst  2010-12-25 18:37:32 UTC (rev 119099)
+++ Zope/trunk/doc/CHANGES.rst  2010-12-25 18:41:16 UTC (rev 119100)
@@ -34,6 +34,9 @@
 Restructuring
 +
 
+- Factored out the `Products.ZCatalog` and `Products.PluginIndexes` packages
+  into a new `Products.ZCatalog` distribution.
+
 - Stopped testing non-overridden ZTK eggs in ``bin/alltests``.
 
 - Dropped the direct dependencies on packages that have been factored out of

Modified: Zope/trunk/setup.py
===
--- Zope/trunk/setup.py 2010-12-25 18:37:32 UTC (rev 119099)
+++ Zope/trunk/setup.py 2010-12-25 18:41:16 UTC (rev 119100)
@@ -54,6 +54,7 @@
   'MultiMapping',
   'Persistence',
   'Products.OFSP = 2.13.2',
+  'Products.ZCatalog',
   'Products.ZCTextIndex',
   'Record',
   'RestrictedPython',

Modified: Zope/trunk/sources.cfg
===
--- Zope/trunk/sources.cfg  2010-12-25 18:37:32 UTC (rev 119099)
+++ Zope/trunk/sources.cfg  2010-12-25 18:41:16 UTC (rev 119100)
@@ -10,6 +10,7 @@
 nt_svcutils = svn ^/nt_svcutils/trunk
 Persistence = svn ^/Persistence/trunk
 Products.OFSP = svn ^/Products.OFSP/trunk
+Products.ZCatalog = svn ^/Products.ZCatalog/trunk
 Products.ZCTextIndex = svn ^/Products.ZCTextIndex/trunk
 Record = svn ^/Record/trunk
 tempstorage = svn ^/tempstorage/trunk

Modified: Zope/trunk/versions.cfg
===
--- Zope/trunk/versions.cfg 2010-12-25 18:37:32 UTC (rev 119099)
+++ Zope/trunk/versions.cfg 2010-12-25 18:41:16 UTC (rev 119100)
@@ -22,6 +22,7 @@
 Products.OFSP = 2.13.2
 Products.PythonScripts = 2.13.0
 Products.StandardCacheManagers = 2.13.0
+Products.ZCatalog = 2.13.0
 Products.ZCTextIndex = 2.13.1
 Record = 2.13.0
 tempstorage = 2.12.1

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
https://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Zope/branches/2.13/ ZCatalog = 2.13.1

2010-12-25 Thread Hanno Schlichting
Log message for revision 119110:
  ZCatalog = 2.13.1
  

Changed:
  U   Zope/branches/2.13/doc/CHANGES.rst
  U   Zope/branches/2.13/versions.cfg

-=-
Modified: Zope/branches/2.13/doc/CHANGES.rst
===
--- Zope/branches/2.13/doc/CHANGES.rst  2010-12-25 19:43:07 UTC (rev 119109)
+++ Zope/branches/2.13/doc/CHANGES.rst  2010-12-25 19:44:05 UTC (rev 119110)
@@ -13,6 +13,13 @@
 
 - LP 686664: WebDAV Lock Manager ZMI view wasn't accessible.
 
+Features Added
+++
+
+- Updated distributions:
+
+  - Products.ZCatalog = 2.13.1
+
 Restructuring
 +
 

Modified: Zope/branches/2.13/versions.cfg
===
--- Zope/branches/2.13/versions.cfg 2010-12-25 19:43:07 UTC (rev 119109)
+++ Zope/branches/2.13/versions.cfg 2010-12-25 19:44:05 UTC (rev 119110)
@@ -22,7 +22,7 @@
 Products.OFSP = 2.13.2
 Products.PythonScripts = 2.13.0
 Products.StandardCacheManagers = 2.13.0
-Products.ZCatalog = 2.13.0
+Products.ZCatalog = 2.13.1
 Products.ZCTextIndex = 2.13.1
 Record = 2.13.0
 tempstorage = 2.12.1

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
https://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Zope/trunk/ Forward port c119110 from 2.13 branch

2010-12-25 Thread Hanno Schlichting
Log message for revision 119111:
  Forward port c119110 from 2.13 branch
  

Changed:
  U   Zope/trunk/doc/CHANGES.rst
  U   Zope/trunk/versions.cfg

-=-
Modified: Zope/trunk/doc/CHANGES.rst
===
--- Zope/trunk/doc/CHANGES.rst  2010-12-25 19:44:05 UTC (rev 119110)
+++ Zope/trunk/doc/CHANGES.rst  2010-12-25 19:45:01 UTC (rev 119111)
@@ -31,6 +31,10 @@
 - Use cProfile where possible for the `Control_Panel/DebugInfo/manage_profile`
   ZMI view.
 
+- Updated distributions:
+
+  - Products.ZCatalog = 2.13.1
+
 Restructuring
 +
 

Modified: Zope/trunk/versions.cfg
===
--- Zope/trunk/versions.cfg 2010-12-25 19:44:05 UTC (rev 119110)
+++ Zope/trunk/versions.cfg 2010-12-25 19:45:01 UTC (rev 119111)
@@ -22,7 +22,7 @@
 Products.OFSP = 2.13.2
 Products.PythonScripts = 2.13.0
 Products.StandardCacheManagers = 2.13.0
-Products.ZCatalog = 2.13.0
+Products.ZCatalog = 2.13.1
 Products.ZCTextIndex = 2.13.1
 Record = 2.13.0
 tempstorage = 2.12.1

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
https://mail.zope.org/mailman/listinfo/zope-checkins