From 24264e77abae99b16f673d1f179ffe927b75c0be Mon Sep 17 00:00:00 2001 From: Sylvain Boissel Date: Tue, 31 Oct 2023 14:54:57 +0100 Subject: [PATCH] Moved project to the numerique-gouv organization (#72) --- CONTRIBUTING.md | 2 +- README.rst | 12 ++++++------ example/urls.py | 2 +- example_app/templates/example_app/index.html | 4 ++-- pyproject.toml | 8 ++++---- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c18f42fb7..c118451e4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -96,4 +96,4 @@ La numérotation suit le principe de [versionnage sémantique](https://semver.or ## Mise à jour de la documentation -De la même manière, lorsqu’une PR est mergée dans la branche `main`, une tâche Github Actions ([deploy-doc.yml]([./.github/workflows/deploy-doc.yml)) met à jour la [documentation statique](https://entrepreneur-interet-general.github.io/django-dsfr/) en faisant un export statique du site d’exemple. +De la même manière, lorsqu’une PR est mergée dans la branche `main`, une tâche Github Actions ([deploy-doc.yml]([./.github/workflows/deploy-doc.yml)) met à jour la [documentation statique](https://numerique-gouv.github.io/django-dsfr/) en faisant un export statique du site d’exemple. diff --git a/README.rst b/README.rst index 2fd2a490c..c4f1c2cb4 100644 --- a/README.rst +++ b/README.rst @@ -1,11 +1,11 @@ .. image:: https://badge.fury.io/py/django-dsfr.svg :target: https://pypi.org/project/django-dsfr/ -.. image:: https://github.com/entrepreneur-interet-general/django-dsfr/actions/workflows/django.yml/badge.svg - :target: https://github.com/entrepreneur-interet-general/django-dsfr/actions/workflows/django.yml +.. image:: https://github.com/numerique-gouv/django-dsfr/actions/workflows/django.yml/badge.svg + :target: https://github.com/numerique-gouv/django-dsfr/actions/workflows/django.yml -.. image:: https://github.com/entrepreneur-interet-general/django-dsfr/actions/workflows/codeql-analysis.yml/badge.svg - :target: https://github.com/entrepreneur-interet-general/django-dsfr/actions/workflows/codeql-analysis.yml +.. image:: https://github.com/numerique-gouv/django-dsfr/actions/workflows/codeql-analysis.yml/badge.svg + :target: https://github.com/numerique-gouv/django-dsfr/actions/workflows/codeql-analysis.yml .. image:: https://img.shields.io/badge/security-bandit-yellow.svg :target: https://github.com/PyCQA/bandit @@ -18,7 +18,7 @@ Django-DSFR Django-DSFR is a Django app to integrate the `French government Design System ("Système de design de l’État français") `_. -This app was created as a part of `Open Collectivités `_ and is very much a work in progress. See the `documentation (in French) `_ for details. +This app was created as a part of `Open Collectivités `_ and is very much a work in progress. See the `documentation (in French) `_ for details. Django-DSFR (partly) implements the `version 1.10.1 of the DSFR `_. @@ -79,6 +79,6 @@ Quick start }, ] -7. Include the tags in your base.html file (see example file at https://github.com/entrepreneur-interet-general/django-dsfr/blob/main/example_app/templates/example_app/base.html) +7. Include the tags in your base.html file (see example file at https://github.com/numerique-gouv/django-dsfr/blob/main/example_app/templates/example_app/base.html) 8. Start the development server and visit http://127.0.0.1:8000/ diff --git a/example/urls.py b/example/urls.py index 173c25868..425b662aa 100644 --- a/example/urls.py +++ b/example/urls.py @@ -4,7 +4,7 @@ urlpatterns = [ # The "django-dsfr/" prefix is here because this site is deployed as doc on - # https://entrepreneur-interet-general.github.io/django-dsfr/ + # https://numerique-gouv.github.io/django-dsfr/ path("admin/", admin.site.urls), path("django-dsfr/", include("example_app.urls")), path("", RedirectView.as_view(pattern_name="index", permanent=False)), diff --git a/example_app/templates/example_app/index.html b/example_app/templates/example_app/index.html index cfabf4c23..0c02739c1 100644 --- a/example_app/templates/example_app/index.html +++ b/example_app/templates/example_app/index.html @@ -35,7 +35,7 @@

Documentation

Installation

- Voir la section dédiée dans le README. + Voir la section dédiée dans le README.

Utilisation

@@ -46,7 +46,7 @@

Utilisation

Développement

- Voir la page CONTRIBUTING.md. + Voir la page CONTRIBUTING.md.

Notes

diff --git a/pyproject.toml b/pyproject.toml index 4a98b7869..943e94a6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ authors = ["Sylvain Boissel "] description = "Integrate the French government Design System into a Django app" license = "MIT" name = "django-dsfr" -version = "0.16.0" +version = "0.16.1" classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Web Environment", @@ -23,11 +23,11 @@ classifiers = [ "Topic :: Software Development :: Libraries", "Topic :: Utilities", ] -documentation = "https://entrepreneur-interet-general.github.io/django-dsfr" -homepage = "https://github.com/entrepreneur-interet-general/django-dsfr" +documentation = "https://numerique-gouv.github.io/django-dsfr" +homepage = "https://github.com/numerique-gouv/django-dsfr" keywords = ["django"] readme = "README.rst" -repository = "https://github.com/entrepreneur-interet-general/django-dsfr" +repository = "https://github.com/numerique-gouv/django-dsfr" packages = [ {include = "dsfr"},