source: WAeUP_SRP/trunk/__init__.py @ 484

Last change on this file since 484 was 472, checked in by Henrik Bettermann, 18 years ago

admission renamed, now application

  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1#-*- mode: python; mode: fold -*-
2# $Id: __init__.py 472 2006-09-02 14:51:14Z henrik $
3from Products.CMFCore.utils import ContentInit, ToolInit
4from Products.CMFCore.DirectoryView import registerDirectory
5from Products.CMFCore import utils as cmfutils
6from Products.CMFCore.permissions import AddPortalContent
7
8from Products.GenericSetup import profile_registry
9from Products.GenericSetup import EXTENSION
10
11from Products.CPSCore.interfaces import ICPSSite
12
13# Only for CPS 3.4.1. In 3.4.2 and later this should be fixed.
14import PatchCPSDefaultImportExport
15import PatchCatalogToolXMLAdapter
16
17import Products.WAeUP_SRP.WAeUPPermissions
18
19import Widgets
20
21waeup_types = (
22    ("University",('University',)),
23    ("Academics",
24       ("AcademicsFolder",
25        "Certificate",
26        "CertificateCourse",
27        "Faculty",
28        "Department",
29        "Course",
30        "CertificateCourse",
31        )
32     ),
33     ("Accommodation",
34        ("AccoFolder",
35         "Accommodation",
36         )
37     ),
38     ("Students",
39        ("StudentsFolder",
40         "Student",
41         "StudentStudyCourse",
42         "StudentCourseResult",
43         "StudentApplication",
44         "StudentClearance",
45         "StudentPersonal",
46         "ScratchCardBatch",
47         "ScratchCardBatchesFolder",
48         "StudentStudyLevel",
49         "StudentSemester",
50         "StudentCourseResult",
51         # move to Academics later
52         "StudyLevel",
53         "Semester",
54         )
55      ),
56    )
57
58contentClasses = []
59cc = []
60for modu,names in waeup_types:
61    mod = __import__('Products.WAeUP_SRP.%(modu)s' % vars(),
62                globals(),
63                locals(),
64                ['*',]
65                )
66    for name in names:
67        #print name
68        contentClasses.append(getattr(mod,name))
69        cc.append(getattr(mod,"add%(name)s" % vars()))
70contentConstructors = tuple(cc)
71
72fti = [{} for t in range(len(contentConstructors))]
73
74registerDirectory('skins', globals())
75
76def initialize(registrar):
77    ContentInit('WAeUP Types',
78                content_types = contentClasses,
79                permission = AddPortalContent,
80                extra_constructors = contentConstructors,
81                fti = fti,
82                ).initialize(registrar)
83
84    # Extension profile registration
85    profile_registry.registerProfile(
86        'default',
87        'WAeUP_SRP',
88        "The WestAfrican e-University Project",
89        'profiles/default',
90        'WAeUP_SRP',
91        EXTENSION,
92        for_=ICPSSite)
93
Note: See TracBrowser for help on using the repository browser.