Apply patch from Werner Fink for CVE-2008-3863, CVE-2008-4306
[enscript.git] / lib / emacs.hdr
1
2 % Emacs ps-print-buffer styled header.
3 % Copyright (c) 1995 Markku Rossi.
4 % Author: Markku Rossi <mtr@iki.fi>
5 %
6
7 %
8 % This file is part of GNU Enscript.
9
10 % Enscript is free software: you can redistribute it and/or modify
11 % it under the terms of the GNU General Public License as published by
12 % the Free Software Foundation, either version 3 of the License, or
13 % (at your option) any later version.
14 %
15 % Enscript is distributed in the hope that it will be useful,
16 % but WITHOUT ANY WARRANTY; without even the implied warranty of
17 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 % GNU General Public License for more details.
19 %
20 % You should have received a copy of the GNU General Public License
21 % along with Enscript.  If not, see <http://www.gnu.org/licenses/>.
22 %
23
24 % -- code follows this line --
25 %%DocumentNeededResources: font Helvetica
26 %Format: eurdatestr     %E
27 %Format: pagenumstr     $V$%/$=
28
29 % Fonts.
30 /Helvetica /HeaderFont-Bold MF
31 /HeaderF /HeaderFont-Bold findfont 12 scalefont def
32
33 /Helvetica /HeaderFont-Large MF
34 /HeaderLF /HeaderFont-Large findfont 12 1.3 mul scalefont def
35
36 /do_header {    % print emacs header
37   gsave
38     d_header_x d_header_y translate
39     0 setgray
40     .5 setlinewidth
41
42     % black shadow
43     1 0 d_header_w 1 sub d_header_h 1 sub Box fill
44     
45     % gray box with black frames
46     0 1 d_header_w 1 sub d_header_h 1 sub Box
47     gsave
48       .9 setgray fill
49     grestore
50     stroke
51     
52     % texts
53
54     /xmarg 5 def
55
56     % Top line.
57     HeaderLF setfont
58     /y d_header_h 12 div d_header_h 2 div add def 
59     xmarg y moveto ftail show
60
61     pagenumstr dup stringwidth pop 
62     d_header_w exch sub 1 sub xmarg sub y moveto show
63
64     % Bottom line
65     HeaderF setfont
66     /y d_header_h 6 div def
67     xmarg y moveto fdir show
68
69     eurdatestr dup stringwidth pop
70     d_header_w exch sub 1 sub xmarg sub y moveto show
71
72   grestore
73 } def