pull/2869/merge
Matt Westcott 2016-08-01 13:00:36 +01:00
rodzic 8f5439599a
commit 43269fd763
2 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -7,6 +7,7 @@ Changelog
* Django 1.10 support
* Added the ``include_block`` template tag for improved StreamField template inclusion (Matt Westcott, Mikalai Radchuk)
* Page slugs now allow unicode on Django >= 1.9 (Behzad Nategh)
* Explorer sidebar menu now limits the displayed pages to the ones the user has permission for (Robert Rollins, Matt Westcott)
* Image upload form in image chooser now performs client side validation so that the selected file is not lost in the submission (Jack Paine)
* oEmbed URL for audioBoom was updated (Janneke Janssen)
* Remember tree location in page chooser when switching between Internal / External / Email link (Matt Westcott)

Wyświetl plik

@ -29,6 +29,12 @@ Unicode page slugs
Page URL slugs can now contain Unicode characters, when using Django 1.9 or above. This feature was developed by Behzad Nategh.
Permission-limited explorer menu
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The explorer sidebar menu now limits the displayed pages to the ones the logged-in user has permission for. For example, if a user has permission over the pages MegaCorp / Departments / Finance and MegaCorp / Departments / HR, then their menu will begin at "Departments". This reduces the amount of "drilling-down" the user has to do, and is an initial step towards supporting fully independent sites on the same Wagtail installation. This feature was developed by Robert Rollins and Matt Westcott.
Minor features
~~~~~~~~~~~~~~