aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar
AgeCommit message (Collapse)Author
2008-09-15Modified scripts to use jQuery, and moved 'em to a better place.Jacob Kaplan-Moss
2008-09-15Added a mechanism for monkeypatching in debug views, and also addedJacob Kaplan-Moss
jquery as both a test case and a place to get started making some js improvements. I'm not totally thrilled with this approach -- it feels *very* hackish. The alternative might be to simply require installers to add a line to their ROOT_URLCONF, which wouldn't be *bad*, but I like the "load automatically" part of this thing.
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-11Adding view to explain SQL passed in via query string. Hopefully this isRob Hudson
database backend agnostic. Next up is connecting this with the SQL panel via AJAX.
2008-09-11Adding JSON params to pass to view and adding link for explain.Rob Hudson
2008-09-11Moving reformat sql so we can pull this in elsewhere.Rob Hudson
2008-09-11Patch submitted by Ned Batchelder to fix panel path slashes on Windows.Rob Hudson
2008-09-09Adding a templates panel that shows the templates used during aRob Hudson
request/response cycle. Also lists settings.TEMPLATE_DIRS.
2008-09-09Making it so that the SQL panel display SQL a little more formatted and nice.Rob Hudson
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-09Adding more checkes to middleware.Rob Hudson
2008-09-09added ms label to total time on cache panelRob Hudson
(cherry picked from commit 82881e55881e7187308a79e99dc9e0709bbb4f89)
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).
2008-09-08I forgot to really *add* the cache stats panel by David Cramer.Rob Hudson
2008-09-08Rewrite of toolbar HTML, CSS, and JS. Written by David Cramer with someRob Hudson
tweaks. This also removes the jQuery dependency.
2008-09-08Added a database stats tracking class to pass through params. This is setupRob Hudson
for a later addition of being able to add EXPLAIN support to individual queries for SQL debugging. Contributed by David Cramer.
2008-09-08HTTP POST/GET panel contributed by David CramerRob Hudson
2008-09-08convert panels with content to use file based templates for overriding abilityRob Hudson
2008-09-08raise errors with panels subclass loading to help in debuggingRob Hudson
2008-09-07Fixing a bug reported that was causing encoding errors. Thanks Chris Kelly forRob Hudson
the patch
2008-09-07Merge branch 'master' of git://github.com/robhudson/django-debug-toolbarMatt George
Conflicts: debug_toolbar/middleware.py
2008-09-07Fixed a bug where the toolbar may have not been instantiated on request butRob Hudson
tried to access it on response.
2008-09-07fixed bug where if IP was not in INTERNAL_IPS then ↵Matt George
self.debug_toolbar.render_toolbar() results in Error because debug_toolbar is None
2008-09-07Merge branch 'master' of git://github.com/robhudson/django-debug-toolbarMatt George
2008-09-07adding a check to not display toolbar on ajax requestsRob Hudson
2008-09-07changed js to hide currently showing debug panelMatt George
2008-09-07Adding a new panel to display HTTP headersRob Hudson
2008-09-07updating to pass around the request objectRob Hudson
2008-09-07Adding INTERNAL_IPS check to display toolbar — this may be a bit much but ↵Rob Hudson
there will potentially be lots of things there you would not want to share to just anyone.
2008-09-07adding a comment to note that panel subclasses should declare a nameRob Hudson
2008-09-07adding a name attribute to base panel since we are likely to put more stuff ↵Rob Hudson
in titles
2008-09-07converting sql panel to use templateRob Hudson
2008-09-07no need to output div if there is no contentRob Hudson
2008-09-06Updating panels to include more info without action requiredRob Hudson
2008-09-06The last commit missed an added method to the Panel base classRob Hudson
2008-09-06Updating rendering to use Django templates and could possibly be overridden.Rob Hudson
2008-08-28decided to change timer to display in millisecondsRob Hudson
2008-08-28adding a timing panelRob Hudson
2008-08-27Initial commit of basic working Debug Toolbar (that needs a lot of CSS and ↵Rob Hudson
JS love)