diff options
| author | Rob Hudson | 2008-09-07 12:08:32 -0700 | 
|---|---|---|
| committer | Rob Hudson | 2008-09-07 12:08:32 -0700 | 
| commit | 5d2f897d45736b441024cbcdc720e9d8826e2afe (patch) | |
| tree | 734dd2a4b21278daec0a0881a594936189f27079 /README.rst | |
| parent | 73423718e09fb71b89012d9c1d9f0890e759f7a5 (diff) | |
| download | django-debug-toolbar-5d2f897d45736b441024cbcdc720e9d8826e2afe.tar.bz2 | |
Updated README: Added note about depending on jQuery for now.  Added documentation on new HTTP headers panel.
Diffstat (limited to 'README.rst')
| -rw-r--r-- | README.rst | 11 | 
1 files changed, 9 insertions, 2 deletions
| @@ -13,6 +13,7 @@ Currently, the following panels have been written and are working:  - Django version  - SQL queries including time to execute  - Request timer +- Common HTTP headers  If you have ideas for other panels please let us know. @@ -37,6 +38,7 @@ Installation  	    'debug_toolbar.panels.version.VersionDebugPanel',  	    'debug_toolbar.panels.sql.SQLDebugPanel',  	    'debug_toolbar.panels.timer.TimerDebugPanel', +	    'debug_toolbar.panels.headers.HeaderDebugPanel',  	)     You can change the ordering of this tuple to customize the order of the @@ -45,11 +47,16 @@ Installation  #. Add `debug_toolbar` to your `INSTALLED_APPS` setting so Django can find the     the template files associated with the Debug Toolbar. +#. The UI effects of the Toolbar currently depend on jQuery to be already +   included in your templates.  So currently to test out the toolbar jQuery +   already needs to be loaded on the page.  We'll need a solution for this at +   some point. +  TODO  ====  - Add more panels  - Panel idea: Show some commonly used settings from settings.py  - Panel idea: Show GET and POST variables -- Panel idea: Show HTTP header information  - Panel idea: AJAX call to show cprofile data similar to the ?prof idea -- Get fancy with CSS and Javascript +- CSS Stylings +- Remove dependency on jQuery and come up with a general workable solution. | 
