#!/bin/sh
for file in `echo $@`
do
	echo "---------- Fixing $file ---------"
	cat $file |
	sed -e "sX../../oeuvre.htmlX../../../oeuvre.htmlXg" |
	sed -e "sX../../index.htmlX../../../index.htmlXg" |
	sed -e "sXhttp://viz1.cs.uaf.edu/~lawlor/Xolawlor@acm.org, http://www.uiuc.edu/ph/www/olawlor/Xg" > tmp
	mv $file $file.bak
	mv tmp $file
done
