aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar
AgeCommit message (Collapse)Author
2009-03-21Patch from kmike84 to fix conflict if project uses mootools.Rob Hudson
2009-01-23Tuple unpacking of stacktrace variables for niceness.Rob Hudson
2009-01-23Add preliminary support for stacktraces to see where SQL queries are coming ↵Rob Hudson
from. I'm wanting to test this a bit more before I merge it in fully. Feedback welcome.
2009-01-23Make pre tags on odd table rows match row background color in CSS.Rob Hudson
2009-01-23Fix triggering an extra SQL query via the auth context processor.Rob Hudson
Fixed by moving the template panel's context_processor introspection to the content method so this happens at the process_response time instead of at process_request time. Since context processors _were_ happening at the process_response end, it was triggering the query `user.get_and_delete_messages()` which was also getting triggered separately if used in templates (i.e. the admin templates) resulting in duplicate queries showing up in the toolbar.
2009-01-17Regenerate the CSS and JS minified files, removing minified cookie file.Rob Hudson
2009-01-17Adjust Makefile to concatenate to jquery.cookie.js onto toolbar.min.js.Rob Hudson
2009-01-17added missing jquery cookie plugin filesReto Aebersold
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-01-17Minor stylistic changes to CSS and Javascript file after merge.Rob Hudson
2009-01-17Fixing AJAX calls to detailed SQL views.Reto Aebersold
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-01-17Adding ability to show/hide toolbar, using jquery.cookie.js for statefulness.Reto Aebersold
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-01-15Load SQLDebugPanel before TemplateDebugPanel to get the right number of ↵Reto Aebersold
queries if a model __unicode__() function make some additional queries (i.e. for a related model). Signed-off-by: Rob Hudson <rob@tastybrew.com>
2009-01-04updated Spanish translationPercy Perez-Pinedo
2009-01-04updated message filePercy Perez-Pinedo
2009-01-04added locale directory and compiled django.po (spanish translation)Percy Perez-Pinedo
2009-01-04added "trans" to base and redirect templatesPercy Perez-Pinedo
2009-01-04added "trans" to the templates to be translatedPercy Perez-Pinedo
2009-01-02added trans to request_vars.htmlPercy Perez-Pinedo
2009-01-02adding i18n to request_vars templatePercy Perez-Pinedo
2009-01-02trans fue incorporado a logger.htmlPercy Perez-Pinedo
2009-01-02finished adding "trans" to panel template headers.htmlPercy Perez-Pinedo
2009-01-02working on translating the django toolbar into Spanish. Translating panel ↵Percy Perez-Pinedo
template: cache.html
2008-12-17Fixes #19 -- Modified the middleware to only install the debug ROOT_URLCONF ↵Russell Keith-Magee
if the debug toolbar is actually displayed.
2008-12-12Adding version info to module.Rob Hudson
2008-12-11Win32 systems don't have the resource module. This patch codes around it so ↵Rob Hudson
only the basic timings are shown for those that don't have the resource module, and finer grained timings are shown for those that do.
2008-12-09Minor cleanup and template change to previous commit.Rob Hudson
2008-12-09Added more of the rusage stats in a drop-down panelMartin Maney
(some items were commented out after I was reminded that not all of the original BSD items are supported under Linux)
2008-12-09Added fine-grained CPU usage to timerMartin Maney
2008-12-09Fix the number of queries shown in the title, which was overreporting by ↵Adam Gomaa
self._offset (sometimes 0).
2008-12-09Only show the SQL profile if we're using a MySQL database backend.Rob Hudson
2008-12-09Django seems to only produce LEFT OUTER JOINs, so search for that.Rob Hudson
2008-10-07Fix inconsistent SQL timings. All SQL timings are milliseconds now.Rob Hudson
2008-10-07Since we're concatenating params, make the default empty value a string.Rob Hudson
2008-10-07Bringing over patch from Alex Gaynor to fix SQL params when using ↵Rob Hudson
django.contrib.gis.
2008-10-07Updating SQL views to return HttpResponseBadRequest on tamper detection.Rob Hudson
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-10-06Updating SQL output a bit now that I've found more queries to test against.Rob Hudson
2008-10-03Getting rid of the text shadow in CSS.Rob Hudson
2008-10-02Adding compressed JS and CSS, and a Makefile to generate them using YUI ↵Rob Hudson
Compressor
2008-10-02Merge branch 'urlfix'Rob Hudson
2008-10-02Moving debug toolbar to the bottom of the HTML document and adjusting CSS toRob Hudson
position toolbar at top. Injecting toolbar at the bottom has a few advantages, such as removing the regular expression substitution making it about 5x faster (depending on document size), JS and CSS have a lesser chance of conflicting with others on the page.
2008-10-02A fix for URL patterns getting appended on each request growing indefinitely.Rob Hudson
This may break with other middleware patching urlpatterns, though.
2008-10-02Merge template path update from 'alex/master'. Thanks!Rob Hudson
2008-10-02Merging in new settings panel from 'binarydud/master'. Thanks!Rob Hudson
2008-10-01used os.path.normpath on templatdirs, this makes it looks cleaner, ↵Alex Gaynor
particularly removing ...
2008-10-01Merge branch 'master' of git://github.com/robhudson/django-debug-toolbarMatt George
2008-09-30Minor wording update in redirect.html template.Rob Hudson
2008-09-30Merge branch 'master' into session_panelMatt George