We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 0cead31 commit 36a8fd0Copy full SHA for 36a8fd0
python/plugins/mapserver_export/__init__.py
@@ -18,14 +18,17 @@
18
***************************************************************************/
19
This script initializes the plugin, making it known to QGIS.
20
"""
21
-# load MapServerExport class from file mapserverexport.py
22
-from mapserverexport import MapServerExport
+
23
def name():
24
return "MapServer Export"
25
def description():
26
return "Export a saved QGIS project file to a MapServer map file"
27
def version():
28
return "Version 0.1"
+def qgisMinimumVersion():
29
+ return "1.0"
30
def classFactory(iface):
31
+ # load MapServerExport class from file mapserverexport.py
32
+ from mapserverexport import MapServerExport
33
return MapServerExport(iface)
34
0 commit comments