mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=3361
This commit is contained in:
parent
32c347fcf0
commit
805f010ba1
|
@ -125,9 +125,13 @@ function write_fd($fd, $str) {
|
||||||
function page_head($title, $user=null, $fd=null) {
|
function page_head($title, $user=null, $fd=null) {
|
||||||
$styleSheet = URL_BASE . STYLESHEET;
|
$styleSheet = URL_BASE . STYLESHEET;
|
||||||
|
|
||||||
write_fd($fd, "<html><head><title>$title</title>\n");
|
write_fd($fd,
|
||||||
write_fd($fd, "<link rel=stylesheet type=text/css href=\"$styleSheet\">");
|
"<html><head><title>$title</title>
|
||||||
write_fd($fd, "</head>\n<body bgcolor=ffffff>\n");
|
<link rel=stylesheet type=text/css href=\"$styleSheet\">
|
||||||
|
</head>
|
||||||
|
<body bgcolor=ffffff>
|
||||||
|
"
|
||||||
|
);
|
||||||
project_banner($user, $fd);
|
project_banner($user, $fd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -447,4 +451,12 @@ function host_link($hostid) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function news_item($date, $text) {
|
||||||
|
echo "<b>$date</b>
|
||||||
|
<br>
|
||||||
|
$text
|
||||||
|
<br><br>
|
||||||
|
";
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue