source: documentViewer/__init__.py @ 564:31f562fa7214

Last change on this file since 564:31f562fa7214 was 564:31f562fa7214, checked in by casties, 12 years ago

first version of MpiwgXmlTextServer?.

File size: 838 bytes
Line 
1import documentViewer
2import MpdlXmlTextServer
3import MpiwgXmlTextServer
4
5def 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.