From 72338c80ed7d0296c812a0f1229146d9cc198897 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Wed, 2 Jun 2010 12:58:59 +0200 Subject: [PATCH] Updated README with the latest additions. --- README.rst | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.rst b/README.rst index 8a901d6..2b8decb 100644 --- a/README.rst +++ b/README.rst @@ -148,6 +148,33 @@ A list of filters that will be applied to javascript. The dotted path to a Django Storage backend to be used to save the compressed files. +``COMPRESS_REBUILD_TIMEOUT`` +---------------------------- + +:Default: ``2592000`` (30 days in seconds) + +The period of time after which the the compressed files are rebuilt even if +no file changes are detected. + +``COMPRESS_MINT_DELAY`` +------------------------ + +:Default: ``30`` (seconds) + +The upper bound on how long any compression should take to run. Prevents +dog piling, should be a lot smaller than ``COMPRESS_REBUILD_TIMEOUT``. + + +``COMPRESS_MTIME_DELAY`` +------------------------ + +:Default: ``None`` + +The amount of time (in seconds) to cache the result of the check of the +modification timestamp of a file. Disabled by default. Should be smaller +than ``COMPRESS_REBUILD_TIMEOUT`` and ``COMPRESS_MINT_DELAY``. + + Dependecies ***********