Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch fix-ie8 Excluding Merge-Ins
This is equivalent to a diff from c06e296b40 to ef5e74961a
|
2013-08-16
| ||
| 08:17 | Fix display of timeline graph in IE8, broken by commit [e412f97999] check-in: 5885241f52 user: jan.nijtmans tags: trunk | |
| 07:28 | Fix display of timeline graph in IE8, broken by commit [e412f97999] Closed-Leaf check-in: ef5e74961a user: jan.nijtmans tags: fix-ie8 | |
| 03:25 | Merge in all new development from trunk. check-in: 535cba9158 user: andybradford tags: ssh-test-http | |
| 00:47 | Use two arguments to getComputedStyle() for compatibility with very old versions of Firefox. Allow setting graph node background colors using "#canvas{ background-color: COLOR; }". check-in: c06e296b40 user: drh tags: trunk | |
|
2013-08-15
| ||
| 22:45 | Update the built-in SQLite to the latest 3.8.0 beta with the ORDER BY and GROUP BY name resolution fixes, in order to test SQLite. check-in: b67b42fea8 user: drh tags: trunk | |
Changes to src/timeline.c.
| ︙ | ︙ | |||
647 648 649 650 651 652 653 |
}
if( cSep=='[' ) cgi_printf("[");
cgi_printf("],h:\"%s\"}%s", pRow->zUuid, pRow->pNext ? ",\n" : "];\n");
}
cgi_printf("var nrail = %d\n", pGraph->mxRail+1);
graph_free(pGraph);
@ var canvasDiv = gebi("canvas");
| | | | | 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 |
}
if( cSep=='[' ) cgi_printf("[");
cgi_printf("],h:\"%s\"}%s", pRow->zUuid, pRow->pNext ? ",\n" : "];\n");
}
cgi_printf("var nrail = %d\n", pGraph->mxRail+1);
graph_free(pGraph);
@ var canvasDiv = gebi("canvas");
@ var canvasStyle = window.getComputedStyle && window.getComputedStyle(canvasDiv,null);
@ var lineColor = (canvasStyle && window.getComputedStyle(canvasDiv,null).getPropertyValue('color')) || 'black';
@ var bgColor = (canvasStyle && canvasStyle.getPropertyValue('background-color')) || 'white';
@ if( bgColor=='transparent' ) bgColor = 'white';
@ var boxColor = lineColor;
@ function drawBox(color,x0,y0,x1,y1){
@ var n = document.createElement("div");
@ if( x0>x1 ){ var t=x0; x0=x1; x1=t; }
@ if( y0>y1 ){ var t=y0; y0=y1; y1=t; }
@ var w = x1-x0+1;
|
| ︙ | ︙ |