diff --git a/python/plugins/sextante/SextantePlugin.py b/python/plugins/sextante/SextantePlugin.py index d280b53972a..310aee9c9d4 100644 --- a/python/plugins/sextante/SextantePlugin.py +++ b/python/plugins/sextante/SextantePlugin.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SextantePlugin.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os, sys import inspect diff --git a/python/plugins/sextante/__init__.py b/python/plugins/sextante/__init__.py index cb37569328f..a08130b836e 100644 --- a/python/plugins/sextante/__init__.py +++ b/python/plugins/sextante/__init__.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + __init__.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + def name(): return "SEXTANTE" diff --git a/python/plugins/sextante/core/AlgorithmProvider.py b/python/plugins/sextante/core/AlgorithmProvider.py index e0fe0d45e9c..9aa0e41db37 100644 --- a/python/plugins/sextante/core/AlgorithmProvider.py +++ b/python/plugins/sextante/core/AlgorithmProvider.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + AlgorithmProvider.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.core.SextanteConfig import Setting, SextanteConfig import os from PyQt4 import QtGui diff --git a/python/plugins/sextante/core/GeoAlgorithmExecutionException.py b/python/plugins/sextante/core/GeoAlgorithmExecutionException.py index 97eab5ff882..e751155b868 100644 --- a/python/plugins/sextante/core/GeoAlgorithmExecutionException.py +++ b/python/plugins/sextante/core/GeoAlgorithmExecutionException.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + GeoAlgorithmExecutionException.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + class GeoAlgorithmExecutionException(Exception): def __init__(self, msg): diff --git a/python/plugins/sextante/core/LayerExporter.py b/python/plugins/sextante/core/LayerExporter.py index badd6323c7f..b93350d0cf3 100644 --- a/python/plugins/sextante/core/LayerExporter.py +++ b/python/plugins/sextante/core/LayerExporter.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + LayerExporter.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.core.SextanteConfig import SextanteConfig from sextante.core.SextanteUtils import SextanteUtils from qgis.core import * diff --git a/python/plugins/sextante/core/QGisLayers.py b/python/plugins/sextante/core/QGisLayers.py index e98ed43ea73..e32712c64c7 100644 --- a/python/plugins/sextante/core/QGisLayers.py +++ b/python/plugins/sextante/core/QGisLayers.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + QGisLayers.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from qgis.core import * from PyQt4.QtCore import * from PyQt4.QtGui import * diff --git a/python/plugins/sextante/core/Sextante.py b/python/plugins/sextante/core/Sextante.py index a65676115bc..03224fdd9ad 100644 --- a/python/plugins/sextante/core/Sextante.py +++ b/python/plugins/sextante/core/Sextante.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + Sextante.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtCore import * from PyQt4.QtGui import * from sextante.saga.SagaAlgorithmProvider import SagaAlgorithmProvider diff --git a/python/plugins/sextante/core/SextanteConfig.py b/python/plugins/sextante/core/SextanteConfig.py index 6d753b23de5..c42dd88aac7 100644 --- a/python/plugins/sextante/core/SextanteConfig.py +++ b/python/plugins/sextante/core/SextanteConfig.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SextanteConfig.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.core.SextanteUtils import SextanteUtils import os.path from PyQt4 import QtGui diff --git a/python/plugins/sextante/core/SextanteLog.py b/python/plugins/sextante/core/SextanteLog.py index 58ba464f827..662b95cee46 100644 --- a/python/plugins/sextante/core/SextanteLog.py +++ b/python/plugins/sextante/core/SextanteLog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SextanteLog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import datetime import os from sextante.core.SextanteUtils import SextanteUtils diff --git a/python/plugins/sextante/core/SextanteResults.py b/python/plugins/sextante/core/SextanteResults.py index 7bd01f42b20..a3f61cbc96a 100644 --- a/python/plugins/sextante/core/SextanteResults.py +++ b/python/plugins/sextante/core/SextanteResults.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SextanteResults.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + class SextanteResults(): results = [] diff --git a/python/plugins/sextante/core/SextanteUtils.py b/python/plugins/sextante/core/SextanteUtils.py index 11356b26a87..405f04ea8c3 100644 --- a/python/plugins/sextante/core/SextanteUtils.py +++ b/python/plugins/sextante/core/SextanteUtils.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SextanteUtils.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os import time import sys diff --git a/python/plugins/sextante/core/SextanteVectorWriter.py b/python/plugins/sextante/core/SextanteVectorWriter.py index 4fafbf7164c..bc5b12cafbe 100644 --- a/python/plugins/sextante/core/SextanteVectorWriter.py +++ b/python/plugins/sextante/core/SextanteVectorWriter.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SextanteVectorWriter.py + --------------------- + Date : September 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'September 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtCore import * from qgis.core import * diff --git a/python/plugins/sextante/core/WrongHelpFileException.py b/python/plugins/sextante/core/WrongHelpFileException.py index 8aa86b8ecd2..699c624353e 100644 --- a/python/plugins/sextante/core/WrongHelpFileException.py +++ b/python/plugins/sextante/core/WrongHelpFileException.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + WrongHelpFileException.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + class WrongHelpFileException(Exception): def __init__(self, msg): diff --git a/python/plugins/sextante/grass/DefineGrassRegionAction.py b/python/plugins/sextante/grass/DefineGrassRegionAction.py index 4c730da4562..d7d84841354 100644 --- a/python/plugins/sextante/grass/DefineGrassRegionAction.py +++ b/python/plugins/sextante/grass/DefineGrassRegionAction.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + DefineGrassRegionAction.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from PyQt4 import QtGui, QtCore from PyQt4.QtCore import * diff --git a/python/plugins/sextante/grass/DefineGrassRegionFromLayerAction.py b/python/plugins/sextante/grass/DefineGrassRegionFromLayerAction.py index 16f9095e12c..531b2566e41 100644 --- a/python/plugins/sextante/grass/DefineGrassRegionFromLayerAction.py +++ b/python/plugins/sextante/grass/DefineGrassRegionFromLayerAction.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + DefineGrassRegionFromLayerAction.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from PyQt4 import QtGui, QtCore from PyQt4.QtCore import * diff --git a/python/plugins/sextante/grass/GrassAlgorithm.py b/python/plugins/sextante/grass/GrassAlgorithm.py index f73d0322742..bf4b7b277a2 100644 --- a/python/plugins/sextante/grass/GrassAlgorithm.py +++ b/python/plugins/sextante/grass/GrassAlgorithm.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + GrassAlgorithm.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from qgis.core import * from PyQt4.QtCore import * diff --git a/python/plugins/sextante/grass/GrassAlgorithmProvider.py b/python/plugins/sextante/grass/GrassAlgorithmProvider.py index 7d8730863ce..6ae56767dc4 100644 --- a/python/plugins/sextante/grass/GrassAlgorithmProvider.py +++ b/python/plugins/sextante/grass/GrassAlgorithmProvider.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + GrassAlgorithmProvider.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from PyQt4.QtCore import * from PyQt4.QtGui import * diff --git a/python/plugins/sextante/grass/GrassUtils.py b/python/plugins/sextante/grass/GrassUtils.py index 6edc253bc92..c0a693da82c 100644 --- a/python/plugins/sextante/grass/GrassUtils.py +++ b/python/plugins/sextante/grass/GrassUtils.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + GrassUtils.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from sextante.core.SextanteUtils import SextanteUtils, mkdir import subprocess diff --git a/python/plugins/sextante/grass/nviz.py b/python/plugins/sextante/grass/nviz.py index 5684d564350..9a20504d3a2 100644 --- a/python/plugins/sextante/grass/nviz.py +++ b/python/plugins/sextante/grass/nviz.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + nviz.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from sextante.parameters.ParameterMultipleInput import ParameterMultipleInput from sextante.grass.GrassUtils import GrassUtils diff --git a/python/plugins/sextante/gui/AlgorithmExecutionDialog.py b/python/plugins/sextante/gui/AlgorithmExecutionDialog.py index 872c59a2f94..5b7b5bc97d2 100644 --- a/python/plugins/sextante/gui/AlgorithmExecutionDialog.py +++ b/python/plugins/sextante/gui/AlgorithmExecutionDialog.py @@ -1,4 +1,29 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + AlgorithmExecutionDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + # -*- coding: latin-1 -*- from PyQt4.QtCore import * from PyQt4.QtGui import * diff --git a/python/plugins/sextante/gui/AlgorithmExecutor.py b/python/plugins/sextante/gui/AlgorithmExecutor.py index 62aa2caaa97..ce2fc5d7efa 100644 --- a/python/plugins/sextante/gui/AlgorithmExecutor.py +++ b/python/plugins/sextante/gui/AlgorithmExecutor.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + AlgorithmExecutor.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtGui import * from PyQt4.QtCore import * from qgis.core import * diff --git a/python/plugins/sextante/gui/AutofillDialog.py b/python/plugins/sextante/gui/AutofillDialog.py index b40486bd646..2925ffb95c7 100644 --- a/python/plugins/sextante/gui/AutofillDialog.py +++ b/python/plugins/sextante/gui/AutofillDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + AutofillDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtGui, QtCore from PyQt4.QtCore import * from PyQt4.QtGui import * diff --git a/python/plugins/sextante/gui/BatchInputSelectionPanel.py b/python/plugins/sextante/gui/BatchInputSelectionPanel.py index dd7e8769138..345c46b8940 100644 --- a/python/plugins/sextante/gui/BatchInputSelectionPanel.py +++ b/python/plugins/sextante/gui/BatchInputSelectionPanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + BatchInputSelectionPanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtGui, QtCore from sextante.parameters.ParameterMultipleInput import ParameterMultipleInput diff --git a/python/plugins/sextante/gui/BatchOutputSelectionPanel.py b/python/plugins/sextante/gui/BatchOutputSelectionPanel.py index 3ba6a8f86e2..2fb5b25806a 100644 --- a/python/plugins/sextante/gui/BatchOutputSelectionPanel.py +++ b/python/plugins/sextante/gui/BatchOutputSelectionPanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + BatchOutputSelectionPanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtGui, QtCore from sextante.gui.AutofillDialog import AutofillDialog from sextante.parameters.ParameterMultipleInput import ParameterMultipleInput diff --git a/python/plugins/sextante/gui/BatchProcessingDialog.py b/python/plugins/sextante/gui/BatchProcessingDialog.py index 789c57ea5ef..6d65fec6265 100644 --- a/python/plugins/sextante/gui/BatchProcessingDialog.py +++ b/python/plugins/sextante/gui/BatchProcessingDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + BatchProcessingDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtCore, QtGui from PyQt4.QtCore import * from PyQt4.QtGui import * diff --git a/python/plugins/sextante/gui/ConfigDialog.py b/python/plugins/sextante/gui/ConfigDialog.py index 0b7a88b0e9e..7411b08b9b0 100644 --- a/python/plugins/sextante/gui/ConfigDialog.py +++ b/python/plugins/sextante/gui/ConfigDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ConfigDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtCore import * from PyQt4.QtGui import * from PyQt4 import QtCore, QtGui diff --git a/python/plugins/sextante/gui/ContextAction.py b/python/plugins/sextante/gui/ContextAction.py index e99349827b6..2fe3082601e 100644 --- a/python/plugins/sextante/gui/ContextAction.py +++ b/python/plugins/sextante/gui/ContextAction.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ContextAction.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + class ContextAction(): def setData(self, alg, toolbox): diff --git a/python/plugins/sextante/gui/CrsSelectionDialog.py b/python/plugins/sextante/gui/CrsSelectionDialog.py index 33ae5fed626..6c8c3841cd5 100644 --- a/python/plugins/sextante/gui/CrsSelectionDialog.py +++ b/python/plugins/sextante/gui/CrsSelectionDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + CrsSelectionDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtCore import * from PyQt4.QtGui import * from qgis.core import * diff --git a/python/plugins/sextante/gui/CrsSelectionPanel.py b/python/plugins/sextante/gui/CrsSelectionPanel.py index 15ec24f6646..2166d772935 100644 --- a/python/plugins/sextante/gui/CrsSelectionPanel.py +++ b/python/plugins/sextante/gui/CrsSelectionPanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + CrsSelectionPanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtGui, QtCore from sextante.gui.CrsSelectionDialog import CrsSelectionDialog diff --git a/python/plugins/sextante/gui/EditRenderingStylesDialog.py b/python/plugins/sextante/gui/EditRenderingStylesDialog.py index a29fcd52756..82ebbb72e26 100644 --- a/python/plugins/sextante/gui/EditRenderingStylesDialog.py +++ b/python/plugins/sextante/gui/EditRenderingStylesDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + EditRenderingStylesDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtCore import * from PyQt4.QtGui import * from PyQt4 import QtCore, QtGui diff --git a/python/plugins/sextante/gui/ExtentSelectionPanel.py b/python/plugins/sextante/gui/ExtentSelectionPanel.py index 5c7f2bedeb3..fd2039d0673 100644 --- a/python/plugins/sextante/gui/ExtentSelectionPanel.py +++ b/python/plugins/sextante/gui/ExtentSelectionPanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ExtentSelectionPanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from qgis.core import * from PyQt4 import QtGui, QtCore from PyQt4.QtCore import * diff --git a/python/plugins/sextante/gui/FileSelectionPanel.py b/python/plugins/sextante/gui/FileSelectionPanel.py index 133389e9555..5cc87b4773d 100644 --- a/python/plugins/sextante/gui/FileSelectionPanel.py +++ b/python/plugins/sextante/gui/FileSelectionPanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + FileSelectionPanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtGui, QtCore from sextante.core.SextanteUtils import SextanteUtils diff --git a/python/plugins/sextante/gui/FixedTableDialog.py b/python/plugins/sextante/gui/FixedTableDialog.py index f2bb82046c7..3786bedf157 100644 --- a/python/plugins/sextante/gui/FixedTableDialog.py +++ b/python/plugins/sextante/gui/FixedTableDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + FixedTableDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtCore, QtGui from PyQt4.QtCore import * from PyQt4.QtGui import * diff --git a/python/plugins/sextante/gui/FixedTablePanel.py b/python/plugins/sextante/gui/FixedTablePanel.py index 998e39665aa..47ee5fc90f2 100644 --- a/python/plugins/sextante/gui/FixedTablePanel.py +++ b/python/plugins/sextante/gui/FixedTablePanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + FixedTablePanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtCore, QtGui from sextante.gui.FixedTableDialog import FixedTableDialog diff --git a/python/plugins/sextante/gui/Help2Html.py b/python/plugins/sextante/gui/Help2Html.py index 624b3f0360f..4484fc7e950 100644 --- a/python/plugins/sextante/gui/Help2Html.py +++ b/python/plugins/sextante/gui/Help2Html.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + Help2Html.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import pickle from sextante.core.SextanteUtils import SextanteUtils import os diff --git a/python/plugins/sextante/gui/HelpEditionDialog.py b/python/plugins/sextante/gui/HelpEditionDialog.py index a9f46227f90..cc5e9734226 100644 --- a/python/plugins/sextante/gui/HelpEditionDialog.py +++ b/python/plugins/sextante/gui/HelpEditionDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + HelpEditionDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtCore import * from PyQt4.QtGui import * from PyQt4 import QtCore, QtGui, QtWebKit diff --git a/python/plugins/sextante/gui/HistoryDialog.py b/python/plugins/sextante/gui/HistoryDialog.py index 1d7659aec87..9dbd362e009 100644 --- a/python/plugins/sextante/gui/HistoryDialog.py +++ b/python/plugins/sextante/gui/HistoryDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + HistoryDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtCore import * from PyQt4.QtGui import * from PyQt4 import QtCore, QtGui diff --git a/python/plugins/sextante/gui/MultipleInputDialog.py b/python/plugins/sextante/gui/MultipleInputDialog.py index f827f06fb82..19271afe688 100644 --- a/python/plugins/sextante/gui/MultipleInputDialog.py +++ b/python/plugins/sextante/gui/MultipleInputDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + MultipleInputDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtCore, QtGui from PyQt4.QtCore import * from PyQt4.QtGui import * diff --git a/python/plugins/sextante/gui/MultipleInputPanel.py b/python/plugins/sextante/gui/MultipleInputPanel.py index 1a458182dc4..381a50a3615 100644 --- a/python/plugins/sextante/gui/MultipleInputPanel.py +++ b/python/plugins/sextante/gui/MultipleInputPanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + MultipleInputPanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtCore, QtGui from sextante.gui.MultipleInputDialog import MultipleInputDialog diff --git a/python/plugins/sextante/gui/NumberInputDialog.py b/python/plugins/sextante/gui/NumberInputDialog.py index fe832641df8..f89ae4e7af9 100644 --- a/python/plugins/sextante/gui/NumberInputDialog.py +++ b/python/plugins/sextante/gui/NumberInputDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + NumberInputDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from qgis.core import * from PyQt4.QtCore import * from PyQt4.QtGui import * diff --git a/python/plugins/sextante/gui/NumberInputPanel.py b/python/plugins/sextante/gui/NumberInputPanel.py index 232c80967f9..26956015b4a 100644 --- a/python/plugins/sextante/gui/NumberInputPanel.py +++ b/python/plugins/sextante/gui/NumberInputPanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + NumberInputPanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtGui from sextante.gui.NumberInputDialog import NumberInputDialog diff --git a/python/plugins/sextante/gui/OutputSelectionPanel.py b/python/plugins/sextante/gui/OutputSelectionPanel.py index 677fbbae246..b6acf22e5f3 100644 --- a/python/plugins/sextante/gui/OutputSelectionPanel.py +++ b/python/plugins/sextante/gui/OutputSelectionPanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + OutputSelectionPanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os.path from PyQt4.QtCore import * diff --git a/python/plugins/sextante/gui/ParametersDialog.py b/python/plugins/sextante/gui/ParametersDialog.py index ff0e4b56a0c..4aa602f7798 100644 --- a/python/plugins/sextante/gui/ParametersDialog.py +++ b/python/plugins/sextante/gui/ParametersDialog.py @@ -1,4 +1,29 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParametersDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + # -*- coding: latin-1 -*- from sextante.gui.ParametersPanel import ParametersPanel from sextante.gui.AlgorithmExecutionDialog import AlgorithmExecutionDialog diff --git a/python/plugins/sextante/gui/ParametersPanel.py b/python/plugins/sextante/gui/ParametersPanel.py index 5f22b2b23ea..677d48ee036 100644 --- a/python/plugins/sextante/gui/ParametersPanel.py +++ b/python/plugins/sextante/gui/ParametersPanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParametersPanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os import locale from PyQt4 import QtCore, QtGui diff --git a/python/plugins/sextante/gui/RangePanel.py b/python/plugins/sextante/gui/RangePanel.py index a4b9b1a99ec..cc306228664 100644 --- a/python/plugins/sextante/gui/RangePanel.py +++ b/python/plugins/sextante/gui/RangePanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + RangePanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtGui class RangePanel(QtGui.QWidget): diff --git a/python/plugins/sextante/gui/RectangleMapTool.py b/python/plugins/sextante/gui/RectangleMapTool.py index 2c6e63b8828..5e2628cc2b0 100644 --- a/python/plugins/sextante/gui/RectangleMapTool.py +++ b/python/plugins/sextante/gui/RectangleMapTool.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + RectangleMapTool.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + '''Class taken from GdalTools''' from PyQt4.QtCore import * from PyQt4.QtGui import * diff --git a/python/plugins/sextante/gui/RenderingStyleFilePanel.py b/python/plugins/sextante/gui/RenderingStyleFilePanel.py index 8ec6b3c0b10..16bf31262f0 100644 --- a/python/plugins/sextante/gui/RenderingStyleFilePanel.py +++ b/python/plugins/sextante/gui/RenderingStyleFilePanel.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + RenderingStyleFilePanel.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtGui, QtCore import os.path from sextante.core.SextanteConfig import SextanteConfig diff --git a/python/plugins/sextante/gui/RenderingStyles.py b/python/plugins/sextante/gui/RenderingStyles.py index b9d798b6dc0..115eaa05f2e 100644 --- a/python/plugins/sextante/gui/RenderingStyles.py +++ b/python/plugins/sextante/gui/RenderingStyles.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + RenderingStyles.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.core.SextanteUtils import SextanteUtils import os.path diff --git a/python/plugins/sextante/gui/ResultsDialog.py b/python/plugins/sextante/gui/ResultsDialog.py index a63bd533caa..97de8a284ab 100644 --- a/python/plugins/sextante/gui/ResultsDialog.py +++ b/python/plugins/sextante/gui/ResultsDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ResultsDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtCore import * from PyQt4.QtGui import * from PyQt4 import QtCore, QtGui, QtWebKit diff --git a/python/plugins/sextante/gui/SextantePostprocessing.py b/python/plugins/sextante/gui/SextantePostprocessing.py index 9a9b372ac97..ac7b3c3e587 100644 --- a/python/plugins/sextante/gui/SextantePostprocessing.py +++ b/python/plugins/sextante/gui/SextantePostprocessing.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SextantePostprocessing.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.core.QGisLayers import QGisLayers from sextante.outputs.OutputRaster import OutputRaster from sextante.outputs.OutputVector import OutputVector diff --git a/python/plugins/sextante/gui/SextanteToolbox.py b/python/plugins/sextante/gui/SextanteToolbox.py index ca6c29b8c46..8c366736194 100644 --- a/python/plugins/sextante/gui/SextanteToolbox.py +++ b/python/plugins/sextante/gui/SextanteToolbox.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SextanteToolbox.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os import sys diff --git a/python/plugins/sextante/gui/UnthreadedAlgorithmExecutor.py b/python/plugins/sextante/gui/UnthreadedAlgorithmExecutor.py index 06f3c4e678d..3d8e335a69a 100644 --- a/python/plugins/sextante/gui/UnthreadedAlgorithmExecutor.py +++ b/python/plugins/sextante/gui/UnthreadedAlgorithmExecutor.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + UnthreadedAlgorithmExecutor.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtGui import * from PyQt4.QtCore import * from qgis.core import * diff --git a/python/plugins/sextante/mmqgisx/MMQGISXAlgorithmProvider.py b/python/plugins/sextante/mmqgisx/MMQGISXAlgorithmProvider.py index 3f3f666fe5b..4acd46aa9c5 100644 --- a/python/plugins/sextante/mmqgisx/MMQGISXAlgorithmProvider.py +++ b/python/plugins/sextante/mmqgisx/MMQGISXAlgorithmProvider.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + # -------------------------------------------------------- # MMQGISX - MMQGIS Wrapper for Sextante # diff --git a/python/plugins/sextante/mmqgisx/mmqgisx_library.py b/python/plugins/sextante/mmqgisx/mmqgisx_library.py index b7c62bd47ac..d6e66a572da 100644 --- a/python/plugins/sextante/mmqgisx/mmqgisx_library.py +++ b/python/plugins/sextante/mmqgisx/mmqgisx_library.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + # -------------------------------------------------------- # mmqgisx_library - mmqgisx operation functions # diff --git a/python/plugins/sextante/otb/OTBAlgorithm.py b/python/plugins/sextante/otb/OTBAlgorithm.py index 9867ae0e001..2d4149c2349 100644 --- a/python/plugins/sextante/otb/OTBAlgorithm.py +++ b/python/plugins/sextante/otb/OTBAlgorithm.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + OTBAlgorithm.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from qgis.core import * from PyQt4.QtCore import * diff --git a/python/plugins/sextante/otb/OTBAlgorithmProvider.py b/python/plugins/sextante/otb/OTBAlgorithmProvider.py index c360beb716c..527c3a6ecbf 100644 --- a/python/plugins/sextante/otb/OTBAlgorithmProvider.py +++ b/python/plugins/sextante/otb/OTBAlgorithmProvider.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + OTBAlgorithmProvider.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from PyQt4.QtGui import * from sextante.core.AlgorithmProvider import AlgorithmProvider diff --git a/python/plugins/sextante/otb/OTBUtils.py b/python/plugins/sextante/otb/OTBUtils.py index df65a255313..6b9c8416940 100644 --- a/python/plugins/sextante/otb/OTBUtils.py +++ b/python/plugins/sextante/otb/OTBUtils.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + OTBUtils.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os import subprocess from sextante.core.SextanteConfig import SextanteConfig diff --git a/python/plugins/sextante/otb/helper/generate_application_descriptors.py b/python/plugins/sextante/otb/helper/generate_application_descriptors.py index 94a730dc8ee..6abda8e4377 100644 --- a/python/plugins/sextante/otb/helper/generate_application_descriptors.py +++ b/python/plugins/sextante/otb/helper/generate_application_descriptors.py @@ -1,4 +1,29 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + generate_application_descriptors.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os, sys import otbApplication diff --git a/python/plugins/sextante/outputs/Output.py b/python/plugins/sextante/outputs/Output.py index 794e215acc2..b6795d49678 100644 --- a/python/plugins/sextante/outputs/Output.py +++ b/python/plugins/sextante/outputs/Output.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + Output.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.core.SextanteUtils import SextanteUtils class Output(object): diff --git a/python/plugins/sextante/outputs/OutputFactory.py b/python/plugins/sextante/outputs/OutputFactory.py index 2f3807639c6..d1d9431fe2d 100644 --- a/python/plugins/sextante/outputs/OutputFactory.py +++ b/python/plugins/sextante/outputs/OutputFactory.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + OutputFactory.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.outputs.OutputHTML import OutputHTML from sextante.outputs.OutputRaster import OutputRaster from sextante.outputs.OutputTable import OutputTable diff --git a/python/plugins/sextante/outputs/OutputFile.py b/python/plugins/sextante/outputs/OutputFile.py index b3106d849c6..2cc23efd3f6 100644 --- a/python/plugins/sextante/outputs/OutputFile.py +++ b/python/plugins/sextante/outputs/OutputFile.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + OutputFile.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.outputs.Output import Output class OutputFile(Output): diff --git a/python/plugins/sextante/outputs/OutputHTML.py b/python/plugins/sextante/outputs/OutputHTML.py index 3c9574987a2..d3002ad1529 100644 --- a/python/plugins/sextante/outputs/OutputHTML.py +++ b/python/plugins/sextante/outputs/OutputHTML.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + OutputHTML.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.outputs.Output import Output class OutputHTML(Output): diff --git a/python/plugins/sextante/outputs/OutputNumber.py b/python/plugins/sextante/outputs/OutputNumber.py index f3b7c3312f7..6dee6f4d3a8 100644 --- a/python/plugins/sextante/outputs/OutputNumber.py +++ b/python/plugins/sextante/outputs/OutputNumber.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + OutputNumber.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.outputs.Output import Output class OutputNumber(Output): diff --git a/python/plugins/sextante/outputs/OutputRaster.py b/python/plugins/sextante/outputs/OutputRaster.py index 728d7d2b67f..736318f75a1 100644 --- a/python/plugins/sextante/outputs/OutputRaster.py +++ b/python/plugins/sextante/outputs/OutputRaster.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + OutputRaster.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.outputs.Output import Output class OutputRaster(Output): diff --git a/python/plugins/sextante/outputs/OutputTable.py b/python/plugins/sextante/outputs/OutputTable.py index b45a50d5c53..f1c7b98db09 100644 --- a/python/plugins/sextante/outputs/OutputTable.py +++ b/python/plugins/sextante/outputs/OutputTable.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + OutputTable.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.outputs.Output import Output class OutputTable(Output): diff --git a/python/plugins/sextante/outputs/OutputVector.py b/python/plugins/sextante/outputs/OutputVector.py index 7334a379ffc..ebee493a4b4 100644 --- a/python/plugins/sextante/outputs/OutputVector.py +++ b/python/plugins/sextante/outputs/OutputVector.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + OutputVector.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtCore import * from sextante.outputs.Output import Output diff --git a/python/plugins/sextante/parameters/Parameter.py b/python/plugins/sextante/parameters/Parameter.py index 2f9de2d6b66..74d02f5ffd7 100644 --- a/python/plugins/sextante/parameters/Parameter.py +++ b/python/plugins/sextante/parameters/Parameter.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + Parameter.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + class Parameter: '''Base class for all parameters that a geoalgorithm might take as input''' diff --git a/python/plugins/sextante/parameters/ParameterBoolean.py b/python/plugins/sextante/parameters/ParameterBoolean.py index 6350977b2a9..ecb4c1383d3 100644 --- a/python/plugins/sextante/parameters/ParameterBoolean.py +++ b/python/plugins/sextante/parameters/ParameterBoolean.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterBoolean.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.Parameter import Parameter class ParameterBoolean(Parameter): diff --git a/python/plugins/sextante/parameters/ParameterCrs.py b/python/plugins/sextante/parameters/ParameterCrs.py index 407bcaaf1ec..43aa641af51 100644 --- a/python/plugins/sextante/parameters/ParameterCrs.py +++ b/python/plugins/sextante/parameters/ParameterCrs.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterCrs.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.Parameter import Parameter class ParameterCrs(Parameter): diff --git a/python/plugins/sextante/parameters/ParameterDataObject.py b/python/plugins/sextante/parameters/ParameterDataObject.py index 52561343469..94fa9b69def 100644 --- a/python/plugins/sextante/parameters/ParameterDataObject.py +++ b/python/plugins/sextante/parameters/ParameterDataObject.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterDataObject.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.Parameter import Parameter from sextante.core.SextanteUtils import SextanteUtils diff --git a/python/plugins/sextante/parameters/ParameterExtent.py b/python/plugins/sextante/parameters/ParameterExtent.py index d32819ef851..421388685db 100644 --- a/python/plugins/sextante/parameters/ParameterExtent.py +++ b/python/plugins/sextante/parameters/ParameterExtent.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterExtent.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.Parameter import Parameter class ParameterExtent(Parameter): diff --git a/python/plugins/sextante/parameters/ParameterFactory.py b/python/plugins/sextante/parameters/ParameterFactory.py index 533e8a01cdb..a3ca8574fef 100644 --- a/python/plugins/sextante/parameters/ParameterFactory.py +++ b/python/plugins/sextante/parameters/ParameterFactory.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterFactory.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.ParameterBoolean import ParameterBoolean from sextante.parameters.ParameterMultipleInput import ParameterMultipleInput from sextante.parameters.ParameterNumber import ParameterNumber diff --git a/python/plugins/sextante/parameters/ParameterFile.py b/python/plugins/sextante/parameters/ParameterFile.py index a95a44a1e2e..c5557a73b15 100644 --- a/python/plugins/sextante/parameters/ParameterFile.py +++ b/python/plugins/sextante/parameters/ParameterFile.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterFile.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.Parameter import Parameter class ParameterFile(Parameter): diff --git a/python/plugins/sextante/parameters/ParameterFixedTable.py b/python/plugins/sextante/parameters/ParameterFixedTable.py index 21af94fe0fd..0a92b664331 100644 --- a/python/plugins/sextante/parameters/ParameterFixedTable.py +++ b/python/plugins/sextante/parameters/ParameterFixedTable.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterFixedTable.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.Parameter import Parameter class ParameterFixedTable(Parameter): diff --git a/python/plugins/sextante/parameters/ParameterMultipleInput.py b/python/plugins/sextante/parameters/ParameterMultipleInput.py index 025b3427091..11a1cd29fdf 100644 --- a/python/plugins/sextante/parameters/ParameterMultipleInput.py +++ b/python/plugins/sextante/parameters/ParameterMultipleInput.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterMultipleInput.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.ParameterDataObject import ParameterDataObject from sextante.core.QGisLayers import QGisLayers from qgis.core import * diff --git a/python/plugins/sextante/parameters/ParameterNumber.py b/python/plugins/sextante/parameters/ParameterNumber.py index d91541aff9a..518903ff90d 100644 --- a/python/plugins/sextante/parameters/ParameterNumber.py +++ b/python/plugins/sextante/parameters/ParameterNumber.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterNumber.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.Parameter import Parameter from PyQt4.QtGui import * diff --git a/python/plugins/sextante/parameters/ParameterRange.py b/python/plugins/sextante/parameters/ParameterRange.py index e3d39de4043..577ae1d7053 100644 --- a/python/plugins/sextante/parameters/ParameterRange.py +++ b/python/plugins/sextante/parameters/ParameterRange.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterRange.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.Parameter import Parameter class ParameterRange(Parameter): diff --git a/python/plugins/sextante/parameters/ParameterRaster.py b/python/plugins/sextante/parameters/ParameterRaster.py index 2201cce173a..644a28c4940 100644 --- a/python/plugins/sextante/parameters/ParameterRaster.py +++ b/python/plugins/sextante/parameters/ParameterRaster.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterRaster.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.ParameterDataObject import ParameterDataObject from sextante.core.QGisLayers import QGisLayers from qgis.core import * diff --git a/python/plugins/sextante/parameters/ParameterSelection.py b/python/plugins/sextante/parameters/ParameterSelection.py index 22a1e3d1ad9..4de5118e384 100644 --- a/python/plugins/sextante/parameters/ParameterSelection.py +++ b/python/plugins/sextante/parameters/ParameterSelection.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterSelection.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.Parameter import Parameter class ParameterSelection(Parameter): diff --git a/python/plugins/sextante/parameters/ParameterString.py b/python/plugins/sextante/parameters/ParameterString.py index 9b663f535c2..62058fa1b40 100644 --- a/python/plugins/sextante/parameters/ParameterString.py +++ b/python/plugins/sextante/parameters/ParameterString.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterString.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.Parameter import Parameter class ParameterString(Parameter): diff --git a/python/plugins/sextante/parameters/ParameterTable.py b/python/plugins/sextante/parameters/ParameterTable.py index cbee659d099..10a06752dda 100644 --- a/python/plugins/sextante/parameters/ParameterTable.py +++ b/python/plugins/sextante/parameters/ParameterTable.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterTable.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.ParameterDataObject import ParameterDataObject from sextante.core.QGisLayers import QGisLayers from qgis.core import * diff --git a/python/plugins/sextante/parameters/ParameterTableField.py b/python/plugins/sextante/parameters/ParameterTableField.py index 8d22c59b2b5..8b608d73b85 100644 --- a/python/plugins/sextante/parameters/ParameterTableField.py +++ b/python/plugins/sextante/parameters/ParameterTableField.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterTableField.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.Parameter import Parameter class ParameterTableField(Parameter): diff --git a/python/plugins/sextante/parameters/ParameterVector.py b/python/plugins/sextante/parameters/ParameterVector.py index 12e4aa7d375..4038ffba615 100644 --- a/python/plugins/sextante/parameters/ParameterVector.py +++ b/python/plugins/sextante/parameters/ParameterVector.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ParameterVector.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.parameters.ParameterDataObject import ParameterDataObject from sextante.core.QGisLayers import QGisLayers from qgis.core import * diff --git a/python/plugins/sextante/r/CreateNewRScriptAction.py b/python/plugins/sextante/r/CreateNewRScriptAction.py index c4568f9594a..e56a61d0ac6 100644 --- a/python/plugins/sextante/r/CreateNewRScriptAction.py +++ b/python/plugins/sextante/r/CreateNewRScriptAction.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + CreateNewRScriptAction.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.script.EditScriptDialog import EditScriptDialog from sextante.gui.ToolboxAction import ToolboxAction import os diff --git a/python/plugins/sextante/r/EditRScriptAction.py b/python/plugins/sextante/r/EditRScriptAction.py index 6316e4173fc..ed0ab309cf3 100644 --- a/python/plugins/sextante/r/EditRScriptAction.py +++ b/python/plugins/sextante/r/EditRScriptAction.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + EditRScriptAction.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.gui.ContextAction import ContextAction from sextante.r.RAlgorithm import RAlgorithm from sextante.r.EditRScriptDialog import EditRScriptDialog diff --git a/python/plugins/sextante/r/EditRScriptDialog.py b/python/plugins/sextante/r/EditRScriptDialog.py index fa9ee8b25f6..e82afbbfe4f 100644 --- a/python/plugins/sextante/r/EditRScriptDialog.py +++ b/python/plugins/sextante/r/EditRScriptDialog.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + EditRScriptDialog.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4 import QtCore, QtGui from PyQt4.QtCore import * from PyQt4.QtGui import * diff --git a/python/plugins/sextante/r/RAlgorithm.py b/python/plugins/sextante/r/RAlgorithm.py index c53bac1740c..fe0f57a8f5a 100644 --- a/python/plugins/sextante/r/RAlgorithm.py +++ b/python/plugins/sextante/r/RAlgorithm.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + RAlgorithm.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from PyQt4.QtCore import * from PyQt4.QtGui import * diff --git a/python/plugins/sextante/r/RAlgorithmProvider.py b/python/plugins/sextante/r/RAlgorithmProvider.py index 555c65e0376..86d9d1d201e 100644 --- a/python/plugins/sextante/r/RAlgorithmProvider.py +++ b/python/plugins/sextante/r/RAlgorithmProvider.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + RAlgorithmProvider.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtCore import * from PyQt4.QtGui import * import os.path diff --git a/python/plugins/sextante/r/RUtils.py b/python/plugins/sextante/r/RUtils.py index b30f15b28a6..96f879404b5 100644 --- a/python/plugins/sextante/r/RUtils.py +++ b/python/plugins/sextante/r/RUtils.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + RUtils.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from PyQt4.QtGui import * from sextante.core.SextanteConfig import SextanteConfig import os diff --git a/python/plugins/sextante/saga/SagaAlgorithm.py b/python/plugins/sextante/saga/SagaAlgorithm.py index a209058fa6b..bb34534f72d 100644 --- a/python/plugins/sextante/saga/SagaAlgorithm.py +++ b/python/plugins/sextante/saga/SagaAlgorithm.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SagaAlgorithm.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from qgis.core import * from PyQt4.QtCore import * diff --git a/python/plugins/sextante/saga/SagaAlgorithmProvider.py b/python/plugins/sextante/saga/SagaAlgorithmProvider.py index 49dbc31b45c..02c610ae225 100644 --- a/python/plugins/sextante/saga/SagaAlgorithmProvider.py +++ b/python/plugins/sextante/saga/SagaAlgorithmProvider.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SagaAlgorithmProvider.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from sextante.saga.SagaAlgorithm import SagaAlgorithm from sextante.saga.SagaUtils import SagaUtils diff --git a/python/plugins/sextante/saga/SagaDescriptionCreator.py b/python/plugins/sextante/saga/SagaDescriptionCreator.py index f84f502528e..690790f0e9d 100644 --- a/python/plugins/sextante/saga/SagaDescriptionCreator.py +++ b/python/plugins/sextante/saga/SagaDescriptionCreator.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SagaDescriptionCreator.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import subprocess import os diff --git a/python/plugins/sextante/saga/SagaGroupNameDecorator.py b/python/plugins/sextante/saga/SagaGroupNameDecorator.py index 5037ca2e26b..aa71abdb8c7 100644 --- a/python/plugins/sextante/saga/SagaGroupNameDecorator.py +++ b/python/plugins/sextante/saga/SagaGroupNameDecorator.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SagaGroupNameDecorator.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + class SagaGroupNameDecorator(): groups = {} diff --git a/python/plugins/sextante/saga/SagaHelpGenerator.py b/python/plugins/sextante/saga/SagaHelpGenerator.py index 4ef4fe01b97..438a16aab36 100644 --- a/python/plugins/sextante/saga/SagaHelpGenerator.py +++ b/python/plugins/sextante/saga/SagaHelpGenerator.py @@ -1,4 +1,29 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SagaHelpGenerator.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import saga_api as saga import os diff --git a/python/plugins/sextante/saga/SagaUtils.py b/python/plugins/sextante/saga/SagaUtils.py index fa8339746d1..7036329d75d 100644 --- a/python/plugins/sextante/saga/SagaUtils.py +++ b/python/plugins/sextante/saga/SagaUtils.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SagaUtils.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Victor Olaya + Email : volayaf at gmail dot com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Victor Olaya' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Victor Olaya' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + import os from sextante.core.SextanteUtils import SextanteUtils import subprocess diff --git a/python/plugins/sextanteexampleprovider/ExampleAlgorithm.py b/python/plugins/sextanteexampleprovider/ExampleAlgorithm.py index ea9df0002b8..ebc5c6cd8ba 100644 --- a/python/plugins/sextanteexampleprovider/ExampleAlgorithm.py +++ b/python/plugins/sextanteexampleprovider/ExampleAlgorithm.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ExampleAlgorithm.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Tim Sutton + Email : tim dot linfiniti at com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Tim Sutton' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Tim Sutton' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.core.GeoAlgorithm import GeoAlgorithm from sextante.outputs.OutputVector import OutputVector from sextante.parameters.ParameterVector import ParameterVector diff --git a/python/plugins/sextanteexampleprovider/ExampleAlgorithmProvider.py b/python/plugins/sextanteexampleprovider/ExampleAlgorithmProvider.py index cdaffffc12a..3c388d32a76 100644 --- a/python/plugins/sextanteexampleprovider/ExampleAlgorithmProvider.py +++ b/python/plugins/sextanteexampleprovider/ExampleAlgorithmProvider.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + ExampleAlgorithmProvider.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Tim Sutton + Email : tim dot linfiniti at com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Tim Sutton' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Tim Sutton' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextante.core.AlgorithmProvider import AlgorithmProvider from sextanteexampleprovider.ExampleAlgorithm import ExampleAlgorithm from sextante.core.SextanteConfig import Setting, SextanteConfig diff --git a/python/plugins/sextanteexampleprovider/SextanteExampleProviderPlugin.py b/python/plugins/sextanteexampleprovider/SextanteExampleProviderPlugin.py index 731e5c16b88..380c9c763a9 100644 --- a/python/plugins/sextanteexampleprovider/SextanteExampleProviderPlugin.py +++ b/python/plugins/sextanteexampleprovider/SextanteExampleProviderPlugin.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + SextanteExampleProviderPlugin.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Tim Sutton + Email : tim dot linfiniti at com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Tim Sutton' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Tim Sutton' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from qgis.core import * import os, sys import inspect diff --git a/python/plugins/sextanteexampleprovider/__init__.py b/python/plugins/sextanteexampleprovider/__init__.py index db35542a888..d5a178e0a0e 100644 --- a/python/plugins/sextanteexampleprovider/__init__.py +++ b/python/plugins/sextanteexampleprovider/__init__.py @@ -1,3 +1,28 @@ +# -*- coding: utf-8 -*- + +""" +*************************************************************************** + __init__.py + --------------------- + Date : August 2012 + Copyright : (C) 2012 by Tim Sutton + Email : tim dot linfiniti at com +*************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +*************************************************************************** +""" + +__author__ = 'Tim Sutton' +__date__ = 'August 2012' +__copyright__ = '(C) 2012, Tim Sutton' +# This will get replaced with a git SHA1 when you do a git archive +__revision__ = '$Format:%H$' + from sextanteexampleprovider.SextanteExampleProviderPlugin import SextanteExampleProviderPlugin def name(): return "SEXTANTE example provider" diff --git a/scripts/addcopyright.sh b/scripts/addcopyright.sh index f36b04c2175..89136426772 100644 --- a/scripts/addcopyright.sh +++ b/scripts/addcopyright.sh @@ -173,7 +173,7 @@ $shebang######################################################################## EOF ;; *.py) - cat - $src >$dst <$dst <