aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/profiling.py
AgeCommit message (Collapse)Author
2013-12-01Review translated strings.Aymeric Augustin
- Include trailing colons inside translated strings because some languages (eg. French) need a space before the colon. - Normalize capitalization (title-style didn't seem warranted and looked weird in some cases). - Normalize quotes (not very useful, but we had a random mixture of single and double quotes). - Remove msgstr from the English po file because they're identical to msgid by definition.
2013-11-29Move support for line_profiler to a 3rd party panel.Aymeric Augustin
Many thanks to Dave McLain. Fix #477.
2013-11-24Update all panels to follow the public API.Aymeric Augustin
2013-11-24Rename all panels consistently.Aymeric Augustin
Enforce absolute imports to avoid clashing with built-in package names. Thanks Jannis for his feedback.
2013-11-22Fix regression introduced in 87a7375.Aymeric Augustin
Fix #466.
2013-11-15Remove stacktrace scrubbing superseded by HIDDEN_STACKTRACE_MODULES.Aymeric Augustin
2013-11-09Remove unused method in panel API.Aymeric Augustin
2013-10-26Eliminate almost all flake8 messages.Aymeric Augustin
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
2012-01-12pep8David Cramer
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-15Edited all of the panels to use the stats API and not override the content ↵bkonkle
method
2011-09-12Tweaks to the timer panel, and a correction to the profiling panelbkonkle
2011-09-12Tweaked the profiling panelbkonkle
2011-09-11pep 8 complianceYann Malet
2011-09-11Fix the profiling panel when the line_profiler module is not available.Yann 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-08-13Fixed opened issue #193 (exception on windows when working with file path):Olexiy Strashko
- change '/' path separator usage to os.sep
2011-07-12Merge branch 'line_profiler_int' of ↵David Cramer
git://github.com/dmclain/django-debug-toolbar into line_profiler_int
2011-05-10Add support for __traceback_hide__ (tidy_stacktrace now inspects ↵David Cramer
inspect.stack() rather than traceback.extract_stack()) (fixes #160)
2011-04-26Integrating line_profilerDave McLain
2011-04-22Basic support for toggling everywhere correctlyDavid Cramer
2011-04-22Initial refactor of toggline so that profiling matches sqlDavid Cramer
2011-04-22Remove print statementDavid Cramer
2011-04-22Kill off requirement of PROJECT_ROOT and clean up lint violations in ↵David Cramer
profiling panel
2011-04-22first pass at a profiler panelDave McLain
2011-04-21Creating a profiling panel from the version panel for basic stuffDave McLain