Subversion Repositories HelenOS-doc

Compare Revisions

Ignore whitespace Rev 91 → Rev 92

/design/trunk/src/biblio.xml
34,12 → 34,6
</author>
</authorgroup>
 
<copyright>
<year>1989</year>
 
<holder />
</copyright>
 
<issn>0163-5964</issn>
 
<publisher>
67,12 → 61,6
</author>
</authorgroup>
 
<copyright>
<year>2001</year>
 
<holder>The USENIX Association</holder>
</copyright>
 
<publisher>
<publishername>USENIX</publishername>
</publisher>
104,12 → 92,6
</author>
</authorgroup>
 
<copyright>
<holder>Proceedings of the 2002 Ottawa Linux Summit</holder>
 
<year>2002</year>
</copyright>
 
<title>Fuss, Futexes and Furwocks: Fast Userlevel Locking in
Linux</title>
</biblioentry>
/design/trunk/src/images.vector/convert
2,8 → 2,13
 
for f in `ls *.svg | sed 's/\.svg//g'`;
do
echo "Converting $f.svg to $f.eps";
inkscape --without-gui --export-eps=$f.eps $f.svg
echo "Converting $f.eps to $f.pdf";
egrep -v "^%%Orientation:" $f.eps | epstopdf --filter --outfile $f.pdf
if [ ! -f "$f.eps" ]; then
echo "Converting $f.svg to $f.eps";
inkscape --without-gui --export-eps=$f.eps $f.svg
fi
 
if [ ! -f "$f.eps" ]; then
echo "Converting $f.eps to $f.pdf";
egrep -v "^%%Orientation:" $f.eps | epstopdf --filter --outfile $f.pdf
fi
done