Added debug_toolbar app to project.
authorMarek Stępniowski <marek@stepniowski.com>
Tue, 9 Sep 2008 13:50:45 +0000 (15:50 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Tue, 9 Sep 2008 13:50:45 +0000 (15:50 +0200)
commitbb68c8efe90a6f818c2c26f36ef0e02c91ed6158
tree76e4d5a392a831e083e7faadb81a9daec558ad4f
parent85b57aa2d25552d82260ce40fd9b1063dd7c3dd5
Added debug_toolbar app to project.
24 files changed:
apps/debug_toolbar/__init__.py [new file with mode: 0644]
apps/debug_toolbar/middleware.py [new file with mode: 0644]
apps/debug_toolbar/models.py [new file with mode: 0644]
apps/debug_toolbar/panels/__init__.py [new file with mode: 0644]
apps/debug_toolbar/panels/cache.py [new file with mode: 0644]
apps/debug_toolbar/panels/headers.py [new file with mode: 0644]
apps/debug_toolbar/panels/http_vars.py [new file with mode: 0644]
apps/debug_toolbar/panels/profiler.py [new file with mode: 0644]
apps/debug_toolbar/panels/sql.py [new file with mode: 0644]
apps/debug_toolbar/panels/templates.py [new file with mode: 0644]
apps/debug_toolbar/panels/timer.py [new file with mode: 0644]
apps/debug_toolbar/panels/version.py [new file with mode: 0644]
apps/debug_toolbar/settings.py [new file with mode: 0644]
apps/debug_toolbar/templates/debug_toolbar/base.html [new file with mode: 0644]
apps/debug_toolbar/templates/debug_toolbar/panels/cache.html [new file with mode: 0644]
apps/debug_toolbar/templates/debug_toolbar/panels/headers.html [new file with mode: 0644]
apps/debug_toolbar/templates/debug_toolbar/panels/http_vars.html [new file with mode: 0644]
apps/debug_toolbar/templates/debug_toolbar/panels/profiler.html [new file with mode: 0644]
apps/debug_toolbar/templates/debug_toolbar/panels/sql.html [new file with mode: 0644]
apps/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html [new file with mode: 0644]
apps/debug_toolbar/templates/debug_toolbar/panels/templates.html [new file with mode: 0644]
apps/debug_toolbar/toolbar/__init__.py [new file with mode: 0644]
apps/debug_toolbar/toolbar/loader.py [new file with mode: 0644]
wolnelektury/settings.py