- Bug fix: Update to work with Django 1.9
- Bug fix: Fail silently when using an invalid regex to match templates.
- Bug fix: Fix the case on
innerHTML
(wasinnerHtml
)
- Use
document.getElementById
andinnerHtml
instead of depending on jQuery to get the text of handlebars templates. - Switch the order of precompiling and registering partials in handlebars tag, so that partials can used compiled template.
- Fix compatibility with Python 3.2. Explicity unicode literals (i.e., u'...') are not supported in Python 3.2 and cause a syntax error. Support was revived in Python 3.3. Python 2.6 and 2.7 allow using unicode string literals by default with from __future__ import unicode_literals, so we use that here.
- Sort translatable strings so that results are consistent across Python versions.
- All template renderers handle unicode characters.
- Bug fix: Closure that was registering Handlbars partials was not wrapped in parentheses.
Add a short translation form:
{{ _ 'this is translatable' }}
Allow optional precompiling and and registering of partials for the Handlebars.js tag. For example:
{% handlebarsjs '(.*)' precompile register_partials }
This will add a templates object to Handlebars, and register all templates for use as partials.
- Add Handlebars.js support
- Fix setup script requirements
- Python 3 support!
- Move the static/mustache/js/ folder to static/libs/
- Update MANIFEST file to use "jstemplate" folder instead of "mustachejs"
- Simplify the template tag methods, and get rid of unused imports in the template tag modules
- Update project references in the docs
- Rename project to "django-jstemplate" (from "django-mustachejs")
- Rename the "mustacheraw" template tag to "rawjstemplate"
- Rename the "mustacheich" template tag to "icanhazjs"
- Fix incorrect identifier name in makemessages command
- Fix the FilesystemRegexFinder to match exactly the extensions specified in the configuration, and no more
- Fix makemessages to work with recent code updates
- Have the regex finder respect the MUSTACHEJS_EXTS setting
- Update normal file finders to use glob patterns
- Fix i18n preprocessor for python 2.6 compatibility
- Correctly escaped translated strings.
- Changed search pattern to be non-greedy.
- Handle translation strings with new lines.
- Pulled in commit from django-icanhaz to load templates using regular expressions.
- Added preprocessing framework, and a preprocessor for i18n.
- Hijack the makemessages command to find js template messages as well.
- Add
dustjs
tag to insert a script block to create a compiled dustjs template. Thanks to Gehan Gonsalkorale.
- Add
mustacheraw
tag to insert just the raw text of a mustacehe template. Thanks to Greg Hinch. - Add
mustacheich
tag to insert a mustache script block as icanhaz expects.
- Fixed template reading to explicitly decode template file contents using
Django's
FILE_CHARSET
setting. Thanks Eduard Iskandarov. - Fixed template-finding failure with non-normalized directories in
MUSTACHEJS_DIRS
. Thanks Eduard Iskandarov for report and patch.
- Add the MUSTACHEJS_EXTS configuration variable for specifying the extensions allowed for template files located by the FilesystemFinder (and, by extension, the AppFinder).
- Add a package_data value to the setup call
- Add the MANIFEST.in file itself as an entry in MANIFEST.in.
- Change the name from django-icanhaz to django-mustachejs.
- Remove dependency on ICanHaz.js. I like the library, but the maintainers were not responsive enough for now. Use Mustache.js straight, with a little bit of minimal sugar. Templates are rendered to straight Javascript.
- Made template-finding more flexible:
ICANHAZ_DIR
is nowICANHAZ_DIRS
(a list); addedICANHAZ_FINDERS
,ICANHAZ_APP_DIRNAMES
, and finding of templates in installed apps.
- Initial release.