13 changes: 13 additions & 0 deletions python/plugins/GdalTools/metadata.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[general]
name=GdalTools
description=Integrate GDAL tools into QGIS
category=Raster
version=1.2.29
qgisMinimumVersion=1.0

author=Giuseppe Sucameli (Faunalia)
email=brush.tyler@gmail.com

icon=icons/raster-info.png

class_name=GdalTools
13 changes: 13 additions & 0 deletions python/plugins/db_manager/metadata.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[general]
name=DB Manager
description=Manage your databases within QGis
category=Database
version=0.1.20
qgisMinimumVersion=1.5.0

author=Giuseppe Sucameli
email=brush.tyler@gmail.com

icon=icons/dbmanager.png

class_name=DBManagerPlugin
13 changes: 13 additions & 0 deletions python/plugins/fTools/metadata.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[general]
name=fTools
description=Tools for vector data analysis and management
category=Vector
version=0.6.2
qgisMinimumVersion=1.4.0

author=Carson Farmer
email=carson.farmer@gmail.com

icon=icons/logo_small.png

class_name=fToolsPlugin
13 changes: 13 additions & 0 deletions python/plugins/mapserver_export/metadata.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[general]
name=MapServer Export
description=Export a saved QGIS project file to a MapServer map file
category=Web
version=0.4.4
qgisMinimumVersion=1.0

author=Gary E. Sherman
email=sherman@mrcc.com

icon=mapserver_export.png

class_name=MapServerExport
13 changes: 13 additions & 0 deletions python/plugins/osm/metadata.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[general]
name=OpenStreetMap plugin
description=Viewer and editor for OpenStreetMap data
category=Web
version=0.5
qgisMinimumVersion=1.0

author=Martin Dobias
email=wonder.sk@gmail.com

icon=images/osm_load.png

class_name=OsmPlugin
13 changes: 13 additions & 0 deletions python/plugins/plugin_installer/metadata.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[general]
name=Plugin Installer
description=Downloads and installs QGIS python plugins
category=Plugins
version=1.2.1
qgisMinimumVersion=1.0

author=Borys Jurgiel
email=borysiasty@aster.pl

icon=plugin_installer.png

class_name=InstallerPlugin
6 changes: 3 additions & 3 deletions python/plugins/sextante/SextantePlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,19 +67,19 @@ def initGui(self):
self.menu.setTitle(QCoreApplication.translate("SEXTANTE", "Analysis"))

self.toolboxAction = QAction(QIcon(":/sextante/images/toolbox.png"),
QCoreApplication.translate("SEXTANTE", "&SEXTANTE Toolbox"),
QCoreApplication.translate("SEXTANTE", "&SEXTANTE toolbox"),
self.iface.mainWindow())
QObject.connect(self.toolboxAction, SIGNAL("triggered()"), self.openToolbox)
self.menu.addAction(self.toolboxAction)

self.modelerAction = QAction(QIcon(":/sextante/images/model.png"),
QCoreApplication.translate("SEXTANTE", "&SEXTANTE Modeler"),
QCoreApplication.translate("SEXTANTE", "&SEXTANTE modeler"),
self.iface.mainWindow())
QObject.connect(self.modelerAction, SIGNAL("triggered()"), self.openModeler)
self.menu.addAction(self.modelerAction)

self.historyAction = QAction(QIcon(":/sextante/images/history.gif"),
QCoreApplication.translate("SEXTANTE", "&SEXTANTE History and log"),
QCoreApplication.translate("SEXTANTE", "&SEXTANTE history and log"),
self.iface.mainWindow())
QObject.connect(self.historyAction, SIGNAL("triggered()"), self.openHistory)
self.menu.addAction(self.historyAction)
Expand Down
10 changes: 9 additions & 1 deletion python/plugins/sextante/gui/SextanteToolbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

import os
import sys
import subprocess

from PyQt4.QtCore import *
from PyQt4.QtGui import *
Expand Down Expand Up @@ -85,7 +86,14 @@ def setupUi(self):
QMetaObject.connectSlotsByName(self)

def configureProviders(self):
QDesktopServices.openUrl(QUrl(os.path.join(os.path.dirname(__file__), os.path.pardir) + "/help/3rdParty.html"))
#QDesktopServices.openUrl(QUrl(os.path.join(os.path.dirname(__file__), os.path.pardir) + "/help/3rdParty.html"))
filename = os.path.join(os.path.dirname(__file__), "..", "help", "3rdParty.html")
if os.name == "nt":
os.startfile(filename)
elif sys.platform == "darwin":
subprocess.Popen(('open', filename))
else:
subprocess.call(('xdg-open', filename))

def showPopupMenu(self,point):
item = self.algorithmTree.itemAt(point)
Expand Down
12 changes: 7 additions & 5 deletions python/plugins/sextante/metadata.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
[general]
name=SEXTANTE
description=SEXTANTE Geoprocessing Platform for QGIS
category=Analysis
version=1.0.8
icon=images/toolbox.png
qgisMinimumVersion=1.0
class_name=SextantePlugin
website=www.sextantegis.com

[author]
name=Victor Olaya
author=Victor Olaya
email=volayaf@gmail.com
website=www.sextantegis.com

icon=images/toolbox.png

class_name=SextantePlugin
14 changes: 4 additions & 10 deletions python/plugins/sextanteexampleprovider/metadata.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
# This file contains metadata for your plugin. Beginning
# with version 1.8 this is the preferred way to supply information about a
# plugin. The current method of embedding metadata in __init__.py will
# be supported until version 2.0

# This file should be included when you package your plugin.

[general]
name=SEXTANTE Example Provider
description=An example plugin that adds algorithms to SEXTANTE. Mainly created to guide developers in the process of creating plugins that add new capabilities to SEXTANTE
version=1.0
qgisMinimumVersion=1.0
class_name=SextanteExampleProviderPlugin
website=www.sextantegis.com
[author]

name=Victor Olaya
email=volayaf@gmail.com
website=www.sextantegis.com

class_name=SextanteExampleProviderPlugin