- set mapserver export plugin as compatible

- move import statement to classFactory() to allow faster QGIS startup


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9654 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
wonder 2008-11-17 16:11:11 +00:00
parent 0cead3107d
commit 36a8fd00f5

View File

@ -18,14 +18,17 @@
***************************************************************************/
This script initializes the plugin, making it known to QGIS.
"""
# load MapServerExport class from file mapserverexport.py
from mapserverexport import MapServerExport
def name():
return "MapServer Export"
def description():
return "Export a saved QGIS project file to a MapServer map file"
def version():
return "Version 0.1"
def qgisMinimumVersion():
return "1.0"
def classFactory(iface):
# load MapServerExport class from file mapserverexport.py
from mapserverexport import MapServerExport
return MapServerExport(iface)