index
:
django-debug-toolbar
0.8.x
1.0-release
develop
gh-pages
line_profiler_int
master
restrict-toolbar-handle-to-window
toolbar-refactor
tx-master
A configurable set of panels that display various debug information about the current request/response.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
debug_toolbar
/
views.py
Age
Commit message (
Expand
)
Author
2013-11-24
Oops
Aymeric Augustin
2013-11-24
Rename storage to store to avoid conflicting with Django terminology.
Aymeric Augustin
2013-11-24
Rename all panels consistently.
Aymeric Augustin
2013-11-16
Clean up DebugToolbar class, especially panels handling.
Aymeric Augustin
2013-11-15
Switch to random storage ids to avoid exposing information.
Aymeric Augustin
2013-11-15
Move panel-specific views in panel modules.
Aymeric Augustin
2013-11-12
Move store/fetch logic inside the DebugToolbar class.
Aymeric Augustin
2013-11-12
Remove unnecessary nesting.
Aymeric Augustin
2013-11-10
Load the content of panels dynamically.
Aymeric Augustin
2013-10-27
Fix all flake8 warnings and add flake8 to tox.
Aymeric Augustin
2013-10-26
Eliminate almost all flake8 messages.
Aymeric Augustin
2013-10-18
Fixed #383 -- Feed the proper SQL to cursor.execute (the one with placeholders).
Florian Apolloner
2013-10-17
Use render() to render with a RequestContext.
Aymeric Augustin
2013-10-17
Enable unicode_literals in all non-empty modules.
Aymeric Augustin
2013-10-17
Avoid naked except clauses.
Aymeric Augustin
2013-10-17
Remove compatibility code for unsupported version of Django.
Aymeric Augustin
2013-10-17
Remove unused imports.
Aymeric Augustin
2013-04-24
Merge branch 'master' of https://github.com/django-debug-toolbar/django-debug...
Vladislav Poluhin
2013-04-24
Got rid of the circular imports
Vladislav Poluhin
2013-04-23
Form for SQL validation
Vladislav Poluhin
2013-02-25
Merge pull request #323 from mattrobenolt/explain-analyze
David Cramer
2012-12-30
Use the built-in json module on python >= 2.6.
Simon Charette
2012-12-28
Comment back
Vladislav Poluhin
2012-12-27
Use POST instead GET, cuz GET is limited
Vladislav Poluhin
2012-11-21
fix hashcompat deprecation warnings with django 1.5
Craig de Stigter
2012-09-16
Add EXPLAIN ANALYZE for Postgres
Matt Robenolt
2012-08-20
use links to static files rather than direct inclusion, Fixes #307
Thomas Grainger
2012-01-12
pep8
David Cramer
2011-10-09
Fix for error 'Settings' object has no attribute 'DATABASE_ENGINE'
pzinovkin
2011-05-10
Support multiple databases in profile, select, and explain calls (fixes #155)
David Cramer
2010-09-07
Fixed issue 81.
Rob Hudson
2010-09-03
Fix for "View template links get "Template Does Not Exist" for django >= 1.2"...
Tom V
2010-02-02
Updated template source call to support Django 1.2
Rob Hudson
2010-01-14
Views.py tweaked to use friendlier "EXPLAIN QUERY PLAN" with sqlite3
Chris Adams
2009-09-07
Fixed template source to work nicely with and without Pygments.
Rob Hudson
2009-08-28
Refactored SQL panel to use datetime objects and added a visual display of bo...
Rob Hudson
2009-08-28
Fixed sql profiling so it doesn't return a 500 if the SQL `SET PROFILING=1` r...
Rob Hudson
2009-04-02
Moving media so they are "namespaced" like templates.
Rob Hudson
2009-01-17
Fixing AJAX calls to detailed SQL views.
Reto Aebersold
2008-10-07
Updating SQL views to return HttpResponseBadRequest on tamper detection.
Rob Hudson
2008-10-07
Clicking on a template file now will fetch and show the source of the template.
Rob Hudson
2008-10-06
Adding query profiling for MySQL. Thanks to Simon Willison for the suggestion.
Rob Hudson
2008-10-06
Just like EXPLAIN, adding the output of straight SELECT statements so you can
Rob Hudson
2008-09-24
Adding a SHA-1 hash to the parameters passed to get the EXPLAIN query to avoid
Rob Hudson
2008-09-20
Import simplejson from django rather than an external dependency.
Rob Hudson
2008-09-16
Merge branch 'master' into explain and updating a few bits to work with the new
Rob Hudson
2008-09-15
Added a mechanism for monkeypatching in debug views, and also added
Jacob Kaplan-Moss
2008-09-11
Adding view to explain SQL passed in via query string. Hopefully this is
Rob Hudson