diff options
| author | Rob Hudson | 2008-09-08 10:44:00 -0700 | 
|---|---|---|
| committer | Rob Hudson | 2008-09-08 10:44:00 -0700 | 
| commit | 545c387e111ac868942d48c616b45a6e099e241e (patch) | |
| tree | a526d7359c1f8af7adc8c13d936d9238239f565f | |
| parent | 4cba5d5e1340139822d3fd3e25af0871749c6345 (diff) | |
| download | django-debug-toolbar-545c387e111ac868942d48c616b45a6e099e241e.tar.bz2 | |
Adding special note about middleware ordering.
| -rw-r--r-- | README.rst | 4 | 
1 files changed, 4 insertions, 0 deletions
| @@ -29,6 +29,10 @@ Installation     Tying into middleware allows each panel to be instantiated on request and     rendering to happen on response. +   The order of MIDDLEWARE_CLASSES is important: the Debug Toolbar middleware  +   must come after any other middleware that encodes the response's content  +   (such as GZipMiddleware). +  #. Add a tuple called `DEBUG_TOOLBAR_PANELS` to your ``settings.py`` file that     specifies the full Python path to the panel that you want included in the      Toolbar.  This setting looks very much like the `MIDDLEWARE_CLASSES` setting. | 
