|
@@ -65,7 +65,7 @@ Admin
|
|
|
|
|
|
**Page editor**
|
|
|
|
|
|
- * Javascript includes in the admin backend have been moved to the HTML header, to accommodate form widgets that render inline scripts that depend on libraries such as jQuery
|
|
|
+ * JavaScript includes in the admin backend have been moved to the HTML header, to accommodate form widgets that render inline scripts that depend on libraries such as jQuery
|
|
|
* The external link chooser in rich text areas now accepts URLs of the form '/some/local/path', to allow linking to non-Wagtail-controlled URLs within the local site
|
|
|
* Bare text entered in rich text areas is now automatically wrapped in a paragraph element
|
|
|
|
|
@@ -84,9 +84,9 @@ Admin
|
|
|
* Removed the dependency on ``LOGIN_URL`` and ``LOGIN_REDIRECT_URL`` settings
|
|
|
* Password reset view names namespaced to wagtailadmin
|
|
|
* Removed the need to add permission check on admin views (now automated)
|
|
|
- * Reversing ``django.contrib.auth.admin.login`` will no longer lead to Wagtails login view (making it easier to have front end views)
|
|
|
+ * Reversing ``django.contrib.auth.admin.login`` will no longer lead to Wagtails log in view (making it easier to have frontend log in views)
|
|
|
* Added cache-control headers to all admin views. This allows Varnish/Squid/CDN to run on vanilla settings in front of a Wagtail site
|
|
|
- * Date / time pickers now consistently use times without seconds, to prevent Javascript behaviour glitches when focusing / unfocusing fields
|
|
|
+ * Date / time pickers now consistently use times without seconds, to prevent JavasSript behaviour glitches when focusing / unfocusing fields
|
|
|
* Added hook ``construct_homepage_summary_items`` for customising the site summary panel on the admin homepage
|
|
|
* Renamed the ``construct_wagtail_edit_bird`` hook to ``construct_wagtail_userbar``
|
|
|
|
|
@@ -219,15 +219,15 @@ should work fine without them.
|
|
|
Login/Password reset views renamed
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
-It was previously possible to reverse the Wagtail login using django.contrib.auth.views.login.
|
|
|
+It was previously possible to reverse the Wagtail log in view using ``django.contrib.auth.views.login``.
|
|
|
This is no longer possible. Update any references to ``wagtailadmin_login``.
|
|
|
|
|
|
Password reset view name has changed from ``password_reset`` to ``wagtailadmin_password_reset``.
|
|
|
|
|
|
-Javascript includes in admin backend have been moved
|
|
|
+JavaScript includes in admin backend have been moved
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
-To improve compatibility with third-party form widgets, pages within the Wagtail admin backend now output their Javascript includes in the HTML header, rather than at the end of the page. If your project extends the admin backend (through the ``register_admin_menu_item`` hook, for example) you will need to ensure that all associated Javascript code runs correctly from the new location. In particular, any code that accesses HTML elements will need to be contained in an 'onload' handler (e.g. jQuery's ``$(document).ready()``).
|
|
|
+To improve compatibility with third-party form widgets, pages within the Wagtail admin backend now output their JavaScript includes in the HTML header, rather than at the end of the page. If your project extends the admin backend (through the ``register_admin_menu_item`` hook, for example) you will need to ensure that all associated JavaScript code runs correctly from the new location. In particular, any code that accesses HTML elements will need to be contained in an 'onload' handler (e.g. jQuery's ``$(document).ready()``).
|
|
|
|
|
|
EditHandler internal API has changed
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|