[Erp5-report] r17399 - in /erp5/trunk/products/ERP5/bootstrap/erp5_core: SkinTemplateItem/p...
nobody at svn.erp5.org
nobody at svn.erp5.org
Mon Nov 5 19:07:00 CET 2007
Author: jerome
Date: Mon Nov 5 19:07:00 2007
New Revision: 17399
URL: http://svn.erp5.org?rev=17399&view=rev
Log:
Don't use iteritems, it cause problems with some zope versions
Modified:
erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/ERP5Site_renderHTTPParameterList.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/revision
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/ERP5Site_renderHTTPParameterList.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/ERP5Site_renderHTTPParameterList.xml?rev=17399&r1=17398&r2=17399&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/ERP5Site_renderHTTPParameterList.xml (original)
+++ erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/ERP5Site_renderHTTPParameterList.xml Mon Nov 5 19:07:00 2007
@@ -3,11 +3,8 @@
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<tuple>
- <tuple>
- <string>Products.PythonScripts.PythonScript</string>
- <string>PythonScript</string>
- </tuple>
- <none/>
+ <global name="PythonScript" module="Products.PythonScripts.PythonScript"/>
+ <tuple/>
</tuple>
</pickle>
<pickle>
@@ -69,7 +66,7 @@
<item>
<key> <string>_body</string> </key>
<value> <string>from ZTUtils import make_query\n
-return make_query((item for item in http_parameter_list.iteritems() if item[1] is not None))\n
+return make_query((item for item in http_parameter_list.items() if item[1] is not None))\n
</string> </value>
</item>
<item>
@@ -121,6 +118,7 @@
<string>http_parameter_list</string>
<string>ZTUtils</string>
<string>make_query</string>
+ <string>_getiter_</string>
<string>_getattr_</string>
</tuple>
</value>
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/revision
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/revision?rev=17399&r1=17398&r2=17399&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/revision (original)
+++ erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/revision Mon Nov 5 19:07:00 2007
@@ -1,1 +1,1 @@
-555
+556
More information about the Erp5-report
mailing list