source: documentViewer/__init__.py @ 21:0af46e75de3c

Last change on this file since 21:0af46e75de3c was 21:0af46e75de3c, checked in by casties, 18 years ago

preliminary version 0.2

  • lots of stuff rewritten
  • new template system
  • still no access control
File size: 551 bytes
Line 
1import documentViewer
2
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        documentViewer.DocumentViewerTemplate,
16        constructors = (
17          documentViewer.manage_addDocumentViewerTemplateForm,
18          documentViewer.manage_addDocumentViewerTemplate
19          )
20        )
21   
Note: See TracBrowser for help on using the repository browser.