Metanet Sourcecode repository
This site has various bits of code, mostly written by Perry Lorier
to release into the wild. It's a test ground for various projects,
so individual projects may or may not be complete and may not be
useful. They may be concepts, ideas, or just skeletons of projects.
Unless explicitly stated otherwise, all projects here are released
under the GPL.
$acl=array(
"omr" => "private",
);
$d=opendir("/virtual/http/source.meta.net.nz/svn");
while(($f=readdir($d))!==FALSE) {
if (substr($f,0,1)==".")
continue;
if ($acl[$f]=="private")
continue;
?>
-
if (file_exists("$f/report.html")) { ?>
(Report)
} ?>
if (file_exists("$f.rss")) { ?>
(RSS)
} ?>
if (file_exists("$f/doxygen/html/index.html")) { ?>
(Doxygen)
} ?>
}
closedir($d);
?>
Admin