summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2012-05-03 11:53:17 -0300
committerRamiro Morales <cramm0@gmail.com>2012-05-03 11:53:17 -0300
commit1adc87cd324db6003ef2962e68e11ccc9b104658 (patch)
tree51205edd95fa3f8b844e084a6509bc123f962f88 /docs/ref
parente84f79f05113f546810c1908c7baef99fb1e874a (diff)
Updated some URLs in the documentation to point to the new repository.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/flatpages.txt2
-rw-r--r--docs/ref/contrib/gis/db-api.txt2
-rw-r--r--docs/ref/contrib/gis/geoquerysets.txt2
-rw-r--r--docs/ref/contrib/redirects.txt2
-rw-r--r--docs/ref/contrib/syndication.txt2
-rw-r--r--docs/ref/django-admin.txt4
-rw-r--r--docs/ref/settings.txt4
7 files changed, 9 insertions, 9 deletions
diff --git a/docs/ref/contrib/flatpages.txt b/docs/ref/contrib/flatpages.txt
index 8873c2832d..0bba65ced5 100644
--- a/docs/ref/contrib/flatpages.txt
+++ b/docs/ref/contrib/flatpages.txt
@@ -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
diff --git a/docs/ref/contrib/gis/db-api.txt b/docs/ref/contrib/gis/db-api.txt
index 4cf65e513e..eb364dea79 100644
--- a/docs/ref/contrib/gis/db-api.txt
+++ b/docs/ref/contrib/gis/db-api.txt
@@ -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:
diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt
index 5bc9ab1f64..7bd7fc8673 100644
--- a/docs/ref/contrib/gis/geoquerysets.txt
+++ b/docs/ref/contrib/gis/geoquerysets.txt
@@ -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``
diff --git a/docs/ref/contrib/redirects.txt b/docs/ref/contrib/redirects.txt
index 71c3b4f389..f52787352f 100644
--- a/docs/ref/contrib/redirects.txt
+++ b/docs/ref/contrib/redirects.txt
@@ -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
diff --git a/docs/ref/contrib/syndication.txt b/docs/ref/contrib/syndication.txt
index 76c176e7b3..5b2b0db2a4 100644
--- a/docs/ref/contrib/syndication.txt
+++ b/docs/ref/contrib/syndication.txt
@@ -897,7 +897,7 @@ For example, to create an Atom 1.0 feed and print it to standard output::
...
</feed>
-.. _django/utils/feedgenerator.py: https://code.djangoproject.com/browser/django/trunk/django/utils/feedgenerator.py
+.. _django/utils/feedgenerator.py: https://github.com/django/django/tree/master/django/django/utils/feedgenerator.py
.. currentmodule:: django.contrib.syndication
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 63e471df0e..3ddb390428 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -926,7 +926,7 @@ with the ``--name`` option. The :class:`template context
To work around this problem, you can use the :ttag:`templatetag`
templatetag to "escape" the various parts of the template syntax.
-.. _source: https://code.djangoproject.com/browser/django/trunk/django/conf/app_template/
+.. _source: https://github.com/django/django/tree/master/django/django/conf/app_template/
startproject <projectname> [destination]
----------------------------------------
@@ -980,7 +980,7 @@ with the ``--name`` option. The :class:`template context
Please also see the :ref:`rendering warning <render_warning>` as mentioned
for :djadmin:`startapp`.
-.. _`template source`: https://code.djangoproject.com/browser/django/trunk/django/conf/project_template/
+.. _`template source`: https://github.com/django/django/tree/master/django/django/conf/project_template/
syncdb
------
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index ede2d3741b..0513aa846c 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -806,7 +806,7 @@ It is also important to remember that when running with :setting:`DEBUG`
turned on, Django will remember every SQL query it executes. This is useful
when you're debugging, but it'll rapidly consume memory on a production server.
-.. _django/views/debug.py: https://code.djangoproject.com/browser/django/trunk/django/views/debug.py
+.. _django/views/debug.py: https://github.com/django/django/tree/master/django/django/views/debug.py
DEBUG_PROPAGATE_EXCEPTIONS
--------------------------
@@ -1237,7 +1237,7 @@ and including a copy here would inevitably become rapidly out of date. You can
see the current list of translated languages by looking in
``django/conf/global_settings.py`` (or view the `online source`_).
-.. _online source: https://code.djangoproject.com/browser/django/trunk/django/conf/global_settings.py
+.. _online source: https://github.com/django/django/tree/master/django/django/conf/global_settings.py
The list is a tuple of two-tuples in the format ``(language code, language
name)``, the ``language code`` part should be a