[Erp5-report] r17380 - in /erp5/trunk/products/ERP5/bootstrap/erp5_core: SkinTemplateItem/p...
nobody at svn.erp5.org
nobody at svn.erp5.org
Fri Nov 2 22:05:34 CET 2007
Author: yo
Date: Fri Nov 2 22:05:34 2007
New Revision: 17380
URL: http://svn.erp5.org?rev=17380&view=rev
Log:
2007-11-02 yo
* A minor optimization.
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=17380&r1=17379&r2=17380&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 Fri Nov 2 22:05:34 2007
@@ -69,7 +69,7 @@
<item>
<key> <string>_body</string> </key>
<value> <string>from ZTUtils import make_query\n
-return make_query(dict([(k, v) for k, v in http_parameter_list.items() if v is not None]))\n
+return make_query((item for item in http_parameter_list.iteritems() if item[1] is not None))\n
</string> </value>
</item>
<item>
@@ -121,14 +121,7 @@
<string>http_parameter_list</string>
<string>ZTUtils</string>
<string>make_query</string>
- <string>dict</string>
- <string>append</string>
- <string>$append0</string>
- <string>_getiter_</string>
<string>_getattr_</string>
- <string>k</string>
- <string>v</string>
- <string>None</string>
</tuple>
</value>
</item>
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=17380&r1=17379&r2=17380&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/revision (original)
+++ erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/revision Fri Nov 2 22:05:34 2007
@@ -1,1 +1,1 @@
-553
+556
More information about the Erp5-report
mailing list