From 405d4492e41b50f204d7e7d55aa0ac8f11edda1a Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sat, 17 Jul 2010 15:56:58 +0200 Subject: [PATCH] Documented more changes --- CHANGES | 3 +++ flask/app.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 30ba418b..842c1a9c 100644 --- a/CHANGES +++ b/CHANGES @@ -31,6 +31,9 @@ Release date to be announced, codename to be decided. - added signalling support based on blinker. This feature is currently optional and supposed to be used by extensions and applications. If you want to use it, make sure to have `blinker`_ installed. +- refactored the way url adapters are created. This process is now + fully customizable with the :meth:`~flask.Flask.create_url_adapter` + method. .. _blinker: http://pypi.python.org/pypi/blinker diff --git a/flask/app.py b/flask/app.py index 0941cb7e..c5f50135 100644 --- a/flask/app.py +++ b/flask/app.py @@ -311,7 +311,7 @@ class Flask(_PackageBoundObject): def create_jinja_environment(self): """Creates the Jinja2 environment based on :attr:`jinja_options` - and :meth:`create_jinja_loader`. + and :meth:`select_jinja_autoescape`. .. versionadded:: 0.5 """