Diff for /MPIWGWeb/__init__.py between versions 1.1 and 1.2.2.2

version 1.1, 2004/02/04 10:03:33 version 1.2.2.2, 2006/08/27 05:40:45
Line 1 Line 1
 import MPIWGProjects  import MPIWGProjects
 import MPIWGStaff  import MPIWGStaff
   
   from nameSplitter import nameSplitter
   
 def initialize(context):  def initialize(context):
     """initialize OSAS"""      """initialize OSAS"""
     context.registerClass(      context.registerClass(
Line 11  def initialize(context): Line 13  def initialize(context):
           )            )
         )          )
   
       context.registerClass(
           MPIWGProjects.MPIWGLink,
           constructors = (
             MPIWGProjects.manage_addMPIWGLinkForm,
             MPIWGProjects.manage_addMPIWGLink
             )
           )
   
         
     context.registerClass(      context.registerClass(
         MPIWGProjects.MPIWGRoot,          MPIWGProjects.MPIWGRoot,
Line 20  def initialize(context): Line 30  def initialize(context):
           )            )
         )          )
   
       context.registerClass(
           MPIWGProjects.MPIWGTemplate,
           constructors = (
             MPIWGProjects.manage_addMPIWGTemplateForm,
             MPIWGProjects.manage_addMPIWGTemplate
             )
           )
   
     context.registerClass(      context.registerClass(
         MPIWGStaff.MPIWGStaff,          MPIWGStaff.MPIWGStaff,
         constructors = (          constructors = (

Removed from v.1.1  
changed lines
  Added in v.1.2.2.2


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