diff options
| author | Claude Paroz <claude@2xlibre.net> | 2012-03-13 17:53:31 +0000 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2012-03-13 17:53:31 +0000 |
| commit | 78638a9a5180eb373df0d4430a2169bd49fa9e42 (patch) | |
| tree | b43ce98ad222048e8c48b64a637c250a2254a137 /docs/ref | |
| parent | 69b96f824d2de0904f03e457c564f22fb8ed57e4 (diff) | |
Replaced http by https in djangoproject.com links
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17703 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/contrib/contenttypes.txt | 4 | ||||
| -rw-r--r-- | docs/ref/contrib/flatpages.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/db-api.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/geoquerysets.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/install.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/localflavor.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/redirects.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/syndication.txt | 2 | ||||
| -rw-r--r-- | docs/ref/databases.txt | 4 | ||||
| -rw-r--r-- | docs/ref/settings.txt | 6 | ||||
| -rw-r--r-- | docs/ref/validators.txt | 2 |
11 files changed, 15 insertions, 15 deletions
diff --git a/docs/ref/contrib/contenttypes.txt b/docs/ref/contrib/contenttypes.txt index 270ccf0c51..ecfcff0c0f 100644 --- a/docs/ref/contrib/contenttypes.txt +++ b/docs/ref/contrib/contenttypes.txt @@ -350,7 +350,7 @@ a "reverse" generic relationship to enable an additional API. For example:: ``Bookmark`` instances will each have a ``tags`` attribute, which can be used to retrieve their associated ``TaggedItems``:: - >>> b = Bookmark(url='http://www.djangoproject.com/') + >>> b = Bookmark(url='https://www.djangoproject.com/') >>> b.save() >>> t1 = TaggedItem(content_object=b, tag='django') >>> t1.save() @@ -377,7 +377,7 @@ referred to above used fields named ``content_type_fk`` and Of course, if you don't add the reverse relationship, you can do the same types of lookups manually:: - >>> b = Bookmark.objects.get(url='http://www.djangoproject.com/') + >>> b = Bookmark.objects.get(url='https://www.djangoproject.com/') >>> bookmark_type = ContentType.objects.get_for_model(b) >>> TaggedItem.objects.filter(content_type__pk=bookmark_type.id, ... object_id=b.id) diff --git a/docs/ref/contrib/flatpages.txt b/docs/ref/contrib/flatpages.txt index 0b20eccf7e..8873c2832d 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: http://code.djangoproject.com/browser/django/trunk/django/contrib/flatpages/models.py +.. _django/contrib/flatpages/models.py: https://code.djangoproject.com/browser/django/trunk/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 38fa05253a..29a33d40d1 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))) -__ http://code.djangoproject.com/browser/django/trunk/django/contrib/gis/tests/distapp/models.py +__ https://code.djangoproject.com/browser/django/trunk/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 a58f472005..832f21e3e7 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`. -__ http://code.djangoproject.com/browser/django/trunk/django/contrib/gis/tests/distapp/models.py +__ https://code.djangoproject.com/browser/django/trunk/django/contrib/gis/tests/distapp/models.py __ http://en.wikipedia.org/wiki/Tasmania ``length`` diff --git a/docs/ref/contrib/gis/install.txt b/docs/ref/contrib/gis/install.txt index 06bee69244..c57414fb74 100644 --- a/docs/ref/contrib/gis/install.txt +++ b/docs/ref/contrib/gis/install.txt @@ -666,7 +666,7 @@ community! You can: and specify the component as "GIS". __ http://groups.google.com/group/geodjango -__ http://code.djangoproject.com/simpleticket +__ https://code.djangoproject.com/simpleticket .. _libsettings: diff --git a/docs/ref/contrib/localflavor.txt b/docs/ref/contrib/localflavor.txt index 1593598ba3..8ad8b8e9d6 100644 --- a/docs/ref/contrib/localflavor.txt +++ b/docs/ref/contrib/localflavor.txt @@ -156,7 +156,7 @@ any code you'd like to contribute. One thing we ask is that you please use Unicode objects (``u'mystring'``) for strings, rather than setting the encoding in the file. See any of the existing flavors for examples. -.. _create a ticket: http://code.djangoproject.com/simpleticket +.. _create a ticket: https://code.djangoproject.com/simpleticket Localflavor and backwards compatibility ======================================= diff --git a/docs/ref/contrib/redirects.txt b/docs/ref/contrib/redirects.txt index 82e197c6e0..71c3b4f389 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: http://code.djangoproject.com/browser/django/trunk/django/contrib/redirects/models.py +.. _django/contrib/redirects/models.py: https://code.djangoproject.com/browser/django/trunk/django/contrib/redirects/models.py diff --git a/docs/ref/contrib/syndication.txt b/docs/ref/contrib/syndication.txt index 18e447d481..ae48914922 100644 --- a/docs/ref/contrib/syndication.txt +++ b/docs/ref/contrib/syndication.txt @@ -901,7 +901,7 @@ For example, to create an Atom 1.0 feed and print it to standard output:: ... </feed> -.. _django/utils/feedgenerator.py: http://code.djangoproject.com/browser/django/trunk/django/utils/feedgenerator.py +.. _django/utils/feedgenerator.py: https://code.djangoproject.com/browser/django/trunk/django/utils/feedgenerator.py .. currentmodule:: django.contrib.syndication diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index 58649dc077..f0b485fc97 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -345,7 +345,7 @@ storage engine, you have a couple of options. * Another method for changing the storage engine is described in AlterModelOnSyncDB_. -.. _AlterModelOnSyncDB: http://code.djangoproject.com/wiki/AlterModelOnSyncDB +.. _AlterModelOnSyncDB: https://code.djangoproject.com/wiki/AlterModelOnSyncDB Table names ----------- @@ -455,7 +455,7 @@ Versions of SQLite 3.3.5 and older contains the following bugs: DecimalFields. .. _handling: http://www.sqlite.org/cvstrac/tktview?tn=1768 -.. _aggregation: http://code.djangoproject.com/ticket/10031 +.. _aggregation: https://code.djangoproject.com/ticket/10031 SQLite 3.3.6 was released in April 2006, so most current binary distributions for different platforms include newer version of SQLite usable from Python diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index f719c367bb..6e1626011b 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: http://code.djangoproject.com/browser/django/trunk/django/views/debug.py +.. _django/views/debug.py: https://code.djangoproject.com/browser/django/trunk/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: http://code.djangoproject.com/browser/django/trunk/django/conf/global_settings.py +.. _online source: https://code.djangoproject.com/browser/django/trunk/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 @@ -2151,7 +2151,7 @@ to ensure your processes are running in the correct environment. URL_VALIDATOR_USER_AGENT ------------------------ -Default: ``Django/<version> (http://www.djangoproject.com/)`` +Default: ``Django/<version> (https://www.djangoproject.com/)`` The string to use as the ``User-Agent`` header when checking to see if URLs exist (see the ``verify_exists`` option on diff --git a/docs/ref/validators.txt b/docs/ref/validators.txt index 0f299895c5..e58e53700d 100644 --- a/docs/ref/validators.txt +++ b/docs/ref/validators.txt @@ -98,7 +98,7 @@ to, or in lieu of custom ``field.clean()`` methods. :param verify_exists: Sets :attr:`verify_exists`. Defaults to ``False``. :param validator_user_agent: Sets :attr:`validator_user_agent`. Defaults to :setting:`URL_VALIDATOR_USER_AGENT` or, if that setting is set to a - null value, ``"Django (http://www.djangoproject.com/)"``. + null value, ``"Django (https://www.djangoproject.com/)"``. .. attribute:: verify_exists |
