3488ab3d40
Required modifying our URL pattern decorator to be compatible with the slightly different callback attribute mechanism in 1.10 Modified breadcrumb structures to always be 2-tuples as tuple unpacking is now strictly enforced in 1.10 Also made the following things changed in Django 1.10. - fixed the now-deprecated TEMPLATE_DEBUG. - Caught up with Request context change - SimpleTestCase.urls is removed in 1.10. ROOT_URLCONF needs to be used instead. Co-Authored-By: Richard Jones <r1chardj0n3s@gmail.com> Co-Authored-By: Akihiro Motoki <motoki@da.jp.nec.com> Change-Id: I59cbd8bff117813258539ed0724fe89a9f5b77ee Implements: blueprint dj110
11 lines
583 B
YAML
11 lines
583 B
YAML
---
|
|
upgrade:
|
|
- The ``TEMPLATE_*`` settings have been replaced with a ``TEMPLATE`` dict.
|
|
This will likely cause issues when porting settings to this version of
|
|
Horizon. The TEMPLATE_DEBUG setting has been removed and is tied to
|
|
the DEBUG setting now. A detailed explanation of this dict can be found at
|
|
https://docs.djangoproject.com/en/1.10/ref/settings/#templates
|
|
- The ``is_authenticated()`` and ``is_anonymous()`` functions in Django
|
|
OpenStack Auth's ``User`` class are properties when running under Django
|
|
1.10, and no longer take a margin parameter.
|