Policy list added

This commit is contained in:
root 2008-01-18 22:56:44 +00:00
parent 79129197a9
commit 62ef6a37bb

22
www/policy/index.php Normal file
View file

@ -0,0 +1,22 @@
<?php
loadem("index");
showheader(_("CAcert - Policies"));
?>
<h1>CAcert Policies</h1>
<ul>
<?php
foreach (glob("*.php") as $filename)
{
if($filename != "index.php")
{
echo "<li><a href='$filename'>$filename</a></li>\n";
}
}
?>
</ul>
</body>
</html>