[svn] last changes before release
authorArmin Ronacher <armin.ronacher@active-4.com>
Sat, 2 Jun 2007 10:57:38 +0000 (12:57 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Sat, 2 Jun 2007 10:57:38 +0000 (12:57 +0200)
--HG--
branch : trunk

docs/src/loaders.txt
jinja/loaders.py

index 18a8fbd2208a04f71f290603584b1abaa16cc6ac..0112ed3e7215ffa2d7a592991ba8138a5614c404 100644 (file)
@@ -144,7 +144,10 @@ for the `FunctionLoader`:
                 'template/'             # string prefix for the cache keys
             )
 
+This mixin requires the `python-memcached`_ library.
+
 .. _memcached: http://www.danga.com/memcached/
+.. _python-memcached: http://www.tummy.com/Community/software/python-memcached/
 
 How Mixin Classes Work
 ======================
index b17c44c7e92f13fb50a44f996bb6cb3e3d258af3..0f0ced7aefa1e1b398ee4489bf9f96525548ba99 100644 (file)
@@ -263,6 +263,10 @@ class CachedLoaderMixin(object):
 class MemcachedLoaderMixin(object):
     """
     Uses a memcached server to cache the templates.
+
+    Requires the memcache library from tummy__.
+
+    __ http://www.tummy.com/Community/software/python-memcached/
     """
 
     def __init__(self, use_memcache, memcache_time=60 * 60 * 24 * 7,