Commit 1adc87cd authored by Ramiro Morales's avatar Ramiro Morales
Browse files

Updated some URLs in the documentation to point to the new repository.

parent e84f79f0
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -175,7 +175,7 @@ Technically, the docs on Django's site are generated from the latest development
versions of those reST documents, so the docs on the Django site may offer more
information than the docs that come with the latest Django release.

.. _stored in revision control: https://code.djangoproject.com/browser/django/trunk/docs
.. _stored in revision control: https://github.com/django/django/tree/master/django/docs

Where can I find Django developers for hire?
--------------------------------------------
+1 −1
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@ Via the Python API
    which lives in `django/contrib/flatpages/models.py`_. You can access
    flatpage objects via the :doc:`Django database API </topics/db/queries>`.

.. _django/contrib/flatpages/models.py: https://code.djangoproject.com/browser/django/trunk/django/contrib/flatpages/models.py
.. _django/contrib/flatpages/models.py: https://github.com/django/django/tree/master/django/django/contrib/flatpages/models.py

.. currentmodule:: django.contrib.flatpages

+1 −1
Original line number Diff line number Diff line
@@ -215,7 +215,7 @@ Then distance queries may be performed as follows::
    >>> qs = SouthTexasCity.objects.filter(point__distance_gte=(pnt, D(mi=20)))
    >>> qs = SouthTexasCity.objects.filter(point__distance_gte=(pnt, D(chain=100)))

__ https://code.djangoproject.com/browser/django/trunk/django/contrib/gis/tests/distapp/models.py
__ https://github.com/django/django/tree/master/django/django/contrib/gis/tests/distapp/models.py

.. _compatibility-table:

+1 −1
Original line number Diff line number Diff line
@@ -736,7 +736,7 @@ the distance from the `Tasmanian`__ city of Hobart to every other
    in kilometers.  See the :ref:`ref-measure` for usage details and the list of
    :ref:`supported_units`.

__ https://code.djangoproject.com/browser/django/trunk/django/contrib/gis/tests/distapp/models.py
__ https://github.com/django/django/tree/master/django/django/contrib/gis/tests/distapp/models.py
__ http://en.wikipedia.org/wiki/Tasmania

``length``
+1 −1
Original line number Diff line number Diff line
@@ -67,4 +67,4 @@ Via the Python API
    which lives in `django/contrib/redirects/models.py`_. You can access redirect
    objects via the :doc:`Django database API </topics/db/queries>`.

.. _django/contrib/redirects/models.py: https://code.djangoproject.com/browser/django/trunk/django/contrib/redirects/models.py
.. _django/contrib/redirects/models.py: https://github.com/django/django/tree/master/django/django/contrib/redirects/models.py
Loading