aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar
AgeCommit message (Collapse)Author
2008-09-21Load jQuery only if jQuery isn't already loaded. Patch from Alex GaynorRob Hudson
slightly modified to load jQuery locally to allow offline usage.
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-21Show 1 SQL query v.s. 3 SQL queriesSimon Willison
2008-09-21made jquery really optional, also switched to using google to serve jqueryAlex Gaynor
2008-09-21pluralize query correctly, stolen from swillisonAlex Gaynor
2008-09-20jquery now optionalAlex Gaynor
2008-09-20Patch from Alex Gaynor that fixes jQuery conflicts with Pinax and potentiallyRob Hudson
other projects.
2008-09-20Updating SQL panel to use Pygments for SQL highlighting if it's available,Rob Hudson
moving the EXPLAIN link to the left to avoid scrolling. I have a feeling that the SQL panel could use a serious security review since we're passing SQL in via GET which is, I'm sure, a big no-no.
2008-09-20Turn back on if request.is_ajax check but put the monkey patching of URLs in noRob Hudson
matter what so our actual views (for ajax) can be run.
2008-09-20Upgrading jquery.js to v1.2.6 and including the minified version vs the packedRob Hudson
version for faster processing time (vs faster transmit times).
2008-09-20finishing up ajax work for sql explainRob Hudson
2008-09-20Merge commit '8e124b0a129ab351ec6cae30d8358709d4c1430b'Rob Hudson
From Simon Willison's branch: Use pformat for template contexts, which makes it more readable
2008-09-20From Simon Willison but cleaned up tabbing: Use $ shortcut for jQuery withoutRob Hudson
conflicting with other libraries
2008-09-20Import simplejson from django rather than an external dependency.Rob Hudson
2008-09-20partly done with ajax support and jsRob Hudson
2008-09-20Use pformat for template contexts, which makes it more readableSimon Willison
2008-09-20Use $ shortcut for jQuery without conflicting with other librariesSimon Willison
2008-09-20jQuery patch from Alex Gaynor.Rob Hudson
2008-09-19Remove the safe filter from template context so objects don't turn into HTMLRob Hudson
tags (e.g. <django.core.paginator.Paginator>)
2008-09-19Merge branch 'master' of git://github.com/nowells/django-debug-toolbarRob Hudson
2008-09-19Fixed template panel to skip over debug_toolbar templates. Fixed a bug in ↵Nowell Strite
template context output where rendering would hang while trying to autoescape the context variable output.
2008-09-18Merge branch 'explain' of git@github.com:robhudson/django-debug-toolbarRob Hudson
2008-09-18I noticed the template_rendered signal from the test suite also passed context,Rob Hudson
so I'm including the context with each template in the Template panel. This should make the designers happy.
2008-09-16We now have a jQuery.djDebug object to extend. This might be overkill but itRob Hudson
fixes a few issues with open/closing panels and adds a keybinding on the ESC key to close any panels that are open.
2008-09-16Minor stylistic changes.Rob Hudson
2008-09-16Fixed bug where django application was assumed to installed at / url.nbstrite
2008-09-16Updating toolbar.js to close panel on 2nd click.Rob Hudson
2008-09-16Merge branch 'master' into explain and updating a few bits to work with the newRob Hudson
urls and views.
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.