From 388889cca4fbe01922a45d793b45d57a299c88a7 Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Sat, 13 Apr 2019 00:35:37 +0200 Subject: [PATCH] finally added myself to AUTHORS and (C) headers --- AUTHORS | 1 + manage.py | 1 + www/maposmatic/apis.py | 8 +------- www/maposmatic/context_processors.py | 1 + www/maposmatic/forms.py | 1 + www/maposmatic/gisdb.py | 1 + www/maposmatic/helpers.py | 1 + www/maposmatic/models.py | 1 + www/maposmatic/nominatim.py | 1 + www/maposmatic/templates/maposmatic/about.html | 1 + www/maposmatic/templates/maposmatic/base.html | 1 + .../templates/maposmatic/documentation-api.html | 1 + .../templates/maposmatic/documentation-user-guide.html | 1 + www/maposmatic/templates/maposmatic/donate-thanks.html | 1 + www/maposmatic/templates/maposmatic/donate.html | 1 + www/maposmatic/templates/maposmatic/index.html | 1 + www/maposmatic/templates/maposmatic/map-full.html | 1 + www/maposmatic/templates/maposmatic/maps.html | 1 + www/maposmatic/templates/maposmatic/new.html | 1 + www/maposmatic/templates/maposmatic/pagination.html | 1 + www/maposmatic/templates/maposmatic/suggest.js | 1 + www/maposmatic/templates/maposmatic/wizard.js | 1 + www/maposmatic/templatetags/extratags.py | 1 + www/maposmatic/views.py | 1 + www/settings.py | 1 + www/settings_local.py.dist | 1 + www/static/css/maposmatic.css | 1 + www/templates/404.html | 1 + www/templates/500.html | 1 + www/templates/503.html | 1 + www/urls.py | 1 + 31 files changed, 31 insertions(+), 7 deletions(-) diff --git a/AUTHORS b/AUTHORS index 3ccf99e4..da227898 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4,6 +4,7 @@ MAPOSMATIC AUTHORS The MapOSMatic developers are, by alphabetical order: - David Decotigny + - Hartmut Holzgraefe - Frédéric Lehobey - Pierre Mauduit - David Mentré diff --git a/manage.py b/manage.py index 8a17fd47..d3dccda5 100755 --- a/manage.py +++ b/manage.py @@ -8,6 +8,7 @@ # Copyright (C) 2009 Maxime Petazzoni # Copyright (C) 2009 Thomas Petazzoni # Copyright (C) 2009 Gaël Utard +# Copyright (C) 2016 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/apis.py b/www/maposmatic/apis.py index fd7de453..846e1aca 100644 --- a/www/maposmatic/apis.py +++ b/www/maposmatic/apis.py @@ -1,13 +1,7 @@ # coding: utf-8 # maposmatic, the web front-end of the MapOSMatic city map generation system -# Copyright (C) 2009 David Decotigny -# Copyright (C) 2009 Frédéric Lehobey -# Copyright (C) 2009 Pierre Mauduit -# Copyright (C) 2009 David Mentré -# Copyright (C) 2009 Maxime Petazzoni -# Copyright (C) 2009 Thomas Petazzoni -# Copyright (C) 2009 Gaël Utard +# Copyright (C) 2018 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/context_processors.py b/www/maposmatic/context_processors.py index 327b4740..a196bef1 100644 --- a/www/maposmatic/context_processors.py +++ b/www/maposmatic/context_processors.py @@ -7,6 +7,7 @@ # Copyright (C) 2009 Maxime Petazzoni # Copyright (C) 2009 Thomas Petazzoni # Copyright (C) 2009 Gaël Utard +# Copyright (C) 2018 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/forms.py b/www/maposmatic/forms.py index c53068bf..2fdd2462 100644 --- a/www/maposmatic/forms.py +++ b/www/maposmatic/forms.py @@ -8,6 +8,7 @@ # Copyright (C) 2009 Maxime Petazzoni # Copyright (C) 2009 Thomas Petazzoni # Copyright (C) 2009 Gaël Utard +# Copyright (C) 2019 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/gisdb.py b/www/maposmatic/gisdb.py index 85d9d286..72162ab8 100644 --- a/www/maposmatic/gisdb.py +++ b/www/maposmatic/gisdb.py @@ -7,6 +7,7 @@ # Copyright (C) 2012 Maxime Petazzoni # Copyright (C) 2012 Thomas Petazzoni # Copyright (C) 2012 Gaël Utard +# Copyright (C) 2019 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/helpers.py b/www/maposmatic/helpers.py index c3e833ef..1fb29fa1 100644 --- a/www/maposmatic/helpers.py +++ b/www/maposmatic/helpers.py @@ -8,6 +8,7 @@ # Copyright (C) 2009 Maxime Petazzoni # Copyright (C) 2009 Thomas Petazzoni # Copyright (C) 2009 Gaël Utard +# Copyright (C) 2017 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/models.py b/www/maposmatic/models.py index 3e0d54d8..7b0fa98f 100644 --- a/www/maposmatic/models.py +++ b/www/maposmatic/models.py @@ -7,6 +7,7 @@ # Copyright (C) 2009 Maxime Petazzoni # Copyright (C) 2009 Thomas Petazzoni # Copyright (C) 2009 Gaël Utard +# Copyright (C) 2018 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/nominatim.py b/www/maposmatic/nominatim.py index dbcde73e..1eb721fb 100644 --- a/www/maposmatic/nominatim.py +++ b/www/maposmatic/nominatim.py @@ -7,6 +7,7 @@ # Copyright (C) 2009 Maxime Petazzoni # Copyright (C) 2009 Thomas Petazzoni # Copyright (C) 2009 Gaël Utard +# Copyright (C) 2017 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/about.html b/www/maposmatic/templates/maposmatic/about.html index 04b027e6..55262bc3 100644 --- a/www/maposmatic/templates/maposmatic/about.html +++ b/www/maposmatic/templates/maposmatic/about.html @@ -11,6 +11,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/base.html b/www/maposmatic/templates/maposmatic/base.html index 41b4ebb9..2d9b4446 100644 --- a/www/maposmatic/templates/maposmatic/base.html +++ b/www/maposmatic/templates/maposmatic/base.html @@ -8,6 +8,7 @@ Copyright (C) 2009 Maxime Petazzoni Copyright (C) 2009 Thomas Petazzoni Copyright (C) 2009 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/documentation-api.html b/www/maposmatic/templates/maposmatic/documentation-api.html index ef503340..d51aa566 100644 --- a/www/maposmatic/templates/maposmatic/documentation-api.html +++ b/www/maposmatic/templates/maposmatic/documentation-api.html @@ -11,6 +11,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/documentation-user-guide.html b/www/maposmatic/templates/maposmatic/documentation-user-guide.html index 0d4a74d0..c2fd6c29 100644 --- a/www/maposmatic/templates/maposmatic/documentation-user-guide.html +++ b/www/maposmatic/templates/maposmatic/documentation-user-guide.html @@ -11,6 +11,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/donate-thanks.html b/www/maposmatic/templates/maposmatic/donate-thanks.html index 1be46616..d58fdc4c 100644 --- a/www/maposmatic/templates/maposmatic/donate-thanks.html +++ b/www/maposmatic/templates/maposmatic/donate-thanks.html @@ -11,6 +11,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/donate.html b/www/maposmatic/templates/maposmatic/donate.html index 61d80adc..8eedbf2d 100644 --- a/www/maposmatic/templates/maposmatic/donate.html +++ b/www/maposmatic/templates/maposmatic/donate.html @@ -11,6 +11,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/index.html b/www/maposmatic/templates/maposmatic/index.html index d81a849c..12c01245 100644 --- a/www/maposmatic/templates/maposmatic/index.html +++ b/www/maposmatic/templates/maposmatic/index.html @@ -11,6 +11,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/map-full.html b/www/maposmatic/templates/maposmatic/map-full.html index 8b31fa8c..5c633a0a 100644 --- a/www/maposmatic/templates/maposmatic/map-full.html +++ b/www/maposmatic/templates/maposmatic/map-full.html @@ -11,6 +11,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/maps.html b/www/maposmatic/templates/maposmatic/maps.html index 04d27759..16158e87 100644 --- a/www/maposmatic/templates/maposmatic/maps.html +++ b/www/maposmatic/templates/maposmatic/maps.html @@ -11,6 +11,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/new.html b/www/maposmatic/templates/maposmatic/new.html index 4498b650..9ee2d7cd 100644 --- a/www/maposmatic/templates/maposmatic/new.html +++ b/www/maposmatic/templates/maposmatic/new.html @@ -11,6 +11,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/pagination.html b/www/maposmatic/templates/maposmatic/pagination.html index 34146dc6..da46e0e7 100644 --- a/www/maposmatic/templates/maposmatic/pagination.html +++ b/www/maposmatic/templates/maposmatic/pagination.html @@ -9,6 +9,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/suggest.js b/www/maposmatic/templates/maposmatic/suggest.js index 927731b4..f8fdbdd7 100644 --- a/www/maposmatic/templates/maposmatic/suggest.js +++ b/www/maposmatic/templates/maposmatic/suggest.js @@ -9,6 +9,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templates/maposmatic/wizard.js b/www/maposmatic/templates/maposmatic/wizard.js index bf4a9a91..4eb0377f 100644 --- a/www/maposmatic/templates/maposmatic/wizard.js +++ b/www/maposmatic/templates/maposmatic/wizard.js @@ -9,6 +9,7 @@ Copyright (C) 2012 Maxime Petazzoni Copyright (C) 2012 Thomas Petazzoni Copyright (C) 2012 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/templatetags/extratags.py b/www/maposmatic/templatetags/extratags.py index c8dfdff5..c33edf91 100644 --- a/www/maposmatic/templatetags/extratags.py +++ b/www/maposmatic/templatetags/extratags.py @@ -7,6 +7,7 @@ # Copyright (C) 2009 Maxime Petazzoni # Copyright (C) 2009 Thomas Petazzoni # Copyright (C) 2009 Gaël Utard +# Copyright (C) 2018 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/maposmatic/views.py b/www/maposmatic/views.py index a3837913..6f23aadf 100644 --- a/www/maposmatic/views.py +++ b/www/maposmatic/views.py @@ -8,6 +8,7 @@ # Copyright (C) 2009 Maxime Petazzoni # Copyright (C) 2009 Thomas Petazzoni # Copyright (C) 2009 Gaël Utard +# Copyright (C) 2019 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/settings.py b/www/settings.py index d215936f..bf9ae98a 100644 --- a/www/settings.py +++ b/www/settings.py @@ -7,6 +7,7 @@ # Copyright (C) 2009 Maxime Petazzoni # Copyright (C) 2009 Thomas Petazzoni # Copyright (C) 2009 Gaël Utard +# Copyright (C) 2019 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/settings_local.py.dist b/www/settings_local.py.dist index 03c651f1..0570a1f4 100644 --- a/www/settings_local.py.dist +++ b/www/settings_local.py.dist @@ -8,6 +8,7 @@ # Copyright (C) 2009 Maxime Petazzoni # Copyright (C) 2009 Thomas Petazzoni # Copyright (C) 2009 Gaël Utard +# Copyright (C) 2019 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as diff --git a/www/static/css/maposmatic.css b/www/static/css/maposmatic.css index af1f5079..788b0b98 100644 --- a/www/static/css/maposmatic.css +++ b/www/static/css/maposmatic.css @@ -6,6 +6,7 @@ Copyright (C) 2009 Maxime Petazzoni Copyright (C) 2009 Thomas Petazzoni Copyright (C) 2009 Gaël Utard + Copyright (C) 2019 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/templates/404.html b/www/templates/404.html index 687a1971..f26f0992 100644 --- a/www/templates/404.html +++ b/www/templates/404.html @@ -11,6 +11,7 @@ Copyright (C) 2009 Maxime Petazzoni Copyright (C) 2009 Thomas Petazzoni Copyright (C) 2009 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/templates/500.html b/www/templates/500.html index 1ddb5ab4..616b1b4d 100644 --- a/www/templates/500.html +++ b/www/templates/500.html @@ -11,6 +11,7 @@ Copyright (C) 2009 Maxime Petazzoni Copyright (C) 2009 Thomas Petazzoni Copyright (C) 2009 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/templates/503.html b/www/templates/503.html index 5feb18c5..17c35240 100644 --- a/www/templates/503.html +++ b/www/templates/503.html @@ -11,6 +11,7 @@ Copyright (C) 2009 Maxime Petazzoni Copyright (C) 2009 Thomas Petazzoni Copyright (C) 2009 Gaël Utard + Copyright (C) 2018 Hartmut Holzgraefe This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/www/urls.py b/www/urls.py index 117dcb67..a33dcc13 100644 --- a/www/urls.py +++ b/www/urls.py @@ -8,6 +8,7 @@ # Copyright (C) 2009 Maxime Petazzoni # Copyright (C) 2009 Thomas Petazzoni # Copyright (C) 2009 Gaël Utard +# Copyright (C) 2018 Hartmut Holzgraefe # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as