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
|
|
|
|
|
|
|
|
2014-07-10 18:08:54 +02:00
|
|
|
Whats new
|
|
|
|
=========
|
|
|
|
|
|
|
|
|
|
|
|
Minor features
|
|
|
|
~~~~~~~~~~~~~~
|
|
|
|
|
2014-07-14 19:25:14 +02:00
|
|
|
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)
|
|
|
|
)
|
|
|
|
|
2014-07-10 18:08:54 +02:00
|
|
|
|
|
|
|
Bug fixes
|
|
|
|
~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
|
|
Backwards incompatible changes
|
|
|
|
==============================
|
|
|
|
|
|
|
|
|
|
|
|
Deprecated features
|
|
|
|
===================
|