mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-24 05:01:23 +00:00
Progress meter is now both lynx- and w3m- friendly.
This commit is contained in:
parent
270c1da97b
commit
c387611169
1 changed files with 6 additions and 6 deletions
|
@ -29,22 +29,22 @@
|
|||
$result .= '<TR><TD align="right">' . $name . '</TD><TD> </TD><TD align="center">';
|
||||
$result .= '<IMG src="/img/blank.gif" height="1" width="1" alt="' . $pct . '% Complete">';
|
||||
for ( ; $i >= 20 ; $i -= 20 ) {
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.20.white.gif" alt="">';
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.20.white.gif" alt=" ">';
|
||||
}
|
||||
for ( ; $i >= 10 ; $i -= 10 ) {
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.10.white.gif" alt="">';
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.10.white.gif" alt=" ">';
|
||||
}
|
||||
for ( ; $i >= 2 ; $i -= 2 ) {
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.2.white.gif" alt="">';
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.2.white.gif" alt=" ">';
|
||||
}
|
||||
for ( ; $j >= 20 ; $j -= 20 ) {
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.20.gray.gif" alt="">';
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.20.gray.gif" alt=" ">';
|
||||
}
|
||||
for ( ; $j >= 10 ; $j -= 10 ) {
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.10.gray.gif" alt="">';
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.10.gray.gif" alt=" ">';
|
||||
}
|
||||
for ( ; $j >= 2 ; $j -= 2 ) {
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.2.gray.gif" alt="">';
|
||||
$result .= '<IMG src="/img/graph/ProgressBar.2.gray.gif" alt=" ">';
|
||||
}
|
||||
$result .= '</TD><TD> </TD><TD align="left" >' . $comments . '</TD></TR>';
|
||||
echo $result;
|
||||
|
|
Loading…
Reference in a new issue