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

nobody at svn.erp5.org nobody at svn.erp5.org
Sun Sep 17 14:23:53 CEST 2006


Author: jp
Date: Sun Sep 17 14:23:52 2006
New Revision: 10039

URL: http://svn.erp5.org?rev=10039&view=rev
Log:
File now inherits from XMLObject

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

Modified: erp5/trunk/products/ERP5/Document/File.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/File.py?rev=10039&r1=10038&r2=10039&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/File.py (original)
+++ erp5/trunk/products/ERP5/Document/File.py Sun Sep 17 14:23:52 2006
@@ -30,22 +30,22 @@
 
 from Products.CMFCore.WorkflowCore import WorkflowMethod
 from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
+from Products.ERP5Type.XMLObject import XMLObject
 from Products.ERP5Type.Base import Base
 
 from Products.CMFDefault.File import File as CMFFile
 
 from zLOG import LOG
 
-class File(Base, CMFFile):
+class File(XMLObject, CMFFile):
     """
         A File can contain text that can be formatted using
         *Structured Text* or *HTML*. Text can be automatically translated
         through the use of 'message catalogs'.
 
-        A Document is a terminating leaf
-        in the OFS. It can not contain anything.
+        File can only contain role information.
 
-        Document inherits from XMLObject and can
+        File inherits from XMLObject and can
         be synchronized accross multiple sites.
     """
 




More information about the Erp5-report mailing list