[Erp5-report] r15876 - /erp5/trunk/products/ERP5/Document/Document.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Aug 28 17:36:55 CEST 2007


Author: yusei
Date: Tue Aug 28 17:36:54 2007
New Revision: 15876

URL: http://svn.erp5.org?rev=15876&view=rev
Log:
Fixed old method name.

Modified:
    erp5/trunk/products/ERP5/Document/Document.py

Modified: erp5/trunk/products/ERP5/Document/Document.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Document.py?rev=15876&r1=15875&r2=15876&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Document.py (original)
+++ erp5/trunk/products/ERP5/Document/Document.py Tue Aug 28 17:36:54 2007
@@ -1110,7 +1110,7 @@
     the document title.
     """
     result = {}
-    html = self.asHTML()
+    html = self.asEntireHTML()
     if not html: return result
     title_list = re.findall(self.title_parser, str(html))
     if title_list:
@@ -1312,4 +1312,4 @@
     """
     method = self._getTypeBasedMethod('isUpdatable', 
         fallback_script_id = 'Document_isUpdatable')
-    return method()
+    return method()




More information about the Erp5-report mailing list