Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
54236a2c
Kaydet (Commit)
54236a2c
authored
Ock 26, 2016
tarafından
Claude Paroz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #26138 -- Ensured geometry_field's geometry is always serialized
Thanks Bernd Schlapsi for the report.
üst
31817dd2
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
2 deletions
+21
-2
geojson.py
django/contrib/gis/serializers/geojson.py
+3
-0
1.9.2.txt
docs/releases/1.9.2.txt
+3
-0
test_serializers.py
tests/gis_tests/geoapp/test_serializers.py
+15
-2
No files found.
django/contrib/gis/serializers/geojson.py
Dosyayı görüntüle @
54236a2c
...
...
@@ -18,6 +18,9 @@ class Serializer(JSONSerializer):
super
(
Serializer
,
self
)
.
_init_options
()
self
.
geometry_field
=
self
.
json_kwargs
.
pop
(
'geometry_field'
,
None
)
self
.
srid
=
self
.
json_kwargs
.
pop
(
'srid'
,
4326
)
if
(
self
.
selected_fields
is
not
None
and
self
.
geometry_field
is
not
None
and
self
.
geometry_field
not
in
self
.
selected_fields
):
self
.
selected_fields
=
list
(
self
.
selected_fields
)
+
[
self
.
geometry_field
]
def
start_serialization
(
self
):
self
.
_init_options
()
...
...
docs/releases/1.9.2.txt
Dosyayı görüntüle @
54236a2c
...
...
@@ -85,3 +85,6 @@ Bugfixes
* Fixed a regression in Django 1.8.5 that broke copying a ``SimpleLazyObject``
with ``copy.copy()`` (:ticket:`26122`).
* Always included ``geometry_field`` in the GeoJSON serializer output regardless
of the ``fields`` parameter (:ticket:`26138`).
tests/gis_tests/geoapp/test_serializers.py
Dosyayı görüntüle @
54236a2c
...
...
@@ -47,8 +47,21 @@ class GeoJSONSerializerTests(TestCase):
geodata
=
json
.
loads
(
geojson
)
self
.
assertEqual
(
geodata
[
'features'
][
0
][
'geometry'
][
'type'
],
'Point'
)
geojson
=
serializers
.
serialize
(
'geojson'
,
MultiFields
.
objects
.
all
(),
geometry_field
=
'poly'
)
geojson
=
serializers
.
serialize
(
'geojson'
,
MultiFields
.
objects
.
all
(),
geometry_field
=
'poly'
)
geodata
=
json
.
loads
(
geojson
)
self
.
assertEqual
(
geodata
[
'features'
][
0
][
'geometry'
][
'type'
],
'Polygon'
)
# geometry_field is considered even if not in fields (#26138).
geojson
=
serializers
.
serialize
(
'geojson'
,
MultiFields
.
objects
.
all
(),
geometry_field
=
'poly'
,
fields
=
(
'city'
,)
)
geodata
=
json
.
loads
(
geojson
)
self
.
assertEqual
(
geodata
[
'features'
][
0
][
'geometry'
][
'type'
],
'Polygon'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment