| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- session_start();
- include('logo.html');
- include('menulist.html');
- include('static-configuration');
- $module=$argv[1];
- $maintainer=extract_field('maintainer',$module);
- $author=extract_field('author',$module);
- $summary=extract_field('summary',$module);
- $description=htmlize_field('description',$module);
- $example=extract_field('example',$module);
- $dependencies=htmlspecialchars(shell_exec('tools/ccan_depends --direct '.$module));
- $licence=extract_field('licence',$module);
- ?>
- <table align="center" bgcolor="lightblue" width="70%" border="0" cellpadding="3" cellspacing="1">
- <tr align="center" bgcolor="FFFFCC">
- <td>
- <a href="<?=$repo_base.$module?>">Browse Source</a>
- </td>
- <td>
- <a href="../<?=$tar_dir?>/with-deps/<?=basename($module)?>.tar.bz2">Download</a>
- <a href="../<?=$tar_dir?>/<?=basename($module)?>.tar.bz2">(without any required ccan dependencies)</a>
- </tr>
- </table>
- <p>
- </p>
- <table align="center" bgcolor="lightblue" width="70%" border="0" cellpadding="8" cellspacing="1">
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Module: </h3> <?=$module?> </td>
- </tr>
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Summary: </h3> <?=$summary?></td>
- </tr>
- <?php
- if ($maintainer) {
- ?>
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Maintainer: </h3> <?=$maintainer?></td>
- </tr>
- <?php
- }
- if ($author) {
- ?>
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Author: </h3> <?=$author?></td>
- </tr>
- <?php
- }
- if ($dependencies) {
- ?>
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Dependencies: </h3> <pre> <?php
- foreach (preg_split("/\s+/", $dependencies) as $dep) {
- echo '<a href="'.substr($dep, 5).'.html">'.$dep.'</a> ';
- }
- ?></pre></td>
- </tr>
- <?php
- }
- ?>
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Description: </h3> <?=$description;?> </td>
- </tr>
- <?php
- if ($example) {
- ?>
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Example: </h3> <pre><?=$example?></pre></td>
- </tr>
- <?php
- }
- if ($licence) {
- ?>
- <tr align="left" bgcolor="FFFFCC">
- <td><h3>Licence: </h3> <?=$licence?></td>
- </tr>
- <?php
- }
- ?>
- </table><hr>
- </body></html>
|