v. 0.2. 0.2
authorRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Mon, 15 Sep 2014 09:29:40 +0000 (11:29 +0200)
committerRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Mon, 15 Sep 2014 09:39:52 +0000 (11:39 +0200)
commit64c5163e7aead7eb60951e040998ade343c079c5
treec64a324c6cd99d024b3dc5ad96370ad801c9a475
parent3d5016c1dea235acae62c25606f7b65e1e75abd5
v. 0.2.

* Nicer cache choosing: use settings.SSIFY_CACHE_ALIASES if set,
  otherwise use 'ssify' cache if configure, otherwise
  fall back to 'default'.

* Renamed `csrf_token` template tag to `ssi_csrf_token` to avoid
  simple mistakes.

* Cache control: `ssi_variable` now takes `patch_response` instead
  of `vary` parameter, `ssi_include` takes `timeout`, `version` and
  also `patch_reponse` parameters.  Also added some helper functions
  in ssify.utils.

* Added `flush_ssi_includes` function.

* Debug rendering: renamed SSIFY_DEBUG to SSIFY_RENDER, added support
  for including streaming responses when SSIFY_RENDER=True.

* Dropped Django 1.4 support.
20 files changed:
CHANGELOG.md [new file with mode: 0644]
README.md
runtests.py
setup.py
ssify/__init__.py
ssify/cache.py
ssify/cache_backends.py [new file with mode: 0644]
ssify/conf.py [new file with mode: 0644]
ssify/decorators.py
ssify/middleware.py
ssify/middleware_debug.py
ssify/store.py [deleted file]
ssify/templatetags/ssify.py
ssify/utils.py [new file with mode: 0644]
ssify/variables.py
tests/templates/tests_args/args.html
tests/templates/tests_csrf/csrf_token.html
tests/tests/test_args.py
tests/tests/test_basic.py
tox.ini