aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
AgeCommit message (Collapse)Author
2009-11-02Show context where SQL query originated from templateChris Lamb
Signed-off-by: Chris Lamb <lamby@debian.org> Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-11-02Move the stacktrace underneath the SQL - current column is too narrowChris Lamb
Signed-off-by: Chris Lamb <lamby@debian.org> Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-10-16Added detection and display of versions of apps.Alex Gaynor
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-10-17fixed space on titlesKenneth Belitzky
2009-10-17added missing trans tags inside templatesKenneth Belitzky
2009-10-06missing closing bracketEtienne Carrier
2009-09-18Made the versions panel more powerfulAlex Gaynor
2009-09-12Merge remote branch 'alex/master'Rob Hudson
2009-09-12Fixed to only show the link for requesting the SELECT data if the query is aRob Hudson
SELECT query.
2009-09-11Removed the spaceless tag as it caused more problems than it solved.Rob Hudson
2009-09-11Wrapped subpanel content with div.scroll and fixed a few minor CSS problems.Rob Hudson
2009-09-11Fixed escaping on redirects.Rob Hudson
This needs a good test case and more thought for when there are query strings. As it was, though, it was broken.
2009-09-10handle merge conflictsAlex Gaynor
2009-09-08Updated toolbar to use minified versions of js and css.Rob Hudson
2009-09-08Merge remote branch 'idan/master' into ui-rfRob Hudson
2009-09-09Fixed back buttons on SQL explain/select/profile subpanels.Idan Gazit
2009-09-07Fixed template source to work nicely with and without Pygments.Rob Hudson
2009-09-07Allow template source to be scrollableMikhail Korobov
Signed-off-by: Rob Hudson <rob@cogit8.org>
2009-09-07Merge branch 'ui-rf' of github.com:robhudson/django-debug-toolbar into ui-rfRob Hudson
2009-09-07Used spaceless tag to tighten up debug toolbar HTML output.Rob Hudson
2009-09-01Fixed translated string in redirect template.Rob Hudson
2009-08-28Refactored SQL panel to use datetime objects and added a visual display of ↵Rob Hudson
both duration and sequence to the SQL template.
2009-08-28Fixed sql profiling so it doesn't return a 500 if the SQL `SET PROFILING=1` ↵Rob Hudson
results in an error. Also fixed view to render the correct template.
2009-08-26Merge commit 'upstream/ui-rf'Idan Gazit
Conflicts: debug_toolbar/templates/debug_toolbar/panels/headers.html debug_toolbar/templates/debug_toolbar/panels/logger.html debug_toolbar/templates/debug_toolbar/panels/request_vars.html debug_toolbar/templates/debug_toolbar/panels/settings_vars.html debug_toolbar/templates/debug_toolbar/panels/signals.html debug_toolbar/templates/debug_toolbar/panels/sql.html debug_toolbar/templates/debug_toolbar/panels/template_source.html debug_toolbar/templates/debug_toolbar/panels/timer.html
2009-08-25merging in changes from ui-rf and fixing conflicts in templatesPercy Perez-Pinedo
2009-08-25Added toggle arrows, grey boxes for template linksIdan Gazit
2009-08-25Removed tons of invalid ".boxed" classes, renamed boxed -> scrollIdan Gazit
2009-08-24Some locale tweaks and template tweaks after merge.Rob Hudson
2009-08-24Merge locale work by Percy.Rob Hudson
2009-08-24Make panel content stylings look like Django's debug template.Rob Hudson
2009-08-21spanish version of the debug toolbar templates is mostly done'Percy Perez-Pinedo
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