From 93830abf7694e0f281931f10eeaa34993855e7dd Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Wed, 17 May 2023 12:13:10 +0200 Subject: [PATCH] Updated broken links in docs. --- docs/howto/outputting-pdf.txt | 2 +- docs/internals/contributing/writing-code/unit-tests.txt | 2 +- docs/ref/contrib/gis/feeds.txt | 2 +- docs/ref/models/fields.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/howto/outputting-pdf.txt b/docs/howto/outputting-pdf.txt index 11b3fb97a5..bcdfa6acc4 100644 --- a/docs/howto/outputting-pdf.txt +++ b/docs/howto/outputting-pdf.txt @@ -14,7 +14,7 @@ For example, Django was used at kusports.com_ to generate customized, printer-friendly NCAA tournament brackets, as PDF files, for people participating in a March Madness contest. -.. _ReportLab: https://www.reportlab.com/opensource/ +.. _ReportLab: https://docs.reportlab.com/ .. _kusports.com: http://www2.kusports.com/ Install ReportLab diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt index 6b63e32180..7b40de57e7 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -292,7 +292,7 @@ dependencies: * :pypi:`pywatchman` * :pypi:`redis` 3.4+ * :pypi:`setuptools` -* :pypi:`memcached`, plus a `supported Python binding +* :pypi:`python-memcached`, plus a `supported Python binding `_ * `gettext `_ (:ref:`gettext_on_windows`) diff --git a/docs/ref/contrib/gis/feeds.txt b/docs/ref/contrib/gis/feeds.txt index d22c728b5f..9ae9d4f03a 100644 --- a/docs/ref/contrib/gis/feeds.txt +++ b/docs/ref/contrib/gis/feeds.txt @@ -13,7 +13,7 @@ Django's, please consult :doc:`Django's syndication documentation .. _W3C Geo: https://www.w3.org/2003/01/geo/ -__ https://georss.org +__ https://www.ogc.org/standard/georss/ Example ======= diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index 344cc45280..d96f489b81 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -278,7 +278,7 @@ Django provides an ``IntegerChoices`` class. For example:: suit = models.IntegerField(choices=Suit) It is also possible to make use of the `Enum Functional API -`_ with the caveat +`_ with the caveat that labels are automatically generated as highlighted above: .. code-block:: pycon