[Erp5-report] r29207 - in /erp5/trunk/products/ERP5Type: ZopePatch.py patches/OFSPdata.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Mon Sep 28 14:19:58 CEST 2009
Author: daniele
Date: Mon Sep 28 14:19:58 2009
New Revision: 29207
URL: http://svn.erp5.org?rev=29207&view=rev
Log:
Add a getLastPdata method to return the last Pdata element of a Pdata
Use of this method by ERP5SyncML
Added:
erp5/trunk/products/ERP5Type/patches/OFSPdata.py
Modified:
erp5/trunk/products/ERP5Type/ZopePatch.py
Modified: erp5/trunk/products/ERP5Type/ZopePatch.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Type/ZopePatch.py?rev=29207&r1=29206&r2=29207&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Type/ZopePatch.py [utf8] (original)
+++ erp5/trunk/products/ERP5Type/ZopePatch.py [utf8] Mon Sep 28 14:19:58 2009
@@ -56,6 +56,7 @@
from Products.ERP5Type.patches import http_server
from Products.ERP5Type.patches import memcache_client
from Products.ERP5Type.patches import StateChangeInfoPatch
+from Products.ERP5Type.patches import OFSPdata
# These symbols are required for backward compatibility
from Products.ERP5Type.patches.PropertyManager import ERP5PropertyManager
Added: erp5/trunk/products/ERP5Type/patches/OFSPdata.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Type/patches/OFSPdata.py?rev=29207&view=auto
==============================================================================
--- erp5/trunk/products/ERP5Type/patches/OFSPdata.py (added)
+++ erp5/trunk/products/ERP5Type/patches/OFSPdata.py [utf8] Mon Sep 28 14:19:58 2009
@@ -1,0 +1,44 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# Copyright (c) 2009 Nexedi SA and Contributors. All Rights Reserved.
+# Danièle Vanbaelinghem <daniele at nexedi.com>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsability of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# garantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# This program is Free Software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+##############################################################################
+
+from OFS.Image import Pdata
+"""
+ This patch add a getLastPdata method to return the last Pdata element
+ of a Pdata
+"""
+
+def getLastPdata(self):
+ next = self.next
+
+ while next is not None:
+ self = next
+ next = self.next
+ return self
+
+Pdata.getLastPdata = getLastPdata
More information about the Erp5-report
mailing list