<?php
include("pslib.php");
include("header.php");
?>
<?php
if(isset($_REQUEST["manpage"])) {
output_manpage_content($_REQUEST["manpage"]);
} else {
?>
<h2>Documentation</h2>
Documentation is currently rather scarce. There is just a first
trial for an overall
document describing the philosophie of pslib. For now study the
examples or read the man pages which are available for each
function of the API. Users of
<a href="http://www.pdflib.com">pdflib™</a> should be familiar
with the API since pdflib's and pslib's API are much alike.
<h3>Manual page for pslib</h3>
<?php
output_manpage("pslib");
?>
</p>
<h2>Manual pages for each function</h2>
<p>The date after the name is the date of last modification.</p>
<p>
<?php
output_manpage_list();
?>
</p>
<?php
}
?>
<?php
include("footer.php");
?>