wagtail/docs/releases/1.3.rst

123 wiersze
5.1 KiB
ReStructuredText
Czysty Zwykły widok Historia

==========================================
Wagtail 1.3 release notes - IN DEVELOPMENT
==========================================
.. contents::
:local:
:depth: 1
What's new
==========
2015-12-09 11:40:12 +00:00
Django 1.9 support
~~~~~~~~~~~~~~~~~~
Wagtail is now compatible with Django 1.9.
2015-12-11 12:46:01 +00:00
Indexing fields across relations in Elasticsearch
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fields on related objects can now be indexed in Elasticsearch using the new ``indexed.RelatedFields`` declaration type:
.. code-block:: python
class Book(models.Model, indexed.Indexed):
...
search_fields = [
indexed.SearchField('title'),
indexed.FilterField('published_date'),
indexed.RelatedFields('author', [
indexed.SearchField('name'),
indexed.FilterField('date_of_birth'),
]),
]
# Search books where their author was born after 1950
# Both the book title and the authors name will be searched
>>> Book.objects.filter(author__date_of_birth__gt=date(1950, 1, 1)).search("Hello")
See: :ref:`wagtailsearch_index_relatedfields`
2015-12-14 21:06:31 +00:00
Cross-linked admin search UI
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The search interface in the Wagtail admin now includes a toolbar to quickly switch between different search types - pages, images, documents and users. A new :ref:`register_admin_search_area <register_admin_search_area>` hook is provided for adding new search types to this toolbar.
Minor features
~~~~~~~~~~~~~~
2015-11-18 13:04:50 +00:00
* Added ``WAGTAIL_PASSWORD_RESET_ENABLED`` setting to allow password resets to be disabled independently of the password management interface (John Draper)
2015-11-18 17:04:39 +00:00
* Updated fonts for more comprehensive Unicode support
2015-11-19 15:30:23 +00:00
* Added ``.alt`` attribute to image renditions
* The default ``src``, ``width``, ``height`` and ``alt`` attributes can now be overridden by attributes passed to the ``{% image %}`` tag
2015-11-27 16:15:21 +00:00
* Added keyboard shortcuts for preview and save in the page editor
2015-12-03 13:19:44 +00:00
* Added ``Page`` methods ``can_exist_under``, ``can_create_at``, ``can_move_to`` for customising page type business rules
* ``wagtailadmin.utils.send_mail`` now passes extra keyword arguments to Django's ``send_mail`` function (Matthew Downey)
2015-12-04 11:07:43 +00:00
* ``page_unpublish`` signal is now fired for each page that was unpublished by a call to ``PageQuerySet.unpublish()``
2015-06-04 10:05:38 +00:00
* Add `get_upload_to` method to `AbstractImage`, to allow overriding the default image upload path (Ben Emery)
* Notification emails are now sent per user (Matthew Downey)
* Added the ability to override the default manager on Page models
2015-12-09 10:50:59 +00:00
* New translations for Arabic and Latvian
2015-11-18 13:04:50 +00:00
Bug fixes
~~~~~~~~~
2015-11-17 11:36:57 +00:00
* HTTP cache purge now works again on Python 2 (Mitchel Cabuloy)
* Locked pages can no longer be unpublished (Alex Bridge)
* Site records now implement ``get_by_natural_key``
2015-12-01 13:17:31 +00:00
* Creating pages at the root level (and any other instances of the base ``Page`` model) now properly respects the `parent_page_types` setting
* Settings menu now opens correctly from the page editor and styleguide views
2015-12-03 13:19:44 +00:00
* ``subpage_types`` / ``parent_page_types`` business rules are now enforced when moving pages
2015-12-03 19:43:31 +00:00
* Multi-word tags on images and documents are now correctly preserved as a single tag (LKozlowski)
* Changed verbose names to start with lower case where necessary (Maris Serzans)
2015-11-17 11:36:57 +00:00
Upgrade considerations
======================
Jinja2 template tag modules have changed location
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Due to a change in the way template tags are imported in Django 1.9, it has been necessary to move the Jinja2 template tag modules from "templatetags" to a new location, "jinja2tags". The correct configuration settings to enable Jinja2 templates are now as follows:
.. code-block:: python
TEMPLATES = [
# ...
{
'BACKEND': 'django.template.backends.jinja2.Jinja2',
'APP_DIRS': True,
'OPTIONS': {
'extensions': [
'wagtail.wagtailcore.jinja2tags.core',
'wagtail.wagtailadmin.jinja2tags.userbar',
'wagtail.wagtailimages.jinja2tags.images',
],
},
}
]
See: :doc:`/advanced_topics/jinja2`
ContentType-returning methods in wagtailcore are deprecated
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The following internal functions and methods in ``wagtail.wagtailcore.models``, which return a list of ``ContentType`` objects, have been deprecated. Any uses of these in your code should be replaced by the corresponding new function which returns a list of model classes instead:
* ``get_page_types()`` - replaced by ``get_page_models()``
* ``Page.clean_subpage_types()`` - replaced by ``Page.clean_subpage_models()``
* ``Page.clean_parent_page_types()`` - replaced by ``Page.clean_parent_page_models()``
* ``Page.allowed_parent_page_types()`` - replaced by ``Page.allowed_parent_page_models()``
* ``Page.allowed_subpage_types()`` - replaced by ``Page.allowed_subpage_models()``
2015-12-01 13:17:31 +00:00
In addition, note that these methods now return page types that are marked as ``is_creatable = False``, including the base ``Page`` class. (Abstract models are not included, as before.)