Annotation of OSAS/OSA_system/__init__.py, revision 1.1

1.1     ! dwinter     1: import OSAS_Root
        !             2: import OSAS_show
        !             3: 
        !             4: def initialize(context):
        !             5:     """initialize OSAS"""
        !             6:     context.registerClass(
        !             7:         OSAS_Root.OSAS_Root,
        !             8:         constructors = (
        !             9:           OSAS_Root.manage_AddOSAS_RootForm,
        !            10:           OSAS_Root.manage_AddOSAS_Root
        !            11:           )
        !            12:         )
        !            13:     
        !            14:     context.registerClass(
        !            15:         OSAS_show.OSAS_ShowOnline,
        !            16:         constructors = (
        !            17:           OSAS_show.manage_AddOSAS_ShowOnlineForm,
        !            18:           OSAS_show.manage_AddOSAS_ShowOnline
        !            19:           )
        !            20:         )
        !            21:     

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