forked from erlang/otp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build placeholder PDF files if FOP is not found
If FOP is not found create PDF files with fakefop script. Signed-off-by: Tuncer Ayaz <[email protected]>
- Loading branch information
Tuncer Ayaz
committed
Apr 6, 2010
1 parent
39e0191
commit bdb41b9
Showing
3 changed files
with
111 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
#!/bin/sh | ||
# | ||
# Copyright Tuncer Ayaz 2010. All Rights Reserved. | ||
# | ||
# %CopyrightBegin% | ||
# %CopyrightEnd% | ||
# | ||
# Author: Tuncer Ayaz | ||
# | ||
|
||
if [ $# -lt 4 ] | ||
then | ||
echo "Usage: fakefop -fo IGNORED -pdf OUTFILE" | ||
exit 1 | ||
fi | ||
|
||
OUTFILE=$4 | ||
NAME=`basename $4 .pdf` | ||
|
||
echo Write $OUTFILE | ||
cat > $OUTFILE <<EndOfFile | ||
%PDF-1.4 | ||
1 0 obj | ||
<< /Type /Catalog | ||
/Outlines 2 0 R | ||
/Pages 3 0 R | ||
>> | ||
endobj | ||
2 0 obj | ||
<< /Type /Outlines | ||
/Count 0 | ||
>> | ||
endobj | ||
3 0 obj | ||
<< /Type /Pages | ||
/Kids [4 0 R] | ||
/Count 1 | ||
>> | ||
endobj | ||
4 0 obj | ||
<< /Type /Page | ||
/Parent 3 0 R | ||
/MediaBox [0 0 612 492] | ||
/Contents 5 0 R | ||
/Resources << /ProcSet 6 0 R | ||
/Font << /F1 7 0 R >> | ||
>> | ||
>> | ||
endobj | ||
5 0 obj | ||
<< /Length 73 >> | ||
stream | ||
BT | ||
/F1 24 Tf | ||
10 400 Td | ||
($NAME) Tj | ||
ET | ||
BT | ||
/F1 24 Tf | ||
10 350 Td | ||
(\(placeholder PDF generated without FOP\)) Tj | ||
ET | ||
endstream | ||
endobj | ||
6 0 obj | ||
[/PDF /Text] | ||
endobj | ||
7 0 obj | ||
<< /Type /Font | ||
/Subtype /Type1 | ||
/Name /F1 | ||
/BaseFont /Helvetica | ||
/Encoding /MacRomanEncoding | ||
>> | ||
endobj | ||
xref | ||
0 8 | ||
0000000000 65535 f | ||
0000000009 00000 n | ||
0000000074 00000 n | ||
0000000120 00000 n | ||
0000000179 00000 n | ||
0000000364 00000 n | ||
0000000466 00000 n | ||
0000000496 00000 n | ||
trailer | ||
<< /Size 8 | ||
/Root 1 0 R | ||
>> | ||
startxref | ||
625 | ||
%%EOF | ||
EndOfFile |