diff options
| author | Justin Bronn <jbronn@gmail.com> | 2011-09-11 00:52:08 +0000 |
|---|---|---|
| committer | Justin Bronn <jbronn@gmail.com> | 2011-09-11 00:52:08 +0000 |
| commit | 28cb5bf1622cd8fa6f324cc516974e3badc31a51 (patch) | |
| tree | 873b7c1851227c15ad7660b7a1552ac70240fb83 /docs | |
| parent | 83484cc109baf6aad645e7cace2183c2b7f9c181 (diff) | |
Fixed #16231 -- Added support for GML and KML on the SpatiaLite backend. Thanks, steko for the bug report and jpaulett for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16800 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/gis/db-api.txt | 4 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/geoquerysets.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/contrib/gis/db-api.txt b/docs/ref/contrib/gis/db-api.txt index 9bd5eccf14..a75a04ee4f 100644 --- a/docs/ref/contrib/gis/db-api.txt +++ b/docs/ref/contrib/gis/db-api.txt @@ -287,9 +287,9 @@ Method PostGIS Oracle SpatiaLite :meth:`GeoQuerySet.force_rhr` X :meth:`GeoQuerySet.geohash` X :meth:`GeoQuerySet.geojson` X -:meth:`GeoQuerySet.gml` X X +:meth:`GeoQuerySet.gml` X X X :meth:`GeoQuerySet.intersection` X X X -:meth:`GeoQuerySet.kml` X +:meth:`GeoQuerySet.kml` X X :meth:`GeoQuerySet.length` X X X :meth:`GeoQuerySet.make_line` X :meth:`GeoQuerySet.mem_size` X diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt index f96929ea47..a58f472005 100644 --- a/docs/ref/contrib/gis/geoquerysets.txt +++ b/docs/ref/contrib/gis/geoquerysets.txt @@ -982,7 +982,7 @@ __ http://geojson.org/ .. method:: GeoQuerySet.gml(**kwargs) -*Availability*: PostGIS, Oracle +*Availability*: PostGIS, Oracle, SpatiaLite Attaches a ``gml`` attribute to every model in the queryset that contains the `Geographic Markup Language (GML)`__ representation of the geometry. @@ -1013,7 +1013,7 @@ __ http://en.wikipedia.org/wiki/Geography_Markup_Language .. method:: GeoQuerySet.kml(**kwargs) -*Availability*: PostGIS +*Availability*: PostGIS, SpatiaLite Attaches a ``kml`` attribute to every model in the queryset that contains the `Keyhole Markup Language (KML)`__ representation of the geometry fields. It |
