Diff for /ZSQLExtend/__init__.py between versions 1.6 and 1.8

version 1.6, 2005/02/09 20:10:42 version 1.8, 2012/09/03 13:06:11
Line 2  import ZSQLExtend Line 2  import ZSQLExtend
 import ZSQLMetaData  import ZSQLMetaData
 import ZSQLUpdate  import ZSQLUpdate
 import VLMAExtensions  import VLMAExtensions
   import Index
   
 def initialize(context):  def initialize(context):
     """initialize OSAS"""      """initialize ZSLQextend"""
     context.registerClass(      context.registerClass(
         ZSQLExtend.ZSQLExtendFolder,          ZSQLExtend.ZSQLExtendFolder,
         constructors = (          constructors = (
Line 53  def initialize(context): Line 54  def initialize(context):
           )            )
         )          )
   
       context.registerClass(
                             Index.IndexManager,
                             constructors =(
                                            Index.manage_addIndexManagerForm,
                                            Index.manage_addIndexManager
                                            )
                             )
   
 methods={  #methods={
     # We still need this one, at least for now, for both editing and  #    # We still need this one, at least for now, for both editing and
     # adding.  Ugh.  #    # adding.  Ugh.
     'SQLConnectionIDs': ZSQLExtend.showSQLConnectionIDs,  #   'SQLConnectionIDs': ZSQLExtend.showSQLConnectionIDs,
   #
     }  #   }

Removed from v.1.6  
changed lines
  Added in v.1.8


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