Changeset 3911 for waeup/branches


Ignore:
Timestamp:
6 Feb 2009, 22:33:45 (16 years ago)
Author:
uli
Message:

Move IFaculty interface to main interfaces collection.

Location:
waeup/branches/ulif-rewrite/src/waeup
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • waeup/branches/ulif-rewrite/src/waeup/interfaces.py

    r3848 r3911  
    2929    """
    3030
     31class IFaculty(Interface):
     32    """Representation of a university faculty.
     33    """
     34    name = schema.TextLine(
     35        title = u'Name of Faculty',
     36        default = u'Unnamed',
     37        required = True,
     38        )
     39
    3140class IFacultyContainer(IWAeUPContainer):
    3241    """A container for faculties.
Note: See TracChangeset for help on using the changeset viewer.