source: documentViewer/__init__.py @ 486:f2c5417b7ff4

elementtree
Last change on this file since 486:f2c5417b7ff4 was 486:f2c5417b7ff4, checked in by casties, 13 years ago

more new template stuff

File size: 569 bytes
Line 
1import documentViewer
2import MpdlXmlTextServer
3
4def initialize(context):
5    """initialize ImageCollection"""
6    context.registerClass(
7        documentViewer.documentViewer,
8        constructors = (
9          documentViewer.manage_AddDocumentViewerForm,
10          documentViewer.manage_AddDocumentViewer
11          )
12        )
13
14    context.registerClass(
15        MpdlXmlTextServer.MpdlXmlTextServer,
16        constructors = (
17          MpdlXmlTextServer.manage_addMpdlXmlTextServerForm,
18          MpdlXmlTextServer.manage_addMpdlXmlTextServer
19          )
20        )
21   
Note: See TracBrowser for help on using the repository browser.