Skip to content

Commit

Permalink
adding missing copyright to files
Browse files Browse the repository at this point in the history
  • Loading branch information
mach0 committed Dec 1, 2012
1 parent c254be1 commit 80fa7aa
Show file tree
Hide file tree
Showing 24 changed files with 600 additions and 0 deletions.
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/geoserver/catalog.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
catalog.py
---------------------
Date : November 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__ = 'November 2012'
__copyright__ = '(C) 2012, Victor Olaya'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'

from datetime import datetime, timedelta
import logging
from sextante.admintools.geoserver.layer import Layer
Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/geoserver/layer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
layer.py
---------------------
Date : November 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__ = 'November 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.admintools.geoserver.support import ResourceInfo, xml_property, write_bool, url
from sextante.admintools.geoserver.style import Style

Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/geoserver/layergroup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
layergroup.py
---------------------
Date : November 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__ = 'November 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.admintools.geoserver.support import ResourceInfo, bbox, write_bbox, \
write_string, xml_property, url

Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/geoserver/resource.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
resource.py
---------------------
Date : November 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__ = 'November 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.admintools.geoserver.support import ResourceInfo, xml_property, write_string, bbox, \
write_bbox, string_list, write_string_list, attribute_list, write_bool, url

Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/geoserver/store.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
store.py
---------------------
Date : November 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__ = 'November 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.admintools.geoserver.resource import featuretype_from_index, coverage_from_index
from sextante.admintools.geoserver.support import ResourceInfo, xml_property, key_value_pairs, \
write_bool, write_dict, write_string, url
Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/geoserver/style.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
style.py
---------------------
Date : November 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__ = 'November 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.admintools.geoserver.support import ResourceInfo, url, xml_property

class Style(ResourceInfo):
Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/geoserver/support.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
support.py
---------------------
Date : November 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__ = 'November 2012'
__copyright__ = '(C) 2012, Victor Olaya'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'

import logging
from xml.etree.ElementTree import TreeBuilder, tostring
import urllib
Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/geoserver/util.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
util.py
---------------------
Date : November 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__ = 'November 2012'
__copyright__ = '(C) 2012, Victor Olaya'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'

# shapefile_and_friends = None
# shapefile_plus_sidecars = shapefile_and_friends("test/data/states")

Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/geoserver/workspace.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
workspace.py
---------------------
Date : November 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__ = 'November 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.admintools.geoserver.support import xml_property, write_bool, ResourceInfo, url

def workspace_from_index(catalog, node):
Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/httplib2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
__init__.py
---------------------
Date : November 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__ = 'November 2012'
__copyright__ = '(C) 2012, Victor Olaya'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'

from __future__ import generators
"""
httplib2
Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/httplib2/iri2uri.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
iri2uri.py
---------------------
Date : November 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__ = 'November 2012'
__copyright__ = '(C) 2012, Victor Olaya'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'

"""
iri2uri
Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/admintools/postgis_utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
postgis_utils.py
---------------------
Date : November 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__ = 'November 2012'
__copyright__ = '(C) 2012, Victor Olaya'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'

"""
PostGIS Manager
Expand Down
25 changes: 25 additions & 0 deletions python/plugins/sextante/ftools/voronoi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
voronoi.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: utf-8 -*-

#############################################################################
#
# Voronoi diagram calculator/ Delaunay triangulator
Expand Down
Loading

0 comments on commit 80fa7aa

Please sign in to comment.