Parent Directory
|
Revision Log
publishing tutorials and conventions
<!-- ###### Body Text ###### -->
<!-- gewoon voor commit -->
<?
include_once("publish.php")
?>
<div id="bodyText">
<h1 id="documents">Documents</h1>
<table>
<tr>
<th width="120" align="center">Name</th>
<th width="80" align="center">PS</th>
<th width="80" align="center">PDF</th>
<th width="80" align="center">HTML</th>
<th width="80" align="center">ASCII</th>
<th width="80" align="center">TEX</th>
</tr>
<?
foreach($documents as $doc => $name){
if($unpublish_docs[$doc] == true){
unavailable($name, $doc);
} else {
reportrow($doc_prefix, $name, $doc, $separate_dir);
}
}
?>
</table>
<h1 id="conventions">Conventions</h1>
<table>
<tr>
<th width="120" align="center">Name</th>
<th width="80" align="center">PS</th>
<th width="80" align="center">PDF</th>
<th width="80" align="center">HTML</th>
<th width="80" align="center">ASCII</th>
<th width="80" align="center">TEX</th>
</tr>
<?
foreach($conventions as $conv => $name){
if($unpublish_conv[$conv] == true){
unavailable($name, $conv);
} else {
reportrow($conv_prefix, $name, $conv, $separate_dir);
}
}
?>
</table>
<h1 id="tutorials">Tutorials</h1>
<table>
<tr>
<th width="120" align="center">Name</th>
<th width="80" align="center">PS</th>
<th width="80" align="center">PDF</th>
<th width="80" align="center">HTML</th>
<th width="80" align="center">ASCII</th>
<th width="80" align="center">TEX</th>
</tr>
<?
foreach($tutorials as $tut => $name){
if($unpublish_tut[$tut] == true){
unavailable($name, $tut);
} else {
reportrow($tut_prefix, $name, $tut, $separate_dir);
}
}
?>
</table>
<h1 id="Standards">Standards</h1>
<table>
<tr>
<th width="120" align="center">Name</th>
<th width="80" align="center">PDF</th>
</tr>
<?
$standards=array("scmp" => "ieee_scmp", "sdd" => "ieee_sdd", "spmp" => "ieee_spmp", "sqap" => "ieee_sqap", "srs"=> "ieee_srs", "std" => "ieee_std");
foreach($standards as $name => $file){
$link="documents/standards/" . $file . ".pdf";
echo('<tr>
<td width="120" align="center">' . $name . '</td>
<td width="80" align="center" valign="middle" height="25">
<a href="' . $link . '">
<img alt="' . $file . '.pdf" src="images/doc_available.gif" width="17" height="17" border="0">
</a>
</td></tr>');
}
?>
</table>
</div>
|
Kevin Pinte Powered by ViewVC 1.0-dev |
ViewVC Help |