Changeset 7321 for main/waeup.sirp/trunk/src/waeup/sirp/objecthistory.py
- Timestamp:
- 10 Dec 2011, 06:15:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/objecthistory.py
r7193 r7321 20 20 from persistent.list import PersistentList 21 21 from zope.annotation.interfaces import IAnnotations 22 from waeup.sirp.interfaces import IObjectHistory, I WAeUPObject22 from waeup.sirp.interfaces import IObjectHistory, ISIRPObject 23 23 from waeup.sirp.utils.helpers import get_current_principal 24 24 … … 26 26 """A history for objects. 27 27 28 For any object implementing `I WAeUPObject` which is annotatable,28 For any object implementing `ISIRPObject` which is annotatable, 29 29 we provide histories. A history for such an object can be obtained 30 30 by adapting it to `IObjectHistory`. 31 31 """ 32 grok.context(I WAeUPObject)32 grok.context(ISIRPObject) 33 33 grok.implements(IObjectHistory) 34 34
Note: See TracChangeset for help on using the changeset viewer.