diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 00000000..6ded867a --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,26 @@ +# Contributors + +Thanks to everyone who has contributed to this project! We appreciate your time and effort. + +## Copyright + +> All contributions to this project are subject to the copyright owned by the Association des Étudiants de l'Université de Technologie de Belfort-Montbéliard (AE UTBM), for both past and future years. By making a contribution to this project, you acknowledge and agree that AE UTBM has the exclusive right to use, distribute, and modify your contribution, as well as to license others to do the same, in any way they see fit. + +## License + +This project was previously released under the MIT license, but it has since been changed to the GPL v3 license. Any contributions made to this project before the switch to GPL v3 are still subject to the MIT license, while contributions made after the switch are subject to the GPL v3 license. + +## List of Contributors + +- [@Hyask](https://github.com/Hyask) — Florent "Skia" Jacquet +- [@klmp200](https://github.com/klmp200) — Antoine "Sli" Bartuccio +- [@nab-os](https://github.com/nab-os) (AKA Gnikwo) — Sasha "Nabos" Ballet +- [@Krophil](https://github.com/Krophil) — Pierre "Krophil'" Brunet +- [@guillaume-renaud](https://github.com/guillaume-renaud) — Guillaume "Lo-J" RENAUD +- [@imperosol](https://github.com/imperosol) — Thomas "Maréchal" Girod +- [@TheoDurr](https://github.com/TheoDurr) — Théo "Ailé" Durr +- [@RTrioux](https://github.com/RTrioux) — Robin "Vial" Trioux +- [@TheRolfFR](https://github.com/TheRolfFR) — Yann "Réseau" Le Vaguerès +- [@Magador](https://github.com/Magador) — Lucie "Magador" Lenglet + +_If you've contributed to this project and your name isn't on the list, please let us know so we can add you. And if you've contributed anonymously, thank you! We appreciate your contributions just as much as those from named contributors._ diff --git a/LICENSE.old b/LICENSE.old new file mode 100644 index 00000000..58d11896 --- /dev/null +++ b/LICENSE.old @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 Skia + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/accounting/__init__.py b/accounting/__init__.py index 0aa913c4..ebcdf848 100644 --- a/accounting/__init__.py +++ b/accounting/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/accounting/admin.py b/accounting/admin.py index e485392d..6c1a64ec 100644 --- a/accounting/admin.py +++ b/accounting/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.contrib import admin diff --git a/accounting/models.py b/accounting/models.py index e10a029d..827d6ab2 100644 --- a/accounting/models.py +++ b/accounting/models.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import reverse diff --git a/accounting/tests.py b/accounting/tests.py index 6a4ae2b3..32a0671c 100644 --- a/accounting/tests.py +++ b/accounting/tests.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.test import TestCase diff --git a/accounting/urls.py b/accounting/urls.py index 7363cd48..45b5d1d0 100644 --- a/accounting/urls.py +++ b/accounting/urls.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/accounting/views.py b/accounting/views.py index 7182ec83..ccc9c348 100644 --- a/accounting/views.py +++ b/accounting/views.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.views.generic import ListView, DetailView diff --git a/api/__init__.py b/api/__init__.py index 0aa913c4..ebcdf848 100644 --- a/api/__init__.py +++ b/api/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/api/admin.py b/api/admin.py index 362a5c4f..62d4c311 100644 --- a/api/admin.py +++ b/api/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.contrib import admin diff --git a/api/models.py b/api/models.py index 5672eba4..b8e5144b 100644 --- a/api/models.py +++ b/api/models.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.db import models diff --git a/api/tests.py b/api/tests.py index 46a200c2..04b8f687 100644 --- a/api/tests.py +++ b/api/tests.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.test import TestCase diff --git a/api/urls.py b/api/urls.py index ca267eee..ede10738 100644 --- a/api/urls.py +++ b/api/urls.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import re_path, path, include diff --git a/api/views/__init__.py b/api/views/__init__.py index ae83fbe5..0c3248ba 100644 --- a/api/views/__init__.py +++ b/api/views/__init__.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from rest_framework.response import Response diff --git a/api/views/api.py b/api/views/api.py index 732ee654..c22170c2 100644 --- a/api/views/api.py +++ b/api/views/api.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from rest_framework.response import Response diff --git a/api/views/club.py b/api/views/club.py index 24377073..3e2fc1ea 100644 --- a/api/views/club.py +++ b/api/views/club.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from rest_framework.response import Response diff --git a/api/views/counter.py b/api/views/counter.py index 604cd986..4126991b 100644 --- a/api/views/counter.py +++ b/api/views/counter.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from rest_framework import serializers diff --git a/api/views/group.py b/api/views/group.py index f6fd7594..4660ce27 100644 --- a/api/views/group.py +++ b/api/views/group.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from rest_framework import serializers diff --git a/api/views/launderette.py b/api/views/launderette.py index ab7fcf66..549dc161 100644 --- a/api/views/launderette.py +++ b/api/views/launderette.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from rest_framework import serializers diff --git a/api/views/user.py b/api/views/user.py index ed3b6b1a..68dad14b 100644 --- a/api/views/user.py +++ b/api/views/user.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import datetime diff --git a/club/__init__.py b/club/__init__.py index 0aa913c4..ebcdf848 100644 --- a/club/__init__.py +++ b/club/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/club/admin.py b/club/admin.py index c9b547b5..e97c6e60 100644 --- a/club/admin.py +++ b/club/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from ajax_select import make_ajax_form from django.contrib import admin diff --git a/club/forms.py b/club/forms.py index dcf88ff5..0d959d14 100644 --- a/club/forms.py +++ b/club/forms.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.conf import settings diff --git a/club/models.py b/club/models.py index 4d22b8e5..10cd1b72 100644 --- a/club/models.py +++ b/club/models.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from typing import Optional diff --git a/club/tests.py b/club/tests.py index 0cc05e89..56c92a7f 100644 --- a/club/tests.py +++ b/club/tests.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from datetime import timedelta diff --git a/club/urls.py b/club/urls.py index d33a5167..3493deb2 100644 --- a/club/urls.py +++ b/club/urls.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/club/views.py b/club/views.py index 2470cbb4..5626bcad 100644 --- a/club/views.py +++ b/club/views.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import csv diff --git a/com/__init__.py b/com/__init__.py index 0aa913c4..ebcdf848 100644 --- a/com/__init__.py +++ b/com/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/com/admin.py b/com/admin.py index 7e31cd52..1c76eef6 100644 --- a/com/admin.py +++ b/com/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from ajax_select import make_ajax_form from django.contrib import admin diff --git a/com/models.py b/com/models.py index 71da8941..ca2e3086 100644 --- a/com/models.py +++ b/com/models.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.shortcuts import render diff --git a/com/tests.py b/com/tests.py index 6dde46db..3eb93d2c 100644 --- a/com/tests.py +++ b/com/tests.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.core.files.uploadedfile import SimpleUploadedFile from django.test import TestCase diff --git a/com/urls.py b/com/urls.py index ca4ee41e..582ebde7 100644 --- a/com/urls.py +++ b/com/urls.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/com/views.py b/com/views.py index f8d0119b..8b0b01bb 100644 --- a/com/views.py +++ b/com/views.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.shortcuts import redirect, get_object_or_404 diff --git a/core/__init__.py b/core/__init__.py index 0aa913c4..ebcdf848 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/core/admin.py b/core/admin.py index 33ce50e4..9dda8fba 100644 --- a/core/admin.py +++ b/core/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.contrib import admin diff --git a/core/apps.py b/core/apps.py index cd131f57..f4314550 100644 --- a/core/apps.py +++ b/core/apps.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import sys diff --git a/core/converters.py b/core/converters.py index cb7bc95b..a3694358 100644 --- a/core/converters.py +++ b/core/converters.py @@ -1,3 +1,23 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# + from core.models import Page diff --git a/core/lookups.py b/core/lookups.py index f245442b..28f57f9b 100644 --- a/core/lookups.py +++ b/core/lookups.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.core.exceptions import PermissionDenied diff --git a/core/management/__init__.py b/core/management/__init__.py index 0aa913c4..ebcdf848 100644 --- a/core/management/__init__.py +++ b/core/management/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/core/management/commands/__init__.py b/core/management/commands/__init__.py index 0aa913c4..ebcdf848 100644 --- a/core/management/commands/__init__.py +++ b/core/management/commands/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/core/management/commands/compilemessages.py b/core/management/commands/compilemessages.py index b3c336bc..22330e60 100644 --- a/core/management/commands/compilemessages.py +++ b/core/management/commands/compilemessages.py @@ -1,26 +1,22 @@ #!/usr/bin/env python3 -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/core/management/commands/compilestatic.py b/core/management/commands/compilestatic.py index 31e5c13e..76bf7561 100644 --- a/core/management/commands/compilestatic.py +++ b/core/management/commands/compilestatic.py @@ -1,26 +1,22 @@ #!/usr/bin/env python3 -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import os diff --git a/core/management/commands/documentation.py b/core/management/commands/documentation.py index 79f2e0d8..271c2b90 100644 --- a/core/management/commands/documentation.py +++ b/core/management/commands/documentation.py @@ -1,26 +1,22 @@ #!/usr/bin/env python3 -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import os diff --git a/core/management/commands/markdown.py b/core/management/commands/markdown.py index 1b5a6855..c31985a5 100644 --- a/core/management/commands/markdown.py +++ b/core/management/commands/markdown.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import os diff --git a/core/management/commands/setup.py b/core/management/commands/setup.py index cc0ee1ca..b7870312 100644 --- a/core/management/commands/setup.py +++ b/core/management/commands/setup.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import os diff --git a/core/markdown.py b/core/markdown.py index 72b1cd02..8d764ed6 100644 --- a/core/markdown.py +++ b/core/markdown.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import os diff --git a/core/middleware.py b/core/middleware.py index 39afa266..9795fe96 100644 --- a/core/middleware.py +++ b/core/middleware.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import importlib diff --git a/core/models.py b/core/models.py index c8a38426..6ab2767a 100644 --- a/core/models.py +++ b/core/models.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +## -*- coding:utf-8 -*- # -# Copyright 2016,2017,2018 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import importlib from typing import Union, Optional, List diff --git a/core/operations.py b/core/operations.py index 29740292..77a9fbd9 100644 --- a/core/operations.py +++ b/core/operations.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # """ diff --git a/core/scss/finder.py b/core/scss/finder.py index 3e25279f..17232908 100644 --- a/core/scss/finder.py +++ b/core/scss/finder.py @@ -1,26 +1,22 @@ #!/usr/bin/env python3 -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import os diff --git a/core/scss/processor.py b/core/scss/processor.py index 6aa334f2..909dff1d 100644 --- a/core/scss/processor.py +++ b/core/scss/processor.py @@ -1,26 +1,22 @@ #!/usr/bin/env python3 -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import os diff --git a/core/scss/storage.py b/core/scss/storage.py index e24fd406..1ae6d381 100644 --- a/core/scss/storage.py +++ b/core/scss/storage.py @@ -1,26 +1,22 @@ #!/usr/bin/env python3 -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.conf import settings diff --git a/core/search_indexes.py b/core/search_indexes.py index b98dc67b..8630d042 100644 --- a/core/search_indexes.py +++ b/core/search_indexes.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.db import models diff --git a/core/templatetags/__init__.py b/core/templatetags/__init__.py index 0aa913c4..ebcdf848 100644 --- a/core/templatetags/__init__.py +++ b/core/templatetags/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/core/templatetags/renderer.py b/core/templatetags/renderer.py index 2ee19a45..356b81e8 100644 --- a/core/templatetags/renderer.py +++ b/core/templatetags/renderer.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import datetime diff --git a/core/tests.py b/core/tests.py index 61d497a5..71927140 100644 --- a/core/tests.py +++ b/core/tests.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import os diff --git a/core/urls.py b/core/urls.py index ec42f880..a337b93c 100644 --- a/core/urls.py +++ b/core/urls.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path, re_path, register_converter diff --git a/core/utils.py b/core/utils.py index d30e3ebf..aab8dc72 100644 --- a/core/utils.py +++ b/core/utils.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import os diff --git a/core/views/__init__.py b/core/views/__init__.py index fc807663..5d1ec3c4 100644 --- a/core/views/__init__.py +++ b/core/views/__init__.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import types diff --git a/core/views/files.py b/core/views/files.py index 1047f381..b5766458 100644 --- a/core/views/files.py +++ b/core/views/files.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # # This file contains all the views that concern the page model diff --git a/core/views/group.py b/core/views/group.py index a6b61866..dd513d00 100644 --- a/core/views/group.py +++ b/core/views/group.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # """ diff --git a/core/views/page.py b/core/views/page.py index c2c7dbce..76b06625 100644 --- a/core/views/page.py +++ b/core/views/page.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # # This file contains all the views that concern the page model diff --git a/core/views/site.py b/core/views/site.py index c34cf2c4..71f35040 100644 --- a/core/views/site.py +++ b/core/views/site.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.shortcuts import render, redirect diff --git a/core/views/user.py b/core/views/user.py index dbd60f13..8cb624e3 100644 --- a/core/views/user.py +++ b/core/views/user.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # # This file contains all the views that concern the user model diff --git a/counter/__init__.py b/counter/__init__.py index 5d5acce0..ebcdf848 100644 --- a/counter/__init__.py +++ b/counter/__init__.py @@ -1,24 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017,2019 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/counter/admin.py b/counter/admin.py index 1e8d9a03..c9d37ab1 100644 --- a/counter/admin.py +++ b/counter/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from ajax_select import make_ajax_form from django.contrib import admin diff --git a/counter/app.py b/counter/app.py index c1feefe2..99a64c11 100644 --- a/counter/app.py +++ b/counter/app.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.apps import AppConfig diff --git a/counter/forms.py b/counter/forms.py index a09236e7..96e78420 100644 --- a/counter/forms.py +++ b/counter/forms.py @@ -1,3 +1,23 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# + from ajax_select import make_ajax_field from ajax_select.fields import AutoCompleteSelectField, AutoCompleteSelectMultipleField from django import forms diff --git a/counter/models.py b/counter/models.py index 476aaf13..63340600 100644 --- a/counter/models.py +++ b/counter/models.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from __future__ import annotations diff --git a/counter/signals.py b/counter/signals.py index 9c1f4b78..19dc3529 100644 --- a/counter/signals.py +++ b/counter/signals.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.db.models.signals import pre_delete diff --git a/counter/tests.py b/counter/tests.py index 6079099a..e4e6ba0b 100644 --- a/counter/tests.py +++ b/counter/tests.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from datetime import date, timedelta import json diff --git a/counter/urls.py b/counter/urls.py index 3edf1faa..fdf834c2 100644 --- a/counter/urls.py +++ b/counter/urls.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/counter/views.py b/counter/views.py index 6bbc819d..7598022b 100644 --- a/counter/views.py +++ b/counter/views.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import json from urllib.parse import parse_qs diff --git a/doc/header b/doc/header index 9ab735b7..ebcdf848 100644 --- a/doc/header +++ b/doc/header @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # -# \ No newline at end of file +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# diff --git a/eboutic/__init__.py b/eboutic/__init__.py index 0aa913c4..ebcdf848 100644 --- a/eboutic/__init__.py +++ b/eboutic/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/eboutic/admin.py b/eboutic/admin.py index 84ca1afb..c93bdd29 100644 --- a/eboutic/admin.py +++ b/eboutic/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from ajax_select import make_ajax_form from django.contrib import admin diff --git a/eboutic/converters.py b/eboutic/converters.py index a757a25c..da2846cd 100644 --- a/eboutic/converters.py +++ b/eboutic/converters.py @@ -1,24 +1,22 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2022 -# - Maréchal -# - Maréchal -# - Maréchal +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path, register_converter diff --git a/eboutic/views.py b/eboutic/views.py index 885edf43..f4d99f81 100644 --- a/eboutic/views.py +++ b/eboutic/views.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import base64 diff --git a/election/__init__.py b/election/__init__.py index e69de29b..ebcdf848 100644 --- a/election/__init__.py +++ b/election/__init__.py @@ -0,0 +1,19 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# diff --git a/election/admin.py b/election/admin.py index 3cd3ce37..44e359c2 100644 --- a/election/admin.py +++ b/election/admin.py @@ -1,3 +1,23 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# + from ajax_select import make_ajax_form from django.contrib import admin diff --git a/election/models.py b/election/models.py index f100a1d6..a3968f04 100644 --- a/election/models.py +++ b/election/models.py @@ -1,3 +1,23 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# + from django.db import models from ordered_model.models import OrderedModel from django.utils.translation import gettext_lazy as _ diff --git a/election/tests.py b/election/tests.py index 03b46481..b8607e99 100644 --- a/election/tests.py +++ b/election/tests.py @@ -1,3 +1,23 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# + from django.test import TestCase from django.urls import reverse from django.core.management import call_command diff --git a/election/urls.py b/election/urls.py index 697b2464..2fcdfaaa 100644 --- a/election/urls.py +++ b/election/urls.py @@ -1,3 +1,23 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# + from django.urls import path from election.views import * diff --git a/election/views.py b/election/views.py index a223c78c..132305de 100644 --- a/election/views.py +++ b/election/views.py @@ -1,3 +1,23 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# + from django.shortcuts import get_object_or_404 from django.views.generic import ListView, DetailView from django.views.generic.edit import UpdateView, CreateView diff --git a/forum/__init__.py b/forum/__init__.py index 0aa913c4..ebcdf848 100644 --- a/forum/__init__.py +++ b/forum/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/forum/admin.py b/forum/admin.py index 6d0c088a..1c2e4a27 100644 --- a/forum/admin.py +++ b/forum/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.contrib import admin diff --git a/forum/models.py b/forum/models.py index 3894caa7..6f6b138f 100644 --- a/forum/models.py +++ b/forum/models.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017,2018 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.db import models diff --git a/forum/tests.py b/forum/tests.py index 46a200c2..04b8f687 100644 --- a/forum/tests.py +++ b/forum/tests.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.test import TestCase diff --git a/forum/urls.py b/forum/urls.py index 8926ea01..9aa69c9f 100644 --- a/forum/urls.py +++ b/forum/urls.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017,2018 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/forum/views.py b/forum/views.py index 9b75794b..1e41f2aa 100644 --- a/forum/views.py +++ b/forum/views.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +## -*- coding:utf-8 -*- # -# Copyright 2016,2017,2018 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.shortcuts import get_object_or_404 diff --git a/galaxy/__init__.py b/galaxy/__init__.py index e69de29b..ebcdf848 100644 --- a/galaxy/__init__.py +++ b/galaxy/__init__.py @@ -0,0 +1,19 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# diff --git a/galaxy/apps.py b/galaxy/apps.py index d3b3e849..4b226188 100644 --- a/galaxy/apps.py +++ b/galaxy/apps.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2023 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.apps import AppConfig diff --git a/galaxy/management/commands/rule_galaxy.py b/galaxy/management/commands/rule_galaxy.py index 55cb9ae9..a0aef738 100644 --- a/galaxy/management/commands/rule_galaxy.py +++ b/galaxy/management/commands/rule_galaxy.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2023 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import warnings diff --git a/galaxy/models.py b/galaxy/models.py index 744cca79..6932a9c8 100644 --- a/galaxy/models.py +++ b/galaxy/models.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2023 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from __future__ import annotations diff --git a/galaxy/tests.py b/galaxy/tests.py index 70314574..d9babe0d 100644 --- a/galaxy/tests.py +++ b/galaxy/tests.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2023 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import json diff --git a/galaxy/urls.py b/galaxy/urls.py index fcab45bc..bdf11fad 100644 --- a/galaxy/urls.py +++ b/galaxy/urls.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2023 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/galaxy/views.py b/galaxy/views.py index 3dda003e..42854a49 100644 --- a/galaxy/views.py +++ b/galaxy/views.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2023 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.views.generic import DetailView, View diff --git a/launderette/__init__.py b/launderette/__init__.py index 0aa913c4..ebcdf848 100644 --- a/launderette/__init__.py +++ b/launderette/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/launderette/admin.py b/launderette/admin.py index a4499d0e..bd1a3032 100644 --- a/launderette/admin.py +++ b/launderette/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from ajax_select import make_ajax_form from django.contrib import admin diff --git a/launderette/models.py b/launderette/models.py index 3ca12b2d..4789b1c2 100644 --- a/launderette/models.py +++ b/launderette/models.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.db import models, DataError diff --git a/launderette/tests.py b/launderette/tests.py index 46a200c2..04b8f687 100644 --- a/launderette/tests.py +++ b/launderette/tests.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.test import TestCase diff --git a/launderette/urls.py b/launderette/urls.py index ac270aec..c10c582e 100644 --- a/launderette/urls.py +++ b/launderette/urls.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/launderette/views.py b/launderette/views.py index 716b41f4..15eaf4e8 100644 --- a/launderette/views.py +++ b/launderette/views.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from datetime import datetime, timedelta diff --git a/manage.py b/manage.py index 068281a9..37582e05 100755 --- a/manage.py +++ b/manage.py @@ -1,18 +1,22 @@ #!/usr/bin/env python3 -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # import os diff --git a/matmat/__init__.py b/matmat/__init__.py index e69de29b..ebcdf848 100644 --- a/matmat/__init__.py +++ b/matmat/__init__.py @@ -0,0 +1,19 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# diff --git a/matmat/admin.py b/matmat/admin.py index 8c38f3f3..62d4c311 100644 --- a/matmat/admin.py +++ b/matmat/admin.py @@ -1,3 +1,23 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# + from django.contrib import admin # Register your models here. diff --git a/matmat/models.py b/matmat/models.py index 71a83623..b8e5144b 100644 --- a/matmat/models.py +++ b/matmat/models.py @@ -1,3 +1,23 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# + from django.db import models # Create your models here. diff --git a/matmat/tests.py b/matmat/tests.py index 7ce503c2..04b8f687 100644 --- a/matmat/tests.py +++ b/matmat/tests.py @@ -1,3 +1,23 @@ +# -*- coding:utf-8 -*- +# +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. +# +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. +# +# You can find the whole source code at https://github.com/ae-utbm/sith3 +# +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" +# +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" +# + from django.test import TestCase # Create your tests here. diff --git a/matmat/urls.py b/matmat/urls.py index 6e657262..dfe8c9db 100644 --- a/matmat/urls.py +++ b/matmat/urls.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/matmat/views.py b/matmat/views.py index 10b2d4f5..a8cfc40c 100644 --- a/matmat/views.py +++ b/matmat/views.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from ast import literal_eval from enum import Enum diff --git a/pedagogy/__init__.py b/pedagogy/__init__.py index 7ea16950..ebcdf848 100644 --- a/pedagogy/__init__.py +++ b/pedagogy/__init__.py @@ -1,23 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/pedagogy/admin.py b/pedagogy/admin.py index 0f68234d..1ada5f23 100644 --- a/pedagogy/admin.py +++ b/pedagogy/admin.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from ajax_select import make_ajax_form from django.contrib import admin diff --git a/pedagogy/forms.py b/pedagogy/forms.py index 6a3d29ce..58563591 100644 --- a/pedagogy/forms.py +++ b/pedagogy/forms.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django import forms diff --git a/pedagogy/migrations/0002_auto_20190827_2251.py b/pedagogy/migrations/0002_auto_20190827_2251.py index 5ab510df..9b744312 100644 --- a/pedagogy/migrations/0002_auto_20190827_2251.py +++ b/pedagogy/migrations/0002_auto_20190827_2251.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from __future__ import unicode_literals diff --git a/pedagogy/models.py b/pedagogy/models.py index 2278dda6..cdfd8c3f 100644 --- a/pedagogy/models.py +++ b/pedagogy/models.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.db import models diff --git a/pedagogy/search_indexes.py b/pedagogy/search_indexes.py index 3ea75343..eed4a9ad 100644 --- a/pedagogy/search_indexes.py +++ b/pedagogy/search_indexes.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.db import models diff --git a/pedagogy/tests.py b/pedagogy/tests.py index baee59bf..24e97143 100644 --- a/pedagogy/tests.py +++ b/pedagogy/tests.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.conf import settings diff --git a/pedagogy/urls.py b/pedagogy/urls.py index 8cfca8d2..1540b578 100644 --- a/pedagogy/urls.py +++ b/pedagogy/urls.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/pedagogy/views.py b/pedagogy/views.py index 13151c60..bd269398 100644 --- a/pedagogy/views.py +++ b/pedagogy/views.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2019 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.views.generic import ( diff --git a/rootplace/__init__.py b/rootplace/__init__.py index 0aa913c4..ebcdf848 100644 --- a/rootplace/__init__.py +++ b/rootplace/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/rootplace/admin.py b/rootplace/admin.py index 362a5c4f..62d4c311 100644 --- a/rootplace/admin.py +++ b/rootplace/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.contrib import admin diff --git a/rootplace/management/__init__.py b/rootplace/management/__init__.py index 6492635a..ebcdf848 100644 --- a/rootplace/management/__init__.py +++ b/rootplace/management/__init__.py @@ -1,23 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/rootplace/management/commands/__init__.py b/rootplace/management/commands/__init__.py index 6492635a..ebcdf848 100644 --- a/rootplace/management/commands/__init__.py +++ b/rootplace/management/commands/__init__.py @@ -1,23 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/rootplace/management/commands/delete_all_forum_user_messages.py b/rootplace/management/commands/delete_all_forum_user_messages.py index 5bf9cd4b..37df256c 100644 --- a/rootplace/management/commands/delete_all_forum_user_messages.py +++ b/rootplace/management/commands/delete_all_forum_user_messages.py @@ -1,26 +1,22 @@ #!/usr/bin/env python3 -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.core.management.base import BaseCommand diff --git a/rootplace/models.py b/rootplace/models.py index 5672eba4..b8e5144b 100644 --- a/rootplace/models.py +++ b/rootplace/models.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.db import models diff --git a/rootplace/tests.py b/rootplace/tests.py index f1bb174f..1fa7592c 100644 --- a/rootplace/tests.py +++ b/rootplace/tests.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from datetime import date, timedelta diff --git a/rootplace/urls.py b/rootplace/urls.py index 696fb81e..e9956455 100644 --- a/rootplace/urls.py +++ b/rootplace/urls.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/rootplace/views.py b/rootplace/views.py index fbb04e79..ff5f04a1 100644 --- a/rootplace/views.py +++ b/rootplace/views.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from ajax_select.fields import AutoCompleteSelectField diff --git a/sas/__init__.py b/sas/__init__.py index 0aa913c4..ebcdf848 100644 --- a/sas/__init__.py +++ b/sas/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/sas/admin.py b/sas/admin.py index d1001ef8..9272bdb7 100644 --- a/sas/admin.py +++ b/sas/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.contrib import admin diff --git a/sas/models.py b/sas/models.py index e9fe4f97..4d746ee5 100644 --- a/sas/models.py +++ b/sas/models.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.db import models diff --git a/sas/tests.py b/sas/tests.py index 46a200c2..04b8f687 100644 --- a/sas/tests.py +++ b/sas/tests.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.test import TestCase diff --git a/sas/urls.py b/sas/urls.py index a425c0e6..0df10043 100644 --- a/sas/urls.py +++ b/sas/urls.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/sas/views.py b/sas/views.py index ff51fe37..5d83a519 100644 --- a/sas/views.py +++ b/sas/views.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.shortcuts import redirect diff --git a/sith/__init__.py b/sith/__init__.py index 0aa913c4..ebcdf848 100644 --- a/sith/__init__.py +++ b/sith/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/sith/settings.py b/sith/settings.py index 5ed279af..28adbda7 100644 --- a/sith/settings.py +++ b/sith/settings.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # """ diff --git a/sith/toolbar_debug.py b/sith/toolbar_debug.py index 139aec36..8bdf8788 100644 --- a/sith/toolbar_debug.py +++ b/sith/toolbar_debug.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017,2021 -# - Sli -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from debug_toolbar.panels.templates import TemplatesPanel as BaseTemplatesPanel diff --git a/sith/urls.py b/sith/urls.py index 6a098b5e..27e27bed 100644 --- a/sith/urls.py +++ b/sith/urls.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # """sith URL Configuration diff --git a/sith/wsgi.py b/sith/wsgi.py index 017c575a..a6877af3 100644 --- a/sith/wsgi.py +++ b/sith/wsgi.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # """ diff --git a/stock/__init__.py b/stock/__init__.py index 6a83e48e..ebcdf848 100644 --- a/stock/__init__.py +++ b/stock/__init__.py @@ -1,24 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Guillaume "Lo-J" Renaud -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/stock/admin.py b/stock/admin.py index 46567a3b..57fe2050 100644 --- a/stock/admin.py +++ b/stock/admin.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Guillaume "Lo-J" Renaud -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.contrib import admin diff --git a/stock/models.py b/stock/models.py index 6c9c1ae7..d00ecb2d 100644 --- a/stock/models.py +++ b/stock/models.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Guillaume "Lo-J" Renaud -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.db import models diff --git a/stock/tests.py b/stock/tests.py index ad602a5c..04b8f687 100644 --- a/stock/tests.py +++ b/stock/tests.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Guillaume "Lo-J" Renaud -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.test import TestCase diff --git a/stock/urls.py b/stock/urls.py index cf7ff13f..3c6f2156 100644 --- a/stock/urls.py +++ b/stock/urls.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Guillaume "Lo-J" Renaud -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/stock/views.py b/stock/views.py index 6b4776aa..be82a092 100644 --- a/stock/views.py +++ b/stock/views.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2016,2017 -# - Guillaume "Lo-J" Renaud -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from collections import OrderedDict diff --git a/subscription/__init__.py b/subscription/__init__.py index 0aa913c4..ebcdf848 100644 --- a/subscription/__init__.py +++ b/subscription/__init__.py @@ -1,15 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/subscription/admin.py b/subscription/admin.py index f81e6fde..b6350937 100644 --- a/subscription/admin.py +++ b/subscription/admin.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from ajax_select import make_ajax_form from django.contrib import admin diff --git a/subscription/models.py b/subscription/models.py index f1c2b2d5..64d270b5 100644 --- a/subscription/models.py +++ b/subscription/models.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from datetime import date, timedelta diff --git a/subscription/tests.py b/subscription/tests.py index 4e8ec5a1..d6dbc035 100644 --- a/subscription/tests.py +++ b/subscription/tests.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from datetime import date from unittest import mock diff --git a/subscription/urls.py b/subscription/urls.py index 30992187..2d068731 100644 --- a/subscription/urls.py +++ b/subscription/urls.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/subscription/views.py b/subscription/views.py index bd10ac2c..2e784619 100644 --- a/subscription/views.py +++ b/subscription/views.py @@ -1,17 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # -# You can find the source code of the website at https://github.com/ae-utbm/sith3 +# You can find the whole source code at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.views.generic.edit import CreateView, FormView diff --git a/trombi/__init__.py b/trombi/__init__.py index e9ebba43..ebcdf848 100644 --- a/trombi/__init__.py +++ b/trombi/__init__.py @@ -1,23 +1,19 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # diff --git a/trombi/admin.py b/trombi/admin.py index 0af9bcca..e7caa06c 100644 --- a/trombi/admin.py +++ b/trombi/admin.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.contrib import admin diff --git a/trombi/models.py b/trombi/models.py index 18f36526..8537df7e 100644 --- a/trombi/models.py +++ b/trombi/models.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.db import models diff --git a/trombi/tests.py b/trombi/tests.py index de62cd38..04b8f687 100644 --- a/trombi/tests.py +++ b/trombi/tests.py @@ -1,25 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017 -# - Skia +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.test import TestCase diff --git a/trombi/urls.py b/trombi/urls.py index 49ac42db..753d39e0 100644 --- a/trombi/urls.py +++ b/trombi/urls.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017,2020 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.urls import path diff --git a/trombi/views.py b/trombi/views.py index 98bf5fc2..c7cc170d 100644 --- a/trombi/views.py +++ b/trombi/views.py @@ -1,26 +1,21 @@ -# -*- coding:utf-8 -* +# -*- coding:utf-8 -*- # -# Copyright 2017,2020 -# - Skia -# - Sli +# Copyright 2023 © AE UTBM +# ae@utbm.fr / ae.info@utbm.fr +# All contributors are listed in the CONTRIBUTORS file. # -# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM, -# http://ae.utbm.fr. +# This file is part of the website of the UTBM Student Association (AE UTBM), +# https://ae.utbm.fr. # -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License a published by the Free Software -# Foundation; either version 3 of the License, or (at your option) any later -# version. +# You can find the whole source code at https://github.com/ae-utbm/sith3 # -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple -# Place - Suite 330, Boston, MA 02111-1307, USA. +# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# OR WITHIN THE LOCAL FILE "LICENSE" # +# PREVIOUSLY LICENSED UNDER THE MIT LICENSE, +# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old +# OR WITHIN THE LOCAL FILE "LICENSE.old" # from django.http import Http404, HttpResponseRedirect