Ignore:
Timestamp:
14 Dec 2014, 21:48:41 (10 years ago)
Author:
Henrik Bettermann
Message:

Repair package. Hopefully we'll never need this package.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.pcn/trunk/src/kofacustom/pcn/university/faculty.py

    r11841 r12234  
    2424
    2525
    26 class IFaculty(IKofaContainer):
     26class ICustomFaculty(IKofaContainer):
    2727    """Representation of a university faculty.
    2828    """
     
    6161    """A university faculty.
    6262    """
    63     grok.implements(IFaculty)
     63    grok.implements(ICustomFaculty)
    6464
    6565    local_roles = [
     
    9191        return implementedBy(CustomFaculty)
    9292
    93 class IDepartment(IKofaObject):
     93class ICustomDepartment(IKofaObject):
    9494    """Representation of a department.
    9595    """
     
    126126    certificates = Attribute("A container for certificates.")
    127127
     128
    128129class CustomDepartment(Department):
    129130    """A university department.
    130131    """
    131     grok.implements(IDepartment)
     132    grok.implements(ICustomDepartment)
    132133
    133134    local_roles = [
Note: See TracChangeset for help on using the changeset viewer.