[199] | 1 | #-*- mode: python; mode: fold -*- |
---|
[204] | 2 | # $Id: __init__.py 265 2006-06-23 08:58:00Z lregebro $ |
---|
[206] | 3 | from Products.CMFCore.utils import ContentInit, ToolInit |
---|
[19] | 4 | from Products.CMFCore.DirectoryView import registerDirectory |
---|
| 5 | from Products.CMFCore import utils as cmfutils |
---|
| 6 | from Products.CMFCore.CMFCorePermissions import AddPortalContent |
---|
| 7 | |
---|
[199] | 8 | from Products.GenericSetup import profile_registry |
---|
| 9 | from Products.GenericSetup import EXTENSION |
---|
[19] | 10 | |
---|
[199] | 11 | from Products.CPSCore.interfaces import ICPSSite |
---|
| 12 | |
---|
[265] | 13 | # Only for CPS 3.4.1. In 3.4.2 and later this should be fixed. |
---|
[263] | 14 | import PatchCPSDefaultImportExport |
---|
| 15 | |
---|
[256] | 16 | import Products.WAeUP.WAeUPPermissions |
---|
[200] | 17 | from Products.WAeUP.University import University, addUniversity |
---|
| 18 | from Products.WAeUP.Accommodation import AccoFolder, addAccoFolder |
---|
| 19 | from Products.WAeUP.Accommodation import Accommodation, addAccommodation |
---|
[256] | 20 | #from Products.WAeUP.Academics import SCFolder, addSCFolder |
---|
| 21 | from Products.WAeUP.Academics import Certificate, addCertificate |
---|
| 22 | from Products.WAeUP.Academics import CertificateCourse, addCertificateCourse |
---|
[238] | 23 | from Products.WAeUP.Academics import Faculty, addFaculty |
---|
| 24 | from Products.WAeUP.Academics import Department, addDepartment |
---|
| 25 | from Products.WAeUP.Academics import Course, addCourse |
---|
| 26 | from Products.WAeUP.Academics import CourseTicket, addCourseTicket |
---|
[256] | 27 | from Products.WAeUP.Academics import CertificateCourse, addCertificateCourse |
---|
[200] | 28 | from Products.WAeUP.Students import Student, addStudent |
---|
| 29 | from Products.WAeUP.Students import StudentPersonal, addStudentPersonal |
---|
| 30 | from Products.WAeUP.Students import StudentEligibility, addStudentEligibility |
---|
| 31 | from Products.WAeUP.Students import StudentDocuments, addStudentDocuments |
---|
| 32 | from Products.WAeUP.Students import Jamb, addJamb |
---|
| 33 | from Products.WAeUP.Students import StudyLevel, addStudyLevel |
---|
| 34 | from Products.WAeUP.Students import Semester, addSemester |
---|
| 35 | |
---|
| 36 | |
---|
[59] | 37 | import Widgets |
---|
[19] | 38 | |
---|
[200] | 39 | contentClasses = ( |
---|
| 40 | University, |
---|
[256] | 41 | #SCFolder, |
---|
| 42 | Certificate, |
---|
| 43 | CertificateCourse, |
---|
[200] | 44 | Faculty, |
---|
| 45 | Department, |
---|
| 46 | Course, |
---|
| 47 | CourseTicket, |
---|
[256] | 48 | CertificateCourse, |
---|
[200] | 49 | AccoFolder, |
---|
| 50 | Accommodation, |
---|
| 51 | Student, |
---|
| 52 | StudentPersonal, |
---|
| 53 | StudentEligibility, |
---|
| 54 | StudentDocuments, |
---|
| 55 | Jamb, |
---|
| 56 | StudyLevel, |
---|
| 57 | Semester, |
---|
| 58 | ) |
---|
| 59 | |
---|
| 60 | contentConstructors = ( |
---|
| 61 | addUniversity, |
---|
[256] | 62 | #addSCFolder, |
---|
| 63 | addCertificate, |
---|
| 64 | addCertificateCourse, |
---|
[200] | 65 | addFaculty, |
---|
| 66 | addDepartment, |
---|
| 67 | addCourse, |
---|
| 68 | addCourseTicket, |
---|
[256] | 69 | addCertificateCourse, |
---|
[200] | 70 | addAccoFolder, |
---|
| 71 | addAccommodation, |
---|
| 72 | addStudent, |
---|
| 73 | addStudentPersonal, |
---|
| 74 | addStudentEligibility, |
---|
| 75 | addStudentDocuments, |
---|
| 76 | addJamb, |
---|
| 77 | addStudyLevel, |
---|
| 78 | addSemester, |
---|
| 79 | ) |
---|
| 80 | |
---|
| 81 | fti = ( |
---|
| 82 | {}, # University |
---|
[256] | 83 | #{}, #SCFolder |
---|
| 84 | {}, #Certificate |
---|
| 85 | {}, #CertificateCourse |
---|
[200] | 86 | {}, # Faculty |
---|
| 87 | {}, # Department |
---|
| 88 | {}, # Course |
---|
| 89 | {}, # CourseTicket |
---|
[256] | 90 | {}, # CertificateCourse |
---|
[200] | 91 | {}, # AccoFolder |
---|
| 92 | {}, # Accommodation |
---|
| 93 | {}, # Student, |
---|
| 94 | {}, # StudentPersonal, |
---|
| 95 | {}, # StudentEligibility, |
---|
| 96 | {}, # StudentDocuments, |
---|
| 97 | {}, # Jamb, |
---|
| 98 | {}, # StudyLevel, |
---|
| 99 | {}, # Semester, |
---|
| 100 | ) |
---|
| 101 | |
---|
[199] | 102 | registerDirectory('skins', globals()) |
---|
[197] | 103 | |
---|
[199] | 104 | def initialize(registrar): |
---|
[200] | 105 | ContentInit('WAeUP Types', |
---|
| 106 | content_types = contentClasses, |
---|
| 107 | permission = AddPortalContent, |
---|
| 108 | extra_constructors = contentConstructors, |
---|
| 109 | fti = fti, |
---|
| 110 | ).initialize(registrar) |
---|
| 111 | |
---|
[199] | 112 | # Extension profile registration |
---|
| 113 | profile_registry.registerProfile( |
---|
| 114 | 'default', |
---|
| 115 | 'WAeUP', |
---|
| 116 | "The WestAfrican e-University Project", |
---|
| 117 | 'profiles/default', |
---|
| 118 | 'WAeUP', |
---|
| 119 | EXTENSION, |
---|
| 120 | for_=ICPSSite) |
---|
[84] | 121 | |
---|