source: documentViewer/__init__.py @ 522:198b3ae3ea7e

Last change on this file since 522:198b3ae3ea7e was 522:198b3ae3ea7e, checked in by casties, 12 years ago

moved Annotator AuthTokenGenerator? to its own product.

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.