Skip to content

Commit 88844db

Browse files
author
wonder
committedNov 17, 2008
- 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@9654 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 84eafcc commit 88844db

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎python/plugins/mapserver_export/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,17 @@
1818
***************************************************************************/
1919
This script initializes the plugin, making it known to QGIS.
2020
"""
21-
# load MapServerExport class from file mapserverexport.py
22-
from mapserverexport import MapServerExport
21+
2322
def name():
2423
return "MapServer Export"
2524
def description():
2625
return "Export a saved QGIS project file to a MapServer map file"
2726
def version():
2827
return "Version 0.1"
28+
def qgisMinimumVersion():
29+
return "1.0"
2930
def classFactory(iface):
31+
# load MapServerExport class from file mapserverexport.py
32+
from mapserverexport import MapServerExport
3033
return MapServerExport(iface)
3134

0 commit comments

Comments
 (0)
Please sign in to comment.