File:  [Repository] / documentViewer / __init__.py
Revision 1.3.2.1: download - view: text, annotated - select for diffs - revision graph
Mon Aug 22 15:00:28 2011 UTC (12 years, 9 months ago) by casties
Branches: elementtree
Diff to: branchpoint 1.3: preferred, colored
more new template stuff

import documentViewer
import MpdlXmlTextServer

def initialize(context):
    """initialize ImageCollection"""
    context.registerClass(
        documentViewer.documentViewer,
        constructors = (
          documentViewer.manage_AddDocumentViewerForm,
          documentViewer.manage_AddDocumentViewer
          )
        )

    context.registerClass(
        MpdlXmlTextServer.MpdlXmlTextServer,
        constructors = (
          MpdlXmlTextServer.manage_addMpdlXmlTextServerForm,
          MpdlXmlTextServer.manage_addMpdlXmlTextServer
          )
        )
    

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>