Logtalk 2.24.0 files.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1282 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura
2005-04-22 23:57:45 +00:00
parent 08efcbeb64
commit c2e03a81b9
195 changed files with 4005 additions and 1219 deletions

View File

@@ -2,7 +2,7 @@
## =================================================================
## Logtalk - Object oriented extension to Prolog
## Release 2.23.1
## Release 2.24.0
##
## Copyright (c) 1998-2005 Paulo Moura. All Rights Reserved.
## =================================================================
@@ -37,7 +37,7 @@ usage_help()
exit 1
}
if ! [ $LOGTALKUSER ]
if ! [ "$LOGTALKUSER" ]
then
echo "Error! The environment variable LOGTALKUSER must be defined first!"
exit 1
@@ -91,8 +91,8 @@ else
xsl=$us_xsl
fi
cp $LOGTALKUSER/xml/logtalk.dtd .
cp $LOGTALKUSER/xml/logtalk.xsd .
cp "$LOGTALKUSER"/xml/logtalk.dtd .
cp "$LOGTALKUSER"/xml/logtalk.xsd .
echo
echo "converting XML files to PDF..."
@@ -100,7 +100,7 @@ else
for file in *.xml; do
echo " converting $file"
name="`expr "$file" : '\(.*\)\.[^./]*$' \| "$file"`"
eval $processor -q -xml $file -xsl $xsl -pdf $directory/$name.pdf
eval $processor -q -xml \"$file\" -xsl \"$xsl\" -pdf \"$directory\"/\"$name.pdf\"
done
echo "conversion done"