aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/media
AgeCommit message (Collapse)Author
2012-08-20use links to static files rather than direct inclusion, Fixes #307Thomas Grainger
2012-04-07Updated cache panel to handle multiple backends and look more like the SQL ↵Jannis Leidel
panel. This is based mostly on the awesome work by @diox done in 9aa062bb6c4318aa81c202003ea902249c0071d1. Closes #134.
2012-03-26Fix issue #217Ben Demboski
2012-01-30Updated minified toolbar jsSeyi Ogunyemi
2012-01-30Update debug_toolbar/media/debug_toolbar/js/jquery.js - moved to jQuery ↵Ṣeyi Ogunyẹ́mi
1.7.1 to avoid annoying event.layer(X|Y) deprecation warnings. Fixed in https://github.com/jquery/jquery/pull/554
2012-01-17Actually update the media files this time (compressed toolbar.js to ↵0.9.4David Cramer
toolbar.min.js)
2012-01-17Revert using live events on toolbar button (fixes GH-255 and GH-251).David Cramer
2012-01-12Ensure all events use live and fix a mess of lint errorsDavid Cramer
2012-01-12Update minidified mediaDavid Cramer
2011-12-22JS: Replace a few spaces with tabs in toolbar.jsRemoun Metyas
2011-12-22JS: Use live('click') instead of click() for persistent toggle handlers.Remoun Metyas
2011-12-22Update minified CSS and JS with YUI compressor 2.4.7Remoun Metyas
2011-08-20Included jQuery breaks newer jQuery plugins, force noConflict for jQuery ↵Jason Keene
global object as well as $.
2011-07-12Bring pre styles in line with rest of panelsline_profiler_intDavid Cramer
2011-07-12Some general cleanup for css/markup and collapsing of line profiler moduleDavid Cramer
2011-07-12Move makefile to project rootDavid Cramer
2011-06-10Issue #163: SQL expand does show query fields now. So does clicking on bullets.Tomasz Buchert
2011-04-22Basic support for toggling everywhere correctlyDavid Cramer
2011-04-22Initial refactor of toggline so that profiling matches sqlDavid Cramer
2011-04-22Clean up some oddly formatted CSSDavid Cramer
2011-04-22Merge branch 'profiling' of git://github.com/dmclain/django-debug-toolbar ↵David Cramer
into dmclain-master Conflicts: debug_toolbar/media/debug_toolbar/css/toolbar.min.css debug_toolbar/media/debug_toolbar/js/toolbar.min.js
2011-04-22Merge branch 'develop' of git://github.com/robhudson/django-debug-toolbar ↵David Cramer
into robhudson-develop Conflicts: debug_toolbar/media/debug_toolbar/css/toolbar.css debug_toolbar/media/debug_toolbar/css/toolbar.min.css debug_toolbar/media/debug_toolbar/js/toolbar.min.js debug_toolbar/middleware.py debug_toolbar/panels/sql.py debug_toolbar/templates/debug_toolbar/base.html debug_toolbar/templates/debug_toolbar/panels/sql.html
2011-04-22first pass at a profiler panelDave McLain
2011-04-20Change .load() calls to GET to avoid CSRF protection.Rob Hudson
Thanks to Tomasz Buchert for the suggestion.
2011-04-06Generate fake transaction ids so we can match up transaction end state correctlyDavid Cramer
2011-04-06SQL panel now guesses at Psycopg2 transactions (when autocommit swaps to in ↵David Cramer
trans and vice versa)
2011-03-24Change how expansion works on queries so hidden select values get displayedDavid Cramer
2011-03-24basic color code grouping of db aliasesDavid Cramer
2011-03-24Improve display of truncate sql queriesDavid Cramer
2011-03-24Add multi db support and summaries to SQL panelDavid Cramer
2011-03-24Ensure djdt.ready() works even after initializationDavid Cramer
2011-03-24inline all images as base64-encoded dataDavid Cramer
2011-03-24Create window.djdt and djdt.ready() event callback hooks for post </body> eventsDavid Cramer
2011-03-24ensure we dont compile jquery.cookie.js since its already in toolbar.jsDavid Cramer
2011-03-24inline all JS to avoid external media calls on initial page loadDavid Cramer
2011-03-23Overhaul SQL panel to include better timeline, more compact queries, and ↵David Cramer
better view of stacktrace
2011-03-16Updated YUI Compressor which produces better minimized CSSRob Hudson
2011-03-16Added error trapping to AJAX sub-panels.Rob Hudson
Previous the user saw nothing happen if there was an error on the backend. This at least display a basic error status to the user.
2011-02-03HTML validation: avoid injecting <style> in <body>Chris Adams
This avoids causing otherwise valid HTML to fail validation because <style> is only allowed in <head>
2010-10-18Updated SQL explain panel to keep white space for indention, clarifying the ↵Rob Hudson
output.
2010-09-22Fixed issue 85, SQL not selectable due to line chart.Rob Hudson
Thanks to Hynek Cernoch for the report and patch.
2010-09-07Fixed issue 83, unstyled toolbar flash.Rob Hudson
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-02-11Merge branch 'master' into js_closureRob Hudson
2010-02-02Fixed a few panel title display issues.Rob Hudson
2010-01-31Updated toolbar Javascript to use a closure.Rob Hudson
* Update jQuery to latest version, 1.4.1 * Pulled jquery.cookie.js into toolbar.js so it doesn't depend on jQuery being in the global namespace. * jQuery loading code based on Ben Alman's bookmarklet generator here: http://benalman.com/code/test/jquery-run-code-bookmarklet/
2010-01-15Debug toolbar markup is now XHTML compliant.Rob Hudson
2009-11-18Fixed old use of $, which has been replaced by $jChris Adams
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-11-06Removed general CSS class names.Rob Hudson
2009-11-02Left-align the header cells in the SQL stacktrace tableChris Lamb
The columns are extremely wide, which makes centered titles look very odd. Signed-off-by: Rob Hudson <rob@cogit8.org>