Changeset 5014 for main/waeup.sirp/trunk/src
- Timestamp:
- 4 Feb 2010, 17:54:37 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/university/facultycontainer.py
r5005 r5014 2 2 from zope.component.interfaces import IFactory 3 3 from zope.interface import implementedBy 4 from waeup.sirp.interfaces import IWAeUPSIRPPluggable 4 5 from waeup.sirp.university.interfaces import IFacultyContainer, IFaculty 5 6 … … 41 42 def getInterfaces(self): 42 43 return implementedBy(FacultyContainer) 44 45 class AcademicsPlugin(grok.GlobalUtility): 46 """A plugin that tells universities how to create a faculty container. 47 """ 48 grok.implements(IWAeUPSIRPPluggable) 49 50 factory_name = u'waeup.FacultyContainer' 51 name = 'faculties' 52
Note: See TracChangeset for help on using the changeset viewer.