- resulting html pages are valid html 4.01 transitionnal

This commit is contained in:
Jonathan Ernst
2004-12-12 22:36:31 +00:00
committed by WineHQ
parent e5a9965670
commit 5f66266055
5 changed files with 30 additions and 28 deletions

View File

@@ -31,23 +31,23 @@ function display_index ()
$d = opendir($help_path);
while($entry = readdir($d))
{
array_push($files, $entry);
array_push($files, $entry);
}
closedir($d);
//sort dir
// sort dir
sort($files);
// display dir
while (list($key,$file) = each($files))
{
if(!ereg("(.+)\\.help$", $file, $arr))
continue;
$id = $arr[1];
$title = get_help_title("$help_path/$file");
echo " <li> <a href='".$apidb_root."help?topic=$id'> $title </a> </li><p>\n";
continue;
$id = $arr[1];
$title = get_help_title("$help_path/$file");
echo " <li> <a href='".$apidb_root."help?topic=$id'> $title </a><p /></li>\n";
}
echo "</ul><hr noshade>\n";