- Timestamp:
- 13 Nov 2014, 16:03:08 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/interfaces.py
r11949 r11952 288 288 """ 289 289 290 class I University(IIkobaObject):291 """Representation of a university.290 class IInstitution(IIkobaObject): 291 """Representation of an institution. 292 292 """ 293 293 … … 593 593 594 594 name = schema.TextLine( 595 title = _(u'Name of University'),596 default = _(u'Sample University'),595 title = _(u'Name of Institution'), 596 default = _(u'Sample Institution'), 597 597 required = True, 598 598 ) 599 599 600 600 acronym = schema.TextLine( 601 title = _(u'Abbreviated Title of University'),601 title = _(u'Abbreviated Title of Institution'), 602 602 default = u'WAeUP.Ikoba', 603 603 required = True, … … 796 796 Components implementing this interface are referred to as 797 797 'plugins'. They are normally called when a new 798 :class:`waeup.ikoba.app. University` instance is created.798 :class:`waeup.ikoba.app.Institution` instance is created. 799 799 800 800 Plugins can setup and update parts of the central site without the 801 site object (normally a :class:`waeup.ikoba.app. University` object)801 site object (normally a :class:`waeup.ikoba.app.Institution` object) 802 802 needing to know about that parts. The site simply collects all 803 803 available plugins, calls them and the plugins care for their … … 852 852 Utilities providing this interface are looked up when a Pluggable 853 853 Authentication Utility (PAU) for any 854 :class:`waeup.ikoba.app. University` instance is created and put854 :class:`waeup.ikoba.app.Institution` instance is created and put 855 855 into ZODB. 856 856
Note: See TracChangeset for help on using the changeset viewer.