aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/media
AgeCommit message (Collapse)Author
2008-10-07Clicking on a template file now will fetch and show the source of the template.Rob Hudson
Thanks to Adam Gomaa for the patch.
2008-10-03Getting rid of the text shadow in CSS.Rob Hudson
2008-10-02Adding compressed JS and CSS, and a Makefile to generate them using YUI ↵Rob Hudson
Compressor
2008-10-02Moving debug toolbar to the bottom of the HTML document and adjusting CSS toRob Hudson
position toolbar at top. Injecting toolbar at the bottom has a few advantages, such as removing the regular expression substitution making it about 5x faster (depending on document size), JS and CSS have a lesser chance of conflicting with others on the page.
2008-09-27added logger panelAlex Gaynor
2008-09-23Updating pygment css to match Django colors and remove classes not used.Rob Hudson
2008-09-23Updating pygments styles to better match new toolbar styles.Rob Hudson
2008-09-23Merging with Bryan Veloso's branch to pull in Django stylings.Rob Hudson
2008-09-23Possible fix for jQuery.noConflict() removing '$' from scope and breaking otherRob Hudson
scripts that depend on it.
2008-09-22Merge branch 'master' of git@github.com:revyver/django-debug-toolbarBryan Veloso
* 'master' of git@github.com:revyver/django-debug-toolbar: Committing my first run at the new CSS. This is a bit old. Old being a few days old. Conflicts: debug_toolbar/media/toolbar.css
2008-09-22Committing my first run at the new CSS. This is a bit old. Old being a few ↵Bryan Veloso
days old.
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-20partly done with ajax support and jsRob Hudson
2008-09-20Use $ shortcut for jQuery without conflicting with other librariesSimon Willison
2008-09-20jQuery patch from Alex Gaynor.Rob 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-16Updating toolbar.js to close panel on 2nd click.Rob Hudson
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.