summaryrefslogtreecommitdiff
path: root/docs/ref/contrib
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2015-08-08 12:02:32 +0200
committerClaude Paroz <claude@2xlibre.net>2015-08-08 12:02:32 +0200
commit64982cc2fb13ebc45982c64e25fdb7865e6d2499 (patch)
tree06e65f4201fc67665773350457dfa8ee681b22b5 /docs/ref/contrib
parent18f3d4c1bdb4039b13e0b9445553561651dbfa8f (diff)
Updated Wikipedia links to use https
Diffstat (limited to 'docs/ref/contrib')
-rw-r--r--docs/ref/contrib/gis/functions.txt4
-rw-r--r--docs/ref/contrib/gis/geoquerysets.txt4
-rw-r--r--docs/ref/contrib/gis/model-api.txt8
-rw-r--r--docs/ref/contrib/gis/tutorial.txt4
-rw-r--r--docs/ref/contrib/postgres/aggregates.txt2
5 files changed, 11 insertions, 11 deletions
diff --git a/docs/ref/contrib/gis/functions.txt b/docs/ref/contrib/gis/functions.txt
index 77b3636970..6f59010d5b 100644
--- a/docs/ref/contrib/gis/functions.txt
+++ b/docs/ref/contrib/gis/functions.txt
@@ -106,7 +106,7 @@ Keyword Argument Description
default value is 2.
===================== =====================================================
-__ http://en.wikipedia.org/wiki/Geography_Markup_Language
+__ https://en.wikipedia.org/wiki/Geography_Markup_Language
AsKML
-----
@@ -264,7 +264,7 @@ GeoHash
Accepts a single geographic field or expression and returns a `GeoHash`__
representation of the geometry.
-__ http://en.wikipedia.org/wiki/Geohash
+__ https://en.wikipedia.org/wiki/Geohash
Intersection
------------
diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt
index 9a93c9dbe8..9b2a6c5097 100644
--- a/docs/ref/contrib/gis/geoquerysets.txt
+++ b/docs/ref/contrib/gis/geoquerysets.txt
@@ -747,7 +747,7 @@ the distance from the `Tasmanian`__ city of Hobart to every other
:ref:`supported_units`.
__ https://github.com/django/django/blob/master/tests/gis_tests/distapp/models.py
-__ http://en.wikipedia.org/wiki/Tasmania
+__ https://en.wikipedia.org/wiki/Tasmania
``length``
~~~~~~~~~~
@@ -1100,7 +1100,7 @@ Keyword Argument Description
of 2 or 3. The default value is 2.
===================== =====================================================
-__ http://en.wikipedia.org/wiki/Geography_Markup_Language
+__ https://en.wikipedia.org/wiki/Geography_Markup_Language
``kml``
~~~~~~~
diff --git a/docs/ref/contrib/gis/model-api.txt b/docs/ref/contrib/gis/model-api.txt
index 04669a91b8..25bd7756a1 100644
--- a/docs/ref/contrib/gis/model-api.txt
+++ b/docs/ref/contrib/gis/model-api.txt
@@ -20,7 +20,7 @@ of a `Digital Elevation Model`__ as our examples::
name = models.CharField(max_length=100)
rast = models.RasterField()
-__ http://en.wikipedia.org/wiki/ZIP_code
+__ https://en.wikipedia.org/wiki/ZIP_code
__ https://en.wikipedia.org/wiki/Digital_elevation_model
Spatial Field Types
@@ -100,7 +100,7 @@ Sets the SRID [#fnogcsrid]_ (Spatial Reference System Identity) of the geometry
the given value. Defaults to 4326 (also known as `WGS84`__, units are in degrees
of longitude and latitude).
-__ http://en.wikipedia.org/wiki/WGS84
+__ https://en.wikipedia.org/wiki/WGS84
.. _selecting-an-srid:
@@ -153,8 +153,8 @@ Additional Resources:
data encountered will be in one of these coordinate systems rather than
in a geographic coordinate system such as WGS84.
-__ http://en.wikipedia.org/wiki/Geodesy
-__ http://en.wikipedia.org/wiki/Great_circle
+__ https://en.wikipedia.org/wiki/Geodesy
+__ https://en.wikipedia.org/wiki/Great_circle
__ http://www.spatialreference.org/ref/epsg/2796/
__ http://spatialreference.org/
__ http://web.archive.org/web/20080302095452/http://welcome.warnercnr.colostate.edu/class_info/nr502/lg3/datums_coordinates/spcs.html
diff --git a/docs/ref/contrib/gis/tutorial.txt b/docs/ref/contrib/gis/tutorial.txt
index 9abcd857ff..f869e97729 100644
--- a/docs/ref/contrib/gis/tutorial.txt
+++ b/docs/ref/contrib/gis/tutorial.txt
@@ -158,7 +158,7 @@ extensions:
data stored in the shapefile.
__ http://thematicmapping.org/downloads/TM_WORLD_BORDERS-0.3.zip
-__ http://en.wikipedia.org/wiki/Shapefile
+__ https://en.wikipedia.org/wiki/Shapefile
Use ``ogrinfo`` to examine spatial data
---------------------------------------
@@ -259,7 +259,7 @@ longitude, latitude pairs in units of degrees. To use a different
coordinate system, set the SRID of the geometry field with the ``srid``
argument. Use an integer representing the coordinate system's EPSG code.
-__ http://en.wikipedia.org/wiki/SRID
+__ https://en.wikipedia.org/wiki/SRID
Run ``migrate``
---------------
diff --git a/docs/ref/contrib/postgres/aggregates.txt b/docs/ref/contrib/postgres/aggregates.txt
index af4a0661b3..d4c5f028f6 100644
--- a/docs/ref/contrib/postgres/aggregates.txt
+++ b/docs/ref/contrib/postgres/aggregates.txt
@@ -203,7 +203,7 @@ Here's some examples of some of the general-purpose aggregation functions::
The next example shows the usage of statistical aggregate functions. The
underlying math will be not described (you can read about this, for example, at
-`wikipedia <http://en.wikipedia.org/wiki/Regression_analysis>`_)::
+`wikipedia <https://en.wikipedia.org/wiki/Regression_analysis>`_)::
>>> TestModel.objects.aggregate(count=RegrCount(y='field3', x='field2'))
{'count': 2}