]> git.ozlabs.org Git - ccan/commitdiff
web: publish See Also: for modules which supply it.
authorRusty Russell <rusty@rustcorp.com.au>
Wed, 7 Dec 2011 02:55:41 +0000 (13:25 +1030)
committerRusty Russell <rusty@rustcorp.com.au>
Wed, 7 Dec 2011 02:55:41 +0000 (13:25 +1030)
web/staticmoduleinfo.php

index ba73265696383d7b7898bf38b79b1f6dabf4a5ea..17c3454af0a40d8fbddf4188f8d3ffe6da598f1a 100644 (file)
@@ -8,6 +8,7 @@ $module=basename($module_path);
 $maintainer=extract_field('maintainer',$module_path);
 $author=extract_field('author',$module_path);
 $summary=extract_field('summary',$module_path);
+$see_also=extract_field('see_also',$module_path);
 $description=htmlize_field('description',$module_path);
 $example=extract_field('example',$module_path);
 $dependencies=htmlspecialchars(shell_exec('tools/ccan_depends --direct '.$module_path));
@@ -86,7 +87,20 @@ if ($extdepends) {
 <tr align="left" bgcolor="FFFFCC">
 <td><h3>Description: </h3> <?=$description;?> </td>
 </tr>
+
 <?php 
+if ($see_also) {
+?>
+<tr align="left" bgcolor="FFFFCC">
+<td><h3>See Also: </h3> <pre> <?php
+       foreach (preg_split("/[\s,]+/", trim($see_also)) as $see) {
+               echo '<a href="'.substr($see, 5).'.html">'.$see.'</a> ';
+        }
+?></pre></td>
+</tr>
+<?php
+}
+
 if ($example) {
 ?>
 <tr align="left" bgcolor="FFFFCC">