Changeset 18812 for documentation
- Timestamp:
- 2009-03-26T09:50:24+13:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
documentation/trunk/manuals/generate-pdf.sh
r18747 r18812 51 51 fi 52 52 53 #show what manuals and languages will be used 53 54 echo "Manuals: $manuals" 54 55 echo "Languages: $langs" 55 56 echo 56 57 58 #do it 57 59 for l in $langs; do 58 60 59 if [ ! -d $output_dir/$l ]; then 61 if [ ! -d $output_dir/$l ]; then 60 62 mkdir $output_dir/$l 61 63 fi … … 65 67 66 68 for m in $manuals; do 69 #hack to preserve old way of specifying manuals 70 if [ "$m" == "u" ]; then m=User; 71 elif [ "$m" == "d" ]; then m=Develop; 72 elif [ "$m" == "i" ]; then m=Install; 73 elif [ "$m" == "p" ]; then m=Paper; fi 74 67 75 echo -n "Processing the $m manual in $l..." 68 76 $fop_dir/fop.sh -c $processing_dir/fop-fonts/userconfig.xml -q -xsl $processing_dir/xml-to-pdf.xsl -xml $source_dir/$l/"$m"_"$l".xml -pdf $output_dir/$l/pdf/"$m"_"$l".pdf
Note:
See TracChangeset
for help on using the changeset viewer.