wagtail/docs/releases/0.5.rst

51 wiersze
1006 B
ReStructuredText
Czysty Zwykły widok Historia

2014-07-10 16:24:42 +00:00
==========================================
Wagtail 0.5 release notes - IN DEVELOPMENT
==========================================
2014-07-10 16:08:54 +00:00
2014-07-10 16:21:42 +00:00
.. contents::
2014-07-10 16:11:23 +00:00
:local:
2014-07-10 16:21:42 +00:00
:depth: 1
2014-07-10 16:11:23 +00:00
What's new
==========
2014-07-10 16:08:54 +00: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 16:08:54 +00:00
Admin
-----
* Explorer nav now rendered separately and fetched with AJAX when needed.
This improves the general performance of the amdin interface for large sites.
2014-07-10 16:08:54 +00:00
Bug fixes
~~~~~~~~~
Backwards incompatible changes
==============================
Deprecated features
===================