Philip Beelmann
077688fc16
Revert "add distance to "continue drawing message""
...
This reverts commit 839ffd89bb
.
2023-04-27 10:18:59 +00:00
Philip Beelmann
eb1cfdbab0
bugfixes: copy/paste + renaming
2023-04-27 10:12:20 +00:00
Philip Beelmann
5d2a4cab5f
fix syntax
2023-04-27 09:39:15 +00:00
Philip Beelmann
c916a67ae0
bugfix
2023-04-27 09:27:57 +00:00
Philip Beelmann
693b32c0ee
refactor getMeasure function
2023-04-27 09:13:13 +00:00
Philip Beelmann
3f12b69c25
extend getMeasure by argument extraPoint
2023-04-25 11:11:00 +00:00
Philip Beelmann
ee6724cddb
show line and polygon measurements while drawing / editing
2023-04-25 10:58:47 +00:00
Philip Beelmann
60fb67516d
add line distance and polygon area messages
2023-04-25 10:58:46 +00:00
Philip Beelmann
839ffd89bb
add distance to "continue drawing message"
2023-04-25 10:57:58 +00:00
Yohan Boniface
fec581548e
i18n
2023-04-25 10:57:56 +00:00
knowname
0ea3678c78
Merge branch 'master' into dev
2023-04-24 12:15:23 +02:00
David Larlet
9e688f4d24
Optimize SVG icons sizes
...
Using Jake Archibald’s tool: https://jakearchibald.github.io/svgomg/ with default settings except keeping width/height attributes because some old browsers require default sizes for rendering (it also avoid huge/100% icons in case the CSS is not applied for whatever reason).
2023-04-22 19:05:05 -04:00
Yohan Boniface
50fffd0417
i18n
2023-04-21 23:19:18 +02:00
Philip Beelmann
ec6239a837
append distance as variable to all translations
2023-04-21 14:55:20 +00:00
Philip Beelmann
aeb48a40ee
show line length while drawing line
2023-04-21 14:49:03 +00:00
Yohan Boniface
edc97f4cc7
Initialize STATICFILES_DIRS
...
fix #1060
2023-04-04 09:11:12 +02:00
Luc Didry
123af0a7c9
🐛 — Allow to use SHA1-signed anonymous edit URL
...
The default django.core.signing Signer uses SHA256 algorithm since Django 3.
Umap used Django 2 in the paste, so people had SHA1 signed anonymous edit URLs,
which became unusable when umap switch to Django 3.
This commit makes them usable again (the new SHA256-signed anonymous edit URLs
still works, obviously).
2023-03-29 12:49:32 +02:00
Yohan Boniface
3f155101af
black on decorators.py
2023-03-01 19:14:59 +01:00
Yohan Boniface
83ca957263
Remove unused code
2023-03-01 19:13:45 +01:00
Yohan Boniface
b493334803
Exclude remoteLayer from import targets
...
Those layers cannot contain data, as they use an URL to fetch it.
2023-03-01 18:27:20 +01:00
Yohan Boniface
ae6f9fda57
Fix restauring full umap with remoteData
...
The check about umap_id was before isLoaded and hasDataLoaded split,
so I guess (hope) it's useless here.
A bit of history:
217f2fcb15
2ea27c87f6
2023-03-01 18:21:24 +01:00
Yohan Boniface
58cee72915
CSS: move alert above panel
2023-03-01 18:19:58 +01:00
Yohan Boniface
f6f765e52f
Catch empty attribution in overlay
2023-03-01 17:35:07 +01:00
Yohan Boniface
d2161a3d09
black on utils.py
...
o
2023-02-28 17:29:11 +01:00
Yohan Boniface
90607c7581
Black on test_datalayer_views
2023-02-28 17:14:57 +01:00
Yohan Boniface
169f7e954c
Allow to add an overlay tilelayer
...
cf #71 #976
2023-02-28 14:08:34 +01:00
Yohan Boniface
1c3fe61aa4
Split L.Map.edit function
2023-02-28 11:02:07 +01:00
Yohan Boniface
0cb72fb5f6
i18n
2023-02-27 18:54:51 +01:00
Yohan Boniface
238401f983
i18n
2023-02-27 14:39:59 +01:00
Yohan Boniface
41e40a1ea8
i18n
2023-02-27 13:52:05 +01:00
Yohan Boniface
9fad415c9f
Add missing migration
2023-02-27 13:51:33 +01:00
Yohan Boniface
1c39245af8
iwyu
2023-02-27 13:50:37 +01:00
Yohan Boniface
e343ddb636
Do not deal with gzip while serving without x-accel-redirect
...
Let's keep this path simple, as it should not be used in normal
production context.
2023-02-27 13:49:21 +01:00
Yohan Boniface
6694306660
Use If-Unmodified-Since istead of If-Match
...
If-Match relies on ETag, which depends on the Content-Encoding,
which is more fragile given we updated the etag on save, while normal
files are served by nginx. So this may occurs false mismatch.
2023-02-27 13:45:15 +01:00
Yohan Boniface
5b7f08ed08
Refactor gzip creation
2023-02-27 12:04:09 +01:00
Yohan Boniface
abc1f119d5
black on views.py
2023-02-27 11:38:59 +01:00
Yohan Boniface
3aa34d124e
black on views.py
2023-02-27 11:00:33 +01:00
Yohan Boniface
97e2df0a8d
Prevent caching datalayer's data for owners/editors
...
cf #1038
2023-02-25 22:17:10 +01:00
Yohan Boniface
2bd4008f97
Use Nginx ETag algo
...
There is a situation where the ETag can be generated by Nginx,
but then used by Django: when the user starts editing a layer,
the js client will send the ETag received from Nginx to uMap
as value to check is there is an editing conflict.
2023-02-25 21:50:39 +01:00
Yohan Boniface
a8dee3fa07
Add Vary: Accept-Encoding header
2023-02-23 11:17:19 +01:00
Yohan Boniface
0300a5f962
ETag must be between double quotes per spec
2023-02-23 11:10:44 +01:00
Yohan Boniface
cfcb83dbfb
black on urls.py
2023-02-23 11:10:24 +01:00
Yohan Boniface
e60227f7da
Merge pull request #1041 from k-3st3ban/master
...
New asked features: checkbox filters, permanent credits, and caption menus options
2023-02-23 10:28:53 +01:00
3st3ban3
eed12fdf87
Update wording to avoid confusion for data checkboxes
2023-02-22 17:36:22 +01:00
Yohan Boniface
2fc30b117b
Prepare for Django 4.x
2023-02-22 15:19:38 +01:00
Yohan Boniface
96a194e1f4
i18n
2023-02-22 15:18:56 +01:00
Yohan Boniface
bd1dd4e233
i18n
2023-02-22 10:23:03 +01:00
3st3ban3
6d900ac79f
Show filters menu only if filter keys are defined
2023-02-18 10:13:12 +01:00
3st3ban3
ce17f8dfe0
Fix undefined error without refreshing page after creating advanced filters
2023-02-15 18:46:20 +01:00
3st3ban3
2221806b7e
Update permanent credits alignement and shape
2023-02-13 17:33:50 +01:00
3st3ban3
ced62d8eed
Fix controls errors with permanent credits
2023-01-22 00:28:56 +01:00
3st3ban3
423084e9ea
Interface option to hide caption menus
2023-01-14 23:15:27 +01:00
3st3ban3
57ba42061c
Permanent credits feature in the bottom left corner
2023-01-14 22:48:16 +01:00
3st3ban3
d69f965f79
Filters checkboxes using features' properties
2023-01-14 22:31:39 +01:00
Aleksejs Popovs
4155dd27d0
Switch to an actually unused class name
2022-11-24 15:38:23 -05:00
Aleksejs Popovs
7f4f5b460a
Delete custom locate control
2022-11-24 14:27:41 -05:00
Aleksejs Popovs
864abf9f46
Replace custom locate control with Leaflet.Locate
2022-11-24 14:26:49 -05:00
Aleksejs Popovs
c4415e1e99
Vendor leaflet.locatecontrol
2022-11-24 13:55:09 -05:00
Yohan Boniface
7dc608a242
fix: fix version import from context processors
2021-12-30 12:06:41 +01:00
Yohan Boniface
cc14796c6c
chore: use setup.cfg
2021-12-30 11:16:00 +01:00
Yohan Boniface
b7009e3ed0
Init empty permissions
...
Fix bug where we coud not edit permissions of a new saved map unless
reloading the page.
2021-12-29 17:35:15 +01:00
Tobias
00890aabde
CSS: Fix cut of text in iframes of popup content
...
The overflow hidden removed in 72f8fd971d
did cut of iframes and their content. However, it did introduce a scrollbar when the iframe is too big. Which is fixed here by adding a max-width of 100%.
There was a max-width but one with fixed pixel values before, which was removed in 345283782c (diff-5470058378896897263b7a99e4226772660e09d5e9e51b530fffc6075b8e07bfL1299)
.
The stylesheet-style's max-width will overwrite any width-specification given via the width-attribute on the iframe as well as width-conditions set as inline-styles. However, adding a inline max-width-style will overwrite the css-file specification due to higher css specificity.
2021-12-29 14:17:22 +01:00
Tobias
b3ad642a06
CSS: Fix cut of text popup content
...
The overflow that was removed in 72f8fd971d
did cut off long URLs and such which where now visible overflowing the popup content. However, we do want the visible but using `break-word`.
2021-12-28 21:29:31 +01:00
Tobias
72f8fd971d
CSS: Fix cut of text in table of popup content
...
Whenever the key or value is too long, the table was pushed being wider than the given container. And the overflow rules cut off the content of the table.
Fixes
- Remove overflow rules (reset to defaults, which is `auto`), which makes a scroll bar show up if content is too wide
- Let long text break in lines instead of pushing the table (which in turn prevents the scroll bar from showing up)
2021-12-22 14:47:22 +01:00
Yohan Boniface
4a3d4ae7a7
Use correct JSONField
2021-09-16 12:17:08 +02:00
Yohan Boniface
91cfc39cb6
Make Django with DEFAULT_AUTO_FIELD setting
2021-09-16 12:15:18 +02:00
Yohan Boniface
e0bcd07d4b
chore: i18n
2021-09-16 11:54:03 +02:00
Ansgar Hegerfeld
d080c118b6
Fix German typo
2021-09-15 21:43:07 +02:00
Yohan Boniface
e6b02724eb
Merge branch 'dj3'
2021-08-06 11:12:12 +02:00
Yohan Boniface
ec11d675e9
i18n
2021-07-11 12:29:18 +02:00
Donal Hunt
8f1de412b8
redirect users back to TLD version of umap after 3rd party auth.
...
setting "SOCIAL_AUTH_REDIRECT_IS_HTTPS = True" per https://python-social-auth.readthedocs.io/en/latest/configuration/settings.html#processing-redirects-and-urlopen
2021-05-31 15:33:13 +01:00
Yohan Boniface
ebf0dee216
Travis stuff
2021-05-30 22:53:16 +02:00
Yohan Boniface
1200b82838
First attempt to upgrade to Django 3.X
...
Bloqued by https://github.com/peopledoc/django-agnocomplete/issues/119
2021-05-17 10:51:24 +02:00
Manfred Stock
c7b78567c7
Extend regex to support original example from issue #820 and more
...
The original example from issue #820 was using a dash ('-') as fallback,
however, the regular expression did not accept those. It also didn't
support white space (and many other characters) in the fallback, which
are also supported now, so one can even put e.g. links including label
in the fallback.
2020-12-13 17:12:17 +01:00
Manfred Stock
77d9e1f4e2
Return first defined property instead of last property
...
The changes done in b29adaa5
and ec275d64
introduced a property
fallback, however, this always returned the property/string in the
rightmost position, ignoring any of the previous values, even if
they were defined.
2020-12-12 18:31:02 +01:00
Yohan Boniface
7893ff1c7d
fix english typo
2020-11-09 09:54:16 +01:00
Yohan Boniface
953e8eea52
1.2.3
2020-11-09 09:18:44 +01:00
Yohan Boniface
1c4531f70a
Update map extent on first save if it still default one
...
cf #841
2020-11-09 08:09:05 +01:00
Yohan Boniface
fe7a7f5434
Fix English typo setted => set
2020-11-09 07:30:02 +01:00
Yohan Boniface
1770c31de5
i18n
2020-11-08 17:57:37 +01:00
Yohan Boniface
1afc366e11
Do not change zoom when locating user
...
cf #763
2020-11-08 17:52:45 +01:00
Yohan Boniface
eeb58a8c21
Display an error message when latlng is invalid
2020-11-08 17:43:57 +01:00
Yohan Boniface
70eec17555
fix changing map ownership broken
...
cf #780
2020-11-08 17:39:01 +01:00
Yohan Boniface
3089b71705
Prevent to redraw a marker when setting invalid latlng from edit form
...
cf #799
2020-11-08 16:49:23 +01:00
Yohan Boniface
3927a845a4
Control search API URL from uMap config
...
cf #842
2020-11-08 15:10:13 +01:00
Yohan Boniface
ec275d64fe
Deal with property fallback in templating
...
eg. {prop1|prop2|"default"}
cf #820
2020-11-08 14:38:09 +01:00
Yohan Boniface
b29adaa53f
Minimal fallback handling in templating
...
eg. {var|defaultvalue}
cf #820
2020-11-08 14:38:09 +01:00
Binnette
729049aa04
Responsive images
2020-04-09 10:28:47 +02:00
Binnette
8b28536bbb
Improve popup and panel layout
2020-04-09 00:08:30 +02:00
Binnette
e2ca1ecd63
Normalize keyboard shortcuts in translation
2020-03-29 20:17:00 +02:00
Binnette
c0b7d13cfb
Normalize keyboard shortcuts
2020-03-28 23:59:23 +01:00
Yohan Boniface
82bffa43ff
1.2.2
2020-03-28 11:20:39 +01:00
Binnette
170fffbe5f
fix bad line break
2020-03-28 11:15:31 +01:00
Yohan Boniface
3fa3473908
1.2.1
2020-03-25 15:14:19 +01:00
Yohan Boniface
2ba7a057f3
Be more liberal about username regex in URL
...
fix #774
2020-03-25 15:11:11 +01:00
Yohan Boniface
4358a35a5d
Set dir=rtl when appropriate
...
cf #752
2020-03-23 11:30:45 +01:00
Yohan Boniface
ebc3b90d40
1.2.0
2020-03-23 08:39:21 +01:00
Yohan Boniface
7f0454fce0
Use new settings of social-auth
...
cf #754
2020-03-22 18:00:47 +01:00
Yohan Boniface
f7972b47a4
TableEditor: prevent adding properties with "."
...
fix #426
2020-03-22 15:57:05 +01:00
Yohan Boniface
24baed0c1a
Prevent old style slideshow to be actived on load
...
We used to only consider the delay to define if the slideshow was
active or not.
2020-03-22 15:40:52 +01:00