summaryrefslogtreecommitdiff
path: root/util/rarian-sk-extract.in
blob: c7adaefd1db5952dce02d6e3bb3c2afd92018d42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!@BASH@

# Wrapper around xsltproc to mimic scrollkeeper-extract.
#
# Note that scrollkeeper internally uses libxslt for
# this, so this method is cheaper and achieves the same result

print_usage()
{
  echo -e "Usage: "
  echo -e "`basename $0` <xml file> <stylesheet 1> <output file 1> <stylesheet 2> <output file 2> ..."
}

if [[ $# < 2 ]]
then
  print_usage
  exit 0
fi

infile=$1
shift 1

while true; do
  xsltproc --xinclude --xincludestyle $1 $infile > $2
  #echo "xml: $infile style: $1 out: $2"
  shift 2
  if [[ $# < 2 ]];
  then
    break
  fi
done