Ignore:
Timestamp:
10 Dec 2011, 06:15:17 (13 years ago)
Author:
Henrik Bettermann
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/university/facultycontainer.py

    r7195 r7321  
    1919from zope.component.interfaces import IFactory
    2020from zope.interface import implementedBy
    21 from waeup.sirp.interfaces import IWAeUPSIRPPluggable
     21from waeup.sirp.interfaces import ISIRPPluggable
    2222from waeup.sirp.university.interfaces import IFacultyContainer, IFaculty
    2323
     
    5151    """A plugin that creates a faculty container inside a university.
    5252    """
    53     grok.implements(IWAeUPSIRPPluggable)
     53    grok.implements(ISIRPPluggable)
    5454    grok.name('faculties')
    5555
    5656    def setup(self, site, name, logger):
    5757        if 'faculties' in site.keys():
    58             logger.warn('Could not create faculty container in WAeUP SIRP.')
     58            logger.warn('Could not create faculty container in SIRP.')
    5959            return
    6060        site['faculties'] = FacultyContainer()
Note: See TracChangeset for help on using the changeset viewer.