From bf5fdf1397c48e3a56819d4d8bf20b54d1cb377b Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sat, 19 Nov 2011 22:57:47 +0000 Subject: [PATCH] [1.3.X] Fixed #17028 - Changed diveintopython.org -> diveintopython.net Backport of r17115 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@17116 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/intro/index.txt | 2 +- docs/ref/django-admin.txt | 2 +- docs/ref/templates/builtins.txt | 2 +- docs/topics/http/urls.txt | 2 +- docs/topics/settings.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/intro/index.txt b/docs/intro/index.txt index bc61be778a..19290a53c6 100644 --- a/docs/intro/index.txt +++ b/docs/intro/index.txt @@ -31,6 +31,6 @@ place: read this material to quickly get up and running. .. _python: http://python.org/ .. _list of Python resources for non-programmers: http://wiki.python.org/moin/BeginnersGuide/NonProgrammers - .. _dive into python: http://diveintopython.org/ + .. _dive into python: http://diveintopython.net/ .. _dead-tree version: http://www.amazon.com/exec/obidos/ASIN/1590593561/ref=nosim/jacobian20 .. _books about Python: http://wiki.python.org/moin/PythonBooks \ No newline at end of file diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 89bc43ff73..58b86ead14 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1156,7 +1156,7 @@ variable. Note that this option is unnecessary in ``manage.py``, because it takes care of setting the Python path for you. -.. _import search path: http://diveintopython.org/getting_to_know_python/everything_is_an_object.html +.. _import search path: http://diveintopython.net/getting_to_know_python/everything_is_an_object.html .. django-admin-option:: --settings diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index 7d24c1dc00..6c7057ab60 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -1868,7 +1868,7 @@ slice Returns a slice of the list. Uses the same syntax as Python's list slicing. See -http://diveintopython.org/native_data_types/lists.html#odbchelper.list.slice +http://diveintopython.net/native_data_types/lists.html#odbchelper.list.slice for an introduction. Example:: diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index e72c8dd4d8..7a0e7243e8 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -106,7 +106,7 @@ Example requests: * ``/articles/2003/03/03/`` would match the final pattern. Django would call the function ``news.views.article_detail(request, '2003', '03', '03')``. -.. _Dive Into Python's explanation: http://diveintopython.org/regular_expressions/street_addresses.html#re.matching.2.3 +.. _Dive Into Python's explanation: http://diveintopython.net/regular_expressions/street_addresses.html#re.matching.2.3 Named groups ============ diff --git a/docs/topics/settings.txt b/docs/topics/settings.txt index 61ddf8cf32..bda51f2a13 100644 --- a/docs/topics/settings.txt +++ b/docs/topics/settings.txt @@ -39,7 +39,7 @@ The value of ``DJANGO_SETTINGS_MODULE`` should be in Python path syntax, e.g. ``mysite.settings``. Note that the settings module should be on the Python `import search path`_. -.. _import search path: http://diveintopython.org/getting_to_know_python/everything_is_an_object.html +.. _import search path: http://diveintopython.net/getting_to_know_python/everything_is_an_object.html The django-admin.py utility ---------------------------