--- ZSQLExtend/__init__.py 2004/07/26 15:43:26 1.4 +++ ZSQLExtend/__init__.py 2007/03/08 17:00:48 1.7 @@ -1,5 +1,8 @@ import ZSQLExtend import ZSQLMetaData +import ZSQLUpdate +import VLMAExtensions +import Index def initialize(context): """initialize OSAS""" @@ -35,6 +38,30 @@ def initialize(context): ) ) + context.registerClass( + ZSQLUpdate.ZSQLUpdate, + constructors = ( + ZSQLUpdate.manage_addZSQLUpdateForm, + ZSQLUpdate.manage_addZSQLUpdate + ) + ) + + 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.