umap-project 2.6.0__py3-none-any.whl → 2.6.0b1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +9 -9
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +18 -18
- umap/static/umap/js/modules/data/features.js +5 -10
- umap/static/umap/js/modules/data/layer.js +1 -1
- umap/static/umap/js/modules/rendering/ui.js +4 -25
- umap/static/umap/js/modules/rules.js +3 -16
- umap/static/umap/locale/en.js +1 -3
- umap/static/umap/locale/en.json +1 -3
- umap/static/umap/locale/eu.js +6 -8
- umap/static/umap/locale/eu.json +6 -8
- umap/static/umap/locale/fa_IR.js +12 -14
- umap/static/umap/locale/fa_IR.json +12 -14
- umap/static/umap/locale/fr.js +1 -3
- umap/static/umap/locale/fr.json +1 -3
- umap/static/umap/locale/hu.js +12 -14
- umap/static/umap/locale/hu.json +12 -14
- umap/static/umap/map.css +2 -2
- umap/static/umap/vars.css +0 -1
- umap/static/umap/vendors/editable/Leaflet.Editable.js +1937 -2079
- umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
- umap/tests/integration/test_browser.py +0 -20
- umap/tests/integration/test_conditional_rules.py +17 -102
- umap/tests/integration/test_draw_polygon.py +0 -28
- {umap_project-2.6.0.dist-info → umap_project-2.6.0b1.dist-info}/METADATA +6 -6
- {umap_project-2.6.0.dist-info → umap_project-2.6.0b1.dist-info}/RECORD +31 -31
- {umap_project-2.6.0.dist-info → umap_project-2.6.0b1.dist-info}/WHEEL +0 -0
- {umap_project-2.6.0.dist-info → umap_project-2.6.0b1.dist-info}/entry_points.txt +0 -0
- {umap_project-2.6.0.dist-info → umap_project-2.6.0b1.dist-info}/licenses/LICENSE +0 -0
|
@@ -176,26 +176,6 @@ def test_filter_works_with_variable_in_labelKey(live_server, page, map):
|
|
|
176
176
|
expect(paths).to_have_count(1) # Only polygon
|
|
177
177
|
|
|
178
178
|
|
|
179
|
-
def test_filter_works_with_missing_name(live_server, page, map):
|
|
180
|
-
map.settings["properties"]["onLoadPanel"] = "databrowser"
|
|
181
|
-
map.save()
|
|
182
|
-
data = deepcopy(DATALAYER_DATA)
|
|
183
|
-
del data["features"][0]["properties"]["name"]
|
|
184
|
-
DataLayerFactory(map=map, data=data, name="foobar")
|
|
185
|
-
page.goto(f"{live_server.url}{map.get_absolute_url()}")
|
|
186
|
-
expect(page.get_by_title("Features in this layer: 3")).to_be_visible()
|
|
187
|
-
markers = page.locator(".leaflet-marker-icon")
|
|
188
|
-
paths = page.locator(".leaflet-overlay-pane path")
|
|
189
|
-
expect(markers).to_have_count(1)
|
|
190
|
-
expect(paths).to_have_count(2)
|
|
191
|
-
page.locator(".filters summary").click()
|
|
192
|
-
filter_ = page.locator("input[name='filter']")
|
|
193
|
-
expect(filter_).to_be_visible()
|
|
194
|
-
filter_.type("foob")
|
|
195
|
-
expect(markers).to_have_count(1)
|
|
196
|
-
expect(paths).to_have_count(0)
|
|
197
|
-
|
|
198
|
-
|
|
199
179
|
def test_data_browser_can_show_only_visible_features(live_server, page, bootstrap, map):
|
|
200
180
|
# Zoom on France
|
|
201
181
|
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/51.000/2.000")
|
|
@@ -24,7 +24,6 @@ DATALAYER_DATA1 = {
|
|
|
24
24
|
"mynumber": 10,
|
|
25
25
|
"myboolean": True,
|
|
26
26
|
"mydate": "2024/04/14 12:19:17",
|
|
27
|
-
"maybeempty": "not empty",
|
|
28
27
|
},
|
|
29
28
|
"geometry": {"type": "Point", "coordinates": [0.065918, 48.385442]},
|
|
30
29
|
},
|
|
@@ -36,7 +35,6 @@ DATALAYER_DATA1 = {
|
|
|
36
35
|
"mynumber": 12,
|
|
37
36
|
"myboolean": False,
|
|
38
37
|
"mydate": "2024/03/13 12:20:20",
|
|
39
|
-
"maybeempty": "",
|
|
40
38
|
},
|
|
41
39
|
"geometry": {"type": "Point", "coordinates": [3.55957, 49.767074]},
|
|
42
40
|
},
|
|
@@ -58,7 +56,6 @@ DATALAYER_DATA2 = {
|
|
|
58
56
|
"mynumber": 10,
|
|
59
57
|
"myboolean": "true",
|
|
60
58
|
"mydate": "2024/08/18 13:14:15",
|
|
61
|
-
"maybeempty": None,
|
|
62
59
|
},
|
|
63
60
|
"geometry": {"type": "Point", "coordinates": [0.856934, 45.290347]},
|
|
64
61
|
},
|
|
@@ -72,18 +69,6 @@ DATALAYER_DATA2 = {
|
|
|
72
69
|
},
|
|
73
70
|
"geometry": {"type": "Point", "coordinates": [4.372559, 47.945786]},
|
|
74
71
|
},
|
|
75
|
-
{
|
|
76
|
-
"type": "Feature",
|
|
77
|
-
"properties": {
|
|
78
|
-
"mytype": "odd",
|
|
79
|
-
"name": "Point 5",
|
|
80
|
-
"mynumber": 10,
|
|
81
|
-
"mydate": "2024-04-14T10:19:17.000Z",
|
|
82
|
-
"myboolean": "notaboolean",
|
|
83
|
-
"maybeempty": "foo",
|
|
84
|
-
},
|
|
85
|
-
"geometry": {"type": "Point", "coordinates": [4.1, 47.3]},
|
|
86
|
-
},
|
|
87
72
|
],
|
|
88
73
|
"_umap_options": {
|
|
89
74
|
"name": "Calque 2",
|
|
@@ -100,9 +85,9 @@ def test_simple_equal_rule_at_load(live_server, page, map):
|
|
|
100
85
|
DataLayerFactory(map=map, data=DATALAYER_DATA2)
|
|
101
86
|
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
|
|
102
87
|
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
103
|
-
expect(markers).to_have_count(
|
|
88
|
+
expect(markers).to_have_count(4)
|
|
104
89
|
colors = getColors(markers)
|
|
105
|
-
assert colors.count("rgb(240, 248, 255)") ==
|
|
90
|
+
assert colors.count("rgb(240, 248, 255)") == 2
|
|
106
91
|
|
|
107
92
|
|
|
108
93
|
def test_simple_not_equal_rule_at_load(live_server, page, map):
|
|
@@ -114,9 +99,9 @@ def test_simple_not_equal_rule_at_load(live_server, page, map):
|
|
|
114
99
|
DataLayerFactory(map=map, data=DATALAYER_DATA2)
|
|
115
100
|
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
|
|
116
101
|
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
117
|
-
expect(markers).to_have_count(
|
|
102
|
+
expect(markers).to_have_count(4)
|
|
118
103
|
colors = getColors(markers)
|
|
119
|
-
assert colors.count("rgb(240, 248, 255)") ==
|
|
104
|
+
assert colors.count("rgb(240, 248, 255)") == 2
|
|
120
105
|
|
|
121
106
|
|
|
122
107
|
def test_gt_rule_with_number_at_load(live_server, page, map):
|
|
@@ -128,7 +113,7 @@ def test_gt_rule_with_number_at_load(live_server, page, map):
|
|
|
128
113
|
DataLayerFactory(map=map, data=DATALAYER_DATA2)
|
|
129
114
|
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
|
|
130
115
|
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
131
|
-
expect(markers).to_have_count(
|
|
116
|
+
expect(markers).to_have_count(4)
|
|
132
117
|
colors = getColors(markers)
|
|
133
118
|
assert colors.count("rgb(240, 248, 255)") == 2
|
|
134
119
|
|
|
@@ -142,9 +127,9 @@ def test_lt_rule_with_number_at_load(live_server, page, map):
|
|
|
142
127
|
DataLayerFactory(map=map, data=DATALAYER_DATA2)
|
|
143
128
|
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
|
|
144
129
|
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
145
|
-
expect(markers).to_have_count(
|
|
130
|
+
expect(markers).to_have_count(4)
|
|
146
131
|
colors = getColors(markers)
|
|
147
|
-
assert colors.count("rgb(240, 248, 255)") ==
|
|
132
|
+
assert colors.count("rgb(240, 248, 255)") == 3
|
|
148
133
|
|
|
149
134
|
|
|
150
135
|
def test_lt_rule_with_float_at_load(live_server, page, map):
|
|
@@ -156,9 +141,9 @@ def test_lt_rule_with_float_at_load(live_server, page, map):
|
|
|
156
141
|
DataLayerFactory(map=map, data=DATALAYER_DATA2)
|
|
157
142
|
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
|
|
158
143
|
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
159
|
-
expect(markers).to_have_count(
|
|
144
|
+
expect(markers).to_have_count(4)
|
|
160
145
|
colors = getColors(markers)
|
|
161
|
-
assert colors.count("rgb(240, 248, 255)") ==
|
|
146
|
+
assert colors.count("rgb(240, 248, 255)") == 3
|
|
162
147
|
|
|
163
148
|
|
|
164
149
|
def test_equal_rule_with_boolean_at_load(live_server, page, map):
|
|
@@ -170,77 +155,7 @@ def test_equal_rule_with_boolean_at_load(live_server, page, map):
|
|
|
170
155
|
DataLayerFactory(map=map, data=DATALAYER_DATA2)
|
|
171
156
|
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
|
|
172
157
|
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
173
|
-
expect(markers).to_have_count(
|
|
174
|
-
colors = getColors(markers)
|
|
175
|
-
assert colors.count("rgb(240, 248, 255)") == 2
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
def test_equal_rule_with_boolean_not_true_at_load(live_server, page, map):
|
|
179
|
-
map.settings["properties"]["rules"] = [
|
|
180
|
-
{"condition": "myboolean!=true", "options": {"color": "aliceblue"}}
|
|
181
|
-
]
|
|
182
|
-
map.save()
|
|
183
|
-
DataLayerFactory(map=map, data=DATALAYER_DATA1)
|
|
184
|
-
DataLayerFactory(map=map, data=DATALAYER_DATA2)
|
|
185
|
-
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
|
|
186
|
-
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
187
|
-
expect(markers).to_have_count(5)
|
|
188
|
-
colors = getColors(markers)
|
|
189
|
-
assert colors.count("rgb(240, 248, 255)") == 3
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
def test_equal_rule_with_boolean_false_at_load(live_server, page, map):
|
|
193
|
-
map.settings["properties"]["rules"] = [
|
|
194
|
-
{"condition": "myboolean=false", "options": {"color": "aliceblue"}}
|
|
195
|
-
]
|
|
196
|
-
map.save()
|
|
197
|
-
DataLayerFactory(map=map, data=DATALAYER_DATA1)
|
|
198
|
-
DataLayerFactory(map=map, data=DATALAYER_DATA2)
|
|
199
|
-
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
|
|
200
|
-
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
201
|
-
expect(markers).to_have_count(5)
|
|
202
|
-
colors = getColors(markers)
|
|
203
|
-
assert colors.count("rgb(240, 248, 255)") == 1
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
def test_equal_rule_with_boolean_not_false_at_load(live_server, page, map):
|
|
207
|
-
map.settings["properties"]["rules"] = [
|
|
208
|
-
{"condition": "myboolean!=false", "options": {"color": "aliceblue"}}
|
|
209
|
-
]
|
|
210
|
-
map.save()
|
|
211
|
-
DataLayerFactory(map=map, data=DATALAYER_DATA1)
|
|
212
|
-
DataLayerFactory(map=map, data=DATALAYER_DATA2)
|
|
213
|
-
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
|
|
214
|
-
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
215
|
-
expect(markers).to_have_count(5)
|
|
216
|
-
colors = getColors(markers)
|
|
217
|
-
assert colors.count("rgb(240, 248, 255)") == 4
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
def test_empty_rule_at_load(live_server, page, map):
|
|
221
|
-
map.settings["properties"]["rules"] = [
|
|
222
|
-
{"condition": "maybeempty=", "options": {"color": "aliceblue"}}
|
|
223
|
-
]
|
|
224
|
-
map.save()
|
|
225
|
-
DataLayerFactory(map=map, data=DATALAYER_DATA1)
|
|
226
|
-
DataLayerFactory(map=map, data=DATALAYER_DATA2)
|
|
227
|
-
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
|
|
228
|
-
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
229
|
-
expect(markers).to_have_count(5)
|
|
230
|
-
colors = getColors(markers)
|
|
231
|
-
assert colors.count("rgb(240, 248, 255)") == 3
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
def test_not_empty_rule_at_load(live_server, page, map):
|
|
235
|
-
map.settings["properties"]["rules"] = [
|
|
236
|
-
{"condition": "maybeempty!=", "options": {"color": "aliceblue"}}
|
|
237
|
-
]
|
|
238
|
-
map.save()
|
|
239
|
-
DataLayerFactory(map=map, data=DATALAYER_DATA1)
|
|
240
|
-
DataLayerFactory(map=map, data=DATALAYER_DATA2)
|
|
241
|
-
page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
|
|
242
|
-
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
243
|
-
expect(markers).to_have_count(5)
|
|
158
|
+
expect(markers).to_have_count(4)
|
|
244
159
|
colors = getColors(markers)
|
|
245
160
|
assert colors.count("rgb(240, 248, 255)") == 2
|
|
246
161
|
|
|
@@ -250,7 +165,7 @@ def test_can_create_new_rule(live_server, page, openmap):
|
|
|
250
165
|
DataLayerFactory(map=openmap, data=DATALAYER_DATA2)
|
|
251
166
|
page.goto(f"{live_server.url}{openmap.get_absolute_url()}#6/48.948/1.670")
|
|
252
167
|
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
253
|
-
expect(markers).to_have_count(
|
|
168
|
+
expect(markers).to_have_count(4)
|
|
254
169
|
page.get_by_role("button", name="Edit").click()
|
|
255
170
|
page.get_by_role("link", name="Map advanced properties").click()
|
|
256
171
|
page.get_by_text("Conditional style rules").click()
|
|
@@ -260,7 +175,7 @@ def test_can_create_new_rule(live_server, page, openmap):
|
|
|
260
175
|
page.locator(".umap-field-color .define").first.click()
|
|
261
176
|
page.get_by_title("AliceBlue").first.click()
|
|
262
177
|
colors = getColors(markers)
|
|
263
|
-
assert colors.count("rgb(240, 248, 255)") ==
|
|
178
|
+
assert colors.count("rgb(240, 248, 255)") == 2
|
|
264
179
|
|
|
265
180
|
|
|
266
181
|
def test_can_deactive_rule_from_list(live_server, page, openmap):
|
|
@@ -272,9 +187,9 @@ def test_can_deactive_rule_from_list(live_server, page, openmap):
|
|
|
272
187
|
DataLayerFactory(map=openmap, data=DATALAYER_DATA2)
|
|
273
188
|
page.goto(f"{live_server.url}{openmap.get_absolute_url()}#6/48.948/1.670")
|
|
274
189
|
markers = page.locator(".leaflet-marker-icon .icon_container")
|
|
275
|
-
expect(markers).to_have_count(
|
|
190
|
+
expect(markers).to_have_count(4)
|
|
276
191
|
colors = getColors(markers)
|
|
277
|
-
assert colors.count("rgb(240, 248, 255)") ==
|
|
192
|
+
assert colors.count("rgb(240, 248, 255)") == 2
|
|
278
193
|
page.get_by_role("button", name="Edit").click()
|
|
279
194
|
page.get_by_role("link", name="Map advanced properties").click()
|
|
280
195
|
page.get_by_text("Conditional style rules").click()
|
|
@@ -283,7 +198,7 @@ def test_can_deactive_rule_from_list(live_server, page, openmap):
|
|
|
283
198
|
assert colors.count("rgb(240, 248, 255)") == 0
|
|
284
199
|
page.get_by_role("button", name="Show/hide layer").click()
|
|
285
200
|
colors = getColors(markers)
|
|
286
|
-
assert colors.count("rgb(240, 248, 255)") ==
|
|
201
|
+
assert colors.count("rgb(240, 248, 255)") == 2
|
|
287
202
|
|
|
288
203
|
|
|
289
204
|
def test_autocomplete_datalist(live_server, page, openmap):
|
|
@@ -294,9 +209,9 @@ def test_autocomplete_datalist(live_server, page, openmap):
|
|
|
294
209
|
page.get_by_role("button", name="Add rule").click()
|
|
295
210
|
panel = page.locator(".panel.right.on")
|
|
296
211
|
datalist = panel.locator(".umap-field-condition datalist option")
|
|
297
|
-
expect(datalist).to_have_count(
|
|
212
|
+
expect(datalist).to_have_count(5)
|
|
298
213
|
values = {option.inner_text() for option in datalist.all()}
|
|
299
|
-
assert values == {"myboolean", "mytype", "mynumber", "mydate", "name"
|
|
214
|
+
assert values == {"myboolean", "mytype", "mynumber", "mydate", "name"}
|
|
300
215
|
page.get_by_placeholder("key=value or key!=value").fill("mytype")
|
|
301
216
|
expect(datalist).to_have_count(4)
|
|
302
217
|
values = {option.inner_text() for option in datalist.all()}
|
|
@@ -464,31 +464,3 @@ def test_can_draw_a_polygon_and_invert_it(live_server, page, tilelayer, settings
|
|
|
464
464
|
# Click elsewhere on the map, it should now show the popup
|
|
465
465
|
map.click(position={"x": 250, "y": 250})
|
|
466
466
|
expect(popup).to_be_visible()
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
def test_vertexmarker_not_shown_if_too_many(live_server, map, page, settings):
|
|
470
|
-
geojson = '{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.350602,48.438077],[3.349287,48.438082],[3.34921,48.438124],[3.348519,48.438108],[3.34546,48.437416],[3.343752,48.436955],[3.339092,48.435705],[3.333756,48.434278],[3.330224,48.433336],[3.326293,48.43229],[3.323154,48.430374],[3.32129,48.429238],[3.321234,48.429191],[3.321164,48.429221],[3.320893,48.429117],[3.320766,48.42912],[3.320575,48.429213],[3.320289,48.429303],[3.320042,48.429427],[3.319659,48.429542],[3.319215,48.429622],[3.318547,48.429691],[3.317845,48.429671],[3.317751,48.429698],[3.316503,48.430404],[3.316247,48.430481],[3.316101,48.431152],[3.316181,48.431164],[3.315466,48.432852],[3.315229,48.432981],[3.314785,48.433076],[3.314588,48.432699],[3.314474,48.432376],[3.314197,48.431965],[3.313812,48.431626],[3.313264,48.431253],[3.312393,48.430865],[3.311687,48.43069],[3.311471,48.430693],[3.311199,48.430622],[3.310632,48.430628],[3.30879,48.430373],[3.307032,48.430298],[3.306597,48.430211],[3.306301,48.430213],[3.306137,48.430161],[3.305651,48.430165],[3.304839,48.430046],[3.303726,48.429803],[3.302861,48.42972],[3.302237,48.429635],[3.300559,48.429488],[3.300396,48.429435],[3.299502,48.429335],[3.298528,48.429198],[3.298176,48.429201],[3.296263,48.429039],[3.296267,48.429307],[3.296237,48.429425],[3.295882,48.429848],[3.295665,48.429789],[3.295397,48.430056],[3.295377,48.430132],[3.295186,48.430421],[3.295198,48.430531],[3.295344,48.430735],[3.296077,48.431333],[3.295938,48.431617],[3.29576,48.43168],[3.294082,48.431442],[3.292288,48.431198],[3.292303,48.431101],[3.29082,48.431007],[3.29043,48.430975],[3.290451,48.431129],[3.290115,48.431105],[3.289097,48.430993],[3.289185,48.430805],[3.288545,48.430699],[3.288311,48.430684],[3.287686,48.430687],[3.287456,48.431129],[3.287465,48.43122],[3.288277,48.431574],[3.28896,48.431915],[3.288937,48.431969],[3.289431,48.432499],[3.289672,48.43292],[3.289871,48.433156],[3.29036,48.433602],[3.290557,48.433724],[3.290781,48.433809],[3.291035,48.433857],[3.291537,48.434024],[3.291819,48.434151],[3.292118,48.434341],[3.292479,48.434677],[3.292929,48.435388],[3.293207,48.435792],[3.293881,48.43672],[3.293762,48.436772],[3.294056,48.437209],[3.294117,48.437385],[3.294618,48.437579],[3.294465,48.437764],[3.294424,48.438087],[3.294357,48.438293],[3.293776,48.438817],[3.293308,48.439323],[3.292929,48.439844],[3.292671,48.440235],[3.29233,48.440924],[3.291807,48.441432],[3.29161,48.441661],[3.291402,48.44196],[3.291265,48.442663],[3.291255,48.442806],[3.291328,48.443126],[3.291407,48.443202],[3.291574,48.443473],[3.292253,48.444495],[3.292329,48.444596],[3.293056,48.445276],[3.293138,48.445309],[3.293368,48.445628],[3.293661,48.445985],[3.29374,48.446117],[3.29396,48.446372],[3.294304,48.446627],[3.294761,48.446912],[3.295881,48.447668],[3.295849,48.447688],[3.296837,48.448338],[3.297547,48.44891],[3.297465,48.44892],[3.297188,48.449195],[3.297597,48.449543],[3.297753,48.449701],[3.297845,48.449851],[3.298264,48.450055],[3.298478,48.450121],[3.298946,48.450221],[3.299309,48.450317],[3.299359,48.450237],[3.300493,48.450461],[3.301087,48.450674],[3.301703,48.45101],[3.301995,48.451197],[3.3024,48.451534],[3.302702,48.45174],[3.303329,48.452007],[3.304029,48.452197],[3.304569,48.452446],[3.304803,48.452502],[3.305096,48.452877],[3.30567,48.453409],[3.305998,48.453617],[3.306329,48.453567],[3.306999,48.453359],[3.307147,48.453453],[3.307452,48.453162],[3.307621,48.452853],[3.307637,48.452428],[3.307707,48.452345],[3.307741,48.452152],[3.307605,48.451823],[3.307551,48.45153],[3.307474,48.451395],[3.307218,48.451316],[3.307069,48.45119],[3.307261,48.450528],[3.307483,48.449868],[3.307603,48.449365],[3.30774,48.448909],[3.307598,48.448808],[3.307761,48.448604],[3.307863,48.447956],[3.307886,48.447645],[3.307972,48.447245],[3.308239,48.446362],[3.308306,48.446042],[3.308487,48.445329],[3.308442,48.444844],[3.308479,48.444713],[3.308967,48.443542],[3.309235,48.442927],[3.309464,48.442289],[3.309372,48.442046],[3.309621,48.441616],[3.310152,48.441065],[3.310213,48.440729],[3.310237,48.440329],[3.310167,48.439906],[3.31076,48.439111],[3.31118,48.438009],[3.311161,48.437961],[3.311906,48.437902],[3.312261,48.437839],[3.312486,48.437744],[3.31306,48.437674],[3.312613,48.438361],[3.312487,48.43883],[3.312493,48.439136],[3.312443,48.439388],[3.312598,48.440393],[3.312739,48.440752],[3.312879,48.440985],[3.313263,48.441305],[3.313916,48.441515],[3.314457,48.441565],[3.315105,48.44156],[3.31581,48.441607],[3.317056,48.441849],[3.318361,48.442198],[3.319041,48.442408],[3.319287,48.442604],[3.319343,48.442711],[3.320216,48.443117],[3.320709,48.443437],[3.32126,48.444007],[3.321788,48.444776],[3.322181,48.445618],[3.322479,48.445616],[3.32283,48.445577],[3.323344,48.445663],[3.324048,48.445693],[3.324695,48.445562],[3.324992,48.445559],[3.325558,48.445482],[3.325963,48.445479],[3.327479,48.445592],[3.327939,48.445678],[3.328502,48.445481],[3.328942,48.445392],[3.329169,48.44538],[3.330112,48.445466],[3.330715,48.445575],[3.330881,48.44557],[3.332155,48.445373],[3.33243,48.445375],[3.332727,48.445438],[3.3332,48.445588],[3.333358,48.445683],[3.333737,48.446027],[3.333998,48.446169],[3.334135,48.446334],[3.334611,48.447294],[3.33488,48.447909],[3.334992,48.447959],[3.335297,48.448013],[3.336516,48.448161],[3.336874,48.44825],[3.337258,48.448531],[3.337442,48.448737],[3.337525,48.448936],[3.337649,48.448967],[3.338263,48.448902],[3.33836,48.44894],[3.338765,48.44921],[3.339281,48.449513],[3.339464,48.449515],[3.339877,48.448856],[3.339867,48.448673],[3.340611,48.447311],[3.341744,48.447535],[3.343846,48.447943],[3.345266,48.448152],[3.345478,48.447345],[3.345816,48.446774],[3.345976,48.446809],[3.346142,48.44657],[3.346,48.446493],[3.346043,48.446099],[3.346047,48.445835],[3.346203,48.44558],[3.34717,48.444977],[3.347471,48.444638],[3.347571,48.444466],[3.347583,48.444183],[3.347678,48.443989],[3.348162,48.443428],[3.348326,48.443259],[3.348351,48.443136],[3.34831,48.442736],[3.348141,48.442484],[3.348246,48.442411],[3.348271,48.442293],[3.348097,48.442202],[3.347875,48.442142],[3.347773,48.441997],[3.34751,48.441531],[3.347394,48.441212],[3.349317,48.441364],[3.349478,48.441055],[3.349528,48.44103],[3.350119,48.441039],[3.350252,48.440793],[3.35052,48.440779],[3.350618,48.440612],[3.35069,48.440129],[3.350806,48.43921],[3.350792,48.439037],[3.350698,48.438594],[3.350566,48.438327],[3.350602,48.438077]]]},"properties":{"nom":"Grisy-sur-Seine","code":"77218","codeDepartement":"77","siren":"217702182","codeEpci":"200040251","codeRegion":"11","codesPostaux":["77480"],"population":107},"id":"g0OTg"}'
|
|
471
|
-
settings.UMAP_ALLOW_ANONYMOUS = True
|
|
472
|
-
page.goto(f"{live_server.url}/en/map/new/#15/48.4395/3.3189")
|
|
473
|
-
page.get_by_title("Import data").click()
|
|
474
|
-
page.locator(".umap-upload textarea").fill(geojson)
|
|
475
|
-
page.locator('select[name="format"]').select_option("geojson")
|
|
476
|
-
page.get_by_role("button", name="Import data", exact=True).click()
|
|
477
|
-
page.locator("path").click()
|
|
478
|
-
page.get_by_role("link", name="Toggle edit mode (⇧+Click)").click()
|
|
479
|
-
expect(page.locator("#umap-tooltip-container")).to_contain_text(
|
|
480
|
-
"Please zoom in to edit the geometry"
|
|
481
|
-
)
|
|
482
|
-
expect(page.locator(".leaflet-vertex-icon")).to_be_hidden()
|
|
483
|
-
page.get_by_label("Zoom in").click()
|
|
484
|
-
expect(page.locator("#umap-tooltip-container")).to_contain_text(
|
|
485
|
-
"Please zoom in to edit the geometry"
|
|
486
|
-
)
|
|
487
|
-
page.get_by_label("Zoom in").click()
|
|
488
|
-
page.wait_for_timeout(500)
|
|
489
|
-
page.get_by_label("Zoom out").click()
|
|
490
|
-
page.wait_for_timeout(500)
|
|
491
|
-
expect(page.locator(".leaflet-vertex-icon")).to_be_hidden()
|
|
492
|
-
expect(page.locator("#umap-tooltip-container")).to_contain_text(
|
|
493
|
-
"Please zoom in to edit the geometry"
|
|
494
|
-
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.0b1
|
|
4
4
|
Summary: Create maps with OpenStreetMap layers in a minute and embed them in your site.
|
|
5
5
|
Author-email: Yohan Boniface <yb@enix.org>
|
|
6
6
|
Maintainer-email: David Larlet <david@larlet.fr>
|
|
@@ -19,10 +19,10 @@ Requires-Python: >=3.10
|
|
|
19
19
|
Requires-Dist: django-agnocomplete==2.2.0
|
|
20
20
|
Requires-Dist: django-environ==0.11.2
|
|
21
21
|
Requires-Dist: django-probes==1.7.0
|
|
22
|
-
Requires-Dist: django==5.1
|
|
22
|
+
Requires-Dist: django==5.1
|
|
23
23
|
Requires-Dist: pillow==10.4.0
|
|
24
24
|
Requires-Dist: psycopg==3.2.1
|
|
25
|
-
Requires-Dist: pydantic==2.
|
|
25
|
+
Requires-Dist: pydantic==2.8.2
|
|
26
26
|
Requires-Dist: rcssmin==1.1.2
|
|
27
27
|
Requires-Dist: requests==2.32.3
|
|
28
28
|
Requires-Dist: rjsmin==1.2.2
|
|
@@ -33,11 +33,11 @@ Provides-Extra: dev
|
|
|
33
33
|
Requires-Dist: djlint==1.35.2; extra == 'dev'
|
|
34
34
|
Requires-Dist: hatch==1.12.0; extra == 'dev'
|
|
35
35
|
Requires-Dist: isort==5.13.2; extra == 'dev'
|
|
36
|
-
Requires-Dist: mkdocs-material==9.5.
|
|
36
|
+
Requires-Dist: mkdocs-material==9.5.33; extra == 'dev'
|
|
37
37
|
Requires-Dist: mkdocs-static-i18n==1.2.3; extra == 'dev'
|
|
38
38
|
Requires-Dist: mkdocs==1.6.1; extra == 'dev'
|
|
39
39
|
Requires-Dist: pymdown-extensions==10.9; extra == 'dev'
|
|
40
|
-
Requires-Dist: ruff==0.6.
|
|
40
|
+
Requires-Dist: ruff==0.6.3; extra == 'dev'
|
|
41
41
|
Requires-Dist: vermin==1.6.0; extra == 'dev'
|
|
42
42
|
Provides-Extra: docker
|
|
43
43
|
Requires-Dist: uwsgi==2.0.26; extra == 'docker'
|
|
@@ -45,7 +45,7 @@ Provides-Extra: test
|
|
|
45
45
|
Requires-Dist: factory-boy==3.3.1; extra == 'test'
|
|
46
46
|
Requires-Dist: playwright>=1.39; extra == 'test'
|
|
47
47
|
Requires-Dist: pytest-django==4.9.0; extra == 'test'
|
|
48
|
-
Requires-Dist: pytest-playwright==0.5.
|
|
48
|
+
Requires-Dist: pytest-playwright==0.5.1; extra == 'test'
|
|
49
49
|
Requires-Dist: pytest-xdist<4,>=3.5.0; extra == 'test'
|
|
50
50
|
Requires-Dist: pytest==8.3.2; extra == 'test'
|
|
51
51
|
Description-Content-Type: text/markdown
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=miZ8KX0c67S-CS0ZiOuDOt2CSN-1l7WFb1HZNR80aas,20
|
|
2
2
|
umap/admin.py,sha256=BSZydLskm87WOovG1dnJztkuFTRKA8zxffUDBzJ4PHE,864
|
|
3
3
|
umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
|
|
4
4
|
umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
|
|
@@ -44,8 +44,8 @@ umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HX
|
|
|
44
44
|
umap/locale/et/LC_MESSAGES/django.po,sha256=344_8a7EH06mtLYRIGIIKiFrg8HRWmVdVMJl9pV1oso,12435
|
|
45
45
|
umap/locale/eu/LC_MESSAGES/django.mo,sha256=guogxd6hL3SbGClGr7QPv0fr1nAaRa4YPY-7C-MAKUA,11101
|
|
46
46
|
umap/locale/eu/LC_MESSAGES/django.po,sha256=l9zlOHgIkGnH39nSwqf1ydTnQZ3cNdJ8Uo1iyYpBvX8,17674
|
|
47
|
-
umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=
|
|
48
|
-
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=
|
|
47
|
+
umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=QRnrHXPvibiXJ6F53jhT8YLXC6BAwhTXZ8XvNmIIeqM,13581
|
|
48
|
+
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=IkMp1JTU5k7mtK1o_5xc61KditzLBRzlxVLGksnQPOw,20245
|
|
49
49
|
umap/locale/fi/LC_MESSAGES/django.mo,sha256=-p9kvtfjdJKrbSMEfpdvoZ6jEX_njf-0uqzlvydbhOo,4856
|
|
50
50
|
umap/locale/fi/LC_MESSAGES/django.po,sha256=Saq5PpycYhmutr6CWPQNYI4UwQbSdxrCWxapwotaB3c,12823
|
|
51
51
|
umap/locale/fr/LC_MESSAGES/django.mo,sha256=Sn8nXuBFRj4FltY3td4IakYJRpxnkoaZQ7ykctp7AKw,12248
|
|
@@ -56,8 +56,8 @@ umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMj
|
|
|
56
56
|
umap/locale/he/LC_MESSAGES/django.po,sha256=EWdmr83WCPXUHKgfqsvgK1ZOVt-qZJmQuv6tGom8M4A,13820
|
|
57
57
|
umap/locale/hr/LC_MESSAGES/django.mo,sha256=bBcaNSs-oqm_cjm6Bbqaph_ZNHF2_I_FP0xccwU9txI,1558
|
|
58
58
|
umap/locale/hr/LC_MESSAGES/django.po,sha256=Aj3m28Ugyjq-Ih32P7dzw0M4czitDqoYpCvyNsNnEnE,9742
|
|
59
|
-
umap/locale/hu/LC_MESSAGES/django.mo,sha256=
|
|
60
|
-
umap/locale/hu/LC_MESSAGES/django.po,sha256=
|
|
59
|
+
umap/locale/hu/LC_MESSAGES/django.mo,sha256=FmVwvGCztvJihfYeW7JNGcvZhD6MmZcjMn-4-H7QpSE,11739
|
|
60
|
+
umap/locale/hu/LC_MESSAGES/django.po,sha256=AD4fgnvcHCv-CnEUXYqhQ7O_A-PLRkOCz_Cb_IVUkN4,18313
|
|
61
61
|
umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
|
|
62
62
|
umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
|
|
63
63
|
umap/locale/is/LC_MESSAGES/django.mo,sha256=8Iufls8l_zQFsOYxrfuUig6Ndm2qtmZiBRDs2TlM8tI,6579
|
|
@@ -149,12 +149,12 @@ umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr
|
|
|
149
149
|
umap/static/umap/content.css,sha256=6p2sgg-FYOjVBiwvk930tBJTl3lfr2m8jjSKkf84Gv0,11555
|
|
150
150
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
151
151
|
umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
|
|
152
|
-
umap/static/umap/map.css,sha256=
|
|
152
|
+
umap/static/umap/map.css,sha256=azg2_8XGl8Z6BbK5E1EHY3-9SjyZvLrXlZCHf-ePCb4,36954
|
|
153
153
|
umap/static/umap/nav.css,sha256=IKB8Ga8TRal8naxjsgrcrnCO2eaKUL3YNofJB9IN9l0,1865
|
|
154
154
|
umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
|
|
155
155
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
156
156
|
umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
|
|
157
|
-
umap/static/umap/vars.css,sha256=
|
|
157
|
+
umap/static/umap/vars.css,sha256=A2moP0RPPmiej7Q4nJT2a_zmXFxI2BoB390lvtysX3o,1724
|
|
158
158
|
umap/static/umap/css/contextmenu.css,sha256=LAoxcStGC2IesXj9FsYqVTGiJD2AIS0MPErygc-b2No,339
|
|
159
159
|
umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
|
|
160
160
|
umap/static/umap/css/icon.css,sha256=mXmjTvRU5ElQcuibHbht9oIIBv1ch1LrxQTuIshu7KE,3758
|
|
@@ -232,15 +232,15 @@ umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAj
|
|
|
232
232
|
umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
|
|
233
233
|
umap/static/umap/js/modules/permissions.js,sha256=sxItfFTWapFvDhvGvtZ4uONjm6_zparHqIFq1vY5QBI,7534
|
|
234
234
|
umap/static/umap/js/modules/request.js,sha256=hMy3dleGRxstKsksbNa15w7jk4H9-nAV_ub-JdNhDD8,3881
|
|
235
|
-
umap/static/umap/js/modules/rules.js,sha256=
|
|
235
|
+
umap/static/umap/js/modules/rules.js,sha256=fREXFveMjw3pqv8nExLELkT-t0K_h2H6PekNM6dY64A,7076
|
|
236
236
|
umap/static/umap/js/modules/schema.js,sha256=TNUNj4_2WDN_0vK083cnui0gKI-qHfiIzkO8sWLJtYY,13071
|
|
237
237
|
umap/static/umap/js/modules/share.js,sha256=XFEhE26Fek9tINpzbAQvXzrwoTRlvyLwarDcJW1bdRw,7253
|
|
238
238
|
umap/static/umap/js/modules/slideshow.js,sha256=fMpQ93VU7Uc9Mhxary_vrAdAK8g_P5Ch6pTVInIJzW4,3445
|
|
239
239
|
umap/static/umap/js/modules/tableeditor.js,sha256=o8t6zheQcaZ9Ybp67W8AFnMJvbHgLuJsOXXQajCwX7U,9788
|
|
240
240
|
umap/static/umap/js/modules/urls.js,sha256=Y_8KJ8CqMDCgV_0E9mc6oohODvRgoNHBx_avL85SR8g,838
|
|
241
241
|
umap/static/umap/js/modules/utils.js,sha256=TzRJEqlvNpPgv-gqIisWLOv4LtfzvoAeEi1NnD_hPRE,11378
|
|
242
|
-
umap/static/umap/js/modules/data/features.js,sha256=
|
|
243
|
-
umap/static/umap/js/modules/data/layer.js,sha256=
|
|
242
|
+
umap/static/umap/js/modules/data/features.js,sha256=Els1pl_VGfBCCNO5NxNXMDArJr-zbKIjemJr_lsXgik,25968
|
|
243
|
+
umap/static/umap/js/modules/data/layer.js,sha256=c-lEbIfYd23IGSWyD-iYKuDwYsz60dzyX1xXSDp15-c,33188
|
|
244
244
|
umap/static/umap/js/modules/importers/communesfr.js,sha256=GuBriig7n3-AmtBWByrD43S12bQS_vr6VPlEw3bCL0g,1316
|
|
245
245
|
umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
|
|
246
246
|
umap/static/umap/js/modules/importers/geodatamine.js,sha256=FtrHMVntY4pPelw0uDZCbDVxy5er1ZzDc80zcDpvRnc,2949
|
|
@@ -248,7 +248,7 @@ umap/static/umap/js/modules/importers/overpass.js,sha256=wshao2HAJIz_qowqu6tWxeF
|
|
|
248
248
|
umap/static/umap/js/modules/rendering/icon.js,sha256=hguSJt3wDqe0oSQIm1zrYSbyktKVQUWv-QTo5fYdlc8,7861
|
|
249
249
|
umap/static/umap/js/modules/rendering/popup.js,sha256=s_LhWy3nqKm_GEwc9aCbzSG1JM9M5-kshwNfKQNdu3A,2460
|
|
250
250
|
umap/static/umap/js/modules/rendering/template.js,sha256=79umxBD0pMuz8n-sx54Zg7FKcm_fbEkGDlt3vnEXtXo,7177
|
|
251
|
-
umap/static/umap/js/modules/rendering/ui.js,sha256=
|
|
251
|
+
umap/static/umap/js/modules/rendering/ui.js,sha256=AZCqElEDBKzObeBp0AHp-1JIxZPQEWwjGKuEA1mea40,16794
|
|
252
252
|
umap/static/umap/js/modules/rendering/layers/base.js,sha256=QNQm_IHSX2jwhr6RfoURk9ypSi4lH1Z0voZNH84VLV0,2419
|
|
253
253
|
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=HhmYc_PCaA4VoRO_2TUIaPhkiRE1RUOoNEJVGs10Etk,14550
|
|
254
254
|
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=tIwkcJhJ7SQTpMK7YXumcA6KMjuZjPKWzc_xuF9d_Dc,3360
|
|
@@ -281,29 +281,29 @@ umap/static/umap/locale/de.js,sha256=5A_n__cFkmTqCVrGEb3BCe4WpQvjqZT2W3ic4CiC7rM
|
|
|
281
281
|
umap/static/umap/locale/de.json,sha256=6GbeG2QNgD1Cbjn_t0jEKLh2Q5Pdjtr5EqHIONAfd0g,31918
|
|
282
282
|
umap/static/umap/locale/el.js,sha256=Uk9d4jo97ggH2grc-VCsUKyk9JFGDwsvC_Ek1pNF98s,40724
|
|
283
283
|
umap/static/umap/locale/el.json,sha256=oOyM-fcLRGuB-2xsJaNVbBaM_2G5_wxb-GMDfVzv9Ds,40659
|
|
284
|
-
umap/static/umap/locale/en.js,sha256=
|
|
285
|
-
umap/static/umap/locale/en.json,sha256=
|
|
284
|
+
umap/static/umap/locale/en.js,sha256=bVSXbhHrZqza3xebV-9wygFEcX2qYw6oal9apLQWn3E,29271
|
|
285
|
+
umap/static/umap/locale/en.json,sha256=ozf95Vj9W0KY7oVrhn-9UEaSfLhMbf4epxLo3ONo3kk,29206
|
|
286
286
|
umap/static/umap/locale/en_US.json,sha256=dZssHREakThYdUHIKIWWqX3CM9wjS4LrMvMB9-rZBGw,28993
|
|
287
287
|
umap/static/umap/locale/es.js,sha256=mC8vLIXS026NP7HjIOShBlPZKGtfgKH7p_4GmNgCpa0,31571
|
|
288
288
|
umap/static/umap/locale/es.json,sha256=dAH6Yo6iWVSmO5roUs9qH4ANjw6IwnCMQwYyuAefuGM,31506
|
|
289
289
|
umap/static/umap/locale/et.js,sha256=TKMGYlcb-D8KW8WVXGIAR8wDdgqCmi6pb9GXMbpYFEU,29465
|
|
290
290
|
umap/static/umap/locale/et.json,sha256=CPkjYxDD3SsBVyiKO24OREw4l3QVOebdXtLakyNyKyo,29400
|
|
291
|
-
umap/static/umap/locale/eu.js,sha256=
|
|
292
|
-
umap/static/umap/locale/eu.json,sha256=
|
|
293
|
-
umap/static/umap/locale/fa_IR.js,sha256=
|
|
294
|
-
umap/static/umap/locale/fa_IR.json,sha256=
|
|
291
|
+
umap/static/umap/locale/eu.js,sha256=fGE1911GyTM9MD1aHGh4Zzy2nFRPxCLVo-Ij7Zv19A0,31144
|
|
292
|
+
umap/static/umap/locale/eu.json,sha256=v4MHfe9NBnKW1M_5PjVtEfUiDq-zlbv-XkV-Rjg67uM,31079
|
|
293
|
+
umap/static/umap/locale/fa_IR.js,sha256=tdSTeOKlBOpwHiMVsRom1Wio3cnOHotkYn_Oot_Uizc,37870
|
|
294
|
+
umap/static/umap/locale/fa_IR.json,sha256=1InhRKruKSo7V0bfXB0DVnJEl6Kv5pSua6tvA8vteWA,37799
|
|
295
295
|
umap/static/umap/locale/fi.js,sha256=XUIrgmxg9KjmpDwFKRULr-EmyjjTBhWWA_ylX_nSjvw,30137
|
|
296
296
|
umap/static/umap/locale/fi.json,sha256=3suDckLIR0BpLA15zLXPAXEY-DnVlbA-YEfeWqx3zfA,30072
|
|
297
|
-
umap/static/umap/locale/fr.js,sha256
|
|
298
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
297
|
+
umap/static/umap/locale/fr.js,sha256=-jM5bGD1QT2ia6ycliiDm65o4Y5x5LRNYFwAUpgjJfY,32044
|
|
298
|
+
umap/static/umap/locale/fr.json,sha256=NqaFYHf5JXsRK7lGUGUYO3YU253I7Lll_bqLzbPYSvc,31979
|
|
299
299
|
umap/static/umap/locale/gl.js,sha256=A7QDaq4ZBnOXIr6tqfWB7VDSo5UsV70L2HVhiqZXOOI,30692
|
|
300
300
|
umap/static/umap/locale/gl.json,sha256=poqyCH2UFxVAOWepLODcjN3Xtyy3oancGy5c-ch0ocw,30627
|
|
301
301
|
umap/static/umap/locale/he.js,sha256=IQovP2AjKgrah84sWxs9nH7AD3a-w4oNr1WJKDpgjV8,32719
|
|
302
302
|
umap/static/umap/locale/he.json,sha256=F9r726IxWWigKrHajmQyc8Sdyn9Lcj7vIsMAEsPLLw8,32654
|
|
303
303
|
umap/static/umap/locale/hr.js,sha256=QrWfkgZ17dCCBn1fLys07TygfMRWAS2YlhWeJQRsskE,29440
|
|
304
304
|
umap/static/umap/locale/hr.json,sha256=VaHPBeo8GrkyxwyHCpadhRWnPyYktbMzil7lUkCxx-M,29375
|
|
305
|
-
umap/static/umap/locale/hu.js,sha256=
|
|
306
|
-
umap/static/umap/locale/hu.json,sha256=
|
|
305
|
+
umap/static/umap/locale/hu.js,sha256=XjDbvb18TXDNC6mQY52AYHvLg5JGUz4Qfahq_UhuYB4,33474
|
|
306
|
+
umap/static/umap/locale/hu.json,sha256=LM7sVsccTa05EmamcKvQNLveu8-ruyPRr0qHrv2ViFM,33409
|
|
307
307
|
umap/static/umap/locale/id.js,sha256=jx04Ng_EzPT3Av7mbVRQvmK1izSat2ucsTnYFj98u8U,29269
|
|
308
308
|
umap/static/umap/locale/id.json,sha256=wyCCbjhU_zc7xE6Zd73k2UktzvennaSl6qUq9Bh0JPo,29204
|
|
309
309
|
umap/static/umap/locale/is.js,sha256=SH5yWYn72yTZnbJkJbwSIEl8P6Kadyk7UJ0xqUIBoz8,30601
|
|
@@ -379,7 +379,7 @@ umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt
|
|
|
379
379
|
umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=Cb88gwY7oibx7WL1Y3bfxc_Cur6yo62nLGaEmzP7Fbw,15530
|
|
380
380
|
umap/static/umap/vendors/dompurify/purify.es.js,sha256=TScM8DATZbXGCLOVBYhpfX4gbnKRCAlt53htdqS9umc,63951
|
|
381
381
|
umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=7KkvHp3X9QVutUAQnlG8iCMV4jJeHRsggC4yBoO2dTk,123294
|
|
382
|
-
umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=
|
|
382
|
+
umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=Mx8aiCT4w9DBEUBJiX5eq9Ocy-6E3C9wLAik-dgOLY4,74768
|
|
383
383
|
umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
|
|
384
384
|
umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
|
|
385
385
|
umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js,sha256=ati65azw8WxPG70b4JblFSHgD-fJ0ytriQEzC5tJWCM,9141
|
|
@@ -413,7 +413,7 @@ umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css,sha256=b1FUshftU
|
|
|
413
413
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map,sha256=BeirY1RltKf8DrqX4U6IEg49yGaSOS4II4CqTJ96Hi8,371
|
|
414
414
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js,sha256=jVdNHjjOOJMoykxLOdGxOUzGJDlmr8MM6sFF--b1_sI,12701
|
|
415
415
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map,sha256=JY9YqG-jXWMRHF4pJcvdjB5hyLq7V8MpsaqhnX7p5tE,15802
|
|
416
|
-
umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=
|
|
416
|
+
umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=pZS52JI0ds7GG1j68xyykQLcMP_Yatd-Wj9FITpzcm0,1288
|
|
417
417
|
umap/static/umap/vendors/markercluster/MarkerCluster.css,sha256=YU3qCpj_P06tdPBJGPax0bm6Q1wltfwjsho5TR4-TYc,872
|
|
418
418
|
umap/static/umap/vendors/markercluster/leaflet.markercluster.js,sha256=Hk4dIpcqOSb0hZjgyvFOP-cEmDXUKKNE_tT542ZbNQg,34136
|
|
419
419
|
umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map,sha256=p2sESsX-2ysbKhEAYIPZFpVglwMWjQNxLkswXIuv2K8,41953
|
|
@@ -510,15 +510,15 @@ umap/tests/integration/conftest.py,sha256=bo-ndi3ARHnkwRGo8fGi6lqTd_LdXWSOpgNyXE
|
|
|
510
510
|
umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
|
|
511
511
|
umap/tests/integration/test_anonymous_owned_map.py,sha256=nsj9VNJ-uP8gToR-eYxBipE20s3DACfQaddpmvwqUBs,10606
|
|
512
512
|
umap/tests/integration/test_basics.py,sha256=_XC0ojQU_HpBvkIPSt1g_rW1B0vjmAko8FSJ7WOD67M,3760
|
|
513
|
-
umap/tests/integration/test_browser.py,sha256=
|
|
513
|
+
umap/tests/integration/test_browser.py,sha256=Vzzqv7i_fH73dKz0qIsyhdKMJRCfnEbwmCGlcFt2D7M,16992
|
|
514
514
|
umap/tests/integration/test_caption.py,sha256=UykDB2WpyFl0sbXGrSJ1IAJTM0PzYajPyz-XWaqUBws,1795
|
|
515
515
|
umap/tests/integration/test_categorized_layer.py,sha256=1MJopDBMLUd_NN2NVqWoePuNPS42RbNlXOwXeyKdZo8,5586
|
|
516
516
|
umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
|
|
517
517
|
umap/tests/integration/test_circles_layer.py,sha256=7kBqDyvPHbK31LQLU5NVP8mxNqV-Rn7LnzwyDmg801I,1868
|
|
518
|
-
umap/tests/integration/test_conditional_rules.py,sha256=
|
|
518
|
+
umap/tests/integration/test_conditional_rules.py,sha256=ZDhp93tzJ7y9kXYPMY-5fI-Tp0dFZ4OTKBX8JHkqU4A,8490
|
|
519
519
|
umap/tests/integration/test_dashboard.py,sha256=OmqZx6NwtTnPj1-HsYyg5WptcmPpSq5pL01VtxZuuzk,1526
|
|
520
520
|
umap/tests/integration/test_datalayer.py,sha256=39ceMKkvwaE-TOh6GH1q0YwnYOSMEyQA4Ao0XSXR0nI,5471
|
|
521
|
-
umap/tests/integration/test_draw_polygon.py,sha256=
|
|
521
|
+
umap/tests/integration/test_draw_polygon.py,sha256=_JRJzzDVINl5vzTZT1mGygjVR4xieRl1Rvj6l39p5so,17481
|
|
522
522
|
umap/tests/integration/test_draw_polyline.py,sha256=NxoY-Sf56Kyu-AuX-1sO9xCuS5InK9NdEuUZ2EMklTg,12453
|
|
523
523
|
umap/tests/integration/test_edit_datalayer.py,sha256=gg55b6xwWo__-DC4at7YT4NcaFnxn47GPhlrd86NZ9s,9505
|
|
524
524
|
umap/tests/integration/test_edit_map.py,sha256=cIJWelF1DWIUjqEyyb7NyaDLU8cQ0LGo-WfUEUx_5-A,7111
|
|
@@ -545,8 +545,8 @@ umap/tests/integration/test_view_marker.py,sha256=sPZBbX5jF8WkbAl3Q9eta7a80E2rPX
|
|
|
545
545
|
umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
|
|
546
546
|
umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
|
|
547
547
|
umap/tests/integration/test_websocket_sync.py,sha256=sdMjvZsCImhceQiFvSBHKo4dR6HJPl7-D0NItl2QsNU,10530
|
|
548
|
-
umap_project-2.6.
|
|
549
|
-
umap_project-2.6.
|
|
550
|
-
umap_project-2.6.
|
|
551
|
-
umap_project-2.6.
|
|
552
|
-
umap_project-2.6.
|
|
548
|
+
umap_project-2.6.0b1.dist-info/METADATA,sha256=pG1AcffbRYQWrlWs_n_ALBC3aELucw3s4_PqdNOMKaA,2679
|
|
549
|
+
umap_project-2.6.0b1.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
|
550
|
+
umap_project-2.6.0b1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
551
|
+
umap_project-2.6.0b1.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
552
|
+
umap_project-2.6.0b1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|