aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels
AgeCommit message (Collapse)Author
2013-11-01Fix support for non-ASCII keys in sessions.Aymeric Augustin
2013-11-01Sort items in request vars panel.Aymeric Augustin
Fix #340.
2013-11-01Add response headers to the Headers panel.Aymeric Augustin
2013-11-01Show all HTTP headers in the headers panel.Aymeric Augustin
Show a relevant subset of the WSGI environ separately. Fix #62.
2013-10-27Centralize access to config and default values.Aymeric Augustin
2013-10-26Eliminate almost all flake8 messages.Aymeric Augustin
2013-10-26Strengthen error handling in templates panel.Aymeric Augustin
Fix #292.
2013-10-18Fix crash with objects having a non-ASCII repr in context.Aymeric Augustin
2013-10-18#151 -- Logging panel fails on invalid string representationsBouke Haarsma
2013-10-17Implement method replacement for Python 3.Aymeric Augustin
Python 3 doesn't have unbound methods.
2013-10-17Update introspection code.Aymeric Augustin
2013-10-17Stopped using dict.iter*.Aymeric Augustin
Since performance isn't a primary concern, the non-iterable versions will do just fine on Python 2.
2013-10-17Update imports for renamed modules.Aymeric Augustin
2013-10-17Enable unicode_literals in all non-empty modules.Aymeric Augustin
2013-10-17Avoid naked except clauses.Aymeric Augustin
2013-10-17Remove compatibility code for unsupported version of Django.Aymeric Augustin
2013-05-01Add javascript timing metrics to timing panel onLoad if availableRoger Barnes
2013-04-29Handle db aliases which are not defined in connectionsDavid Cramer
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
2013-04-24Got rid of the circular importsVladislav Poluhin
2013-04-23Form for SQL validationVladislav Poluhin
2012-09-22Fix displaying instance of RawQuerySet in templates toolbarNikita Kovaliov
2012-06-07sql is None, in case of internal psycopg2 errors like 'cannot adapt type ..'Denis Orlikhin
2012-05-13Minor cosmetic cleanup, switching out __import__ calls with the proper use ↵Jannis Leidel
of Django's import_module.
2012-05-13Added a repr for the cache wrapper.Jannis Leidel
2012-04-07Added resolved URL name to the Request var panel. Closes #214.Jannis Leidel
2012-04-07Updated cache panel to handle multiple backends and look more like the SQL ↵Jannis Leidel
panel. This is based mostly on the awesome work by @diox done in 9aa062bb6c4318aa81c202003ea902249c0071d1. Closes #134.
2012-04-04Sort versions alphabetically.Jannis Leidel
2012-03-31Marked a few more string for translation.Jannis Leidel
2012-03-31Use the correct path separator to work on Windows.Jannis Leidel
2012-03-31Marked a few more strings for translation.Jannis Leidel
2012-03-31Made sure the list of settings are sorted alphabetically. Fixes #265.Jannis Leidel
2012-03-31Removed extended title again from cache panel since the same info is now in ↵Jannis Leidel
the subtitle.
2012-03-31Fixed merge bugs in the cache panel code.Jannis Leidel
2012-03-31Merge branch 'master' of https://github.com/ivirabyan/django-debug-toolbar ↵Jannis Leidel
into ivirabyan-master Conflicts: debug_toolbar/panels/cache.py debug_toolbar/toolbar/loader.py
2012-03-31Made cache panel compatible to cache backend API in Django >= 1.3. Closes ↵Jannis Leidel
#220 and #260.
2012-03-05Added i18n to the Signals panel.Jannis Leidel
2012-03-05Use i18n for the cache and SQL panels.Jannis Leidel
2012-03-05Fixed the number of logging records and use i18n for it.Jannis Leidel
2012-02-22Do not match greedyJulian Bez
2012-01-12pep8David Cramer
2012-01-12Improve signals panelDavid Cramer
2012-01-12Gracefully handle __name__ not being a valid attribute on signals0.9.2David Cramer
2012-01-12Fix UnicodeDecodeError on getting template context representations for ↵Andrey Grygoryev
templates panel.
2012-01-04Fix bug: (AttributeError: class MpttMeta has no attribute '__class__') ↵Venelin Stoykov
caused by old style classes not extending object
2011-11-30Don't blow up if INSTALLED_APPS is a tupleChris Lamb
Since r17158 in Django trunk, INSTALLED_APPS is now not always co-erced to a list. In my projects I prefer to have INSTALLED_APPS as a tuple as it reinforces that it is not modifiable at runtime. However, this blows up in the VersionDebugPanel as it currently assumes it is a list. Signed-off-by: Chris Lamb <lamby@debian.org>
2011-11-15Only call _elapsed_ru() in TimerPanel when resource module is available.Andi Albrecht
2011-10-27fixed AttributeError on 404 page exception in ProfilerPanel.process_responseApkawa
2011-10-26Fixed ProfilingDebugPanel; fixed example site if installed other ↵Apkawa
debug_toolbar in system
2011-09-27Refactored template filtering: discard DjDT templates asap.Tomasz Buchert