aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels
AgeCommit message (Collapse)Author
2011-06-15Refer to the class explicitly instead of using self.__class__ to eliminate ↵Brandon Konkle
problems with subclasses.
2011-06-15Provide the class name explicitly to super() to prevent infinite loops when ↵Brandon Konkle
SQLDebugPanel is subclassed.
2011-04-08Stripped out logging of SQL queries from logging panel.Rob Hudson
2011-04-08Updated sql panel to include logging support.Rob Hudson
This matches Django's added logging support to the debug cursor.
2011-04-06Added basic support for multi-db.Rob Hudson
Thanks to David Cramer, Ionel Cristian Mărieș, noah256, and Sander Steffann, who all supplied patches.
2011-01-09Added support for executemany. Fixes issue #120postal2600
Signed-off-by: Rob Hudson <rob@cogit8.org>
2011-01-09Added support for LogBook. Thanks to Vincent Driessen for the idea andVincent Driessen
patch. Signed-off-by: Rob Hudson <rob@cogit8.org>
2010-12-08Added clean_params method to DatabaseStatTracker to scrub non-unicodeMatthew J Morrison
data for displaying on the sql panel Signed-off-by: Rob Hudson <rob@cogit8.org>
2010-09-07Fixed template block inheritance bug (issues 77 and 97)Rob Hudson
2010-04-07Revert "Start of splitting off data collection classes and panel classes."Rob Hudson
This reverts commit edf74beb6e26ed34779dff17240d2fb4c436d451.
2010-04-07Revert "Factor headers data out of HeaderDebugPanel."Rob Hudson
This reverts commit 4326cbbec13f44e6d8c757f1d07fd6100596bfb6.
2010-04-07Revert "Factor settings data out of SettingsVarsDebugPanel."Rob Hudson
This reverts commit 7e8a4e195d4b0e3cabf0742b31e087a81712d12f.
2010-04-07Revert "Factor versions data out of VersionDebugPanel."Rob Hudson
This reverts commit d05dcbb4aa93b1ce9d097ed8d537f06eb2491f5e.
2010-03-03Factor versions data out of VersionDebugPanel.Bryan Chow
2010-03-03Factor settings data out of SettingsVarsDebugPanel.Bryan Chow
2010-03-03Factor headers data out of HeaderDebugPanel.Bryan Chow
2010-03-03Start of splitting off data collection classes and panel classes.Rob Hudson
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-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-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-18Marked more strings for translation and updated 'fr' locale.David Jean Louis
Signed-off-by: Rob Hudson <rob@cogit8.org>
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-06Fixed incompatability with Python 2.4.Rob Hudson
2009-11-02Merge branch 'master' of github.com:robhudson/django-debug-toolbarRob 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-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-02kill whitespaceAlex Gaynor
2009-11-02detect versions for other installed applicationsAlex Gaynor
2009-11-02Made the versions panel more powerfulAlex Gaynor
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-10-16Added detection and display of versions of apps.Alex Gaynor
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-09-30Template panel: Replace the sql_queries element from the template context ↵Chris Beaven
rather than removing it. Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-09-30Template panel: One letter variable names are bad practice, changed to use ↵Chris Beaven
some more informative variable names. Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-09-30Template panel: Remove unnecessary large elements from each template context ↵Chris Beaven
(request and sql_queries) Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-09-25kill whitespaceAlex Gaynor
2009-09-25detect versions for other installed applicationsAlex Gaynor
2009-09-25Merge commit 'rob/master'Alex Gaynor
2009-09-25Fixed template panel bug that caused the context to not display correctly.Rob Hudson
2009-09-24Fixed a bug, recently introduced, that turned the sessions list into a tuple ofRob Hudson
that list which broke rendering of sessions in the Request Vars panel.
2009-09-23Merge commit 'rob/master'Alex Gaynor
2009-09-22Added sqlparse, replacing my simple string replace SQL keywords and updatingRob Hudson
management command and SQL panel.
2009-09-18Made the versions panel more powerfulAlex Gaynor
2009-09-15Allow request vars to work even with disabled session middleware.Augie Fackler
2009-09-12Merge remote branch 'alex/master'Rob Hudson
2009-09-12Fixed to only show the link for requesting the SELECT data if the query is aRob Hudson
SELECT query.