pull/1648/head
Matt Westcott 2015-08-27 15:41:32 +01:00
rodzic c9aa44cc7e
commit 7751a8439a
3 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -9,6 +9,7 @@ Changelog
* Elasticsearch backend now supports an experimental `ATOMIC_REBUILD` flag to keep the existing index available while the `update_index` task is running * Elasticsearch backend now supports an experimental `ATOMIC_REBUILD` flag to keep the existing index available while the `update_index` task is running
* The wagtailapi module has been refactored to use Django REST Framework (Tom Christie) * The wagtailapi module has been refactored to use Django REST Framework (Tom Christie)
* A number of permissions fixes have been made to the Wagtail admin interface. See release notes for a list of specific changes made. * A number of permissions fixes have been made to the Wagtail admin interface. See release notes for a list of specific changes made.
* Snippets that inherit from `wagtail.wagtailsearch.index.Indexed` now appear as searchable within the Wagtail admin
* Implemented pagination in the page chooser modal * Implemented pagination in the page chooser modal
* Changed INSTALLED_APPS in project template to list apps in precedence order (Piet Delport) * Changed INSTALLED_APPS in project template to list apps in precedence order (Piet Delport)
* The `{% image %}` tag now supports filters on the image variable, e.g. `{% image primary_img|default:secondary_img width-500 %}` * The `{% image %}` tag now supports filters on the image variable, e.g. `{% image primary_img|default:secondary_img width-500 %}`

Wyświetl plik

@ -37,6 +37,12 @@ A number of inconsistencies around permissions in the admin interface were fixed
* Permissions for Users now taken from custom user model, if set (previously always used permissions on Djangos builtin User model) * Permissions for Users now taken from custom user model, if set (previously always used permissions on Djangos builtin User model)
* Groups and Users now respond consistently to their respective "add", "change" and "delete" permissions * Groups and Users now respond consistently to their respective "add", "change" and "delete" permissions
Searchable snippets
~~~~~~~~~~~~~~~~~~~
Snippets that inherit from ``wagtail.wagtailsearch.index.Indexed`` are now given a search box on the snippet chooser and listing pages. See :ref:`wagtailsnippets_making_snippets_searchable`.
Minor features Minor features
~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~

Wyświetl plik

@ -169,6 +169,7 @@ These child objects are now accessible through the page's ``advert_placements``
{% endfor %} {% endfor %}
.. _wagtailsnippets_making_snippets_searchable:
Making Snippets Searchable Making Snippets Searchable
-------------------------- --------------------------