aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels
AgeCommit message (Collapse)Author
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
2011-09-26Merge branch 'issue-duplicated-queries' of ↵David Cramer
https://github.com/thinred/django-debug-toolbar into thinred-issue-duplicated-queries
2011-09-26Better substitutions for template context variables triggering SQL queriesMikhail Korobov
2011-09-26Issue 187: queries are captured and not executed when template panel is ↵Tomasz Buchert
rendered.
2011-09-15The toolbar can't be assigned at init - so grab it each time the method is ↵bkonkle
called
2011-09-15Remove any remaining uses of self.__class__ with superbkonkle
2011-09-15Edited all of the panels to use the stats API and not override the content ↵bkonkle
method
2011-09-15Add a default 'content' method, since the method is now identical on every panelbkonkle
2011-09-15Correct some issues with the stats methodsbkonkle
2011-09-15Added convenience methods to make it easier to work with panel statsbkonkle
2011-09-12Updated the template panel, and corrected an issue in the headers panelbkonkle
2011-09-12Updated the signals panelbkonkle
2011-09-12Updated the settings_vars panelbkonkle
2011-09-12Updated the request_vars panelbkonkle
2011-09-12Updated the logger panelbkonkle
2011-09-12Updated the headers panelbkonkle
2011-09-12Minor whitespace correction for the version panelbkonkle
2011-09-12Tweaks to the version panel, and whitespace corrections for the timer panelbkonkle
2011-09-12Tweaks to the timer panel, and a correction to the profiling panelbkonkle
2011-09-12Tweaked the profiling panelbkonkle
2011-09-12Cleaned up whitespace in the SQL and cache panelsbkonkle
2011-09-12Tweaked the sql panelbkonkle
2011-09-12Update the cache panel to use the toolbar objectbkonkle
2011-09-11Modify the Version panelYann Malet
2011-09-11linting- Remove unused importYann Malet
2011-09-11pep 8 complianceYann Malet
2011-09-11Fix the profiling panel when the line_profiler module is not available.Yann Malet
2011-09-10Also add the BSD specific value and comment them outYann Malet
2011-09-10Apply the same changes to the timer panelYann Malet
2011-09-10Revert some of the previous changes and modify slightly the panels to ↵Yann Malet
separate the gneration of the stats and the generation of the content.
2011-09-10Populate the stats['headers'] on the request.debug_toolbarYann Malet
2011-09-09Revert some of the previous changes and modify slightly the panels to ↵Yann Malet
separate the gneration of the stats and the generation of the content.
2011-09-09If a stacktrace frame is not in the expected format, skip over itbkonkle
2011-08-13Fixed opened issue #193 (exception on windows when working with file path):Olexiy Strashko
- change '/' path separator usage to os.sep
2011-07-14Merge branch 'master' of https://github.com/dokterbob/django-debug-toolbar ↵David Cramer
into dokterbob-master Conflicts: debug_toolbar/panels/request_vars.py
2011-07-14Dont modify the original context dictionary (fixes #184)David Cramer
2011-07-12Merge branch 'line_profiler_int' of ↵David Cramer
git://github.com/dmclain/django-debug-toolbar into line_profiler_int
2011-07-12Merge pull request #175 from thinred/masterDavid Cramer
This adds a feature asked in issue #163
2011-07-12Dont access __copy__ when it doesnt work. Preprocess context list so the ↵David Cramer
dictionary cannot be modified.
2011-06-23Django 1.3 seems to alter templates' rendering contexts after the fact, so ↵Nikolai Prokoschenko
just make our saved context a clone of the original to be sure we keep all of it. Fixes #159.
2011-06-16Fixing UnicodeEncodeError in sql panelMiguel Araujo Perez
2011-06-14Moved view function name extraction into debug_toolbar.utils.get_name_from_objDavid Cramer
2011-06-14Panel content handles when a class doesn't have a name, default to <unknown>cmdkeen
2011-06-10Merge pull request #174 from maraujop/masterDavid Cramer
Caught AttributeError while rendering: 'Template' object has no attribute 'origin'
2011-06-10Issue #163: SQL expand does show query fields now. So does clicking on bullets.Tomasz Buchert
2011-06-10Checking if the origin attribute exists on the Template object insteadMiguel Araujo Perez