aboutsummaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorDavid Cramer2011-04-22 13:07:41 -0700
committerDavid Cramer2011-04-22 13:07:41 -0700
commit38019ea2f5222ac97a7c5b67074a8a3b2ecf1ba0 (patch)
tree930b2513d4a6f76e17f4d95a91cbd1272ca87446 /example
parentbed167f9f6784ca18196a695cf62bf81f57a80cd (diff)
downloaddjango-debug-toolbar-38019ea2f5222ac97a7c5b67074a8a3b2ecf1ba0.tar.bz2
Kill off requirement of PROJECT_ROOT and clean up lint violations in profiling panel
Diffstat (limited to 'example')
-rw-r--r--example/example.dbbin55296 -> 55296 bytes
-rw-r--r--example/settings.py13
2 files changed, 13 insertions, 0 deletions
diff --git a/example/example.db b/example/example.db
index 7603a2d..ae455e3 100644
--- a/example/example.db
+++ b/example/example.db
Binary files differ
diff --git a/example/settings.py b/example/settings.py
index 06e153d..11b0117 100644
--- a/example/settings.py
+++ b/example/settings.py
@@ -32,3 +32,16 @@ TEMPLATE_CONTEXT_PROCESSORS = (
)
TEMPLATE_DEBUG = DEBUG
TEMPLATE_DIRS = (os.path.join(PROJECT_PATH, 'templates'))
+DEBUG_TOOLBAR_PANELS = (
+ 'debug_toolbar.panels.version.VersionDebugPanel',
+ 'debug_toolbar.panels.timer.TimerDebugPanel',
+ 'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel',
+ 'debug_toolbar.panels.headers.HeaderDebugPanel',
+ 'debug_toolbar.panels.profiling.ProfilingDebugPanel',
+ 'debug_toolbar.panels.request_vars.RequestVarsDebugPanel',
+ 'debug_toolbar.panels.sql.SQLDebugPanel',
+ 'debug_toolbar.panels.template.TemplateDebugPanel',
+ #'debug_toolbar.panels.cache.CacheDebugPanel',
+ 'debug_toolbar.panels.signals.SignalDebugPanel',
+ 'debug_toolbar.panels.logger.LoggingPanel',
+) \ No newline at end of file