source: main/waeup.sirp/trunk/src/waeup/sirp/__init__.py @ 7325

Last change on this file since 7325 was 7321, checked in by Henrik Bettermann, 13 years ago

Replace the term 'WAeUP' by SIRP which is a WAeUP product.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 445 bytes
Line 
1import grok
2from waeup.sirp.interfaces import ISIRPObject
3from zope.annotation.attribute import AttributeAnnotations
4from zope.annotation.interfaces import IAnnotations
5
6class SIRPAttributeAnnotations(AttributeAnnotations, grok.Adapter):
7    """An adapter to IAnnotations for any SIRPObject.
8
9    Providing this adapter, each SIRP object becomes (attribute)
10    annotatable.
11    """
12    grok.provides(IAnnotations)
13    grok.context(ISIRPObject)
Note: See TracBrowser for help on using the repository browser.