annotate __init__.py @ 262:e7b3c7ab9eb5 new_pro_struct

getSubProjects takes archived (=1) too.
author casties
date Wed, 13 Aug 2014 12:25:34 +0200
parents 975a8d88e315
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
1 import MPIWGProjects
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
2 import MPIWGStaff
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
3 import MPIWGLink
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
4 import MPIWGTemplate
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
5 import MPIWGFeature
9
5db416602e85 new MPIWGDepartment class.
casties
parents: 2
diff changeset
6 import MPIWGDepartment
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
7 import MPIWGFolder
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
8 import MPIWGRoot
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
9
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
10
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
11 def initialize(context):
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
12 """initialize MPIWGWeb"""
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
13 context.registerClass(
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
14 MPIWGProjects.MPIWGProject,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
15 constructors = (
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
16 MPIWGProjects.manage_addMPIWGProjectForm,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
17 MPIWGProjects.manage_addMPIWGProject
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
18 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
19 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
20
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
21 context.registerClass(
27
9a75eb1b31b3 more work on projects.
casties
parents: 9
diff changeset
22 MPIWGProjects.MPIWGProjectFolder,
9a75eb1b31b3 more work on projects.
casties
parents: 9
diff changeset
23 constructors = (
9a75eb1b31b3 more work on projects.
casties
parents: 9
diff changeset
24 MPIWGProjects.manage_addMPIWGProjectFolderForm,
9a75eb1b31b3 more work on projects.
casties
parents: 9
diff changeset
25 MPIWGProjects.manage_addMPIWGProjectFolder
9a75eb1b31b3 more work on projects.
casties
parents: 9
diff changeset
26 )
9a75eb1b31b3 more work on projects.
casties
parents: 9
diff changeset
27 )
9a75eb1b31b3 more work on projects.
casties
parents: 9
diff changeset
28
9a75eb1b31b3 more work on projects.
casties
parents: 9
diff changeset
29 context.registerClass(
0
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
30 MPIWGLink.MPIWGLink,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
31 constructors = (
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
32 MPIWGLink.manage_addMPIWGLinkForm,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
33 MPIWGLink.manage_addMPIWGLink
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
34 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
35 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
36
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
37
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
38 context.registerClass(
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
39 MPIWGRoot.MPIWGRoot,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
40 constructors = (
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
41 MPIWGRoot.manage_addMPIWGRootForm,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
42 MPIWGRoot.manage_addMPIWGRoot
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
43 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
44 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
45
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
46 context.registerClass(
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
47 MPIWGTemplate.MPIWGTemplate,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
48 constructors = (
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
49 MPIWGTemplate.manage_addMPIWGTemplateForm,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
50 MPIWGTemplate.manage_addMPIWGTemplate
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
51 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
52 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
53
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
54 context.registerClass(
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
55 MPIWGFolder.MPIWGFolder,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
56 constructors = (
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
57 MPIWGFolder.manage_addMPIWGFolderForm,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
58 MPIWGFolder.manage_addMPIWGFolder
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
59 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
60 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
61
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
62 context.registerClass(
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
63 MPIWGFeature.MPIWGFeature,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
64 constructors = (
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
65 MPIWGFeature.manage_addMPIWGFeatureForm,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
66 MPIWGFeature.manage_addMPIWGFeature
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
67 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
68 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
69
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
70 context.registerClass(
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
71 MPIWGStaff.MPIWGStaff,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
72 constructors = (
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
73 MPIWGStaff.manage_addMPIWGStaffForm,
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
74 MPIWGStaff.manage_addMPIWGStaff
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
75 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
76 )
bca61e893fcc first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff changeset
77
2
ddf6c1a27a4b new version with main_template and css in product.
casties
parents: 0
diff changeset
78 context.registerClass(
ddf6c1a27a4b new version with main_template and css in product.
casties
parents: 0
diff changeset
79 MPIWGStaff.MPIWGStaffFolder,
ddf6c1a27a4b new version with main_template and css in product.
casties
parents: 0
diff changeset
80 constructors = (
ddf6c1a27a4b new version with main_template and css in product.
casties
parents: 0
diff changeset
81 MPIWGStaff.manage_addMPIWGStaffFolderForm,
ddf6c1a27a4b new version with main_template and css in product.
casties
parents: 0
diff changeset
82 MPIWGStaff.manage_addMPIWGStaffFolder
ddf6c1a27a4b new version with main_template and css in product.
casties
parents: 0
diff changeset
83 )
ddf6c1a27a4b new version with main_template and css in product.
casties
parents: 0
diff changeset
84 )
ddf6c1a27a4b new version with main_template and css in product.
casties
parents: 0
diff changeset
85
9
5db416602e85 new MPIWGDepartment class.
casties
parents: 2
diff changeset
86 context.registerClass(
5db416602e85 new MPIWGDepartment class.
casties
parents: 2
diff changeset
87 MPIWGDepartment.MPIWGDepartment,
5db416602e85 new MPIWGDepartment class.
casties
parents: 2
diff changeset
88 constructors = (
5db416602e85 new MPIWGDepartment class.
casties
parents: 2
diff changeset
89 MPIWGDepartment.manage_addMPIWGDepartmentForm,
5db416602e85 new MPIWGDepartment class.
casties
parents: 2
diff changeset
90 MPIWGDepartment.manage_addMPIWGDepartment
5db416602e85 new MPIWGDepartment class.
casties
parents: 2
diff changeset
91 )
5db416602e85 new MPIWGDepartment class.
casties
parents: 2
diff changeset
92 )
5db416602e85 new MPIWGDepartment class.
casties
parents: 2
diff changeset
93