--- ZSQLExtend/__init__.py 2005/01/23 15:16:12 1.5 +++ ZSQLExtend/__init__.py 2012/09/03 13:06:11 1.8 @@ -1,9 +1,11 @@ import ZSQLExtend import ZSQLMetaData import ZSQLUpdate +import VLMAExtensions +import Index def initialize(context): - """initialize OSAS""" + """initialize ZSLQextend""" context.registerClass( ZSQLExtend.ZSQLExtendFolder, constructors = ( @@ -44,9 +46,25 @@ def initialize(context): ) ) -methods={ - # We still need this one, at least for now, for both editing and - # adding. Ugh. - 'SQLConnectionIDs': ZSQLExtend.showSQLConnectionIDs, + context.registerClass( + VLMAExtensions.VLMATriples, + constructors = ( + VLMAExtensions.manage_addVLMATriplesForm, + VLMAExtensions.manage_addVLMATriples + ) + ) - } + context.registerClass( + Index.IndexManager, + constructors =( + Index.manage_addIndexManagerForm, + Index.manage_addIndexManager + ) + ) + +#methods={ +# # We still need this one, at least for now, for both editing and +# # adding. Ugh. +# 'SQLConnectionIDs': ZSQLExtend.showSQLConnectionIDs, +# +# }