Logtalk release 2.14.1 files.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@561 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura
2002-07-31 23:34:42 +00:00
parent 4f6b62e2c6
commit 5345523da3
169 changed files with 3660 additions and 3295 deletions

View File

@@ -6,18 +6,58 @@ XP_PATH="."
XSLT="lgthtml.xsl"
echo
if [ -z "$1" ]; then
title="Entity documentation index"
else
title="$1"
fi
echo
echo This script converts all .xml files in the current directory to .html
echo files applying the XSLT transformation defined in the $XSLT file
echo using the James Clark XT XSLT Java processor
echo using the James Clark XT XSLT Java processor.
echo
echo An index.html file, containing links to all .html documenting files,
echo is automatically generated. This file uses the script optional parameter
echo value as the title of the index.html file.
echo
echo converting XML files to HTML...
foreach file (*.xml)
echo converting $file
echo " "converting $file
name="`expr "$file" : '\(.*\)\.[^./]*$' \| "$file"`"
eval java -cp ${XT_PATH}/xt.jar:${SAX_PATH}/sax.jar:${XP_PATH}/xp.jar -Dcom.jclark.xsl.sax.parser=com.jclark.xml.sax.CommentDriver com.jclark.xsl.sax.Driver $file $XSLT $name.html
end
echo
echo conversion done
echo
echo generating index file...
> index.html
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">" >> index.html
echo "<html>" >> index.html
echo "<head>" >> index.html
echo " <title>"$title"</title>" >> index.html
echo " <link rel=\"stylesheet\" href=\"logtalk.css\" type=\"text/css\">" >> index.html
echo "</head>" >> index.html
echo "<body>" >> index.html
echo "<h1>"$title"</h1>" >> index.html
echo "<ul>" >> index.html
foreach file (*.xml)
name="`expr "$file" : '\(.*\)\.[^./]*$' \| "$file"`"
echo " "indexing $name.html
echo " <li><a href=\""$name.html"\">"$name"</a></li>" >> index.html
end
echo "</ul>" >> index.html
date="`eval date`"
echo "<p>Generated on "$date"</p>" >> index.html
echo "</body>" >> index.html
echo "</html>" >> index.html
echo index file generated
echo