Django template loader for database stored templates with extensible cache backend
Find a file
Alexander Artemenko 4b60060d0e .gitignore
Signed-off-by: Jannis Leidel <jannis@leidel.info>
committer: Jannis Leidel <jannis@leidel.info>

--HG--
extra : convert_revision : c8f055185964ffe1c80a7e7ac717b141c69145cc
2009-04-11 17:06:31 +08:00
dbtemplates Changed setup.py to use setuptools because it has a with zip_safe attribute which prevents creating zipped installations. 2009-03-01 01:04:19 +01:00
docs Changed wrong link in docs 2008-11-28 13:11:40 +00:00
example Made loader and cache backends site-aware. The filesystem cache backend now saves the files under <dir>/<site_domain>/<file_name>. The Django cache backend the Site id in the cache key. Template is now saved explicitly to backend if not existent in cache (e.g. if deleted manually or invalidated). Bumped version to 0.5.4. 2008-12-26 17:39:48 +00:00
.gitignore .gitignore 2009-04-11 17:06:31 +08:00
INSTALL Added some documentation for the example project, support to start it directly and small touches on the docs 2008-11-16 02:03:22 +00:00
LICENSE new management command 'sync_templates' for syncing the templates bidirectional 2008-05-13 22:34:38 +00:00
MANIFEST.in Updated MANIFEST and bumped minor version to 0.5.2 2008-11-16 02:02:48 +00:00
README Use docs/overview.txt for PyPI and only have small things in README 2008-11-09 13:56:05 +00:00
setup.py Changed setup.py to use setuptools because it has a with zip_safe attribute which prevents creating zipped installations. 2009-03-01 01:04:19 +01:00

===================================
Database template loader for Django
===================================

``dbtemplates`` is a Django app that comes with to parts: It allows you to
create templates that are saved in your database, and it provides a so called
`template loader`_, a function that enables Django to find the templates you
created in the database.

It also includes a extensible caching mechanism and supports version control
of the templates saved in the database.

Please see ``docs/overview.txt`` for more details.