gitextract_prxbugz0/ ├── .gitignore ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── NEWS ├── README.rst ├── debug_toolbar/ │ ├── __init__.py │ ├── locale/ │ │ ├── de/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── en/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── es/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── fr/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ ├── he/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── django.mo │ │ │ └── django.po │ │ └── ru/ │ │ └── LC_MESSAGES/ │ │ ├── django.mo │ │ └── django.po │ ├── management/ │ │ ├── __init__.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── debugsqlshell.py │ ├── media/ │ │ └── debug_toolbar/ │ │ ├── Makefile │ │ ├── css/ │ │ │ └── toolbar.css │ │ └── js/ │ │ ├── jquery.cookie.js │ │ ├── jquery.js │ │ └── toolbar.js │ ├── middleware.py │ ├── models.py │ ├── panels/ │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── headers.py │ │ ├── logger.py │ │ ├── profiling.py │ │ ├── request_vars.py │ │ ├── settings_vars.py │ │ ├── signals.py │ │ ├── sql.py │ │ ├── template.py │ │ ├── timer.py │ │ └── version.py │ ├── runtests.py │ ├── templates/ │ │ └── debug_toolbar/ │ │ ├── base.html │ │ ├── panels/ │ │ │ ├── cache.html │ │ │ ├── headers.html │ │ │ ├── logger.html │ │ │ ├── profiling.html │ │ │ ├── request_vars.html │ │ │ ├── settings_vars.html │ │ │ ├── signals.html │ │ │ ├── sql.html │ │ │ ├── sql_explain.html │ │ │ ├── sql_profile.html │ │ │ ├── sql_select.html │ │ │ ├── template_source.html │ │ │ ├── templates.html │ │ │ ├── timer.html │ │ │ └── versions.html │ │ └── redirect.html │ ├── tests/ │ │ ├── __init__.py │ │ ├── templates/ │ │ │ └── 404.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── toolbar/ │ │ ├── __init__.py │ │ └── loader.py │ ├── urls.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── compat/ │ │ │ ├── __init__.py │ │ │ └── db.py │ │ ├── sqlparse/ │ │ │ ├── __init__.py │ │ │ ├── engine/ │ │ │ │ ├── __init__.py │ │ │ │ ├── filter.py │ │ │ │ └── grouping.py │ │ │ ├── filters.py │ │ │ ├── formatter.py │ │ │ ├── keywords.py │ │ │ ├── lexer.py │ │ │ ├── sql.py │ │ │ └── tokens.py │ │ └── tracking/ │ │ ├── __init__.py │ │ └── db.py │ └── views.py ├── example/ │ ├── __init__.py │ ├── manage.py │ ├── media/ │ │ └── js/ │ │ ├── jquery.js │ │ ├── mootools.js │ │ └── prototype.js │ ├── settings.py │ ├── templates/ │ │ ├── admin/ │ │ │ └── login.html │ │ ├── index.html │ │ ├── jquery/ │ │ │ └── index.html │ │ ├── mootools/ │ │ │ └── index.html │ │ └── prototype/ │ │ └── index.html │ └── urls.py ├── setup.cfg └── setup.py