1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
<?php
# Copyright (C) 2008 Neil Williams <codehelp@debian.org>
#
# This package is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# A few notes:
# 1. The script currently assumes /var/www
# 2. The term 'script' is a gross exaggeration.
if (is_file ("/var/www/toolchains/emdebian.php"))
{
include_once "/var/www/toolchains/emdebian.php";
emheader();
}
?>
<style type="text/css">
a:visited {
color: #3030ff;
text-decoration: none;
}
a:link {
color: #3030ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* data table */
.data {
border-collapse: collapse;
border: 1px solid #999999;
font-size: 90%;
margin: 1em 0em 1em 0em;
}
table.data th.title {
background: #fffff1;
border: 1px solid #999999;
color: #333333;
font-weight: bold;
font-size: 120%;
padding: 0.5em 1em 0.5em 1em;
white-space: nowrap;
}
.data th {
background: #ffffcc;
border: 1px solid #999999;
font-weight: bold;
color: #545325;
padding: 0em 0.2em 0em 0.2em;
}
.data td {
border: 1px solid #999999;
padding: 0.1em 0.5em;
text-align: left;
vertical-align: top;
}
.data tr.odd {
background: #f9f9f1;
}
.data td.crit {
background: #c15757;
}
.data td.warn {
background: #cfcf00;
}
.data td.good {
background: #00ff00;
}
.data tr.even {
background: #ffffff;
}
.data tr:hover { background: #f4f4f4; }
</style>
<h1 style="position:absolute;top:10px;left:350px;font-family:sans-serif;">
Packages</h1>
<h2>Target package status compared to Debian unstable.</h2>
<pre><?php
include_once "targetcompare";
?></pre>
<div style="clear: both;"> </div>
<p>The target comparison data comes from <tt>emtargetcmp</tt>, part of <a
href="http://packages.qa.debian.org/e/emdebian-tools.html">emdebian-tools</a>.
</p>
<p><a href="index.php">Back to report</a>.</p>
<?php
if (is_file ("/var/www/toolchains/emdebian.php"))
{
footer();
}
?>
|