aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar
AgeCommit message (Collapse)Author
2010-01-31Updated toolbar Javascript to use a closure.Rob Hudson
* Update jQuery to latest version, 1.4.1 * Pulled jquery.cookie.js into toolbar.js so it doesn't depend on jQuery being in the global namespace. * jQuery loading code based on Ben Alman's bookmarklet generator here: http://benalman.com/code/test/jquery-run-code-bookmarklet/
2010-01-22Escape invalid html in SQL queries.Gabriel
For example, a query containing a stray ampersand needs to be escaped. Signed-off-by: Rob Hudson <rob@cogit8.org>
2010-01-22Load jQuery from the DOM instead of document.write.Gabriel
document.write doesn't work with xhtml. Signed-off-by: Rob Hudson <rob@cogit8.org>
2010-01-22Updated to not display EXPLAIN/PROFILE links for non-SELECT queries.Chris Lamb
Signed-off-by: Rob Hudson <rob@cogit8.org>
2010-01-20Fixed toolbar loading problem if page does not load jQuery.Rob Hudson
2010-01-18Ensure we honor request.urlconf.Rob Hudson
Previously, the debug toolbar would always bolt on URLs from ROOT_URLCONF, which would break another middleware if it inserts URLs onto request.urlconf.
2010-01-15Debug toolbar markup is now XHTML compliant.Rob Hudson
2010-01-14Template panel context cleanup.Chris Adams
All panels get a copy of the template context when created and use an updated copy when rendering so they can have full access to context vars and avoid making changes to the shared context. Signed-off-by: Rob Hudson <rob@cogit8.org>
2010-01-14Views.py tweaked to use friendlier "EXPLAIN QUERY PLAN" with sqlite3Chris Adams
Signed-off-by: Rob Hudson <rob@cogit8.org>
2010-01-14Cleaned up cache panel slightly.Chris Adams
* Removed unused import * .delete() referenced an undefined variable Signed-off-by: Rob Hudson <rob@cogit8.org>
2010-01-08Print non-iterable template context layers as-isMikhail Korobov
Signed-off-by: Rob Hudson <rob@cogit8.org>
2010-01-09Fix issue #33: ensure force_unicode doesn't convert non-strings.Daniel Roseman
2009-11-27Replaced full repr of LANGUAGES to trim template context.Rob Hudson
2009-11-18Updated mo filesRob Hudson
2009-11-18Updated po files after new strings marked for translation.Rob Hudson
2009-11-18Marked more strings for translation and updated 'fr' locale.David Jean Louis
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-11-18Fixed old use of $, which has been replaced by $jChris Adams
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-11-18Fixed leaking middleware for non-200 requests.Rob Hudson
Thanks to Michael Elsdörfer for the report and patch.
2009-11-06Updated view info to be horizontal tabular.Rob Hudson
2009-11-06Show view name and arguments and keyword arguments in the request vars panel.Alex Gaynor
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-11-06Removed general CSS class names.Rob Hudson
2009-11-06Fixed incompatability with Python 2.4.Rob Hudson
2009-11-03Updated version to 0.8.10.8.1Rob Hudson
2009-11-02Updated .po filesRob Hudson
2009-11-02Merge branch 'master' of github.com:robhudson/django-debug-toolbarRob Hudson
2009-11-02Fixed and Updated .po filesRob Hudson
2009-11-02Merge branch 'master' into tx-masterRob Hudson
Conflicts: debug_toolbar/locale/he/LC_MESSAGES/django.po debug_toolbar/templates/debug_toolbar/panels/versions.html
2009-11-02Updated .po filesRob Hudson
2009-11-02Show context where SQL query originated from templateChris Lamb
Signed-off-by: Chris Lamb <lamby@debian.org> Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-11-02Left-align the header cells in the SQL stacktrace tableChris Lamb
The columns are extremely wide, which makes centered titles look very odd. Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-11-02Move the stacktrace underneath the SQL - current column is too narrowChris Lamb
Signed-off-by: Chris Lamb <lamby@debian.org> Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-11-02kill whitespaceAlex Gaynor
2009-11-02detect versions for other installed applicationsAlex Gaynor
2009-11-02Mkae this threadsafeAlex Gaynor
2009-11-02Made the versions panel more powerfulAlex Gaynor
2009-11-02Updated .po filesRob Hudson
2009-11-03Small i18n change in template panelJannis Leidel
2009-11-02Show context where SQL query originated from templateChris Lamb
Signed-off-by: Chris Lamb <lamby@debian.org> Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-11-02Left-align the header cells in the SQL stacktrace tableChris Lamb
The columns are extremely wide, which makes centered titles look very odd. Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-11-02Move the stacktrace underneath the SQL - current column is too narrowChris Lamb
Signed-off-by: Chris Lamb <lamby@debian.org> Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-10-16Added detection and display of versions of apps.Alex Gaynor
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-10-17l10n: Updates to Hebrew (he) translationAlex
Transmitted-via: Transifex (www.transifex.net)
2009-10-16Make this threadsafeAlex Gaynor
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-10-16Compiled locale filesRob Hudson
2009-10-16Updated po filesRob Hudson
2009-10-16Merge branch 'master' into tx-masterRob Hudson
2009-10-16Minified CSS from previous commit change.Rob Hudson
2009-10-17fixed space on titlesKenneth Belitzky
2009-10-17added missing trans tags inside templatesKenneth Belitzky
2009-10-17CSS was effecting blockquote styles on the page.melsdoerfer