Admin/components/index.php
author wenzelm
Fri, 23 Oct 2020 14:33:17 +0200
changeset 72503 05d0977ec706
child 72542 c588e0b8b8b0
permissions -rw-r--r--
index for https://isabelle.in.tum.de/components (or clones);

<html>
<body>
<h2>Components:</h2>
<table>
<tr>
<th> Name </th>
<th> &nbsp;&nbsp;&nbsp; </th>
<th> Size</th>
</tr>
<?php
 $component_pattern="/^.+\.tar\.gz$/";

 foreach (scandir(getcwd()) as $file){
   if (preg_match($component_pattern, $file)
       && is_file($file)
       && is_readable($file)) {
     print "<tr><td><a href=\"$file\">$file</a></td><td></td><td>".filesize($file)."</td></tr>\n";
  }
 }
?>
</table>
</body>
</html>