#!/bin/bash
#Copyright 2002 William Stearns <wstearns@pobox.com>
#Released under the GPL.

POMListVer='0.1.2'
echo pomlist \(Patch-o-matic\) file lister, version $POMListVer. >>/dev/stderr

fail () {
	echo "$* Exiting." >>/dev/stderr
	exit 1
}

usage () {
	echo 'pomlist, the patch-o-matic file html formatter, version '$POMListVer' .' >>/dev/stderr
	echo 'Usage: ' >>/dev/stderr
	echo '  pomlist [/path/to/p-o-m/directory] [fullpage] [http://baseurl/for/browsing]' >>/dev/stderr
	echo >>/dev/stderr
	echo 'The p-o-m directory is the directory containing "runme"' >>/dev/stderr
	echo 'If missing, it defaults to the current directory ' >>/dev/stderr
	echo '"fullpage" tells pomlist to construct the entire html page, ' >>/dev/stderr
	echo 'as opposed to the default html body text.' >>/dev/stderr
	echo 'The optional URL base is one that will be used in the hypertext ' >>/dev/stderr
	echo 'links to the actual files if specified.  Otherwise, links to the ' >>/dev/stderr
	echo 'local files will be used.' >>/dev/stderr
	echo >>/dev/stderr
	echo 'Examples: ' >>/dev/stderr
	echo '  pomlist /usr/src/iptables-1.2.6a/patch-o-matic fullpage >pom-output.html' >>/dev/stderr
	echo '  pomlist /usr/src/iptables-1.2.6a/patch-o-matic fullpage | lynx -stdin' >>/dev/stderr
	echo '  pomlist /usr/src/iptables-1.2.6a/patch-o-matic fullpage http://cvs.samba.org/cgi-bin/cvsweb/~checkout~/netfilter/userspace/patch-o-matic/ >pom-output.html' >>/dev/stderr
	echo '  pomlist /usr/src/iptables-1.2.6a/patch-o-matic fullpage file:/usr/src/iptables-1.2.6a/patch-o-matic/ >pom-output.html' >>/dev/stderr
	exit 0
}

FullParams="$0 $*"

POMDir='./'	#Default if not specified

while [ -n "$1" ]; do
	case "$1" in
	[Hh][Ee][Ll][Pp])
		usage
		;;
	[Ff][Uu][Ll][Ll][Pp][Aa][Gg][Ee])
		Fullpage="yes"
		;;
	[Hh][Tt][Tt][Pp]*|[Ff][Tt][Pp]*|[Ff][Ii][Ll][Ee]*)
		BaseURL="$1"
		;;
	*)
		POMDir="$1/"
		;;
	esac
	shift
done

#BaseURL="file:`pwd`/"
[ -n "$BaseURL" ] || BaseURL="http://cvs.samba.org/cgi-bin/cvsweb/~checkout~/netfilter/userspace/patch-o-matic/"

[ -e "$POMDir/runme" ] || fail 'Not in the patch-o-matic directory, please specify the directory that contains "runme" on the command line.'
cd $POMDir || fail 'Could not change to patch-o-matic directory'

if [ "$Fullpage" = "yes" ]; then
	cat <<EOHEADER
<html>
<head>
<title>Patch-o-matic patch listing</title>
</head>
<body>
EOHEADER
fi

echo '<!-- This was created by running: "'$FullParams'" -->'	
echo '<!-- pomlist (Patch-o-matic) file lister, version '$POMListVer'. -->'
echo '<!-- http://www.stearns.org/pomlist/ -->'
echo '<!-- For more information on netfilter, please see http://www.netfilter.org -->'

for OneDir in * ; do
	if [ -d $OneDir ] && [ "$OneDir" != "CVS" ]; then
		echo '<h2><a name="'$OneDir'">'$OneDir'</a></h2>'
		for DirLink in * ; do
			if [ -d $DirLink ] && [ "$DirLink" != "CVS" ] && [ "$DirLink" != "$OneDir" ]; then
				echo '[<a href="#'$DirLink'">'$DirLink'</a>] ' 
			fi
		done
		if [ -e "$OneDir/SUITE" ]; then
			Suite=`cat $OneDir/SUITE | sed -e "s/$OneDir//" | grep -v '^\W*$'`
			if [ -n "$Suite" ]; then
				echo '<p>'$OneDir' depends on: '$Suite'</p>'
			fi
		fi
		cd $OneDir
		if [ -f DESCRIPTION ]; then
			echo -n '	<p>'
			cat DESCRIPTION
			echo '</p>'
		fi
		echo '<dl>'
		for OnePatch in `ls *.patch.help *.patch.ipv6.help 2>/dev/null` ; do
			PatchName=`basename $OnePatch | sed -e 's/.patch.help//' -e 's/.patch.ipv6.help//'`
			echo -n '<dt><b>'$PatchName'</b> '
			for OneExt in patch patch.config.in \
			 patch.configure.help patch.help patch.ipv6 \
			 patch.ipv6.config.in patch.ipv6.configure.help \
			 patch.ipv6.help patch.ipv6.makefile patch.makefile ; do
				if [ -f $PatchName.$OneExt ]; then
					#FIXME urlbase
					echo -n '[<a href="'$BaseURL/$OneDir/$PatchName.$OneExt'">'$PatchName.$OneExt'</a>] '
				fi
			done
			echo
			echo '<dd>'
			echo '<pre>'
			cat $OnePatch | sed \
			 -e 's@\(Author.*\)<\([^\>]*\)>@\1<a href="mailto:\2">\&lt;\2\&gt;</a>@' \
			 -e 's@\(http:[^ ]*\)@<a href="\1">\1</a>@' \
			 -e 's@\(ftp:[^ ]*\)@<a href="\1">\1</a>@'
			echo '</pre>'
			echo '<hr>'
		done
		echo '</dl>'
		cd ..
	fi
done
echo '<hr>'
echo '<p>Generated '`date`' by <a href="http://www.stearns.org/pomlist/">pomlist</a> version '$POMListVer'.</p>'
echo '<hr>'

if [ "$Fullpage" = "yes" ]; then
	cat <<EOFOOTER
</body>
</html>
EOFOOTER
fi