source: WAeUP_SRP/base/__init__.py @ 3294

Last change on this file since 3294 was 3277, checked in by joachim, 17 years ago

implemented new Upload functionallity

  • Property svn:keywords set to Id
File size: 3.6 KB
RevLine 
[199]1#-*- mode: python; mode: fold -*-
[204]2# $Id: __init__.py 3277 2008-03-07 08:12:02Z joachim $
[206]3from Products.CMFCore.utils import ContentInit, ToolInit
[19]4from Products.CMFCore.DirectoryView import registerDirectory
5from Products.CMFCore import utils as cmfutils
[452]6from Products.CMFCore.permissions import AddPortalContent
[19]7
[199]8from Products.GenericSetup import profile_registry
9from Products.GenericSetup import EXTENSION
[19]10
[199]11from Products.CPSCore.interfaces import ICPSSite
[2094]12from Products.CPSDirectory.DirectoryTool import DirectoryTypeRegistry
[199]13
[511]14import PatchCPSWorkflowWorkflowDefinition
[2305]15import PatchCatalogToolSearchResults
[511]16import PatchCatalogToolXMLAdapter
[537]17import PatchCPSSchemasAttributeStorageAdapter
[1080]18import PatchCPSSchemasDataModel
[1350]19import PatchCPSSchemasVocabulariesTool
[918]20import PatchCPSMembershipTool
[881]21import PatchCPSUserFolderUserFolder
[933]22import PatchCPSStackingDirectoryStorageAdapter
[867]23import PatchBasicWidgetsCPSStringWidget
[1804]24import PatchExtendedWidgetsCPSDateTimeWidget
[1065]25import PatchBasicWidgetsUnprepare
[1812]26import PatchFasterSessionData
[1934]27import PatchQueueCatalogProcessQueue
[2039]28import PatchZCatalogCatalogUpdateMetadata
[265]29# Only for CPS 3.4.1. In 3.4.2 and later this should be fixed.
[263]30import PatchCPSDefaultImportExport
[1737]31import PatchRenderActionIcon
[1845]32#import PatchZODBConnectionOpen
[2178]33import PatchLocalizerMessageCatalog_gettext
[274]34import Products.WAeUP_SRP.WAeUPPermissions
[828]35import WAeUPTool
[200]36
[59]37import Widgets
[828]38tools = (WAeUPTool.WAeUPTool,)
[19]39
[452]40waeup_types = (
[454]41    ("University",('University',)),
42    ("Academics",
43       ("AcademicsFolder",
44        "Certificate",
45        "CertificateCourse",
46        "Faculty",
47        "Department",
48        "Course",
49        "CertificateCourse",
[565]50        "StudyLevel",
[454]51        )
52     ),
53     ("Accommodation",
54        ("AccoFolder",
[622]55         "AccoHall",
[454]56         )
57     ),
[1226]58     ("Payment",
59        ("PaymentsFolder",
60         "Payment",
61         )
62     ),
[454]63     ("Students",
64        ("StudentsFolder",
65         "Student",
[639]66         "StudentAccommodation",
[454]67         "StudentStudyCourse",
[464]68         "StudentCourseResult",
[472]69         "StudentApplication",
[758]70         "StudentPume",
[454]71         "StudentClearance",
72         "StudentPersonal",
[464]73         "StudentStudyLevel",
[760]74         #"Semester",
[467]75         "StudentCourseResult",
[464]76         # move to Academics later
[565]77         #"Semester",
[454]78         )
79      ),
[488]80     ("ScratchCards",
81         ("ScratchCardBatch",
[2013]82          "ScratchCardBatchesFolder",
83         )
84     ),
85     ("Documents",
86        ("DocumentsFolder",
87         "WAeUPDocument",
88        )
[2914]89     ),
[3277]90     ("Upload",
91        ("UploadsFolder",
92         "Upload",
93         )
94     ),
[200]95    )
96
[452]97contentClasses = []
98cc = []
[454]99for modu,names in waeup_types:
100    mod = __import__('Products.WAeUP_SRP.%(modu)s' % vars(),
[452]101                globals(),
102                locals(),
[454]103                ['*',]
[452]104                )
[454]105    for name in names:
106        #print name
107        contentClasses.append(getattr(mod,name))
108        cc.append(getattr(mod,"add%(name)s" % vars()))
109contentConstructors = tuple(cc)
[200]110
[440]111fti = [{} for t in range(len(contentConstructors))]
[200]112
[199]113registerDirectory('skins', globals())
[197]114
[199]115def initialize(registrar):
[828]116    ToolInit('WAeUP Tool',
117              tools=tools,
118              icon='tool.gif',
119              ).initialize(registrar)
[200]120    ContentInit('WAeUP Types',
121                content_types = contentClasses,
122                permission = AddPortalContent,
123                extra_constructors = contentConstructors,
124                fti = fti,
125                ).initialize(registrar)
126
[199]127    # Extension profile registration
128    profile_registry.registerProfile(
129        'default',
[274]130        'WAeUP_SRP',
[199]131        "The WestAfrican e-University Project",
132        'profiles/default',
[274]133        'WAeUP_SRP',
[199]134        EXTENSION,
135        for_=ICPSSite)
[2094]136##    DirectoryTypeRegistry.register(WAeUPTables.Applicants)
[84]137
Note: See TracBrowser for help on using the repository browser.