- Timestamp:
- 8 Mar 2012, 19:00:51 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/university/interfaces.py
r7707 r7811 21 21 from zope import schema 22 22 from zope.interface import Attribute 23 from waeup. sirp.interfaces import (ISIRPObject, ISIRPContainer)24 from waeup. sirp.interfaces import MessageFactory as _25 from waeup. sirp.university.vocabularies import (23 from waeup.kofa.interfaces import (IKOFAObject, IKOFAContainer) 24 from waeup.kofa.interfaces import MessageFactory as _ 25 from waeup.kofa.university.vocabularies import ( 26 26 course_levels, 27 27 CourseSource, … … 32 32 ) 33 33 34 class IFaculty(I SIRPContainer):34 class IFaculty(IKOFAContainer): 35 35 """Representation of a university faculty. 36 36 """ … … 73 73 IFacultyAdd['code'].order = IFaculty['code'].order 74 74 75 class IFacultiesContainer(I SIRPContainer):75 class IFacultiesContainer(IKOFAContainer): 76 76 """A container for faculties. 77 77 """ … … 80 80 81 81 """ 82 class IDepartment(I SIRPObject):82 class IDepartment(IKOFAObject): 83 83 """Representation of a department. 84 84 """ … … 124 124 IDepartmentAdd['code'].order = IDepartment['code'].order 125 125 126 class ICoursesContainer(I SIRPContainer):126 class ICoursesContainer(IKOFAContainer): 127 127 """A container for faculties. 128 128 """ … … 133 133 """ 134 134 135 class ICourse(I SIRPObject):135 class ICourse(IKOFAObject): 136 136 """Representation of a course. 137 137 """ … … 186 186 ICourseAdd['code'].order = ICourse['code'].order 187 187 188 class ICertificate(I SIRPObject):188 class ICertificate(IKOFAObject): 189 189 """Representation of a certificate. 190 190 """ … … 248 248 ICertificateAdd['code'].order = ICertificate['code'].order 249 249 250 class ICertificatesContainer(I SIRPContainer):250 class ICertificatesContainer(IKOFAContainer): 251 251 """A container for certificates. 252 252 """ … … 257 257 """ 258 258 259 class ICertificateCourse(I SIRPObject):259 class ICertificateCourse(IKOFAObject): 260 260 """A certificatecourse is referring a course and provides some own 261 261 attributes.
Note: See TracChangeset for help on using the changeset viewer.