summaryrefslogtreecommitdiffstats
path: root/make-recipes.sh
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-04-25 18:28:24 +0100
committerRichard Jones <rjones@redhat.com>2009-04-25 18:28:24 +0100
commitb6d5c9e646d0aa18699a88d02ed9205380553b65 (patch)
tree968f654f1efcfaf21d32b09ead0bfe570c050b66 /make-recipes.sh
parenta057a058e72d0949db4140e9a03b7a0e5b3c823c (diff)
downloadlibguestfs-b6d5c9e646d0aa18699a88d02ed9205380553b65.tar.gz
libguestfs-b6d5c9e646d0aa18699a88d02ed9205380553b65.tar.xz
libguestfs-b6d5c9e646d0aa18699a88d02ed9205380553b65.zip
Better generation of recipes page.
Diffstat (limited to 'make-recipes.sh')
-rwxr-xr-xmake-recipes.sh73
1 files changed, 73 insertions, 0 deletions
diff --git a/make-recipes.sh b/make-recipes.sh
new file mode 100755
index 00000000..2220beed
--- /dev/null
+++ b/make-recipes.sh
@@ -0,0 +1,73 @@
+#!/bin/sh -
+# libguestfs
+# Copyright (C) 2009 Red Hat Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+cat <<EOF
+<html>
+ <head>
+ <title>guestfish recipes</title>
+ <link rel="stylesheet" href="recipes.css" type="text/css" title="Standard"/>
+ </head>
+ <body>
+ <h1>guestfish recipes</h1>
+ <p>You can also find these in the
+ <a href="http://git.et.redhat.com/?p=libguestfs.git;a=tree;f=recipes;hb=HEAD"><code>recipes/</code>
+ subdirectory</a> of the source.
+
+ <h2>Table of recipes</h2>
+ <ul>
+EOF
+
+for f in recipes/*.sh; do
+ b=`basename $f .sh`
+ echo -n ' <li> <a href="#'$b'">'$b.sh
+ if [ -r recipes/$b.title ]; then
+ echo -n ': '
+ cat recipes/$b.title
+ fi
+ echo '</a> </li>'
+done
+echo ' </ul>'
+echo
+echo
+
+for f in recipes/*.sh; do
+ b=`basename $f .sh`
+ echo -n '<a name="'$b'"></a>'
+ echo -n '<h2>'$b'.sh'
+ if [ -r recipes/$b.title ]; then
+ echo -n ': '
+ cat recipes/$b.title
+ fi
+ echo -n '<small style="font-size: 8pt; margin-left: 2em;"><a href="#'$b'">permalink</a></small>'
+ echo '</h2>'
+ if [ -r recipes/$b.html ]; then
+ cat recipes/$b.html
+ fi
+ echo '<h3>'$b'.sh</h3>'
+ echo '<pre class="example">'
+ sed -e 's,&,\&amp;,g' -e 's,<,\&lt;,g' -e 's,>,\&gt;,g' < $f
+ echo '</pre>'
+ if [ -r recipes/$b.example ]; then
+ echo '<h3>Example output</h3>'
+ echo '<pre>'
+ sed -e 's,&,\&amp;,g' -e 's,<,\&lt;,g' -e 's,>,\&gt;,g' < recipes/$b.example
+ echo '</pre>'
+ fi
+done
+
+echo '</body></html>'