Remove 2.1.17 from this
[yaz-moved-to-github.git] / doc / indexdata.sh
index f484dcd..6c28bdc 100755 (executable)
@@ -1,7 +1,8 @@
 #!/bin/sh
-# $Id: indexdata.sh,v 1.1 2000-03-03 10:18:50 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`shtml
-       sed '-es/<BODY>/<BODY BGCOLOR="#FFFFFF" TEXT="#000000"><TABLE BORDER="0" CELLSPACING="10" CELLPADDING="0"><TR><TD ALIGN="LEFT" VALIGN="TOP" ROWSPAN="2" WIDTH="100" BGCOLOR="#FFFFFF"><!--#config errmsg="No table, contact info@indexdata.dk"--><!--#include virtual="..\/buttonbar.shtml"--><\/TD><TD VALIGN="TOP">/g' '-es/<\/BODY>/<\/TD><\/TR><\/TABLE><\/BODY>/g' '-es/\(HREF=\"yaz.*\)\.html/\1.shtml/g'  < $i >$j
+       j=`basename $i html`php
+       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