Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 781 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,20 @@
function toggle (name)
{
var element = document.getElementById (name);
if (element.style.display == 'none')
element.style.display = '';
else
element.style.display = 'none';
}
function highlight (element)
{
element.style.background = "#eee";
}
function unhighlight (element)
{
element.style.background = "none";
}

View File

@@ -0,0 +1,85 @@
body
{
font-family: Arial, Helvetica, sans-serif;
margin-top: 0px;
margin-right: 0px;
margin-left: 0px
}
.header
{
font-weight: bolder;
background-image: url(backbar.png);
vertical-align: middle;
color: #ffffff;
background-repeat: repeat-x;
height: 50px
}
.headerimage
{
margin-left: 5px;
float: left
}
.headertext
{
float: left;
margin-left: 15px;
width: auto;
margin-right: 15px;
padding-top: 15px;
height: 35px
}
.legend
{
border: #d7ce28 1px solid;
padding: 10px;
margin-top: 15px;
margin-right: 15px;
font-size: small;
float: right;
width: 150px;
height: 136px;
background-color: #ffffcc
}
.maintable
{
margin-top: 20px;
margin-right: 20px;
margin-left: 20px;
font-size: 9pt;
width: 740px;
height: 1px;
}
.tableheader
{
font-weight: bold;
color: white;
background-color: #455372;
}
.errorrow
{
cursor: pointer;
}
.errorlist
{
cursor: pointer;
}
.errordetail
{
cursor: default;
font-family: Consolas, Courier New, Monospace;
}
.tabletotal
{
font-weight: bold;
border-top: 1px Black;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 666 B