summaryrefslogtreecommitdiff
path: root/docs/ref/contrib
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-05-17 10:16:32 -0400
committerTim Graham <timograham@gmail.com>2018-05-17 11:00:10 -0400
commit7543ab1f8dcb20dbbdf6a41eace95fc47c8dcaa3 (patch)
tree98e0f0cbec43f45ea36c09cafb97385bca028a9f /docs/ref/contrib
parent1cbd3d7874a4887fa2a6d7ef582defc388429b97 (diff)
Removed versionadded/changed annotations for 2.0.
Diffstat (limited to 'docs/ref/contrib')
-rw-r--r--docs/ref/contrib/admin/index.txt4
-rw-r--r--docs/ref/contrib/auth.txt4
-rw-r--r--docs/ref/contrib/gis/forms-api.txt2
-rw-r--r--docs/ref/contrib/gis/functions.txt16
-rw-r--r--docs/ref/contrib/gis/gdal.txt20
-rw-r--r--docs/ref/contrib/gis/geoquerysets.txt8
-rw-r--r--docs/ref/contrib/gis/geos.txt11
-rw-r--r--docs/ref/contrib/postgres/aggregates.txt2
-rw-r--r--docs/ref/contrib/postgres/functions.txt2
-rw-r--r--docs/ref/contrib/postgres/indexes.txt6
-rw-r--r--docs/ref/contrib/postgres/operations.txt4
-rw-r--r--docs/ref/contrib/sitemaps.txt4
12 files changed, 0 insertions, 83 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 9b0a7cc8a4..b4df066e15 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -1102,8 +1102,6 @@ subclass::
.. attribute:: ModelAdmin.autocomplete_fields
- .. versionadded:: 2.0
-
``autocomplete_fields`` is a list of ``ForeignKey`` and/or
``ManyToManyField`` fields you would like to change to `Select2
<https://select2.org/>`_ autocomplete inputs.
@@ -1525,8 +1523,6 @@ templates used by the :class:`ModelAdmin` views:
.. method:: ModelAdmin.get_autocomplete_fields(request)
- .. versionadded:: 2.0
-
The ``get_autocomplete_fields()`` method is given the ``HttpRequest`` and is
expected to return a ``list`` or ``tuple`` of field names that will be
displayed with an autocomplete widget as described above in the
diff --git a/docs/ref/contrib/auth.txt b/docs/ref/contrib/auth.txt
index 2b1aa9ae08..62516a94d2 100644
--- a/docs/ref/contrib/auth.txt
+++ b/docs/ref/contrib/auth.txt
@@ -51,10 +51,6 @@ Fields
Optional (:attr:`blank=True <django.db.models.Field.blank>`). 150
characters or fewer.
- .. versionchanged:: 2.0
-
- The ``max_length`` increased from 30 to 150 characters.
-
.. attribute:: email
Optional (:attr:`blank=True <django.db.models.Field.blank>`). Email
diff --git a/docs/ref/contrib/gis/forms-api.txt b/docs/ref/contrib/gis/forms-api.txt
index ea48edb54a..8891e0211e 100644
--- a/docs/ref/contrib/gis/forms-api.txt
+++ b/docs/ref/contrib/gis/forms-api.txt
@@ -179,8 +179,6 @@ Widget classes
.. attribute:: default_zoom
- .. versionadded:: 2.0
-
The default map zoom is ``12``.
The :class:`OpenLayersWidget` note about JavaScript file hosting above also
diff --git a/docs/ref/contrib/gis/functions.txt b/docs/ref/contrib/gis/functions.txt
index 47ab21bfa3..3a6a75d4c4 100644
--- a/docs/ref/contrib/gis/functions.txt
+++ b/docs/ref/contrib/gis/functions.txt
@@ -82,10 +82,6 @@ Keyword Argument Description
representation -- the default value is 8.
===================== =====================================================
-.. versionchanged:: 2.0
-
- MySQL support was added.
-
``AsGML``
=========
@@ -172,8 +168,6 @@ __ https://www.w3.org/Graphics/SVG/
.. class:: Azimuth(point_a, point_b, **extra)
-.. versionadded:: 2.0
-
*Availability*: `PostGIS <https://postgis.net/docs/ST_Azimuth.html>`__,
SpatiaLite (LWGEOM)
@@ -323,10 +317,6 @@ representation of the geometry.
The ``precision`` keyword argument controls the number of characters in the
result.
-.. versionchanged:: 2.0
-
- MySQL support was added.
-
__ https://en.wikipedia.org/wiki/Geohash
``Intersection``
@@ -353,10 +343,6 @@ intersection between them.
Accepts a geographic field or expression and tests if the value is well formed.
Returns ``True`` if its value is a valid geometry and ``False`` otherwise.
-.. versionchanged:: 2.0
-
- MySQL support was added.
-
``Length``
==========
@@ -382,8 +368,6 @@ MySQL doesn't support length calculations on geographic SRSes.
.. class:: LineLocatePoint(linestring, point, **extra)
-.. versionadded:: 2.0
-
*Availability*: `PostGIS <https://postgis.net/docs/ST_LineLocatePoint.html>`__,
SpatiaLite
diff --git a/docs/ref/contrib/gis/gdal.txt b/docs/ref/contrib/gis/gdal.txt
index 002afb9621..392c4e47f7 100644
--- a/docs/ref/contrib/gis/gdal.txt
+++ b/docs/ref/contrib/gis/gdal.txt
@@ -1160,12 +1160,6 @@ blue.
>>> rst.name # Stored in a random path in the vsimem filesystem.
'/vsimem/da300bdb-129d-49a8-b336-e410a9428dad'
- .. versionchanged:: 2.0
-
- Added the ability to read and write rasters in GDAL's memory-based
- virtual filesystem. ``GDALRaster`` objects can now be converted to and
- from binary data in-memory.
-
.. attribute:: name
The name of the source which is equivalent to the input file path or the name
@@ -1406,8 +1400,6 @@ blue.
.. attribute:: info
- .. versionadded:: 2.0
-
Returns a string with a summary of the raster. This is equivalent to
the `gdalinfo`__ command line utility.
@@ -1415,8 +1407,6 @@ blue.
.. attribute:: metadata
- .. versionadded:: 2.0
-
The metadata of this raster, represented as a nested dictionary. The
first-level key is the metadata domain. The second-level contains the
metadata item names and values from each domain.
@@ -1440,15 +1430,11 @@ blue.
.. attribute:: vsi_buffer
- .. versionadded:: 2.0
-
A ``bytes`` representation of this raster. Returns ``None`` for rasters
that are not stored in GDAL's virtual filesystem.
.. attribute:: is_vsi_based
- .. versionadded:: 2.0
-
A boolean indicating if this raster is stored in GDAL's virtual
filesystem.
@@ -1542,8 +1528,6 @@ blue.
.. method:: color_interp(as_string=False)
- .. versionadded:: 2.0
-
The color interpretation for the band, as an integer between 0and 16.
If ``as_string`` is ``True``, the data type is returned as a string
with the following possible values:
@@ -1618,8 +1602,6 @@ blue.
.. attribute:: metadata
- .. versionadded:: 2.0
-
The metadata of this band. The functionality is identical to
:attr:`GDALRaster.metadata`.
@@ -1721,8 +1703,6 @@ Key Default Usage
.. object:: papsz_options
- .. versionadded:: 2.0
-
A dictionary with raster creation options. The key-value pairs of the
input dictionary are passed to the driver on creation of the raster.
diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt
index dfc86c4efb..a8f7e27277 100644
--- a/docs/ref/contrib/gis/geoquerysets.txt
+++ b/docs/ref/contrib/gis/geoquerysets.txt
@@ -322,10 +322,6 @@ MySQL, PostGIS, SpatiaLite ``ST_IsValid(poly)``
Oracle ``SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(poly, 0.05) = 'TRUE'``
========================== ================================================================
-.. versionchanged:: 2.0
-
- MySQL support was added.
-
.. fieldlookup:: overlaps
``overlaps``
@@ -631,10 +627,6 @@ simpler `ST_Distance <https://postgis.net/docs/ST_Distance.html>`__ function is
used with projected coordinate systems. Rasters are converted to geometries for
spheroid based lookups.
-.. versionadded:: 2.0
-
- MySQL support was added.
-
.. fieldlookup:: distance_gt
``distance_gt``
diff --git a/docs/ref/contrib/gis/geos.txt b/docs/ref/contrib/gis/geos.txt
index 4fc660fd95..92a6ad86bb 100644
--- a/docs/ref/contrib/gis/geos.txt
+++ b/docs/ref/contrib/gis/geos.txt
@@ -203,13 +203,6 @@ The ``srid`` parameter, if given, is set as the SRID of the created geometry if
...
ValueError: Input geometry already has SRID: 1.
-.. versionchanged:: 2.0
-
- In older versions, the ``srid`` parameter is handled differently for WKT
- and WKB input. For WKT, ``srid`` is used only if the input geometry doesn't
- have an SRID. For WKB, ``srid`` (if given) replaces the SRID of the input
- geometry.
-
The following input formats, along with their corresponding Python types,
are accepted:
@@ -225,10 +218,6 @@ GeoJSON_ ``str``
For the GeoJSON format, the SRID is set based on the ``crs`` member. If ``crs``
isn't provided, the SRID defaults to 4326.
-.. versionchanged:: 2.0
-
- In older versions, SRID isn't set for geometries initialized from GeoJSON.
-
.. _GeoJSON: https://tools.ietf.org/html/rfc7946
.. classmethod:: GEOSGeometry.from_gml(gml_string)
diff --git a/docs/ref/contrib/postgres/aggregates.txt b/docs/ref/contrib/postgres/aggregates.txt
index 43b4e3f44b..480c230c40 100644
--- a/docs/ref/contrib/postgres/aggregates.txt
+++ b/docs/ref/contrib/postgres/aggregates.txt
@@ -28,8 +28,6 @@ General-purpose aggregation functions
.. attribute:: distinct
- .. versionadded:: 2.0
-
An optional boolean argument that determines if array values
will be distinct. Defaults to ``False``.
diff --git a/docs/ref/contrib/postgres/functions.txt b/docs/ref/contrib/postgres/functions.txt
index 8d3df51864..3b98e573e7 100644
--- a/docs/ref/contrib/postgres/functions.txt
+++ b/docs/ref/contrib/postgres/functions.txt
@@ -12,8 +12,6 @@ All of these functions are available from the
.. class:: RandomUUID()
-.. versionadded:: 2.0
-
Returns a version 4 UUID.
The `pgcrypto extension`_ must be installed. You can use the
diff --git a/docs/ref/contrib/postgres/indexes.txt b/docs/ref/contrib/postgres/indexes.txt
index 0ab6920241..e7c681e6ba 100644
--- a/docs/ref/contrib/postgres/indexes.txt
+++ b/docs/ref/contrib/postgres/indexes.txt
@@ -43,17 +43,11 @@ available from the ``django.contrib.postgres.indexes`` module.
.. _GIN Fast Update Technique: https://www.postgresql.org/docs/current/static/gin-implementation.html#GIN-FAST-UPDATE
.. _gin_pending_list_limit: https://www.postgresql.org/docs/current/static/runtime-config-client.html#GUC-GIN-PENDING-LIST-LIMIT
- .. versionchanged:: 2.0
-
- The ``fastupdate`` and ``gin_pending_list_limit`` parameters were added.
-
``GistIndex``
=============
.. class:: GistIndex(buffering=None, fillfactor=None, **options)
- .. versionadded:: 2.0
-
Creates a `GiST index
<https://www.postgresql.org/docs/current/static/gist.html>`_. These indexes
are automatically created on spatial fields with :attr:`spatial_index=True
diff --git a/docs/ref/contrib/postgres/operations.txt b/docs/ref/contrib/postgres/operations.txt
index 4ddd790bd5..c56693478f 100644
--- a/docs/ref/contrib/postgres/operations.txt
+++ b/docs/ref/contrib/postgres/operations.txt
@@ -61,8 +61,6 @@ run the query ``CREATE EXTENSION IF NOT EXISTS hstore;``.
.. class:: BtreeGistExtension()
- .. versionadded:: 2.0
-
Install the ``btree_gist`` extension.
``CITextExtension``
@@ -77,8 +75,6 @@ run the query ``CREATE EXTENSION IF NOT EXISTS hstore;``.
.. class:: CryptoExtension()
- .. versionadded:: 2.0
-
Installs the ``pgcrypto`` extension.
``HStoreExtension``
diff --git a/docs/ref/contrib/sitemaps.txt b/docs/ref/contrib/sitemaps.txt
index dd720a8bb0..21ed6848e4 100644
--- a/docs/ref/contrib/sitemaps.txt
+++ b/docs/ref/contrib/sitemaps.txt
@@ -273,10 +273,6 @@ The sitemap framework provides a convenience class for a common case:
and :attr:`~Sitemap.protocol` keyword arguments allow specifying these
attributes for all URLs.
- .. versionadded:: 2.0
-
- The ``protocol`` keyword argument was added.
-
Example
-------