2008-04-06 19:45:09 +00:00
|
|
|
<? /*
|
|
|
|
LibreSSL - CAcert web application
|
|
|
|
Copyright (C) 2004-2008 CAcert Inc.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2015-01-08 15:02:47 +00:00
|
|
|
*/
|
2008-01-18 22:56:44 +00:00
|
|
|
loadem("index");
|
|
|
|
showheader(_("CAcert - Policies"));
|
|
|
|
?>
|
|
|
|
|
|
|
|
<h1>CAcert Policies</h1>
|
|
|
|
<ul>
|
|
|
|
<?php
|
|
|
|
|
2015-01-08 15:02:47 +00:00
|
|
|
foreach (glob("*.html") as $filename)
|
2011-07-27 10:41:01 +00:00
|
|
|
{
|
2015-01-08 15:02:47 +00:00
|
|
|
if($filename != "NRPDisclaimerAndLicence.html"){
|
|
|
|
echo "<li><a href='".htmlspecialchars($filename)."'>".htmlspecialchars($filename)."</a></li>\n";
|
|
|
|
}
|
2008-01-18 22:56:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
</ul>
|
|
|
|
</body>
|
|
|
|
</html>
|