Subversion-Projekte lars-tiefland.cakephp

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/* SVN FILE: $Id: header.php 7945 2008-12-19 02:16:01Z gwoo $ */
3
/**
4
 * Short description for file.
5
 *
6
 * Long description for file
7
 *
8
 * PHP versions 4 and 5
9
 *
10
 * CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
11
 * Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
12
 *
13
 *  Licensed under The Open Group Test Suite License
14
 *  Redistributions of files must retain the above copyright notice.
15
 *
16
 * @filesource
17
 * @copyright     Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
18
 * @link          https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
19
 * @package       cake
20
 * @subpackage    cake.cake.tests.lib
21
 * @since         CakePHP(tm) v 1.2.0.4433
22
 * @version       $Revision: 7945 $
23
 * @modifiedby    $LastChangedBy: gwoo $
24
 * @lastmodified  $Date: 2008-12-18 18:16:01 -0800 (Thu, 18 Dec 2008) $
25
 * @license       http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
26
 */
27
?>
28
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
29
<html xmlns="http://www.w3.org/1999/xhtml">
30
	<head>
31
		<meta http-equiv='content-Type' content='text/html; <?php echo $characterSet; ?>' />
32
		<title>CakePHP Test Suite v 1.2.0.0</title>
33
		<style type="text/css">
34
			h3 {font-size: 170%; padding-top: 1em}
35
			a {font-size: 120%}
36
			li {line-height: 140%}
37
			.test-menu {float:left; margin-right: 24px;}
38
			.test-results {float:left; width: 67%;}
39
			ul.tests {margin: 0; font-size:12px;}
40
			ul.tests li {
41
				list-style: none;
42
				margin: 14px 0;
43
				padding-left: 20px;
44
			}
45
			ul.tests li span {
46
				font-size:14px;
47
				text-transform: uppercase;
48
				font-weight: bold;
49
			}
50
			ul.tests li.pass span, ul.tests li.skipped span { display:inline;}
51
			ul.tests li.fail span { color: red; }
52
			ul.tests li.pass span { color: green; }
53
			ul.tests li.skipped span { color: navy; }
54
			ul.tests li.error span { color : #d15d00; }
55
 
56
			ul.tests li.pass,
57
			ul.tests li.error,
58
			ul.tests li.skipped,
59
			ul.tests li.fail {
60
				background: #fff2f2 url(http://cakephp.org/img/test-fail-icon.png) 5px 5px no-repeat;
61
				border-top: 1px dotted red;
62
				border-bottom: 1px dotted red;
63
				padding:5px 10px 2px 25px;
64
			}
65
			ul.tests li.pass {
66
				background-color: #f2fff2;
67
				background-image: url(http://cakephp.org/img/test-pass-icon.png);
68
				border-color:green;
69
			}
70
			ul.tests li.skipped {
71
				background-color: #edf1ff;
72
				background-image: url(http://cakephp.org/img/test-skip-icon.png);
73
				border-color:navy;
74
			}
75
			ul.tests li.error {
76
				background-color: #ffffe5;
77
				background-image: url(http://cakephp.org/img/test-error-icon.png);
78
				border-color: #DF6300;
79
			}
80
			ul.tests li div { margin: 5px 0 8px 0; }
81
			ul.tests li div.msg { font-weight: bold; }
82
			table caption { color:#fff; }
83
 
84
			div.code-coverage-results div.code-line {
85
				padding-left:5px;
86
				display:block;
87
				margin-left:10px;
88
			}
89
			div.code-coverage-results div.uncovered span.content { background:#ecc; }
90
			div.code-coverage-results div.covered span.content { background:#cec; }
91
			div.code-coverage-results div.ignored span.content { color:#aaa; }
92
			div.code-coverage-results span.line-num {
93
				color:#666;
94
				display:block;
95
				float:left;
96
				width:20px;
97
				text-align:right;
98
				margin-right:5px;
99
			}
100
			div.code-coverage-results span.line-num strong { color:#666; }
101
			div.code-coverage-results div.start {
102
				border:1px solid #aaa;
103
				border-width:1px 1px 0px 1px;
104
				margin-top:30px;
105
				padding-top:5px;
106
			}
107
			div.code-coverage-results div.end {
108
				border:1px solid #aaa;
109
				border-width:0px 1px 1px 1px;
110
				margin-bottom:30px;
111
				padding-bottom:5px;
112
			}
113
			div.code-coverage-results div.realstart { margin-top:0px; }
114
			div.code-coverage-results p.note {
115
				color:#bbb;
116
				padding:5px;
117
				margin:5px 0 10px;
118
				font-size:10px;
119
			}
120
			div.code-coverage-results span.result-bad { color: #a00; }
121
			div.code-coverage-results span.result-ok { color: #fa0; }
122
			div.code-coverage-results span.result-good { color: #0a0; }
123
		</style>
124
		<link rel="stylesheet" type="text/css" href="<?php echo $baseUrl; ?>css/cake.generic.css" />
125
	</head>
126
	<body>
127
		<div id="container">
128
			<div id="header">
129
				<h1>CakePHP: the rapid development php framework</h1>
130
			</div>
131
			<div id="content">
132
			<h2>CakePHP Test Suite v 1.2.0.0</h2>