[199] | 1 | #-*- mode: python; mode: fold -*- |
---|
[204] | 2 | # $Id: __init__.py 639 2006-10-10 13:48:43Z joachim $ |
---|
[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 |
---|
[452] | 6 | from Products.CMFCore.permissions import AddPortalContent |
---|
[19] | 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 | |
---|
[511] | 13 | import PatchCPSWorkflowWorkflowDefinition |
---|
| 14 | import PatchCatalogToolXMLAdapter |
---|
[537] | 15 | import PatchCPSSchemasAttributeStorageAdapter |
---|
[265] | 16 | # Only for CPS 3.4.1. In 3.4.2 and later this should be fixed. |
---|
[263] | 17 | import PatchCPSDefaultImportExport |
---|
| 18 | |
---|
[274] | 19 | import Products.WAeUP_SRP.WAeUPPermissions |
---|
[200] | 20 | |
---|
[59] | 21 | import Widgets |
---|
[19] | 22 | |
---|
[452] | 23 | waeup_types = ( |
---|
[454] | 24 | ("University",('University',)), |
---|
| 25 | ("Academics", |
---|
| 26 | ("AcademicsFolder", |
---|
| 27 | "Certificate", |
---|
| 28 | "CertificateCourse", |
---|
| 29 | "Faculty", |
---|
| 30 | "Department", |
---|
| 31 | "Course", |
---|
| 32 | "CertificateCourse", |
---|
[565] | 33 | "StudyLevel", |
---|
[454] | 34 | ) |
---|
| 35 | ), |
---|
| 36 | ("Accommodation", |
---|
| 37 | ("AccoFolder", |
---|
[622] | 38 | "AccoHall", |
---|
[454] | 39 | ) |
---|
| 40 | ), |
---|
| 41 | ("Students", |
---|
| 42 | ("StudentsFolder", |
---|
| 43 | "Student", |
---|
[639] | 44 | "StudentAccommodation", |
---|
[454] | 45 | "StudentStudyCourse", |
---|
[464] | 46 | "StudentCourseResult", |
---|
[472] | 47 | "StudentApplication", |
---|
[454] | 48 | "StudentClearance", |
---|
| 49 | "StudentPersonal", |
---|
[464] | 50 | "StudentStudyLevel", |
---|
[565] | 51 | #"StudentSemester", |
---|
[580] | 52 | "Semester", |
---|
[467] | 53 | "StudentCourseResult", |
---|
[464] | 54 | # move to Academics later |
---|
[565] | 55 | #"Semester", |
---|
[454] | 56 | ) |
---|
| 57 | ), |
---|
[488] | 58 | ("ScratchCards", |
---|
| 59 | ("ScratchCardBatch", |
---|
| 60 | "ScratchCardBatchesFolder", |
---|
| 61 | ), |
---|
| 62 | ) |
---|
[200] | 63 | ) |
---|
| 64 | |
---|
[452] | 65 | contentClasses = [] |
---|
| 66 | cc = [] |
---|
[454] | 67 | for modu,names in waeup_types: |
---|
| 68 | mod = __import__('Products.WAeUP_SRP.%(modu)s' % vars(), |
---|
[452] | 69 | globals(), |
---|
| 70 | locals(), |
---|
[454] | 71 | ['*',] |
---|
[452] | 72 | ) |
---|
[454] | 73 | for name in names: |
---|
| 74 | #print name |
---|
| 75 | contentClasses.append(getattr(mod,name)) |
---|
| 76 | cc.append(getattr(mod,"add%(name)s" % vars())) |
---|
| 77 | contentConstructors = tuple(cc) |
---|
[200] | 78 | |
---|
[440] | 79 | fti = [{} for t in range(len(contentConstructors))] |
---|
[200] | 80 | |
---|
[199] | 81 | registerDirectory('skins', globals()) |
---|
[197] | 82 | |
---|
[199] | 83 | def initialize(registrar): |
---|
[200] | 84 | ContentInit('WAeUP Types', |
---|
| 85 | content_types = contentClasses, |
---|
| 86 | permission = AddPortalContent, |
---|
| 87 | extra_constructors = contentConstructors, |
---|
| 88 | fti = fti, |
---|
| 89 | ).initialize(registrar) |
---|
| 90 | |
---|
[199] | 91 | # Extension profile registration |
---|
| 92 | profile_registry.registerProfile( |
---|
| 93 | 'default', |
---|
[274] | 94 | 'WAeUP_SRP', |
---|
[199] | 95 | "The WestAfrican e-University Project", |
---|
| 96 | 'profiles/default', |
---|
[274] | 97 | 'WAeUP_SRP', |
---|
[199] | 98 | EXTENSION, |
---|
| 99 | for_=ICPSSite) |
---|
[84] | 100 | |
---|