aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/urls.py
AgeCommit message (Collapse)Author
2013-11-12Make it possible for panels to provide URLs and views.Aymeric Augustin
Fix #448.
2013-11-11Simplify monkey-patching of URLs into urlconf.Aymeric Augustin
2013-11-10Load the content of panels dynamically.Aymeric Augustin
This should drastically reduce the overhead of the browser toolbar when a page has a complex template structure or many SQL queries. This change is backwards-incompatible for third-party panels because it changes the signature of __init__. The JavaScript could probably be improved; I'm outside my comfort zone.
2013-10-26Eliminate almost all flake8 messages.Aymeric Augustin
2013-10-17Enable unicode_literals in all non-empty modules.Aymeric Augustin
2013-10-17Remove compatibility code for unsupported version of Django.Aymeric Augustin
2013-04-24Merge branch 'master' of ↵Vladislav Poluhin
https://github.com/django-debug-toolbar/django-debug-toolbar into sql-panel-refactor Conflicts: debug_toolbar/static/debug_toolbar/css/toolbar.min.css debug_toolbar/views.py
2012-12-30Avoid importing `django.conf.urls.defaults` on django 1.4+Simon Charette
2012-12-27Use prefix for patternsVladislav Poluhin
2012-08-20use links to static files rather than direct inclusion, Fixes #307Thomas Grainger
2012-01-12pep8David Cramer
2009-03-26Minor cleanup of imports and long lines.Rob Hudson
2009-01-17Fixing AJAX calls to detailed SQL views.Reto Aebersold
Signed-off-by: Rob Hudson <rob@cogit8.org>
2008-10-07Clicking on a template file now will fetch and show the source of the template.Rob Hudson
Thanks to Adam Gomaa for the patch.
2008-10-06Adding query profiling for MySQL. Thanks to Simon Willison for the suggestion.Rob Hudson
There's a big TODO on this one, which is to not display or attempt to execute the profiling SQL calls if this isn't MySQL and if MySQL isn't >= version 5.0.37. For now it's a nice playground of the profiler if you have MySQL v5.0.37 or higher.
2008-10-06Just like EXPLAIN, adding the output of straight SELECT statements so you canRob Hudson
view the raw SQL output.
2008-09-16Merge branch 'master' into explain and updating a few bits to work with the newRob Hudson
urls and views.
2008-09-15Modified scripts to use jQuery, and moved 'em to a better place.Jacob Kaplan-Moss
2008-09-15Added a mechanism for monkeypatching in debug views, and also addedJacob Kaplan-Moss
jquery as both a test case and a place to get started making some js improvements. I'm not totally thrilled with this approach -- it feels *very* hackish. The alternative might be to simply require installers to add a line to their ROOT_URLCONF, which wouldn't be *bad*, but I like the "load automatically" part of this thing.
2008-09-11Adding view to explain SQL passed in via query string. Hopefully this isRob Hudson
database backend agnostic. Next up is connecting this with the SQL panel via AJAX.