From ed7341f08207addb31fcce171c2f0519461db89c Mon Sep 17 00:00:00 2001 From: Chris Streeter Date: Wed, 20 Jul 2011 15:17:53 -0700 Subject: [PATCH] Update docs for CachedS3BotoStorage remote storage. Fixes #77 and closes #90. --- docs/remote-storages.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/remote-storages.txt b/docs/remote-storages.txt index 9e20233..4cac09d 100644 --- a/docs/remote-storages.txt +++ b/docs/remote-storages.txt @@ -68,6 +68,9 @@ integrated. self.local_storage._save(name, content) return name + def path(self, name): + return self.local_storage.path(name) + #. Set your :ref:`COMPRESS_STORAGE ` and STATICFILES_STORAGE_ settings to the dotted path of your custom cached storage backend, e.g. ``'mysite.storage.CachedS3BotoStorage'``.