mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
- 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:
parent
0cead3107d
commit
36a8fd00f5
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user