Skip to content

Commit 8cb8aba

Browse files
committed
Merge branch 'release/0.8.4'
2 parents ee18112 + ecfff96 commit 8cb8aba

File tree

16 files changed

+59
-17
lines changed

16 files changed

+59
-17
lines changed

NEWS

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
News for django-debug-toolbar
2+
=============================
3+
4+
0.8.4 (2010 Nov 8)
5+
------------------
6+
7+
* Added print style to hide the toolbar (issue 90)
8+
9+
* Fixed "Badly formatted SQL query plan" (issue 86)
10+
11+
* Fixed "SQL not selectable due to line chart" (issue 85)
12+
13+
* Fixed "Redirect page does not set cookie" (issue 6)
14+
15+
* Fixed template block inheritance bug (issues 77 and 97).
16+
17+
* Fixed flash of unstyled toolbar.
18+
19+
* Updated to work with old TEMPLATE_LOADERS settings from < 1.2.
20+
21+
* Updated to stop template loader iteration when template is found.
22+
23+
24+
(Note: NEWS was started after the 0.8.3 release and is not complete)
25+

debug_toolbar/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION = (0, 8, 3)
1+
VERSION = (0, 8, 4)
22
__version__ = '.'.join(map(str, VERSION))

debug_toolbar/media/debug_toolbar/css/toolbar.css

+7-2
Original file line numberDiff line numberDiff line change
@@ -357,8 +357,13 @@
357357
text-align: left;
358358
}
359359

360+
#djDebug .djSqlExplain td {
361+
white-space: pre;
362+
}
363+
360364
#djDebug span.djDebugLineChart {
361-
border-top:3px solid #777;
365+
background-color:#777;
366+
height:3px;
362367
position:absolute;
363368
bottom:0;
364369
top:0;
@@ -367,7 +372,7 @@
367372
z-index:1000000001;
368373
}
369374
#djDebug span.djDebugLineChartWarning {
370-
border-top-color:#900;
375+
background-color:#900;
371376
}
372377

373378
#djDebug .highlight { color:#000; }

debug_toolbar/media/debug_toolbar/css/toolbar.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

debug_toolbar/media/debug_toolbar/js/toolbar.js

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
var COOKIE_NAME = 'djdt';
2121
var djdt = {
2222
init: function() {
23+
$('#djDebug').show();
2324
var current = null;
2425
$('#djDebugPanelList li a').click(function() {
2526
if (!this.className) {

0 commit comments

Comments
 (0)