Ignore:
Timestamp:
13 Nov 2014, 16:03:08 (10 years ago)
Author:
Henrik Bettermann
Message:

More renaming: University -> Institution, Student -> Customer
Change portal title.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/interfaces.py

    r11949 r11952  
    288288    """
    289289
    290 class IUniversity(IIkobaObject):
    291     """Representation of a university.
     290class IInstitution(IIkobaObject):
     291    """Representation of an institution.
    292292    """
    293293
     
    593593
    594594    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'),
    597597        required = True,
    598598        )
    599599
    600600    acronym = schema.TextLine(
    601         title = _(u'Abbreviated Title of University'),
     601        title = _(u'Abbreviated Title of Institution'),
    602602        default = u'WAeUP.Ikoba',
    603603        required = True,
     
    796796    Components implementing this interface are referred to as
    797797    '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.
    799799
    800800    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)
    802802    needing to know about that parts. The site simply collects all
    803803    available plugins, calls them and the plugins care for their
     
    852852    Utilities providing this interface are looked up when a Pluggable
    853853    Authentication Utility (PAU) for any
    854     :class:`waeup.ikoba.app.University` instance is created and put
     854    :class:`waeup.ikoba.app.Institution` instance is created and put
    855855    into ZODB.
    856856
Note: See TracChangeset for help on using the changeset viewer.