Changeset 12234 for main/kofacustom.pcn/trunk/src/kofacustom/pcn/university
- Timestamp:
- 14 Dec 2014, 21:48:41 (10 years ago)
- Location:
- main/kofacustom.pcn/trunk/src/kofacustom/pcn/university
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.pcn/trunk/src/kofacustom/pcn/university/batching.py
r11840 r12234 1 1 from waeup.kofa.university.batching import FacultyProcessor 2 from kofacustom.pcn.university.faculty import I Faculty2 from kofacustom.pcn.university.faculty import ICustomFaculty 3 3 4 4 class FacultyProcessor(FacultyProcessor): 5 5 """A batch processor for IFaculty objects. 6 6 """ 7 iface = I Faculty7 iface = ICustomFaculty -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/university/faculty.py
r11841 r12234 24 24 25 25 26 class I Faculty(IKofaContainer):26 class ICustomFaculty(IKofaContainer): 27 27 """Representation of a university faculty. 28 28 """ … … 61 61 """A university faculty. 62 62 """ 63 grok.implements(I Faculty)63 grok.implements(ICustomFaculty) 64 64 65 65 local_roles = [ … … 91 91 return implementedBy(CustomFaculty) 92 92 93 class I Department(IKofaObject):93 class ICustomDepartment(IKofaObject): 94 94 """Representation of a department. 95 95 """ … … 126 126 certificates = Attribute("A container for certificates.") 127 127 128 128 129 class CustomDepartment(Department): 129 130 """A university department. 130 131 """ 131 grok.implements(I Department)132 grok.implements(ICustomDepartment) 132 133 133 134 local_roles = [
Note: See TracChangeset for help on using the changeset viewer.