Fix up problems in Horn in F transposition.
1. Ensure makeWeb.sh gets its second parameter quoted, to allow for spaces in it. 2. Don't forget to copy the component text items into the horn dir. 3. Fix removing transposition tag from page title.
This commit is contained in:
parent
18727830fa
commit
3a567e0637
10
makeAll.sh
10
makeAll.sh
|
@ -9,11 +9,11 @@ fi
|
|||
|
||||
makeABooke()
|
||||
{
|
||||
./makeGraphics.sh $1
|
||||
./makeBookeA5.sh $1
|
||||
./makeBookeA4.sh $1
|
||||
./makeWebItems.sh $1
|
||||
./makeWeb.sh $1 $2
|
||||
./makeGraphics.sh "$1"
|
||||
./makeBookeA5.sh "$1"
|
||||
./makeBookeA4.sh "$1"
|
||||
./makeWebItems.sh "$1"
|
||||
./makeWeb.sh "$1" "$2"
|
||||
}
|
||||
|
||||
makeABooke $1
|
||||
|
|
|
@ -14,6 +14,9 @@ outdir=$dir/$1-HornInF
|
|||
|
||||
mkdir -p $outdir
|
||||
|
||||
# Copy book component items.
|
||||
cp $booke/*.txt $outdir
|
||||
|
||||
find $booke -name "*.abc" | sort |
|
||||
while read filename
|
||||
do
|
||||
|
|
|
@ -29,7 +29,8 @@ if [ -r $bookedir/intro.txt ]; then
|
|||
fi
|
||||
|
||||
if [ -n "$2" ]; then
|
||||
title="${title/-.*$//} ($2)"
|
||||
# Remove any transposition tag from title.
|
||||
title="${title/-*/} ($2)"
|
||||
subtitle="${subtitle} ($2)"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue