Browse Source

Updated changelog and authors

main
Lakshmi Vyasarajan 13 years ago
parent
commit
6bf2eecb9a
3 changed files with 9 additions and 1 deletions
  1. +1
    -0
      AUTHORS.rst
  2. +7
    -0
      CHANGELOG.rst
  3. +1
    -1
      hyde/ext/templates/jinja.py

+ 1
- 0
AUTHORS.rst View File

@@ -35,6 +35,7 @@ Contributors
* Bug Fix: Sorter excludes items that do not have sorting attributes. * Bug Fix: Sorter excludes items that do not have sorting attributes.
* Bug Fix: CLTransformer now gracefully handles arguments that have "=". * Bug Fix: CLTransformer now gracefully handles arguments that have "=".
* Bug Fix: All occurrences of `str` replaced with `unicode`. * Bug Fix: All occurrences of `str` replaced with `unicode`.
* Bug Fix: Support for encoded urls.


- |merlinrebrovic|_ - |merlinrebrovic|_




+ 7
- 0
CHANGELOG.rst View File

@@ -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 Version 0.8.4c10
================ ================




+ 1
- 1
hyde/ext/templates/jinja.py View File

@@ -787,4 +787,4 @@ class Jinja2Template(Template):
Renders the given text using the context Renders the given text using the context
""" """
template = self.env.from_string(text) template = self.env.from_string(text)
return template.render(context)
return template.render(context)

Loading…
Cancel
Save