Changeset 12160 for main/waeup.ikoba/trunk
- Timestamp:
- 7 Dec 2014, 07:56:25 (10 years ago)
- Location:
- main/waeup.ikoba/trunk/src/waeup/ikoba/documents
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/documents/document.py
r12126 r12160 82 82 except AttributeError: 83 83 return 84 85 @property 86 def connected_files(self): 87 return 88 89 def setMD5(self, files): 90 """Set md5 checksum of selected files connected to this document. 91 """ 92 return 84 93 85 94 -
main/waeup.ikoba/trunk/src/waeup/ikoba/documents/interfaces.py
r12126 r12160 52 52 formatted_transition_date = Attribute('Last transition formatted date string') 53 53 user_id = Attribute('Id of a user') 54 connected_files = Attribute('Get files connected to a document') 54 55 55 56 title = schema.TextLine( … … 64 65 ) 65 66 67 def setMD5(files): 68 """Set md5 checksum of selected files connected to this document. 69 """ 70 66 71 67 72 class IDocumentsUtils(Interface):
Note: See TracChangeset for help on using the changeset viewer.