From 9c93162741e08da2de8dc8f7d78242937fc44052 Mon Sep 17 00:00:00 2001 From: Sli Date: Mon, 23 Sep 2024 10:25:27 +0200 Subject: [PATCH] Add missing files --- .github/workflows/ci.yml | 2 +- .github/workflows/taiste.yml | 2 +- README.md | 4 ++-- accounting/__init__.py | 2 +- accounting/admin.py | 2 +- accounting/models.py | 2 +- accounting/tests.py | 2 +- accounting/urls.py | 2 +- accounting/views.py | 2 +- club/__init__.py | 2 +- club/admin.py | 2 +- club/tests.py | 2 +- com/__init__.py | 2 +- com/admin.py | 2 +- com/tests.py | 2 +- com/urls.py | 2 +- core/__init__.py | 2 +- core/admin.py | 2 +- core/lookups.py | 2 +- core/management/__init__.py | 2 +- core/management/commands/__init__.py | 2 +- core/management/commands/install_xapian.py | 2 +- core/management/commands/setup.py | 2 +- core/markdown.py | 2 +- core/middleware.py | 2 +- core/templatetags/__init__.py | 2 +- core/tests/test_core.py | 2 +- core/utils.py | 2 +- core/views/files.py | 4 ++-- core/views/group.py | 2 +- core/views/page.py | 2 +- counter/admin.py | 2 +- counter/api.py | 2 +- counter/models.py | 2 +- counter/tests/test_counter.py | 2 +- counter/urls.py | 2 +- counter/views.py | 2 +- docs/explanation/archives.md | 2 +- docs/tutorial/install.md | 2 +- docs/tutorial/structure.md | 2 +- eboutic/__init__.py | 2 +- eboutic/admin.py | 2 +- eboutic/models.py | 2 +- eboutic/views.py | 2 +- forum/__init__.py | 2 +- forum/admin.py | 2 +- forum/tests.py | 2 +- launderette/__init__.py | 2 +- launderette/admin.py | 2 +- launderette/models.py | 2 +- launderette/tests.py | 2 +- launderette/urls.py | 2 +- launderette/views.py | 2 +- manage.py | 2 +- mkdocs.yml | 4 ++-- rootplace/__init__.py | 2 +- rootplace/admin.py | 2 +- rootplace/models.py | 2 +- rootplace/tests.py | 2 +- sas/__init__.py | 2 +- sas/admin.py | 2 +- sas/models.py | 2 +- sas/tests/test_views.py | 2 +- sas/urls.py | 2 +- sas/views.py | 2 +- sith/__init__.py | 2 +- sith/urls.py | 2 +- sith/wsgi.py | 2 +- subscription/__init__.py | 2 +- subscription/admin.py | 2 +- subscription/models.py | 2 +- subscription/tests.py | 2 +- subscription/urls.py | 2 +- subscription/views.py | 2 +- 74 files changed, 77 insertions(+), 77 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef484de2..b08cdcf5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Sith 3 CI +name: Sith CI on: push: diff --git a/.github/workflows/taiste.yml b/.github/workflows/taiste.yml index 56ea5d82..6677000e 100644 --- a/.github/workflows/taiste.yml +++ b/.github/workflows/taiste.yml @@ -1,4 +1,4 @@ -name: Sith3 taiste +name: Sith taiste on: push: diff --git a/README.md b/README.md index 95b6b17d..15840f07 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,13 @@ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](#) [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![CI status](https://github.com/ae-utbm/sith/actions/workflows/ci.yml/badge.svg)](#) -[![Docs status](https://github.com/ae-utbm/sith/actions/workflows/deploy_docs.yml/badge.svg)](https://ae-utbm.github.io/sith3) +[![Docs status](https://github.com/ae-utbm/sith/actions/workflows/deploy_docs.yml/badge.svg)](https://ae-utbm.github.io/sith) [![Built with Material for MkDocs](https://img.shields.io/badge/Material_for_MkDocs-526CFE?style=default&logo=MaterialForMkDocs&logoColor=white)](https://squidfunk.github.io/mkdocs-material/) [![discord](https://img.shields.io/discord/971448179075731476?label=discord&logo=discord&style=default)](https://discord.gg/xk9wfpsufm) ### This is the source code of the UTBM's student association available at [https://ae.utbm.fr/](https://ae.utbm.fr/). -All documentation is in the `docs` directory and online at [https://ae-utbm.github.io/sith3](https://ae-utbm.github.io/sith3). This documentation is written in French because it targets a French audience and it's too much work to maintain two versions. The code and code comments are strictly written in English. +All documentation is in the `docs` directory and online at [https://ae-utbm.github.io/sith](https://ae-utbm.github.io/sith). This documentation is written in French because it targets a French audience and it's too much work to maintain two versions. The code and code comments are strictly written in English. #### If you want to contribute, here's how we recommend to read the docs: diff --git a/accounting/__init__.py b/accounting/__init__.py index 658743c1..f4445e69 100644 --- a/accounting/__init__.py +++ b/accounting/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/accounting/admin.py b/accounting/admin.py index 954e8b7d..29321713 100644 --- a/accounting/admin.py +++ b/accounting/admin.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/accounting/models.py b/accounting/models.py index a50a0a81..7eaba943 100644 --- a/accounting/models.py +++ b/accounting/models.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/accounting/tests.py b/accounting/tests.py index 7bbc6032..6dc61d08 100644 --- a/accounting/tests.py +++ b/accounting/tests.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/accounting/urls.py b/accounting/urls.py index 0de62134..c8e6082c 100644 --- a/accounting/urls.py +++ b/accounting/urls.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/accounting/views.py b/accounting/views.py index da396f4a..276aefcc 100644 --- a/accounting/views.py +++ b/accounting/views.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/club/__init__.py b/club/__init__.py index 658743c1..f4445e69 100644 --- a/club/__init__.py +++ b/club/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/club/admin.py b/club/admin.py index ba573440..c2444c17 100644 --- a/club/admin.py +++ b/club/admin.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/club/tests.py b/club/tests.py index 021d085f..d9ecf87b 100644 --- a/club/tests.py +++ b/club/tests.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/com/__init__.py b/com/__init__.py index 658743c1..f4445e69 100644 --- a/com/__init__.py +++ b/com/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/com/admin.py b/com/admin.py index a53049b2..84e85328 100644 --- a/com/admin.py +++ b/com/admin.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/com/tests.py b/com/tests.py index 707ff66a..1c39fa36 100644 --- a/com/tests.py +++ b/com/tests.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/com/urls.py b/com/urls.py index 89baa31a..b0376936 100644 --- a/com/urls.py +++ b/com/urls.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/__init__.py b/core/__init__.py index 658743c1..f4445e69 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/admin.py b/core/admin.py index 8f464e06..367c056a 100644 --- a/core/admin.py +++ b/core/admin.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/lookups.py b/core/lookups.py index 3c62af3a..93d15df8 100644 --- a/core/lookups.py +++ b/core/lookups.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/management/__init__.py b/core/management/__init__.py index 658743c1..f4445e69 100644 --- a/core/management/__init__.py +++ b/core/management/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/management/commands/__init__.py b/core/management/commands/__init__.py index 658743c1..f4445e69 100644 --- a/core/management/commands/__init__.py +++ b/core/management/commands/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/management/commands/install_xapian.py b/core/management/commands/install_xapian.py index 51865bd5..fe7b6994 100644 --- a/core/management/commands/install_xapian.py +++ b/core/management/commands/install_xapian.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/management/commands/setup.py b/core/management/commands/setup.py index 5b5acdd1..37451dd3 100644 --- a/core/management/commands/setup.py +++ b/core/management/commands/setup.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/markdown.py b/core/markdown.py index bf006dba..66225eb0 100644 --- a/core/markdown.py +++ b/core/markdown.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/middleware.py b/core/middleware.py index b79d0e42..ba9113b8 100644 --- a/core/middleware.py +++ b/core/middleware.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/templatetags/__init__.py b/core/templatetags/__init__.py index 658743c1..f4445e69 100644 --- a/core/templatetags/__init__.py +++ b/core/templatetags/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/tests/test_core.py b/core/tests/test_core.py index 195559e7..c7d8c071 100644 --- a/core/tests/test_core.py +++ b/core/tests/test_core.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/utils.py b/core/utils.py index ebb08303..2e13cd91 100644 --- a/core/utils.py +++ b/core/utils.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/views/files.py b/core/views/files.py index eb202991..3eb137c2 100644 --- a/core/views/files.py +++ b/core/views/files.py @@ -5,10 +5,10 @@ # 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 source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/views/group.py b/core/views/group.py index 50abfbef..b5fe495e 100644 --- a/core/views/group.py +++ b/core/views/group.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/core/views/page.py b/core/views/page.py index e050db06..08c8fad9 100644 --- a/core/views/page.py +++ b/core/views/page.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/counter/admin.py b/counter/admin.py index 4c819866..0ebe130a 100644 --- a/counter/admin.py +++ b/counter/admin.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/counter/api.py b/counter/api.py index ac43354c..88769b83 100644 --- a/counter/api.py +++ b/counter/api.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/counter/models.py b/counter/models.py index 5cc21ee3..93af692b 100644 --- a/counter/models.py +++ b/counter/models.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/counter/tests/test_counter.py b/counter/tests/test_counter.py index fefdfd8c..6f8b2120 100644 --- a/counter/tests/test_counter.py +++ b/counter/tests/test_counter.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/counter/urls.py b/counter/urls.py index a8ac645e..bf8eba2c 100644 --- a/counter/urls.py +++ b/counter/urls.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/counter/views.py b/counter/views.py index 695a7b23..43c2c1cb 100644 --- a/counter/views.py +++ b/counter/views.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/docs/explanation/archives.md b/docs/explanation/archives.md index b384e025..df69156b 100644 --- a/docs/explanation/archives.md +++ b/docs/explanation/archives.md @@ -4,5 +4,5 @@ La [page originale ici](https://github.com/ae-utbm/sith/wiki/Archives) peut être plus à jour puisque le contenu de cette page date de la dernière génération de la documentation. -{! include-markdown 'https://raw.githubusercontent.com/wiki/ae-utbm/sith3/Archives.md', '') !} +{! include-markdown 'https://raw.githubusercontent.com/wiki/ae-utbm/sith/Archives.md', '') !} diff --git a/docs/tutorial/install.md b/docs/tutorial/install.md index 4f65eab9..57958cec 100644 --- a/docs/tutorial/install.md +++ b/docs/tutorial/install.md @@ -109,7 +109,7 @@ cd /mnt//vos/fichiers/comme/dhab ```bash git clone https://github.com/ae-utbm/sith.git -cd sith3 +cd sith # Création de l'environnement et installation des dépendances poetry install diff --git a/docs/tutorial/structure.md b/docs/tutorial/structure.md index 465dfc6c..0a4897b7 100644 --- a/docs/tutorial/structure.md +++ b/docs/tutorial/structure.md @@ -20,7 +20,7 @@ Le code source du projet est organisé comme suit :
``` -sith3/ +sith/ ├── .github/ │ ├── actions/ (1) │ └── workflows/ (2) diff --git a/eboutic/__init__.py b/eboutic/__init__.py index 658743c1..f4445e69 100644 --- a/eboutic/__init__.py +++ b/eboutic/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/eboutic/admin.py b/eboutic/admin.py index 3e5f4bf3..9786c522 100644 --- a/eboutic/admin.py +++ b/eboutic/admin.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/eboutic/models.py b/eboutic/models.py index d3f34f63..4c438067 100644 --- a/eboutic/models.py +++ b/eboutic/models.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/eboutic/views.py b/eboutic/views.py index 41ce2ee4..08ce0534 100644 --- a/eboutic/views.py +++ b/eboutic/views.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/forum/__init__.py b/forum/__init__.py index 658743c1..f4445e69 100644 --- a/forum/__init__.py +++ b/forum/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/forum/admin.py b/forum/admin.py index 4b19827f..29fc54fd 100644 --- a/forum/admin.py +++ b/forum/admin.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/forum/tests.py b/forum/tests.py index cd50805d..6ce24c1b 100644 --- a/forum/tests.py +++ b/forum/tests.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/launderette/__init__.py b/launderette/__init__.py index 658743c1..f4445e69 100644 --- a/launderette/__init__.py +++ b/launderette/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/launderette/admin.py b/launderette/admin.py index c78132ef..01d7e55b 100644 --- a/launderette/admin.py +++ b/launderette/admin.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/launderette/models.py b/launderette/models.py index ef6a0745..58458f14 100644 --- a/launderette/models.py +++ b/launderette/models.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/launderette/tests.py b/launderette/tests.py index 07643a02..1288d000 100644 --- a/launderette/tests.py +++ b/launderette/tests.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/launderette/urls.py b/launderette/urls.py index bae646f3..c00663d1 100644 --- a/launderette/urls.py +++ b/launderette/urls.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/launderette/views.py b/launderette/views.py index 7d7674d4..f79c1d15 100644 --- a/launderette/views.py +++ b/launderette/views.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/manage.py b/manage.py index 2c775127..56271706 100755 --- a/manage.py +++ b/manage.py @@ -9,7 +9,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/mkdocs.yml b/mkdocs.yml index 7cbf3fd8..984d30e0 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,9 +2,9 @@ site_name: Site AE UTBM site_description: Le site de l'association des étudiants de l'UTBM dev_addr: 127.0.0.1:8080 -repo_name: sith3 +repo_name: sith repo_url: https://github.com/ae-utbm/sith -site_url: https://ae-utbm.github.io/sith3 +site_url: https://ae-utbm.github.io/sith theme: features: diff --git a/rootplace/__init__.py b/rootplace/__init__.py index 658743c1..f4445e69 100644 --- a/rootplace/__init__.py +++ b/rootplace/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/rootplace/admin.py b/rootplace/admin.py index 1f842647..6bcaeeff 100644 --- a/rootplace/admin.py +++ b/rootplace/admin.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/rootplace/models.py b/rootplace/models.py index b7bbf804..8195e44c 100644 --- a/rootplace/models.py +++ b/rootplace/models.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/rootplace/tests.py b/rootplace/tests.py index 0b7a874d..f5d6fb73 100644 --- a/rootplace/tests.py +++ b/rootplace/tests.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/sas/__init__.py b/sas/__init__.py index 658743c1..f4445e69 100644 --- a/sas/__init__.py +++ b/sas/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/sas/admin.py b/sas/admin.py index f261a08b..f2845ad3 100644 --- a/sas/admin.py +++ b/sas/admin.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/sas/models.py b/sas/models.py index 7ee0ee5f..a753a9bc 100644 --- a/sas/models.py +++ b/sas/models.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/sas/tests/test_views.py b/sas/tests/test_views.py index b9c59881..9a701ce7 100644 --- a/sas/tests/test_views.py +++ b/sas/tests/test_views.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/sas/urls.py b/sas/urls.py index da2f3664..ad7da367 100644 --- a/sas/urls.py +++ b/sas/urls.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/sas/views.py b/sas/views.py index 5ae08d6e..1d4ae783 100644 --- a/sas/views.py +++ b/sas/views.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/sith/__init__.py b/sith/__init__.py index 658743c1..f4445e69 100644 --- a/sith/__init__.py +++ b/sith/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/sith/urls.py b/sith/urls.py index c6e56ce6..150b75a6 100644 --- a/sith/urls.py +++ b/sith/urls.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/sith/wsgi.py b/sith/wsgi.py index 8eeb51c8..e4fc4589 100644 --- a/sith/wsgi.py +++ b/sith/wsgi.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/subscription/__init__.py b/subscription/__init__.py index 658743c1..f4445e69 100644 --- a/subscription/__init__.py +++ b/subscription/__init__.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/subscription/admin.py b/subscription/admin.py index 78f4e371..eea69569 100644 --- a/subscription/admin.py +++ b/subscription/admin.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/subscription/models.py b/subscription/models.py index fbca7277..941b3e69 100644 --- a/subscription/models.py +++ b/subscription/models.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/subscription/tests.py b/subscription/tests.py index 8f4b24eb..d853c55a 100644 --- a/subscription/tests.py +++ b/subscription/tests.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/subscription/urls.py b/subscription/urls.py index 45b293de..21a6dbc8 100644 --- a/subscription/urls.py +++ b/subscription/urls.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # diff --git a/subscription/views.py b/subscription/views.py index f1127653..04005444 100644 --- a/subscription/views.py +++ b/subscription/views.py @@ -8,7 +8,7 @@ # You can find the source code of the website at https://github.com/ae-utbm/sith # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) -# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE +# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # #