My wish: one public text file on the server, used to display CVS dates. If I look at this page
http://laanx.fragnetics.com/index.php?page=linux it mentions the following dates for CVS:
Cal3d Date: 2005-05-15 00:00:00
CS Date: 2006-01-04 00:00:00
CEL Date: 2006-01-04 00:00:00
PS Date: 2006-01-14 00:00:00
and lower the probably inacurate dates:
Cal3d 2005-10-06 00:00:00
Crystal Space 2005-10-06 00:00:00
CEL 2005-10-06 00:00:00
PlaneShift 2005-11-30 00:00:00
This causes confusion because for instance for cal3d, the lower date is newer, All other dates are newer in the upper table. If there is one source, a cvsbuild script like easy_planeshift could use that as a source as well. Of course it would be nice if the names left to the dates were consistent as well. An advantage for a moderator of the site is that only on one location changes have to be made.
to fetch it for the easy_updatescript (in linux) we could do a:
wget [URL]http://laanx.fragnetics.com/path/to/cvsdates[/URL] -O buildlist.cfgIf you want to display it on a site you could use something like:
$cvsfile = \"http://laanx.fragnetics.com/path/to/cvsdates\";
$file = fopen ( $cvsfile, \"r\" );
if (!$file) {
echo \"Unable to read $cvsfile.
\";
exit;
}
while (!feof ($file)) {
$line = fgets ($file, 256);
echo \"$line
\"
}
fclose($file);
?>