Remove 2.1.17 from this
[yaz-moved-to-github.git] / doc / indexdata.sh
index 9538d78..6c28bdc 100755 (executable)
@@ -1,7 +1,8 @@
 #!/bin/sh
-# $Id: indexdata.sh,v 1.2 2000-03-29 15:07:16 adam Exp $
+# $Id: indexdata.sh,v 1.3 2000-03-29 15:23:55 adam Exp $
 # Script to convert documentation to indexdata.dk style...
+package=$1
 for i in ${package}*.html; do
        j=`basename $i html`php
-       awk 'BEGIN { body = 0 } /<\/BODY/ { body = 0; print "<?php id_footer(); ?>" } { if (body == 1) print $0} /<BODY>/ { body = 1; print "<?php require(\"../id_common.inc\"); id_header(\"YAZ Documentation\"); ?>"; } ' < $i | sed '-es/\(HREF=\"yaz.*\)\.html/\1.php/g' >$j
+       awk -v PACKAGE=\"${package}\" 'BEGIN { body = 0 } /<\/BODY/ { body = 0; print "<?php id_footer(); ?>" } { if (body == 1) print $0} /<BODY>/ { body = 1; print "<?php require(\"../id_common.inc\"); id_header(", PACKAGE, "); ?>"; }' < $i | sed "-es/\(HREF=\"${package}.*\)\.html/\1.php/g"  >$j
 done