8005e491d5
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@3048 127b21dd-08f5-0310-b4b7-95ae10353056
29 lines
561 B
PHP
29 lines
561 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<title>Oolite nightly (Mac OS X)</title>
|
|
</head>
|
|
<body>
|
|
|
|
<p>
|
|
<?php
|
|
$latest_name = rtrim(file_get_contents("latest"));
|
|
$latest_date = rtrim(file_get_contents("last_updated"));
|
|
|
|
print "<a href=\"$latest_name\">$latest_name</a> ($latest_date)";
|
|
?>
|
|
</p>
|
|
|
|
<h3>Changes since last nightly</h3>
|
|
<p style="font-family: monospace">
|
|
<?php
|
|
$change_log = nl2br(htmlspecialchars(file_get_contents("change_log")));
|
|
|
|
print $change_log;
|
|
?>
|
|
</p>
|
|
|
|
</body>
|
|
</html>
|