view __init__.py @ 58:5ed0769f5ad3

more cleanup in kml generation points can be sorted now
author casties
date Thu, 21 Oct 2010 19:38:41 +0200
parents 29c822d15bc1
children 7f008e782563
line wrap: on
line source


import RestDbInterface
import RestDbJsonStore
import RestDbGisApi

def initialize(context):

    context.registerClass(
         RestDbInterface.RestDbInterface,
        constructors = (
          RestDbInterface.manage_addRestDbInterfaceForm,
          RestDbInterface.manage_addRestDbInterface
          )
        )

    context.registerClass(
         RestDbJsonStore.RestDbJsonStore,
        constructors = (
          RestDbJsonStore.manage_addRestDbJsonStoreForm,
          RestDbJsonStore.manage_addRestDbJsonStore
          )
        )

    context.registerClass(
         RestDbGisApi.RestDbGisApi,
        constructors = (
          RestDbGisApi.manage_addRestDbGisApiForm,
          RestDbGisApi.manage_addRestDbGisApi
          )
        )