comparison kdiff3/doc/createpdfdoc @ 80:fcd146072e0c

0.9.93
author joachim99
date Tue, 06 Jan 2009 17:51:29 +0000
parents 8febbfb1148c
children
comparison
equal deleted inserted replaced
79:881e47f5076b 80:fcd146072e0c
1 # html2ps is from the "html2ps"-package
2 # ps2pdf is part of the "ghostscript-library"-package
1 for i in `find * -maxdepth 0 -type d`; do 3 for i in `find * -maxdepth 0 -type d`; do
2 cd $i 4 cd $i
3 echo $i 5 echo $i
4 LANG=de_DE meinproc --check index.docbook --stylesheet /opt/kde3/share/apps/ksgmltools2/customization/kde-nochunk.xsl 6 if [ $i != "en" ]; then
5 html2ps -D -u -n index.html >index.ps 7 for j in `ls ../en | grep png`; do ln -s ../en/$j $j; done
6 ps2pdf index.ps ../kdiff3_$i.pdf 8 ln -s ../en/common common
7 cd .. 9 fi
10 LANG=de_DE meinproc4 --check index.docbook --stylesheet /usr/share/kde4/apps/ksgmltools2/customization/kde-nochunk.xsl
11 html2ps --rcfile /usr/lib/html2ps/html2psrc -D -u -n index.html >index.ps
12 ps2pdf index.ps ../kdiff3_$i.pdf
13 cd ..
8 done 14 done