forked from makinacorpus/django-mapentity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
902 lines (508 loc) · 16.3 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
=========
CHANGELOG
=========
5.0.1.dev0
==================
**Bug fixes**
- Fix /logentry/list/ crash
- Fix sort list
5.0.0 (2018-05-07)
==================
**Breaking changes**
- Move to python 3
4.3.4 (2018-04-08)
==================
**Bug fixes**
- Fix/upgrade all requirements
4.3.3 (2018-04-08)
==================
**Bug fixes**
- Fix django version in setup.py
4.3.2 (2018-04-08)
==================
**Bug fixes**
- Fix (django-)weasyprint versions in setup.py
4.3.1 (2018-04-07)
==================
**Minor changes**
- Make MapEntityTest more extensible
4.3.0 (2018-04-02)
==================
**Bug fixes**
- Fix logo path/url
- Fix test_project settings
- Make sure mapentity settings are loaded before leaflet ones
**New features**
- Add weasyprint HTML markup view
4.2.0 (2018-03-31)
==================
**New features**
- add support of Django 1.11 (Django 1.9 and 1.10 are still supported)
**Minor changes**
- fix errors logged during tests
- create a map image (with an error message) when geom is null
- add a default logo-header.png
- use file transport instead of http one in weasyprint template
4.1.1 (2018-03-28)
==================
**Bug fixes**
- Fix registering of Mapentity based models when migrations are not done
4.1.0 (2018-03-26)
==================
**Bug fixes**
- Fix select multiple reset
**New features**
- add support of Django 1.10
- add an install.sh script
4.0.0 (2018-03-06)
==================
**New features**
- upgrade to django 1.9
**Breaking changes**
- replace `from mapentity import registry` by `from mapentity.registry import registry`
3.3.0 (2018-02-02)
==================
**New features**
- allow to specify print context on models for map captures
3.2.2 (2018-01-11)
==================
**Bug fixes**
- add missing support for polygon in shapefile exports
3.2.1 (2017-11-07)
==================
**Bug fixes**
- constant size numbers for POI enumeration
- change nav icons size depending on page height instead of width
- draw circle geometries if radius property exists
3.2.0 (2017-08-21)
==================
**New features**
- Serialize polygons to GPX
**Bug fixes**
- Fix POI enumeration if > 26 * 26
3.1.4 (2017-06-21)
==================
**Bug fixes**
- Fix UnicodeDecode Error
3.1.3 (2017-06-21)
==================
**Bug fixes**
- Fix GenericRelation
3.1.2 (2017-06-21)
==================
**Bug fixes**
- Fix AutoLogin middleware with django 1.8
**Internal changes**
- Prepare code to compatibility python2 / python3
- Use GenericRelation for Paperclip, to permit prefetch_related on them
- Upgrade requirements
3.1.0 (2017-03-23)
==================
**New features**
- new django-paperclip version, with external picture URLs
3.0.2 (2017-03-08)
==================
**Bug fixes**
- fix distribution version
3.0.1 (2017-03-08)
==================
**Bug fixes**
- GPX linestring export in track format, instead of route
3.0.0 (2017-02-21)
==================
**Breaking change**
- Require Django 1.8
- Upgrade several dependencies with some API changes
2.8.7 (2017-02-06)
==================
**Bug fixes**
- Remove initial migration
2.8.6 (2017-02-02)
==================
**Bug fixes**
- fix context size
2.8.5 (2017-01-08)
==================
**Bug fixes**
- Fix install
- Add initial migration
2.8.4 (2016-10-12)
==================
**Bug fixes**
- Fix map fitBounds() when size is constrained
2.8.3 (2016-08-17)
==================
**Bug fixes**
- Fix latlngbounds template tag for GEOSGemetries objects
2.8.2 (2016-08-17)
==================
**Bug fixes**
- Fix timezone bug in cache invalidation for map screenshots
2.8.1 (2016-08-17)
==================
**Bug fixes**
- Forgot to package leaflet plugins
2.8.0 (2016-08-17)
==================
**New features**
- Adjust size of map captures to entirely fill it with the geometry
**Bug fixes**
- Hide None in template if creator is not known
2.7.1 (2016-01-28)
==================
**Bug fixes**
- Set language to capture map images
2.7.0 (2016-01-28)
==================
**New features**
- Allow to override the css selector to wait to capture map image
2.6.1 (2015-11-05)
==================
**Bug fixes**
- Rework CSS to prevent overlaping controls in list view
2.6.0 (2015-10-28)
==================
**Breaking changes**
- Use translated verbose_name fields instead of column/property names in shapefiles export
2.5.2 (2015-07-29)
==================
**Bug fixes**
- Upgrade gpxpy (fix elevation 0 in GPX exports)
2.5.1 (2015-07-29)
==================
**Bug fixes**
- Readd missing dependencies
2.5.0 (2015-07-28)
==================
**New features**
- Add possibility to add custom menu entries
2.4.2 (2015-07-06)
==================
**Bug fixes**
- Don't crash when logging anonymous actions
2.4.1 (2015-06-24)
==================
**Bug fixes**
- Fix insertion of images with WeasyPrint
2.4.0 (2015-06-19)
==================
**New features**
- Use WeasyPrint PDF export system
2.3.0 (2015-06-09)
==================
**New features**
- Hide models in navbar when not allowed to read them
2.2.0 (2015-05-22)
==================
**New features**
- Auto cleanup of HTML markup when pasting into TinyMCE
2.1.0 (2015-04-28)
==================
**New features**
- Configurable Django Rest Framework API URL
2.0.0 (2015-04-23)
==================
**Breaking changes**
- Remove trailing slash from API URLs (/api/models.json instead of /api/models/)
**Bug fixes**
- Fix LastModifiedMixin to handle all dispatch() parameters
1.16.0 (2015-03-20)
===================
**New features**
- Allow to add links to Youtube or Soundcloud media as attachment
1.15.2 (2015-03-11)
===================
**Bug fixes**
- Workaround a bug in django test framework
1.15.1 (2015-03-11)
===================
**Bug fixes**
- Allow to delete a field in TranslatedModelForm.__init__()
1.15.0 (2015-02-25)
===================
**New features**
- Allow to disable html attributes in MapEntityDocument context
1.14.2 (2015-02-20)
===================
**Bug fixes**
- Fix formating of float and boolean values in CSV/Shapefile exports
1.14.1 (2015-02-18)
===================
**Bug fixes**
- Fix MapEntityLiveTest (mock screamshot)
1.14.0 (2015-02-18)
===================
**New features**
- Allow anonymous users to access map image attached to public objects
- Allow to configure X-Accel-Redirect/X-Sendfile HTTP header
1.13.0 (2015-02-13)
===================
**New features**
- Allow to specify headers to convertit_download() helper
**Bug fixes**
- Fix logging in management commands
1.12.0 (2015-02-13)
===================
**New features**
- Check read permission of related model when serving media (attachment, map)
- Allow anonymous users to access media attached to public objects
**Bug fixes**
- Allow serving media other than attachments if not having read_attachment perm
1.11.1 (2015-01-30)
===================
**Bug fixes**
- Fix tests derived from MapEntityTest
1.11.0 (2015-01-29)
===================
**New features**
- Add geojson with full properties support to REST API
**Bug fixes**
- Fix geojson caching that returns sometime "None" instead of valid json
1.10.5 (2015-01-21)
===================
**Packaging fixes**
- Fix missing ressources files in pypi release
1.10.4 (2015-01-21)
===================
**Bug fixes**
- Pick up the ViewSet only if its model matches
1.10.3 (2014-12-18)
===================
**Bug fixes**
- Fix zoom level for map captures (fixes #108)
- Don't try (and fail) to prepare map images when geom is absent
**Internal changes**
- Upgrade paperclip to 0.2.3
1.10.2 (2014-11-21)
===================
**Bug fixes**
- Fix TinyMCE config to keep colors
- Fix apparence of add buttons with popup
1.10.1 (2014-11-07)
===================
**Bug fixes**
- Fixes crash when a change on proxy model is stored (fixes #104)
- Prevent email to be sent twice on conversion error. Use info instead.
1.10.0 (2014-11-05)
===================
**Breaking changes**
- Got rid of Year filters.
**Bug fixes**
- Fix list filter restore (see https://github.com/makinacorpus/Geotrek/issues/1236)
1.9.1 (2014-10-24)
==================
- Fix overlay layers being lost in grouped layers control
1.9.0 (2014-10-23)
==================
**New features**
- Ability to edit attachments directly in detail pages
**Bug fixes**
- Clearer action message in object history table
- Remove top messages only (fixes `a Geotrek bug <https://github.com/makinacorpus/Geotrek/issues/1225>`_)
**Internal changes**
- Upgraded Chosen from 0.9.12 to 1.2.0 (used in comboxboxes and multiselect forms fields)
1.8.4 (2014-10-13)
==================
**Bug fixes**
- Fix forms not passing extra fields (backport from PNR PACA hotfix in Geotrek 0.27)
1.8.3 (2014-10-08)
==================
**Bug fixes**
- Fix enumeration when no item in layer
- Fix highlight in list when geometries are multi-part
1.8.2 (2014-09-26)
==================
**Bug fixes**
- Do not crash when getting object creator with an inconsistent history
- Create tabs for translatable fields when crispy form layout is not specified
- Apply styles for translatable fields when there are not in a tab
- Fix save of form field falsy value
- Fix test_no_html_in_csv test with non-ascii field verbose names
1.8.1 (2014-09-09)
==================
**Bug fixes**
- Prevent error if only queryset is used for ``LastModifiedMixin``
1.8.0 (2014-09-08)
==================
**Bug fixes**
- Prevent colors to be cleaned from text fields
- Limit fit zoom on small objects (fixes #91).
Introduced new setting ``MAP_FIT_MAX_ZOOM``, default to 18.
- Add setting to control ``date_update`` field name (fixes #11)
**Bug fixes**
- Safety check for showing layer enumeration if layer has no item
**New features**
- Added Django Rest Framework REST views. Activated by default on every
registered models
** Internal changes **
- Moved versions of dependencies from setup to ``requirements.txt``
- Refactor of URLs initialization
1.7.3 (2014-08-21)
==================
**Bug fixes**
- Fix list of values DOM error, preventing document attributes export
and list vertical display
1.7.2 (2014-08-21)
==================
**Bug fixes**
- Fix export views when only queryset is specified in view class
1.7.1 (2014-08-21)
==================
**Bug fixes**
- Do not save last list in session if JSON or format list
- Support of ``menu`` option in MapEntity register
1.7.0 (2014-08-21)
==================
**Breaking changes**
- ``registry.register()`` takes a class instead of keyword-args for options
**New features**
- Ability to configure apparence of objets in print exports (fixes #86)
- GeoJSON layers can now be filtered as other list views
- New template tag to show a list of record as a table
- New events ``entity:mouseout`` and ``entity:mouseover`` emitted when
objects are hovered on maps and in detail pages
- Interaction between maps and detail tables or lists of values
** Internal changes **
- Refactor of class inheritance for lists views
1.6.0 (2014-08-01)
==================
**Breaking changes**
- Removed ``fied_verbose_name`` and ``timesince`` template tag librairies
- Now all grouped inside ``mapentity_tags``
- Added parameters to view_cache_response_content decorator
- Limit height of layer switcher on small screens
- Get rid of next parameter when redirecting to login when permission missing
- Removed history links for proxied models
- Fix permission code name when model is proxied
- Fix apparence of main menu when permissions are missing to view logbook and admin
- Fix status code of ConvertIt being lost in Convert views
- Display messages in login page too (useful for redirections)
- Support edition of several fields on the same map, via django-leaflet new feature (fixes #53)
- Show objects numbering on print detail maps (fixes #35)
1.5.1 (2014-06-26)
==================
**Minor changes**
- Ordered Log entries by date descending
- Fix tab "None" being shown in list view
1.5.0 (2014-06-23)
==================
**New features**
- Show small colored symbols for objects in layer switcher
**Bug fixes**
- Fix empty paragraphs in TinyMCE
- Fix missing translation of Load local layer
- Fix apparence of attachment form
- Adjust vertical alignment of checkboxes in layer switcher
- Fix object layer not being shown by default
- Fix multiple occurences of same author in detail view
1.4.2 (2014-06-19)
==================
- Fix missing translation of Load local layer
- Fix empty paragraphs in TinyMCE
- Fix translations not being packaged
1.4.0 (2014-06-13)
==================
** New features **
- Show object type in Document export (fixes #36)
- Nicer margins for translated pills form fields
- Close filters popup when clicking outside
- Show object type in document export (fixes #36)
- Better apparence of filters popup close button
- Command to update all map images
- Nicer layer switcher, with groups of layers (fixes #61)
** Bug fixes **
- Fix first value not coming from label for YearFilter
- Fix download buttons from list view
- Fix measure control appearing twice in forms
- Fix permission check on attachments
** Internal changes **
- Allow to override GPX serialization
- Prevent to use a cycle request/response to extract HTML attributes
- Allow to control scrollable aspect of left panel when subclassing
- Add test for never cache decorator of geojson views
- Split cache keys instead of splitting cached values
- Prevent to use a cycle request/response on HTML extraction for document
- Fix behaviour of flag ``FrontEndTest`` in User-Agent
1.3.2 (2014-06-04)
==================
- Fixed GDAL installation since UbuntuGIS stable major upgrade (sic)
- Fixed unicode conversion of title
1.3.1 (2014-05-26)
==================
- Remove flag ``FrontEndTest`` from User-Agent
- Make sure ``detailspanel`` template block can be fully overriden
1.3.0 (2014-05-22)
==================
** New features **
- Add fullscreen button on maps
- Add all controls on detail map
- Add buttons to create records from anypage from within the drop down
menu.
- Add a button to close filters
** Bug fixes **
- Drop down menu not disabled in list view
- Fix generic document view not being usable with querysets
** Internal changes **
- Split MapEntity init module
- Added a command to update MapEntity models permissions
1.2.8 (2014-05-19)
==================
- Pluggable filters
- Open ODT/DOC/PDF exports in a new tab
1.2.7 (2014-05-16)
==================
- Fix regression about conversion urls that are not absolute
1.2.6 (2014-05-15)
==================
- Do not override HOST HTTP header sent to convertit
1.2.5 (2014-05-15)
==================
- Fix regression on conversion headers
1.2.4 (2014-05-14)
==================
- Fix perms creation with south migrations
- Fix register when database is not yet synced
1.2.3 (2014-05-13)
==================
- Create perms at post_syncdb signal
1.2.2 (2014-05-12)
==================
- Flush caches before creating permissions
1.2.1 (2014-05-07)
==================
* Fix internal user not being given permission if inactive
1.2.0 (2014-05-06)
==================
* Include SVG files in package data
* Fix original headers not being transmitted to *ConvertIt*.
1.1.2 (2014-05-06)
==================
* Fix regression on permissions creation after using exists()
1.1.1 (2014-05-06)
==================
* Add missing .odt template file in package
1.1.0 (2014-05-06)
==================
** New features **
* Show number of attached files in tab (fixes #39)
* Define missing classes dynamically during register (fixes #17)
* Add a setting to serve media as attachment (default: True) (fixes #37)
** Bug fixes **
* Force browser's cache revalidation of geojson data (fixes #38)
* Fix action history (no link to deleted objects)
* Fix map views JS event attributes
** Breaking changes **
* No more `Meta` in `MapEntityForm` (see `commit notes <https://github.com/makinacorpus/django-mapentity/commit/3362bfd834e3b538f1377e63f7935fb3128a63d1>`_)
1.0.0 (2014-04-26)
==================
** New features **
* Track objects creations, changes and deletions
* Rely on Django permissions to control access to detail, list and exports
* Got rid of inline JavaScript blocks, now rely on stupid-simple events
** Internal changes **
* Make API_SRID a constant hardcoded to 4326
* Make SRID an app setting so must appears in ``MAPENTITY_CONFIG`` in your project's
settings
0.1.0 (unreleased)
==================
* Internal version of Geotrek < 0.23