0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 01:22:07 +01:00
wagtail/docs/releases/0.5.rst

51 lines
1006 B
ReStructuredText
Raw Normal View History

2014-07-10 18:24:42 +02:00
==========================================
Wagtail 0.5 release notes - IN DEVELOPMENT
==========================================
2014-07-10 18:08:54 +02:00
2014-07-10 18:21:42 +02:00
.. contents::
2014-07-10 18:11:23 +02:00
:local:
2014-07-10 18:21:42 +02:00
:depth: 1
2014-07-10 18:11:23 +02:00
What's new
==========
2014-07-10 18:08:54 +02:00
Minor features
~~~~~~~~~~~~~~
Core
----
* Hooks can now be defined using decorator syntax:
.. code-block:: python
@hooks.register('construct_main_menu')
def construct_main_menu(request, menu_items):
menu_items.append(
MenuItem('Kittens!', '/kittens/', classnames='icon icon-folder-inverse', order=1000)
)
* The lxml library (used for whitelisting and rewriting of rich text fields) has been replaced with the pure-python html5lib library, to simplify installation.
2014-07-10 18:08:54 +02:00
Admin
-----
* Explorer nav now rendered separately and fetched with AJAX when needed.
2014-07-18 17:58:38 +02:00
This improves the general performance of the admin interface for large sites.
2014-07-10 18:08:54 +02:00
Bug fixes
~~~~~~~~~
Backwards incompatible changes
==============================
Deprecated features
===================