*** empty log message ***

svn path=/trunk/boinc/; revision=3361
This commit is contained in:
David Anderson 2004-05-07 22:17:34 +00:00
parent 32c347fcf0
commit 805f010ba1
1 changed files with 15 additions and 3 deletions

View File

@ -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>
";
}
?> ?>