[Checkins] SVN: Products.ZCatalog/trunk/ Updated deprecation warnings to point to Zope 4 instead of 2.14.

Hano Schlichting cvs-admin at zope.org
Sat Mar 24 20:23:06 UTC 2012


Log message for revision 124710:
  Updated deprecation warnings to point to Zope 4 instead of 2.14.
  

Changed:
  U   Products.ZCatalog/trunk/CHANGES.txt
  U   Products.ZCatalog/trunk/src/Products/ZCatalog/Catalog.py
  U   Products.ZCatalog/trunk/src/Products/ZCatalog/CatalogAwareness.py
  U   Products.ZCatalog/trunk/src/Products/ZCatalog/CatalogPathAwareness.py

-=-
Modified: Products.ZCatalog/trunk/CHANGES.txt
===================================================================
--- Products.ZCatalog/trunk/CHANGES.txt	2012-03-24 20:12:24 UTC (rev 124709)
+++ Products.ZCatalog/trunk/CHANGES.txt	2012-03-24 20:23:03 UTC (rev 124710)
@@ -4,6 +4,7 @@
 2.13.23 (unreleased)
 --------------------
 
+- Updated deprecation warnings to point to Zope 4 instead of 2.14.
 
 2.13.22 (2011-11-17)
 --------------------

Modified: Products.ZCatalog/trunk/src/Products/ZCatalog/Catalog.py
===================================================================
--- Products.ZCatalog/trunk/src/Products/ZCatalog/Catalog.py	2012-03-24 20:12:24 UTC (rev 124709)
+++ Products.ZCatalog/trunk/src/Products/ZCatalog/Catalog.py	2012-03-24 20:23:03 UTC (rev 124710)
@@ -439,7 +439,7 @@
                           'object or a mixture of a query dict and keyword '
                           'arguments. Please use only a simple query dict. '
                           'Your query contained "%s". This support is '
-                          'deprecated and will be removed in Zope 2.14.' %
+                          'deprecated and will be removed in Zope 4.' %
                           repr(real_req), DeprecationWarning, stacklevel=4)
 
             known_keys = query.keys()
@@ -529,7 +529,7 @@
             if r is not None:
                 r, u = r
                 # Short circuit if empty result
-                # BBB: We can remove the "r is not None" check in Zope 2.14
+                # BBB: We can remove the "r is not None" check in Zope 4
                 # once we don't need to support the "return everything" case
                 # anymore
                 if r is not None and not r:
@@ -573,7 +573,7 @@
             # and so we return everything in the catalog
             warnings.warn('Your query %s produced no query restriction. '
                           'Currently the entire catalog content is returned. '
-                          'In Zope 2.14 this will result in an empty LazyCat '
+                          'In Zope 4 this will result in an empty LazyCat '
                           'to be returned.' % repr(cr.make_key(query)),
                           DeprecationWarning, stacklevel=3)
 
@@ -885,7 +885,7 @@
         if REQUEST is None and not kw:
             # Try to acquire request if we get no args for bw compat
             warnings.warn('Calling searchResults without a query argument nor '
-                          'keyword arguments is deprecated. In Zope 2.14 the '
+                          'keyword arguments is deprecated. In Zope 4 the '
                           'query will no longer be automatically taken from '
                           'the acquired request.',
                           DeprecationWarning, stacklevel=3)
@@ -923,7 +923,7 @@
     BBB: Values that are empty strings are treated as non-existent. This is
     to ignore empty values, thereby ignoring empty form fields to be
     consistent with hysterical behavior. This is deprecated and can be changed
-    in Zope 2.14.
+    in Zope 4.
     """
 
     def __init__(self, request, keywords):

Modified: Products.ZCatalog/trunk/src/Products/ZCatalog/CatalogAwareness.py
===================================================================
--- Products.ZCatalog/trunk/src/Products/ZCatalog/CatalogAwareness.py	2012-03-24 20:12:24 UTC (rev 124709)
+++ Products.ZCatalog/trunk/src/Products/ZCatalog/CatalogAwareness.py	2012-03-24 20:23:03 UTC (rev 124710)
@@ -39,7 +39,7 @@
 
     def _warn_deprecated(self):
         warnings.warn('The Products.ZCatalog.CatalogAwareness module is '
-                      'deprecated and will be removed in Zope 2.14. Please '
+                      'deprecated and will be removed in Zope 4. Please '
                       'use event subscribers for zope.lifecycle events to '
                       'automatically index and unindex your objects.',
                       DeprecationWarning, stacklevel=3)

Modified: Products.ZCatalog/trunk/src/Products/ZCatalog/CatalogPathAwareness.py
===================================================================
--- Products.ZCatalog/trunk/src/Products/ZCatalog/CatalogPathAwareness.py	2012-03-24 20:12:24 UTC (rev 124709)
+++ Products.ZCatalog/trunk/src/Products/ZCatalog/CatalogPathAwareness.py	2012-03-24 20:23:03 UTC (rev 124710)
@@ -35,7 +35,7 @@
 
     def _warn_deprecated(self):
         warnings.warn('The Products.ZCatalog.CatalogPathAwareness module is '
-                      'deprecated and will be removed in Zope 2.14. Please '
+                      'deprecated and will be removed in Zope 4. Please '
                       'use event subscribers for zope.lifecycle events to '
                       'automatically index and unindex your objects.',
                       DeprecationWarning, stacklevel=3)



More information about the checkins mailing list