aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/timer.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-29Stop sharing unsafely a context dict across threads.Aymeric Augustin
Panels that need to share data with other panels shall do it through the record_stats / get_stats API. Statistics are automatically pushed to the template context. Fix #450.
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-10Be resilient if not all middleware run.Aymeric Augustin
Fix #129.
2013-11-09Remove unused method in panel API.Aymeric Augustin
2013-10-26Eliminate almost all flake8 messages.Aymeric Augustin
2013-10-17Enable unicode_literals in all non-empty modules.Aymeric Augustin
2013-05-01Add javascript timing metrics to timing panel onLoad if availableRoger Barnes
2012-03-31Marked a few more strings for translation.Jannis Leidel
2012-01-12pep8David Cramer
2011-11-15Only call _elapsed_ru() in TimerPanel when resource module is available.Andi Albrecht
2011-09-15Edited all of the panels to use the stats API and not override the content ↵bkonkle
method
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-10Also add the BSD specific value and comment them outYann Malet
2011-09-10Apply the same changes to the timer panelYann Malet
2010-04-07Revert "Start of splitting off data collection classes and panel classes."Rob Hudson
This reverts commit edf74beb6e26ed34779dff17240d2fb4c436d451.
2010-03-03Start of splitting off data collection classes and panel classes.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>
2009-11-18Marked more strings for translation and updated 'fr' locale.David Jean Louis
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-08-25added spanish translation of the panels nav titlePercy Perez-Pinedo
2009-08-12added in-panel titleIdan Gazit
2009-08-12renamed title/subtitle -> nav_title/nav_subtitleIdan Gazit
2009-08-11Refactored the UI to be a right hand side vertical toolbar. DebugPanel ↵Rob Hudson
subclass grew a subtitle method to display informative text under the title.
2008-12-11Win32 systems don't have the resource module. This patch codes around it so ↵Rob Hudson
only the basic timings are shown for those that don't have the resource module, and finer grained timings are shown for those that do.
2008-12-09Minor cleanup and template change to previous commit.Rob Hudson
2008-12-09Added more of the rusage stats in a drop-down panelMartin Maney
(some items were commented out after I was reminded that not all of the original BSD items are supported under Linux)
2008-12-09Added fine-grained CPU usage to timerMartin Maney
2008-09-21Refactoring middleware and panels so panels have more explicit middleware-likeRob Hudson
methods to be more clear when panel processing happens.
2008-09-07updating to pass around the request objectRob Hudson
2008-09-07adding a name attribute to base panel since we are likely to put more stuff ↵Rob Hudson
in titles
2008-09-06Updating panels to include more info without action requiredRob Hudson
2008-08-28decided to change timer to display in millisecondsRob Hudson
2008-08-28adding a timing panelRob Hudson