From 6bf2eecb9a2a8e5efb1f574851ddf39c001488b4 Mon Sep 17 00:00:00 2001 From: Lakshmi Vyasarajan Date: Wed, 9 Nov 2011 12:43:35 +0530 Subject: [PATCH] Updated changelog and authors --- AUTHORS.rst | 1 + CHANGELOG.rst | 7 +++++++ hyde/ext/templates/jinja.py | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index c6cd4e7..10c51b2 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -35,6 +35,7 @@ Contributors * Bug Fix: Sorter excludes items that do not have sorting attributes. * Bug Fix: CLTransformer now gracefully handles arguments that have "=". * Bug Fix: All occurrences of `str` replaced with `unicode`. + * Bug Fix: Support for encoded urls. - |merlinrebrovic|_ diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6acd9e6..acf74d7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,10 @@ +Version 0.8.4c11 +================ + +Thanks to @gfuchedzhy + +* Bug Fix: Added support for encoded urls to hyde server. (Issue #88) + Version 0.8.4c10 ================ diff --git a/hyde/ext/templates/jinja.py b/hyde/ext/templates/jinja.py index 4692624..a6717a8 100644 --- a/hyde/ext/templates/jinja.py +++ b/hyde/ext/templates/jinja.py @@ -787,4 +787,4 @@ class Jinja2Template(Template): Renders the given text using the context """ template = self.env.from_string(text) - return template.render(context) + return template.render(context) \ No newline at end of file