diff --git a/accounting/__init__.py b/accounting/__init__.py index 0aa913c48..ebcdf848a 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 95216e594..407fe87bb 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 55bdda465..aec35ca51 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 decimal import Decimal diff --git a/accounting/tests.py b/accounting/tests.py index 0ea7a29ee..13e28f783 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 datetime import date, timedelta diff --git a/accounting/urls.py b/accounting/urls.py index 7363cd482..45b5d1d06 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 f9618beb9..da4b01455 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" # import collections diff --git a/api/__init__.py b/api/__init__.py index 0aa913c48..ebcdf848a 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 5531f2a2d..df9eed365 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" # # Register your models here. diff --git a/api/models.py b/api/models.py index 084dfa735..041b9fc8e 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" # # Create your models here. diff --git a/api/tests.py b/api/tests.py index d888e761c..e0805cd61 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" # # Create your tests here. diff --git a/api/urls.py b/api/urls.py index 4dde736ca..a694c9bd7 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 include, path, re_path diff --git a/api/views/__init__.py b/api/views/__init__.py index b0157985f..32e8aa47a 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 django.core.exceptions import PermissionDenied diff --git a/api/views/api.py b/api/views/api.py index 4329a98b1..78b802d4a 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.decorators import api_view, renderer_classes diff --git a/api/views/club.py b/api/views/club.py index a08d6c4f9..317e68e3e 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 django.conf import settings diff --git a/api/views/counter.py b/api/views/counter.py index 2e633cae2..889a85dd0 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 a6aa7e2bd..1891bc59e 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 a1225274c..28a680ed4 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 a9ad19a66..8044c5491 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 0aa913c48..ebcdf848a 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 c9b547b50..e97c6e60e 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 ca6cb3246..c0b64f7f7 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 ajax_select.fields import AutoCompleteSelectMultipleField diff --git a/club/models.py b/club/models.py index 252dc0855..6e8e1cee7 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 21285adeb..34e83de15 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 d33a51674..3493deb2a 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 1d738b8e2..f69f96f7b 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 0aa913c48..ebcdf848a 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 7e31cd52f..1c76eef6f 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 d7a315965..fa96520ee 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.conf import settings diff --git a/com/tests.py b/com/tests.py index df3741610..53f31bd34 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" # import pytest from django.conf import settings diff --git a/com/urls.py b/com/urls.py index ca4ee41e0..582ebde76 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 774d1c5fa..90e3d8caf 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 datetime import timedelta diff --git a/core/__init__.py b/core/__init__.py index 0aa913c48..ebcdf848a 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 8b202a30f..19e64a95e 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 ajax_select import make_ajax_form diff --git a/core/apps.py b/core/apps.py index 872f34aed..ae870e63c 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 b681564dd..a3694358e 100644 --- a/core/converters.py +++ b/core/converters.py @@ -1,3 +1,26 @@ +# -*- 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 + + class FourDigitYearConverter: regex = "[0-9]{4}" diff --git a/core/lookups.py b/core/lookups.py index 15205194e..6391fe90e 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 ajax_select import LookupChannel, register diff --git a/core/management/__init__.py b/core/management/__init__.py index 0aa913c48..ebcdf848a 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 0aa913c48..ebcdf848a 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 87f1b2de2..601182f27 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 f1268c23c..a33b9c7f1 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 bcaa06648..6549352ac 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 35941ec43..c1a820335 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 5c91e1e66..f8f8c51e3 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 0abe1954d..8004509f6 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 ddc6dea33..80be46556 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 4fba43c36..4676b2c54 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 import os diff --git a/core/operations.py b/core/operations.py index 10882f22a..7b8d78c14 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 0b62fab32..a2c0fdf3c 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 add5e042e..4f9941a62 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 e24fd406f..1ae6d381e 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 f2448adbb..cec1262e2 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 0aa913c48..ebcdf848a 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 86bd6791e..81562e5d3 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 733c0c38e..59231f294 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 3f6398e8f..533aba288 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 62cf04bba..064164099 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 ad86fe2d8..aa34380bb 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 7cce06e76..45b33b638 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 1c5988325..06fea5163 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 5f1482355..6df39cde9 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 bdd575f4b..07b772b5a 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" # import json diff --git a/core/views/user.py b/core/views/user.py index d8d8d9096..5b7f9cb9d 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 5d5acce02..ebcdf848a 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 1e8d9a03d..c9d37ab1f 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 a1165d7c7..e8b2b0646 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 7c282f57d..ec83e896f 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 c9972f10f..9f6fa5008 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 9221494dc..921b313f0 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 ddfde22cc..cf9359f01 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" # import json import re diff --git a/counter/urls.py b/counter/urls.py index 3edf1faaf..fdf834c28 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 fe10d0a12..ed5f9a02b 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 import re diff --git a/doc/header b/doc/header index 9ab735b78..ebcdf848a 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 0aa913c48..ebcdf848a 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 84ca1afb2..c93bdd29f 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 a757a25ce..da2846cd9 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 c240d64d1..c405dcb1d 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 e69de29bb..ebcdf848a 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 fadc9a52d..c4accd661 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 3bcf761f2..5fdd19f97 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 django.utils import timezone from django.utils.translation import gettext_lazy as _ diff --git a/election/tests.py b/election/tests.py index 9ea534b8f..5dcfaa341 100644 --- a/election/tests.py +++ b/election/tests.py @@ -1,4 +1,23 @@ -from django.conf import settings +# -*- 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 diff --git a/election/urls.py b/election/urls.py index 697b24645..2fcdfaaa4 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 71be8bfed..e83bb3421 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 ajax_select import make_ajax_field from ajax_select.fields import AutoCompleteSelectField from django import forms diff --git a/forum/__init__.py b/forum/__init__.py index 0aa913c48..ebcdf848a 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 eff7d4014..3406e824b 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 a7d77c4de..554328629 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 datetime import datetime diff --git a/forum/tests.py b/forum/tests.py index d888e761c..e0805cd61 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" # # Create your tests here. diff --git a/forum/urls.py b/forum/urls.py index 8926ea011..9aa69c9fb 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 74e6bff42..8141a246a 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 ajax_select import make_ajax_field diff --git a/galaxy/__init__.py b/galaxy/__init__.py index e69de29bb..ebcdf848a 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 d3b3e849c..4b2261888 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 1743fadc2..bc8fe8d57 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 logging import warnings diff --git a/galaxy/models.py b/galaxy/models.py index cca7397d6..46787f8bc 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 f1a3f092f..11801746a 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 fcab45bcf..bdf11fad6 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 3e0b33dab..fa12703c7 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.db.models import Case, F, Q, Value, When diff --git a/launderette/__init__.py b/launderette/__init__.py index 0aa913c48..ebcdf848a 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 a4499d0ef..bd1a30325 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 c2f344bb5..407e3c7c3 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.conf import settings diff --git a/launderette/tests.py b/launderette/tests.py index d888e761c..e0805cd61 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" # # Create your tests here. diff --git a/launderette/urls.py b/launderette/urls.py index ac270aec9..c10c582ea 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 c0b16eed3..f9213da3f 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 collections import OrderedDict diff --git a/manage.py b/manage.py index 068281a99..37582e058 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 e69de29bb..ebcdf848a 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 846f6b406..62d4c3117 100644 --- a/matmat/admin.py +++ b/matmat/admin.py @@ -1 +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 6b2021999..b8e5144b6 100644 --- a/matmat/models.py +++ b/matmat/models.py @@ -1 +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 a39b155ac..04b8f6879 100644 --- a/matmat/tests.py +++ b/matmat/tests.py @@ -1 +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 6e657262a..dfe8c9db6 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 eb769c62f..41dc0f2f8 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 7ea169506..ebcdf848a 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 0f68234de..1ada5f233 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 28810e64c..37db17533 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 5ab510dff..9b7443126 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 0de5c230f..60a43ec60 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.conf import settings diff --git a/pedagogy/search_indexes.py b/pedagogy/search_indexes.py index c6bc74afa..6a44affa5 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 2c61facfc..40fce7f0e 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 8cfca8d29..1540b5785 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 89187ca55..35d7839e5 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.conf import settings diff --git a/rootplace/__init__.py b/rootplace/__init__.py index 0aa913c48..ebcdf848a 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 5531f2a2d..df9eed365 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" # # Register your models here. diff --git a/rootplace/management/__init__.py b/rootplace/management/__init__.py index 6492635a2..ebcdf848a 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 6492635a2..ebcdf848a 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 5bf9cd4bc..37df256cf 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 084dfa735..041b9fc8e 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" # # Create your models here. diff --git a/rootplace/tests.py b/rootplace/tests.py index 81d0b6167..4d7a2bc8f 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 timedelta diff --git a/rootplace/urls.py b/rootplace/urls.py index 696fb81ea..e99564558 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 7a045b732..870151e9a 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 0aa913c48..ebcdf848a 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 3f6c6f42e..6476178dc 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 3342facf8..f424c6b7c 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" # import os diff --git a/sas/tests.py b/sas/tests.py index d888e761c..e0805cd61 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" # # Create your tests here. diff --git a/sas/urls.py b/sas/urls.py index a425c0e6e..0df100439 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 c2821bacb..5e3dbfd4f 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 ajax_select import make_ajax_field diff --git a/sith/__init__.py b/sith/__init__.py index 0aa913c48..ebcdf848a 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 8680be2af..ae205302f 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 139aec36f..8bdf87881 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 106c28512..a797be19f 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 017c575ae..a6877af38 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 6a83e48ec..ebcdf848a 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 28985c8c3..9b6f28066 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 f93a15445..7528a4172 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.conf import settings diff --git a/stock/tests.py b/stock/tests.py index 884e1b09d..e0805cd61 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" # # Create your tests here. diff --git a/stock/urls.py b/stock/urls.py index cf7ff13f5..3c6f2156b 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 72a9ab56e..0106c618d 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 0aa913c48..ebcdf848a 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 f81e6fdec..b63509375 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 5e47ab752..a099c027d 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" # import math diff --git a/subscription/tests.py b/subscription/tests.py index c347ab652..977562880 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 diff --git a/subscription/urls.py b/subscription/urls.py index 30992187f..2d068731a 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 ccffd58f7..ceb65e98b 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" # import random diff --git a/trombi/__init__.py b/trombi/__init__.py index e9ebba43a..ebcdf848a 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 0af9bcca4..e7caa06cb 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 b5e7d1a8d..ff685d4ed 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 datetime import date diff --git a/trombi/tests.py b/trombi/tests.py index 087c75b41..e0805cd61 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" # # Create your tests here. diff --git a/trombi/urls.py b/trombi/urls.py index 49ac42db2..753d39e0d 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 d2bf3231b..b9ab28525 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 datetime import date