jan: thuban/Extensions/export_shapefile __init__.py,NONE,1.1
cvs@intevation.de
cvs at intevation.de
Thu Aug 11 23:32:56 CEST 2005
Author: jan
Update of /thubanrepository/thuban/Extensions/export_shapefile
In directory doto:/tmp/cvs-serv10162
Added Files:
__init__.py
Log Message:
Initialize the export_shapefile extension.
--- NEW FILE: __init__.py ---
# Copyright (c) 2005 by Intevation GmbH
# Authors:
# Jan-Oliver Wagner <jan at intevation.de> (2005)
#
# This program is free software under the GPL (>=v2)
# Read the file COPYING coming with Thuban for details.
# perform the registration of the extension
from Thuban import _
from Thuban.UI.extensionregistry import ExtensionDesc, ext_registry
def init():
"""Initialize storeshape extension module."""
import export_shapefile
return None
ext_registry.add(ExtensionDesc(
name = 'export_shapefile',
version = '0.1.0',
authors= [ 'Jan-Oliver Wagner' ],
copyright = '2005 Intevation GmbH',
desc = _("Exports the selected layer as a Shapefile."),
init_callback = init))
More information about the Thuban-devel
mailing list
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)