aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/request_vars.py
AgeCommit message (Collapse)Author
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-01Fix support for non-ASCII keys in sessions.Aymeric Augustin
2013-11-01Sort items in request vars panel.Aymeric Augustin
Fix #340.
2013-10-26Eliminate almost all flake8 messages.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-17Enable unicode_literals in all non-empty modules.Aymeric Augustin
2012-04-07Added resolved URL name to the Request var panel. Closes #214.Jannis Leidel
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 request_vars panelbkonkle
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-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-02Fixes RequestVarsDebugPanel' object has no attribute 'view_func' bug.Tomasz Buchert
2011-03-22Fix issue with __name__ if a class-based view (i.e. a FormWizard) is usedRob Golding
If view_func doesn't have a __name__ attribute, then __class__.__name__ is tried instead. If that doesn't exist either, then '<unknown>' is used.
2011-03-03As it turns out, view_func is not always availableMathijs de Bruin
as a request attribute. This is especially true for 'fallback' type of views that are rendered from within middleware, such as the one used in Django's own flatpages.
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-11-06Updated view info to be horizontal tabular.Rob Hudson
2009-11-06Show view name and arguments and keyword arguments in the request vars panel.Alex Gaynor
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-09-24Fixed a bug, recently introduced, that turned the sessions list into a tuple ofRob Hudson
that list which broke rendering of sessions in the Request Vars panel.
2009-09-15Allow request vars to work even with disabled session middleware.Augie Fackler
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-09Merging in some changes from David Cramer for the HTTP vars panel but renamingRob Hudson
it to request vars since we've added session and cookie data (sessions have nothing to do with HTTP technically).