aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
AgeCommit message (Collapse)Author
2009-08-21added i18n support (Spanish) for timer.htmlPercy Perez-Pinedo
2009-08-21added i18n support (Spanish) for request_Vars.htmlPercy Perez-Pinedo
2009-08-21Cleaning up and simplifying the closed handle HTML and CSS.Rob Hudson
2009-08-21merging in changes from rob/iu-rf and fixing conflictsPercy Perez-Pinedo
2009-08-21testing some changesPercy Perez-Pinedo
2009-08-12panel width, content boxing, safe scrollingIdan Gazit
2009-08-12oops, retitled templates panelIdan Gazit
2009-08-12Cleaned up the panelsIdan Gazit
2009-08-12added in-panel titleIdan Gazit
2009-08-12renamed title/subtitle -> nav_title/nav_subtitleIdan Gazit
2009-08-12toolbar restyling, switched to non-minified css/jsIdan Gazit
2009-08-11allow for handling the pathological case of an insanely large template contextAlex Gaynor
2009-08-11Refactored the UI to be a right hand side vertical toolbar. DebugPanel ↵Rob Hudson
subclass grew a subtitle method to display informative text under the title.
2009-07-20removing trans so we can merge for nowPercy Perez-Pinedo
2009-06-16Captured redirection requests must be urlencoded.Philip Zeyliger
I ran into this when I had a URL with a ? (%3F) mark in it. Signed-off-by: Rob Hudson <rob@tastybrew.com>
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-03-22Add fix so jQuery doesn't conflict with other Javascript libraries.Rob Hudson
I think I finally got this one working. The saving of the temporary variable has to happen *before* jQuery loads, or else jQuery has already stomped on the '$' variable that another library might have used. This patch moves the temporary saving of this variable the HTML template so it tucks it aside before jQuery loads and puts it back after we're done. Tested and works with jQuery, mootools, and prototype.
2009-03-21Adding stack traces to SQL panel to see where the calls are coming from.Rob Hudson
Merge branch 'sql_stacktrace' * sql_stacktrace: Tuple unpacking of stacktrace variables for niceness. Add preliminary support for stacktraces to see where SQL queries are coming from.
2009-03-21Making CSS classes 'odd' and 'even' more specific.Rob Hudson
2009-01-23Tuple unpacking of stacktrace variables for niceness.Rob Hudson
2009-01-23Add preliminary support for stacktraces to see where SQL queries are coming ↵Rob Hudson
from. I'm wanting to test this a bit more before I merge it in fully. Feedback welcome.
2009-01-17Adjust Makefile to concatenate to jquery.cookie.js onto toolbar.min.js.Rob Hudson
2009-01-17Adding ability to show/hide toolbar, using jquery.cookie.js for statefulness.Reto Aebersold
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-01-04updated Spanish translationPercy Perez-Pinedo
2009-01-04added "trans" to base and redirect templatesPercy Perez-Pinedo
2009-01-04added "trans" to the templates to be translatedPercy Perez-Pinedo
2009-01-02added trans to request_vars.htmlPercy Perez-Pinedo
2009-01-02adding i18n to request_vars templatePercy Perez-Pinedo
2009-01-02trans fue incorporado a logger.htmlPercy Perez-Pinedo
2009-01-02finished adding "trans" to panel template headers.htmlPercy Perez-Pinedo
2009-01-02working on translating the django toolbar into Spanish. Translating panel ↵Percy Perez-Pinedo
template: cache.html
2008-12-09Minor cleanup and template change to previous commit.Rob Hudson
2008-12-09Added more of the rusage stats in a drop-down panelMartin Maney
(some items were commented out after I was reminded that not all of the original BSD items are supported under Linux)
2008-12-09Only show the SQL profile if we're using a MySQL database backend.Rob Hudson
2008-10-07Fix inconsistent SQL timings. All SQL timings are milliseconds now.Rob Hudson
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-06Adding query profiling for MySQL. Thanks to Simon Willison for the suggestion.Rob Hudson
There's a big TODO on this one, which is to not display or attempt to execute the profiling SQL calls if this isn't MySQL and if MySQL isn't >= version 5.0.37. For now it's a nice playground of the profiler if you have MySQL v5.0.37 or higher.
2008-10-06Just like EXPLAIN, adding the output of straight SELECT statements so you canRob Hudson
view the raw SQL output.
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-10-02Merging in new settings panel from 'binarydud/master'. Thanks!Rob Hudson
2008-10-01Merge branch 'master' of git://github.com/robhudson/django-debug-toolbarMatt George
2008-09-30Minor wording update in redirect.html template.Rob Hudson
2008-09-30Merge branch 'master' into session_panelMatt George
2008-09-30added settings var panelMatt George
(cherry picked from commit fdf77eea58887f68c210c7a77218e2fa6d5a86af)
2008-09-30Adding redirect interception to the middleware to be able to view debug infoRob Hudson
before being redirected to a new page. Thanks to [530] in IRC for the idea. Coming soon will be a way to optionally disable this.
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-25Merging in some changes from Malcolm Tredinnick to do some minor cleanup in aRob Hudson
few templates. Thanks Malcolm. Merge branch 'master'; commit 'malcolm/master'