]> git.ozlabs.org Git - ccan/blobdiff - web/dispmoduleinfo.php
web: clean up directory
[ccan] / web / dispmoduleinfo.php
diff --git a/web/dispmoduleinfo.php b/web/dispmoduleinfo.php
deleted file mode 100644 (file)
index 3906d3c..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-session_start();
-include('logo.html');
-include('menulist.html');
-include('configuration');
-include('search.html');
-$handle = sqlite3_open($db) or die("Could not open database");
-$query = "select * from search where module=\"".$_GET['module']."\"";
-$result = sqlite3_query($handle, $query) or die("Error in query: ".sqlite3_error($handle));
-$row = sqlite3_fetch_array($result);
-?>
-<table align="center" bgcolor="lightblue" width="70%" border="0" cellpadding="3" cellspacing="1">
-<tr align="center" bgcolor="FFFFCC">
-<td width="50%">
-       <?php 
-               if(file_exists($tar_dir . $_GET['module'].".tar"))
-                       echo '<a href='. $tar_dir . $_GET['module'] . '.tar>Download</a>';
-       ?>
-<td>
-       <?php 
-               if(file_exists($tar_dir . $_GET['module']."_with_deps.tar"))
-                       echo '<a href='. $tar_dir . $_GET['module'] . '_with_deps.tar>Download Dependencies</a>';
-       ?>
-</td>
-</tr>
-</table>
-<table align="center" bgcolor="lightblue" width="70%" border="0" cellpadding="8" cellspacing="1">
-<tr align="left" bgcolor="FFFFCC">
-<td><h3>Module: </h3> <pre><?=$row['module'];?></pre> </td>
-</tr>
-
-<tr align="left" bgcolor="FFFFCC">
-<td><h3>Title: </h3> <pre><?=$row['title'];?> </pre></td>
-</tr>
-               
-<tr align="left" bgcolor="FFFFCC"> 
-<td><h3>Author: </h3> <pre><a href=search.php?author=<?=$row['author'];?>><?=$row['author'];?></a></pre></td>
-</tr>
-
-<tr align="left" bgcolor="FFFFCC">
-<td><h3>Dependencies: </h3> <pre><?=$row['depends'];?></pre></td>
-</tr>
-
-<tr align="left" bgcolor="FFFFCC">
-<td><h3>Description: </h3> <pre><?=$row['desc'];?></pre></td>
-</tr>
-</table><hr>
-
-<?php 
-function checkerror($status, $msg)
-{
-       if($status != 0) {
-                   echo "<div align=\"center\">" . $msg . "Contact ccan admin. </div>";
-                   exit();
-       }
-} 
-?>