aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/toolbar/loader.py
AgeCommit message (Collapse)Author
2010-06-02Instantiate only one toolbar object on load.toolbar-refactorRob Hudson
Start of work on having one toolbar object and its panels handle multiple requests, getting rid of the need to instantiate a toolbar and all panels per request. This will require much more work in panels to make sure everything is thread-safe.
2010-02-16Fixed #60 - Added MEDIA_URL config option to be able to override the URL to ↵Jannis Leidel
the static files (good with django-staticfiles). Also moved media files to subdirectories like other apps. Signed-off-by: Rob Hudson <rob@cogit8.org>
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-05-27Adding a signals panel to display list of signals and their providing argumentsAlex Gaynor
and receivers. Thanks Alex Gaynor! Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-04-02Disable cache panel in default list of panels to load since it's slightly ↵Rob Hudson
broken at the moment.
2009-01-15Load SQLDebugPanel before TemplateDebugPanel to get the right number of ↵Reto Aebersold
queries if a model __unicode__() function make some additional queries (i.e. for a related model). Signed-off-by: Rob Hudson <rob@tastybrew.com>
2008-10-02Merging in new settings panel from 'binarydud/master'. Thanks!Rob Hudson
2008-09-30Adding toolbar config to override INTERCEPT_REDIRECTS and, in the future, otherRob Hudson
configurable pieces of the toolbar.
2008-09-27Merging in the Logging panel from Alex Gaynor. Thanks Alex!Rob Hudson
2008-09-27added logger panelAlex Gaynor
2008-09-27fixed merge conflictsAlex Gaynor
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-20jquery now optionalAlex Gaynor
2008-09-16Minor stylistic changes.Rob Hudson
2008-09-16Fixed bug where django application was assumed to installed at / url.nbstrite
2008-09-12Moving default list of panels into the loader to skip an install step. PanelRob Hudson
list can still be overridden with a setting if desired. Updated README as well.
2008-09-08raise errors with panels subclass loading to help in debuggingRob Hudson
2008-09-07updating to pass around the request objectRob Hudson
2008-09-06Updating rendering to use Django templates and could possibly be overridden.Rob Hudson
2008-08-27Initial commit of basic working Debug Toolbar (that needs a lot of CSS and ↵Rob Hudson
JS love)