appliance: Ignore unreadable dbus helper programs.
[libguestfs.git] / make-recipes.sh
1 #!/bin/sh -
2 # libguestfs
3 # Copyright (C) 2009 Red Hat Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 cat <<EOF
20 <html>
21   <head>
22     <title>guestfish recipes</title>
23     <link rel="stylesheet" href="recipes.css" type="text/css" title="Standard"/>
24   </head>
25   <body>
26     <h1>guestfish recipes</h1>
27     <p>You can also find these in the
28     <a href="http://git.annexia.org/?p=libguestfs.git;a=tree;f=recipes;hb=HEAD"><code>recipes/</code>
29     subdirectory</a> of the source.</p>
30
31     <p>
32     <a href="http://libguestfs.org/download/">Download
33     libguestfs and guestfish here</a> or
34     <a href="http://libguestfs.org/">go to the
35     libguestfs home page</a>.
36     </p>
37
38     <h2>Table of recipes</h2>
39     <ul>
40 EOF
41
42 for f in recipes/*.sh; do
43     b=`basename $f .sh`
44     echo -n '    <li> <a href="#'$b'">'$b.sh
45     if [ -r recipes/$b.title ]; then
46         echo -n ': '
47         cat recipes/$b.title
48     fi
49     echo '</a> </li>'
50 done
51 echo '    </ul>'
52 echo
53 echo
54
55 for f in recipes/*.sh; do
56     b=`basename $f .sh`
57     echo -n '<a name="'$b'"></a>'
58     echo -n '<h2>'$b'.sh'
59     if [ -r recipes/$b.title ]; then
60         echo -n ': '
61         cat recipes/$b.title
62     fi
63     echo -n '<small style="font-size: 8pt; margin-left: 2em;"><a href="#'$b'">permalink</a></small>'
64     echo '</h2>'
65     if [ -r recipes/$b.html ]; then
66         cat recipes/$b.html
67     fi
68     echo '<h3>'$b'.sh</h3>'
69     echo '<pre class="example">'
70     sed -e 's,&,\&amp;,g' -e 's,<,\&lt;,g' -e 's,>,\&gt;,g' < $f
71     echo '</pre>'
72     if [ -r recipes/$b.example ]; then
73         echo '<h3>Example output</h3>'
74         echo '<pre>'
75         sed -e 's,&,\&amp;,g' -e 's,<,\&lt;,g' -e 's,>,\&gt;,g' < recipes/$b.example
76         echo '</pre>'
77     fi
78 done
79
80 echo '</body></html>'