Line | |
---|
1 | import documentViewer |
---|
2 | import MpdlXmlTextServer |
---|
3 | import MpiwgXmlTextServer |
---|
4 | |
---|
5 | def initialize(context): |
---|
6 | """initialize ImageCollection""" |
---|
7 | context.registerClass( |
---|
8 | documentViewer.documentViewer, |
---|
9 | constructors = ( |
---|
10 | documentViewer.manage_AddDocumentViewerForm, |
---|
11 | documentViewer.manage_AddDocumentViewer |
---|
12 | ) |
---|
13 | ) |
---|
14 | |
---|
15 | context.registerClass( |
---|
16 | MpdlXmlTextServer.MpdlXmlTextServer, |
---|
17 | constructors = ( |
---|
18 | MpdlXmlTextServer.manage_addMpdlXmlTextServerForm, |
---|
19 | MpdlXmlTextServer.manage_addMpdlXmlTextServer |
---|
20 | ) |
---|
21 | ) |
---|
22 | |
---|
23 | context.registerClass( |
---|
24 | MpiwgXmlTextServer.MpiwgXmlTextServer, |
---|
25 | constructors = ( |
---|
26 | MpiwgXmlTextServer.manage_addMpiwgXmlTextServerForm, |
---|
27 | MpiwgXmlTextServer.manage_addMpiwgXmlTextServer |
---|
28 | ) |
---|
29 | ) |
---|
30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.