aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/headers.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-25Support non-str keys in request.META.Aymeric Augustin
Fix #482.
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-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-17Enable unicode_literals in all non-empty modules.Aymeric Augustin
2012-01-12pep8David Cramer
2011-09-15Edited all of the panels to use the stats API and not override the content ↵bkonkle
method
2011-09-12Updated the template panel, and corrected an issue in the headers panelbkonkle
2011-09-12Updated the headers panelbkonkle
2011-09-10Populate the stats['headers'] on the request.debug_toolbarYann Malet
2010-04-07Revert "Factor headers data out of HeaderDebugPanel."Rob Hudson
This reverts commit 4326cbbec13f44e6d8c757f1d07fd6100596bfb6.
2010-03-03Factor headers data out of HeaderDebugPanel.Bryan Chow
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-12added in-panel titleIdan Gazit
2009-08-12renamed title/subtitle -> nav_title/nav_subtitleIdan Gazit
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-09Adding a `has_content` boolean to panels to avoid issues with checking ifRob Hudson
content exists and displaying it in the templates.
2008-09-08convert panels with content to use file based templates for overriding abilityRob Hudson
2008-09-07Adding a new panel to display HTTP headersRob Hudson