[Checkins] SVN: plone.z3cform/trunk/ - deal with forward compatibility with Zope 2.14

Yvo Schubbe y.2011 at wcm-solutions.de
Tue Mar 8 05:57:51 EST 2011


Log message for revision 120798:
  - deal with forward compatibility with Zope 2.14

Changed:
  U   plone.z3cform/trunk/docs/HISTORY.txt
  U   plone.z3cform/trunk/plone/z3cform/configure.zcml
  U   plone.z3cform/trunk/setup.py

-=-
Modified: plone.z3cform/trunk/docs/HISTORY.txt
===================================================================
--- plone.z3cform/trunk/docs/HISTORY.txt	2011-03-08 10:48:50 UTC (rev 120797)
+++ plone.z3cform/trunk/docs/HISTORY.txt	2011-03-08 10:57:51 UTC (rev 120798)
@@ -1,6 +1,11 @@
 Changelog
 =========
 
+0.7.4 - unreleased
+------------------
+
+* Deal with forward compatibility with Zope 2.14.
+
 0.7.3 - 2011-03-02
 ------------------
 

Modified: plone.z3cform/trunk/plone/z3cform/configure.zcml
===================================================================
--- plone.z3cform/trunk/plone/z3cform/configure.zcml	2011-03-08 10:48:50 UTC (rev 120797)
+++ plone.z3cform/trunk/plone/z3cform/configure.zcml	2011-03-08 10:57:51 UTC (rev 120798)
@@ -19,12 +19,14 @@
        sending encoded str's when z3c.form wants decoded unicode's.
     -->
   <monkey:patch
+      preconditions="Zope2-=2.13.999"
       description="Zope 2 integration - decode form inputs prior to form processing"
       class="z3c.form.form.BaseForm"
       original="update"
       replacement=".patch.BaseForm_update"
       />
   <monkey:patch
+      preconditions="Zope2-=2.13.999"
       description="Zope 2 integration - decode form inputs prior to form processing"
       class="z3c.form.group.GroupForm"
       original="update"

Modified: plone.z3cform/trunk/setup.py
===================================================================
--- plone.z3cform/trunk/setup.py	2011-03-08 10:48:50 UTC (rev 120797)
+++ plone.z3cform/trunk/setup.py	2011-03-08 10:57:51 UTC (rev 120798)
@@ -1,7 +1,7 @@
 from setuptools import setup, find_packages
 import os
 
-version = '0.7.3'
+version = '0.7.4dev'
 
 
 def description():



More information about the checkins mailing list