Zombie ChangeLog
This is the ChangeLog for Zombie. It is updated when needed and always
reflects the ChangeLog in the CVS version.
// read the entire file
$Data = file ( "ChangeLog" );
// loop over all lines in the file
for ($Index=0; $Index < count ( $Data ); $Index++ ) {
// is it a date line?
if ( ereg ( "([0-9]{4}-[0-9]{2}-[0-9]{2})[ \t]+([^<]+)<([^>]+)>", $Data[$Index], $Matches ) ) {
// it's a date
print "";
print $Matches[1] . " " . $Matches[2] . "\n";
print "
";
}
else if ( ereg ( "^[ \t]*\$", $Data[$Index] ) ) {
// empty line, ignore
}
else if ( ereg ( "^[ \t]+\*(.*)", $Data[$Index], $Matches ) ) {
print $Matches[1];
}
else {
print $Data[$Index] . "\n";
}
}
?>
Generated: March 11 2010 06:29:10.