Skip to content

Commit

Permalink
Moved project to the numerique-gouv organization (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash-Crow authored Oct 31, 2023
1 parent d825334 commit 24264e7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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") <https://www.systeme-de-design.gouv.fr/>`_.


This app was created as a part of `Open Collectivités <https://github.com/entrepreneur-interet-general/opencollectivites>`_ and is very much a work in progress. See the `documentation (in French) <https://entrepreneur-interet-general.github.io/django-dsfr/>`_ for details.
This app was created as a part of `Open Collectivités <https://github.com/entrepreneur-interet-general/opencollectivites>`_ and is very much a work in progress. See the `documentation (in French) <https://numerique-gouv.github.io/django-dsfr/>`_ for details.

Django-DSFR (partly) implements the `version 1.10.1 of the DSFR <https://www.systeme-de-design.gouv.fr/a-propos/versions/version-courante>`_.

Expand Down Expand Up @@ -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/
2 changes: 1 addition & 1 deletion example/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
Expand Down
4 changes: 2 additions & 2 deletions example_app/templates/example_app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h2>Documentation</h2>

<h3 id="installation">Installation</h3>
<p>
Voir la section dédiée dans le <a href="https://github.com/entrepreneur-interet-general/django-dsfr/blob/main/README.rst">README</a>.
Voir la section dédiée dans le <a href="https://github.com/numerique-gouv/django-dsfr/blob/main/README.rst">README</a>.
</p>

<h3 id="utilisation">Utilisation</h3>
Expand All @@ -46,7 +46,7 @@ <h3 id="utilisation">Utilisation</h3>

<h3 id="developpement">Développement</h3>
<p>
Voir la page <a href="https://github.com/entrepreneur-interet-general/django-dsfr/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a>.
Voir la page <a href="https://github.com/numerique-gouv/django-dsfr/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a>.
</p>

<h3 id="notes">Notes</h3>
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Sylvain Boissel <[email protected]>"]
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",
Expand All @@ -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"},
Expand Down

0 comments on commit 24264e7

Please sign in to comment.