Skip to content

Commit

Permalink
add missed license headers in Processing files
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Jan 7, 2016
1 parent f351715 commit b207268
Show file tree
Hide file tree
Showing 6 changed files with 172 additions and 1 deletion.
28 changes: 28 additions & 0 deletions python/plugins/processing/algs/gdal/GdalAlgorithmDialog.py
@@ -1,3 +1,31 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
GdalAlgorithmDialog.py
---------------------
Date : May 2015
Copyright : (C) 2015 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__ = 'May 2015'
__copyright__ = '(C) 2015, 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.QtGui import *
from processing.gui.AlgorithmDialog import AlgorithmDialog from processing.gui.AlgorithmDialog import AlgorithmDialog
from processing.gui.AlgorithmDialogBase import AlgorithmDialogBase from processing.gui.AlgorithmDialogBase import AlgorithmDialogBase
Expand Down
28 changes: 28 additions & 0 deletions python/plugins/processing/algs/saga/versioncheck.py
@@ -1,3 +1,31 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
versioncheck.py
---------------------
Date : December 2014
Copyright : (C) 2014 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__ = 'December 2014'
__copyright__ = '(C) 2014, Victor Olaya'

# This will get replaced with a git SHA1 when you do a git archive

__revision__ = '$Format:%H$'


import os import os
import subprocess import subprocess


Expand Down
28 changes: 28 additions & 0 deletions python/plugins/processing/gui/PostgisTableSelector.py
@@ -1,3 +1,31 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
PostgisTableSelector.py
---------------------
Date : November 2015
Copyright : (C) 2015 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__ = 'November 2015'
__copyright__ = '(C) 2015, Victor Olaya'

# This will get replaced with a git SHA1 when you do a git archive

__revision__ = '$Format:%H$'


import os import os
from PyQt4 import uic, QtCore, QtGui from PyQt4 import uic, QtCore, QtGui
from processing.algs.qgis.postgis_utils import GeoDB from processing.algs.qgis.postgis_utils import GeoDB
Expand Down
28 changes: 28 additions & 0 deletions python/plugins/processing/gui/utils.py
@@ -1,3 +1,31 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
utils.py
---------------------
Date : September 2015
Copyright : (C) 2015 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 2015'
__copyright__ = '(C) 2015, Victor Olaya'

# This will get replaced with a git SHA1 when you do a git archive

__revision__ = '$Format:%H$'


from qgis.utils import iface from qgis.utils import iface
from PyQt4 import QtGui from PyQt4 import QtGui
from processing.core.Processing import Processing from processing.core.Processing import Processing
Expand Down
28 changes: 28 additions & 0 deletions python/plugins/processing/tests/PackagingTests.py
@@ -1,3 +1,31 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
PackagingTests.py
---------------------
Date : May 2015
Copyright : (C) 2015 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__ = 'May 2015'
__copyright__ = '(C) 2015, Victor Olaya'

# This will get replaced with a git SHA1 when you do a git archive

__revision__ = '$Format:%H$'


''' '''
Tests to ensure that a QGIS installation contains Processing dependencies Tests to ensure that a QGIS installation contains Processing dependencies
and they are correctly configured by default and they are correctly configured by default
Expand Down
33 changes: 32 additions & 1 deletion python/plugins/processing/tools/_vector.py
@@ -1,7 +1,38 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
_vector.py
---------------------
Date : May 2015
Copyright : (C) 2015 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__ = 'May 2015'
__copyright__ = '(C) 2015, Victor Olaya'

# This will get replaced with a git SHA1 when you do a git archive

__revision__ = '$Format:%H$'


import os import os
from collections import Iterator

from PyQt4.QtCore import * from PyQt4.QtCore import *

from qgis.core import * from qgis.core import *
from collections import Iterator


TYPE_MAP = { TYPE_MAP = {
str: QVariant.String, str: QVariant.String,
Expand Down

0 comments on commit b207268

Please sign in to comment.