3 # Autogenerate http://nat.org/beagle-fixmes.php3
6 BEAGLE_DIR
=/home
/nat
/cvs
/beagle
7 URL_PREFIX
="http://cvs.gnome.org/viewcvs/beagle/"
8 EXCLUDE_LIST
="fixme.sh\|ltmain.sh"
14 echo " \$title = \"beagle FIXMEs\";"
15 echo " include (\"path.php3\");"
16 echo " nat_inc (\"nat-header.php3\");"
19 echo "<table border=0 align=left width=100%><tr><td>"
20 echo "<h3>Automatically generated at $timestamp.</h3>"
24 find . |
grep "\(\.\(c\|h\|cs\|txt\|sh\)\|Makefile.am\)$" |
xargs grep -n FIXME |
grep -v $EXCLUDE_LIST |
sed "s/\.\///g" |
(
29 if [ "x$fixme" = "x" ]
34 path
=`echo "$fixme" |cut -d: -f 1`
35 line
=`echo "$fixme" |cut -d: -f 2`
36 rest
=`echo "$fixme" |cut -d: -f 3-`
38 url
="$URL_PREFIX/$path?view=markup#$line"
40 echo "<a href=\"$url\">$path:$line</a> $rest<br>"
46 echo "</td></tr></table>"
48 echo " nat_inc (\"nat-plain-footer.php3\");"