You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
mxml/www/documentation.php

200 lines
3.7 KiB

<?php
//
// "$Id$"
//
// Mini-XML documentation page...
//
//
// Include necessary headers...
//
include_once "phplib/html.php";
include_once "phplib/common.php";
//
// Get the web server path information and serve the named file as needed...
//
if (array_key_exists("PATH_INFO", $_SERVER) &&
$_SERVER["PATH_INFO"] != "/" &&
$_SERVER["PATH_INFO"] != "")
{
$path = "$_SERVER[PATH_INFO]";
if (fnmatch("*.gif", $path))
$type = "gif";
else if (fnmatch("*.jpg", $path))
$type = "jpeg";
else if (fnmatch("*.png", $path))
$type = "png";
else
$type = "html";
if (strstr($path, ".."))
{
if ($type == "html")
{
html_header("Documentation Error", "../");
print("<h1>Documentation Error</h1>\n"
."<p>The path '$path' is bad.</p>\n");
html_footer("../");
}
}
else
{
$fp = fopen("docfiles$path", "rb");
if (!$fp)
{
if ($type == "html")
{
html_header("Documentation Error", "../");
print("<h1>Documentation Error</h1>\n"
."<p>Unable to open path '$path'.</p>\n");
html_footer("../");
}
}
else if ($type == "html")
{
html_header("Documentation", "../");
$saw_body = 0;
$last_nav = 0;
while ($line = fgets($fp, 1024))
{
if (strstr($line, "<BODY"))
{
$saw_body = 1;
}
else if (strstr($line, "</BODY>"))
{
break;
}
else if ($saw_body)
{
if (strstr($line, ">Contents</A") ||
strstr($line, ">Previous</A>") ||
strstr($line, ">Next</A>"))
{
if ($last_nav)
print("|\n");
else
print("[ <A HREF='#_USER_COMMENTS'>Comments</a></li> |\n");
$last_nav = 1;
}
else if (strstr($line, "<HR"))
{
if ($last_nav)
print("]\n");
$last_nav = 0;
}
print($line);
}
}
fclose($fp);
if ($last_nav)
print("]\n");
print("<hr noshade/>\n"
."<h2><a name='_USER_COMMENTS'>User Comments</a> [&nbsp;"
."<a href='../comment.php?r0+pdocumentation.php$path'>Add&nbsp;Comment</a>"
."&nbsp;]</h2>\n");
$num_comments = show_comments("documentation.php$path", "../");
if ($num_comments == 0)
print("<p>No comments for this page.</p>\n");
html_footer("../");
}
else
{
header("Content-Type: image/$type");
print(fread($fp, filesize("docfiles$path")));
fclose($fp);
}
}
}
else
{
html_header("Documentation");
?>
<h1>Documentation</h1>
<p>You can view the Mini-XML documentation in a number of
formats on-line:</p>
<ul>
<li><a href='documentation.php/toc.html'>HTML in
separate files with Comments</a>
<ul>
<li><a
href='documentation.php/Introduction.html'>Introduction</a></li>
<li><a
href='documentation.php/1BuildingInstallingandPackagingMiniXML.html'>1
- Building, Installing, and Packaging
Mini-XML</a></li>
<li><a
href='documentation.php/2GettingStartedwithMiniXML.html'>2
- Getting Started with Mini-XML</a></li>
<li><a
href='documentation.php/3MoreMiniXMLProgrammingTechniques.html'>3
- More Mini-XML Programming Techniques</a></li>
<li><a
href='documentation.php/4UsingthemxmldocUtility.html'>4
- Using the mxmldoc Utility</a></li>
<li><a
href='documentation.php/AGNULibraryGeneralPublicLicense.html'>A
- GNU Library General Public License</a></li>
<li><a
href='documentation.php/BReleaseNotes.html'>B -
Release Notes</a></li>
<li><a
href='documentation.php/CLibraryReference.html'>C
- Library Reference</a></li>
</ul></li>
<li><a href='mxml.html'>HTML in one file (140k)</a></li>
<li><a href='mxml.pdf'>PDF (108 pages, 202k)</a></li>
<li><a href='mxml.ps.gz'>PostScript (108 pages, gzip'd,
61k)</a></li>
</ul>
<?php
html_footer();
}
//
// End of "$Id$".
//
?>