/[pkgs]/devel/texlive/texlive-dvipsconfig.patch
ViewVC logotype

Contents of /devel/texlive/texlive-dvipsconfig.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (show annotations) (download) (as text)
Fri Oct 16 05:36:20 2009 UTC (5 weeks, 3 days ago) by jnovy
Branch: MAIN
CVS Tags: texlive-2007-46_fc13, texlive-2007-47_fc13, texlive-2007-45_fc13, HEAD
File MIME type: text/x-patch
* Thu Oct 15 2009 Jindrich Novy <jnovy@redhat.com> 2007-45
- make kpathsea not dependent on texlive
- fix lacheck again (#451513)
- fix dvips configuration (#467542)
- update kpathsea description and summary (#519257)
- use upstream patch to fix pool overflow CVE-2009-1284 (#492136)
1 diff -up texlive-2007/texk/dvipsk/config.ps.dvipsconfig texlive-2007/texk/dvipsk/config.ps
2 --- texlive-2007/texk/dvipsk/config.ps.dvipsconfig 2006-01-17 22:41:51.000000000 +0100
3 +++ texlive-2007/texk/dvipsk/config.ps 2009-10-15 21:01:23.000000000 +0200
4 @@ -1,83 +1,586 @@
5 -* Configuration file for dvips.
6 -*
7 -* Default resolution. This needs to be correct.
8 -D 300
9 -*
10 -* Metafont mode to use to generate bitmap fonts. This needs to be a
11 -* mode with the specified resolution. Various hardwired defaults are
12 -* used for a few resolutions, but it is best to specify it explicitly.
13 -* http://www.ctan.org/tex-archive/fonts/modes/modes.mf has a list of modes.
14 -*M modename
15 -*
16 -* Amount of memory. Not crucial to be exact, if you have a lot.
17 -m 470000
18 -*
19 -* If unspecified, output goes to a file.
20 -* To send output via a pipe to a printing program, use something like:
21 -*o |lpr
22 -*o |lpr -Pmyprinter
23 -* To send output to standard output by default, use:
24 -*o -
25 -*
26 -* z1 is "secure", i.e., inhibits execution of `shell commands` in \specials.
27 -* Dvips allows this by default.
28 -*z1
29 -*
30 -* Additional default .map files.
31 -* p +cmfonts.map
32 -* p +lafonts.map
33 -* p +cyrfonts.map
34 -* p +eufonts.map
35 -*
36 -* Last resort bitmap sizes.
37 -R 240 270 300 329 360 432 518 622 746 896
38 -*
39 -*
40 -* Paper size information. First definition is the default.
41 -*
42 -* If your default is a4 uncomment the following definition
43 -* and comment out the letterSize definition.
44 -@ a4size 210mm 297mm
45 +% config.ps - configuration file for dvips.
46 +% Tomas Rokicki, Thomas Esser, Karl Berry, et al., 1986ff, public domain.
47 +
48 +% Memory available. Download the three-line PostScript file:
49 +% %! Hey, we're PostScript
50 +% /Times-Roman findfont 30 scalefont setfont 144 432 moveto
51 +% vmstatus exch sub 40 string cvs show pop showpage
52 +% to determine this number. (It will be the only thing printed.)
53 +m 3500000
54 +
55 +% Run securely. z2 disables both shell command execution in
56 +% `\special' and config files (via the `E' option) and opening of any
57 +% absolute filenames. z1, the default, forbids shell escapes but
58 +% allows absolute filenames. z0 allows both. The corresponding
59 +% command line options are -R0|-R1|-R2
60 +z1
61 +
62 +% How to print, maybe with lp instead lpr, etc. If commented-out, output
63 +% will go into a file by default.
64 +%o |lpr
65 +
66 +% Default resolution of this device, in dots per inch.
67 +D 600
68 +X 600
69 +Y 600
70 +
71 +% Metafont mode. (This is completely different from the -M
72 +% command-line option, which controls whether mktexpk is invoked.)
73 +% See ../../metafont/misc/modes.mf for a list of mode names. This mode
74 +% and the D number above must agree, or mktexpk will get confused.
75 +M ljfour
76 +
77 +% Last resort bitmap sizes.
78 +R 300 600
79 +
80 +% Correct printer offset. You can use testpage.tex from the LaTeX
81 +% distribution to find these numbers.
82 +O 0pt,0pt
83 +
84 +% Bitmap font compression. Results in more compact output files, but
85 +% sometimes causes trouble. So the default is disabled. Set Z1 to enable
86 +% this feature.
87 +Z0
88 +
89 +% Partially download Type 1 fonts by default. Only reason not to do
90 +% this is if you encounter bugs. (Please report them to
91 +% @email{tex-k@tug.org} if you do.)
92 +j
93 +
94 +% This shows how to add your own map file.
95 +% Remove the comment and adjust the name:
96 +% p +myfonts.map
97 +
98 +% If we have setpagedevice, use that.
99 +% else if we have the a4 resp. letter operator, use that.
100 +% else do nothing to set the page size.
101 +%
102 +% In the past, the a4size and letterSize definitions did not set the
103 +% page size, but we want to set it if we can so that ps2pdf can work
104 +% properly. Here, a4 and a4size, and letter and letterSize, are
105 +% identical, and we prefer the a4/letter names -- texconfig uses them.
106 +
107 +% 0 0 595 842 is the right bounding box that applications expect
108 +% for A4. Since dvips always rounds up, choose something slightly
109 +% smaller for our paper size.
110 +
111 +@ a4 210mm 297mm
112 @+ ! %%DocumentPaperSizes: a4
113 -@+ %%PaperSize: a4
114 +@+ %%BeginPaperSize: a4
115 +@+ /setpagedevice where
116 +@+ { pop << /PageSize [595 842] >> setpagedevice }
117 +@+ { /a4 where { pop a4 } if }
118 +@+ ifelse
119 +@+ %%EndPaperSize
120
121 -*@ letterSize 8.5in 11in
122 +@ letter 8.5in 11in
123 @+ ! %%DocumentPaperSizes: Letter
124 +@+ %%BeginPaperSize: Letter
125 +@+ /setpagedevice where
126 +@+ { pop << /PageSize [612 792] >> setpagedevice }
127 +@+ { /letter where { pop letter } if }
128 +@+ ifelse
129 +@+ %%EndPaperSize
130
131 -@ letter 8.5in 11in
132 +@ a4size 210mm 297mm
133 +@+ ! %%DocumentPaperSizes: a4
134 +@+ %%BeginPaperSize: a4
135 +@+ /setpagedevice where
136 +@+ { pop << /PageSize [595 842] >> setpagedevice }
137 +@+ { /a4 where { pop a4 } if }
138 +@+ ifelse
139 +@+ %%EndPaperSize
140 +
141 +@ letterSize 8.5in 11in
142 @+ ! %%DocumentPaperSizes: Letter
143 @+ %%BeginPaperSize: Letter
144 -@+ %letter
145 +@+ /setpagedevice where
146 +@+ { pop << /PageSize [612 792] >> setpagedevice }
147 +@+ { /letter where { pop letter } if }
148 +@+ ifelse
149 +@+ %%EndPaperSize
150 +
151 +% The jacow paper size is the smaller of letter and a4 in both
152 +% dimensions, and can therefore hopefully be printed on either paper
153 +% size. As far as we know, Volker Schaa first used it for the JACOW
154 +% conference proceedings that he produced.
155 +@ jacow 210mm 11in
156 +@+ ! %%DocumentPaperSizes: jacow
157 +@+ %%BeginPaperSize: jacow
158 +@+ /setpagedevice where
159 +@+ { pop << /PageSize [595 792] >> setpagedevice }
160 +@+ if
161 +@+ %%EndPaperSize
162 +
163 +% The smallbook paper size has been used by the Free Software Foundation
164 +% to print manuals for many years, and is part of Texinfo.
165 +@ smallbook 7in 9.25in
166 +@+ ! %%DocumentPaperSizes: smallbook
167 +@+ %%BeginPaperSize: smallbook
168 +@+ /setpagedevice where
169 +@+ { pop << /PageSize [504 666] >> setpagedevice }
170 +@+ if
171 +@+ %%EndPaperSize
172 +
173 +@ halfexecutive 133mm 184mm
174 +@+ ! %%DocumentPaperSizes: halfexecutive
175 +@+ %%BeginPaperSize: halfexecutive
176 +@+ /setpagedevice where
177 +@+ { pop << /PageSize [378 522] >> setpagedevice }
178 +@+ if
179 +@+ %%EndPaperSize
180 +
181 +@ halfletter 140mm 216mm
182 +@+ ! %%DocumentPaperSizes: halfletter
183 +@+ %%BeginPaperSize: halfletter
184 +@+ /setpagedevice where
185 +@+ { pop << /PageSize [396 612] >> setpagedevice }
186 +@+ if
187 +@+ %%EndPaperSize
188 +
189 +@ statement 140mm 216mm
190 +@+ ! %%DocumentPaperSizes: statement
191 +@+ %%BeginPaperSize: statement
192 +@+ /setpagedevice where
193 +@+ { pop << /PageSize [396 612] >> setpagedevice }
194 +@+ if
195 +@+ %%EndPaperSize
196 +
197 +@ executive 184mm 267mm
198 +@+ ! %%DocumentPaperSizes: executive
199 +@+ %%BeginPaperSize: executive
200 +@+ /setpagedevice where
201 +@+ { pop << /PageSize [522 756] >> setpagedevice }
202 +@+ if
203 +@+ %%EndPaperSize
204 +
205 +% for powerdot
206 +@ screen 8.25in 11in
207 +@+ ! %%DocumentPaperSizes: Screen
208 +@+ %%BeginPaperSize: Screen
209 +@+ /setpagedevice where
210 +@+ { pop << /PageSize [594 792] >> setpagedevice }
211 +@+ if
212 +@+ %%EndPaperSize
213 +
214 +% a common size for printers (in north america).
215 +@ sixbynine 6in 9in
216 +@+ ! %%DocumentPaperSizes: SixByNine
217 +@+ %%BeginPaperSize: SixByNine
218 +@+ /setpagedevice where
219 +@+ { pop << /PageSize [432 648] >> setpagedevice }
220 +@+ if
221 +@+ %%EndPaperSize
222 +
223 +@ quarto 215mm 275mm
224 +@+ ! %%DocumentPaperSizes: quarto
225 +@+ %%BeginPaperSize: quarto
226 +@+ /setpagedevice where
227 +@+ { pop << /PageSize [610 780] >> setpagedevice }
228 +@+ if
229 +@+ %%EndPaperSize
230 +
231 +@ note 216mm 279mm
232 +@+ ! %%DocumentPaperSizes: note
233 +@+ %%BeginPaperSize: note
234 +@+ /setpagedevice where
235 +@+ { pop << /PageSize [612 792] >> setpagedevice }
236 +@+ if
237 +@+ %%EndPaperSize
238 +
239 +@ folio 216mm 330mm
240 +@+ ! %%DocumentPaperSizes: folio
241 +@+ %%BeginPaperSize: folio
242 +@+ /setpagedevice where
243 +@+ { pop << /PageSize [612 936] >> setpagedevice }
244 +@+ if
245 @+ %%EndPaperSize
246
247 @ legal 8.5in 14in
248 @+ ! %%DocumentPaperSizes: Legal
249 @+ %%BeginPaperSize: Legal
250 -@+ %legal
251 +@+ /setpagedevice where
252 +@+ { pop << /PageSize [612 1008] >> setpagedevice }
253 +@+ if
254 +@+ %%EndPaperSize
255 +
256 +@ 10x14 10in 14in
257 +@+ ! %%DocumentPaperSizes: 10x14
258 +@+ %%BeginPaperSize: 10x14
259 +@+ /setpagedevice where
260 +@+ { pop << /PageSize [720 1008] >> setpagedevice }
261 +@+ if
262 @+ %%EndPaperSize
263
264 @ ledger 17in 11in
265 @+ ! %%DocumentPaperSizes: Ledger
266 @+ %%BeginPaperSize: Ledger
267 -@+ %ledger
268 +@+ /setpagedevice where
269 +@+ { pop << /PageSize [1224 792] >> setpagedevice }
270 +@+ if
271 @+ %%EndPaperSize
272
273 @ tabloid 11in 17in
274 @+ ! %%DocumentPaperSizes: Tabloid
275 @+ %%BeginPaperSize: Tabloid
276 -@+ %11x17
277 +@+ /setpagedevice where
278 +@+ { pop << /PageSize [792 1224] >> setpagedevice }
279 +@+ if
280 @+ %%EndPaperSize
281
282 -@ a4 210mm 297mm
283 -@+ ! %%DocumentPaperSizes: a4
284 -@+ %%BeginPaperSize: a4
285 -@+ %a4
286 +@ 11x17 11in 17in
287 +@+ ! %%DocumentPaperSizes: 11x17
288 +@+ %%BeginPaperSize: 11x17
289 +@+ /setpagedevice where
290 +@+ { pop << /PageSize [792 1224] >> setpagedevice }
291 +@+ if
292 +@+ %%EndPaperSize
293 +
294 +@ a0 841mm 1189mm
295 +@+ ! %%DocumentPaperSizes: a0
296 +@+ %%BeginPaperSize: a0
297 +@+ /setpagedevice where
298 +@+ { pop << /PageSize [2384 3370] >> setpagedevice }
299 +@+ { /a0 where { pop a0 } if }
300 +@+ ifelse
301 +@+ %%EndPaperSize
302 +
303 +@ a1 594mm 841mm
304 +@+ ! %%DocumentPaperSizes: a1
305 +@+ %%BeginPaperSize: a1
306 +@+ /setpagedevice where
307 +@+ { pop << /PageSize [1684 2384] >> setpagedevice }
308 +@+ { /a1 where { pop a1 } if }
309 +@+ ifelse
310 +@+ %%EndPaperSize
311 +
312 +@ a2 420mm 594mm
313 +@+ ! %%DocumentPaperSizes: a2
314 +@+ %%BeginPaperSize: a2
315 +@+ /setpagedevice where
316 +@+ { pop << /PageSize [1191 1684] >> setpagedevice }
317 +@+ { /a2 where { pop a2 } if }
318 +@+ ifelse
319 @+ %%EndPaperSize
320
321 @ a3 297mm 420mm
322 @+ ! %%DocumentPaperSizes: a3
323 @+ %%BeginPaperSize: a3
324 -@+ %a3
325 +@+ /setpagedevice where
326 +@+ { pop << /PageSize [842 1191] >> setpagedevice }
327 +@+ { /a3 where { pop a3 } if }
328 +@+ ifelse
329 +@+ %%EndPaperSize
330 +
331 +@ a5 148mm 210mm
332 +@+ ! %%DocumentPaperSizes: a5
333 +@+ %%BeginPaperSize: a5
334 +@+ /setpagedevice where
335 +@+ { pop << /PageSize [420 595] >> setpagedevice }
336 +@+ { /a5 where { pop a5 } if }
337 +@+ ifelse
338 +@+ %%EndPaperSize
339 +
340 +@ a6 105mm 148mm
341 +@+ ! %%DocumentPaperSizes: a6
342 +@+ %%BeginPaperSize: a6
343 +@+ /setpagedevice where
344 +@+ { pop << /PageSize [298 420] >> setpagedevice }
345 +@+ { /a6 where { pop a6 } if }
346 +@+ ifelse
347 +@+ %%EndPaperSize
348 +
349 +@ a7 74mm 105mm
350 +@+ ! %%DocumentPaperSizes: a7
351 +@+ %%BeginPaperSize: a7
352 +@+ /setpagedevice where
353 +@+ { pop << /PageSize [210 298] >> setpagedevice }
354 +@+ { /a7 where { pop a7 } if }
355 +@+ ifelse
356 +@+ %%EndPaperSize
357 +
358 +@ a8 52mm 74mm
359 +@+ ! %%DocumentPaperSizes: a8
360 +@+ %%BeginPaperSize: a8
361 +@+ /setpagedevice where
362 +@+ { pop << /PageSize [147 210] >> setpagedevice }
363 +@+ { /a8 where { pop a8 } if }
364 +@+ ifelse
365 +@+ %%EndPaperSize
366 +
367 +@ a9 37mm 52mm
368 +@+ ! %%DocumentPaperSizes: a9
369 +@+ %%BeginPaperSize: a9
370 +@+ /setpagedevice where
371 +@+ { pop << /PageSize [105 147] >> setpagedevice }
372 +@+ { /a9 where { pop a9 } if }
373 +@+ ifelse
374 +@+ %%EndPaperSize
375 +
376 +@ a10 26mm 37mm
377 +@+ ! %%DocumentPaperSizes: a10
378 +@+ %%BeginPaperSize: a10
379 +@+ /setpagedevice where
380 +@+ { pop << /PageSize [74 105] >> setpagedevice }
381 +@+ { /a10 where { pop a10 } if }
382 +@+ ifelse
383 +@+ %%EndPaperSize
384 +
385 +@ jisb0 1030mm 1456mm
386 +@+ ! %%DocumentPaperSizes: jisb0
387 +@+ %%BeginPaperSize: jisb0
388 +@+ /setpagedevice where
389 +@+ { pop << /PageSize [2920 4127] >> setpagedevice }
390 +@+ { /jisb0 where { pop jisb0 } if }
391 +@+ ifelse
392 +@+ %%EndPaperSize
393 +
394 +@ jisb1 728mm 1030mm
395 +@+ ! %%DocumentPaperSizes: jisb1
396 +@+ %%BeginPaperSize: jisb1
397 +@+ /setpagedevice where
398 +@+ { pop << /PageSize [2064 2920] >> setpagedevice }
399 +@+ { /jisb1 where { pop jisb1 } if }
400 +@+ ifelse
401 +@+ %%EndPaperSize
402 +
403 +@ jisb2 515mm 728mm
404 +@+ ! %%DocumentPaperSizes: jisb2
405 +@+ %%BeginPaperSize: jisb2
406 +@+ /setpagedevice where
407 +@+ { pop << /PageSize [1460 2064] >> setpagedevice }
408 +@+ { /jisb2 where { pop jisb2 } if }
409 +@+ ifelse
410 +@+ %%EndPaperSize
411 +
412 +@ jisb3 364mm 515mm
413 +@+ ! %%DocumentPaperSizes: jisb3
414 +@+ %%BeginPaperSize: jisb3
415 +@+ /setpagedevice where
416 +@+ { pop << /PageSize [1032 1460] >> setpagedevice }
417 +@+ { /jisb3 where { pop jisb3 } if }
418 +@+ ifelse
419 +@+ %%EndPaperSize
420 +
421 +@ jisb4 257mm 364mm
422 +@+ ! %%DocumentPaperSizes: jisb4
423 +@+ %%BeginPaperSize: jisb4
424 +@+ /setpagedevice where
425 +@+ { pop << /PageSize [729 1032] >> setpagedevice }
426 +@+ { /jisb4 where { pop jisb4 } if }
427 +@+ ifelse
428 +@+ %%EndPaperSize
429 +
430 +@ jisb5 182mm 257mm
431 +@+ ! %%DocumentPaperSizes: jisb5
432 +@+ %%BeginPaperSize: jisb5
433 +@+ /setpagedevice where
434 +@+ { pop << /PageSize [516 729] >> setpagedevice }
435 +@+ { /jisb5 where { pop jisb5 } if }
436 +@+ ifelse
437 +@+ %%EndPaperSize
438 +
439 +@ jisb6 128mm 182mm
440 +@+ ! %%DocumentPaperSizes: jisb6
441 +@+ %%BeginPaperSize: jisb6
442 +@+ /setpagedevice where
443 +@+ { pop << /PageSize [363 516] >> setpagedevice }
444 +@+ { /jisb6 where { pop jisb6 } if }
445 +@+ ifelse
446 +@+ %%EndPaperSize
447 +
448 +@ jisb7 91mm 128mm
449 +@+ ! %%DocumentPaperSizes: jisb7
450 +@+ %%BeginPaperSize: jisb7
451 +@+ /setpagedevice where
452 +@+ { pop << /PageSize [258 363] >> setpagedevice }
453 +@+ { /jisb7 where { pop jisb7 } if }
454 +@+ ifelse
455 +@+ %%EndPaperSize
456 +
457 +@ jisb8 64mm 91mm
458 +@+ ! %%DocumentPaperSizes: jisb8
459 +@+ %%BeginPaperSize: jisb8
460 +@+ /setpagedevice where
461 +@+ { pop << /PageSize [181 258] >> setpagedevice }
462 +@+ { /jisb8 where { pop jisb8 } if }
463 +@+ ifelse
464 +@+ %%EndPaperSize
465 +
466 +@ b0 1000mm 1414mm
467 +@+ ! %%DocumentPaperSizes: b0
468 +@+ %%BeginPaperSize: b0
469 +@+ /setpagedevice where
470 +@+ { pop << /PageSize [2835 4008] >> setpagedevice }
471 +@+ { /b0 where { pop b0 } if }
472 +@+ ifelse
473 +@+ %%EndPaperSize
474 +
475 +@ b1 707mm 1000mm
476 +@+ ! %%DocumentPaperSizes: b1
477 +@+ %%BeginPaperSize: b1
478 +@+ /setpagedevice where
479 +@+ { pop << /PageSize [2004 2835] >> setpagedevice }
480 +@+ { /b1 where { pop b1 } if }
481 +@+ ifelse
482 +@+ %%EndPaperSize
483 +
484 +@ b2 500mm 707mm
485 +@+ ! %%DocumentPaperSizes: b2
486 +@+ %%BeginPaperSize: b2
487 +@+ /setpagedevice where
488 +@+ { pop << /PageSize [1417 2004] >> setpagedevice }
489 +@+ { /b2 where { pop b2 } if }
490 +@+ ifelse
491 +@+ %%EndPaperSize
492 +
493 +@ b3 353mm 500mm
494 +@+ ! %%DocumentPaperSizes: b3
495 +@+ %%BeginPaperSize: b3
496 +@+ /setpagedevice where
497 +@+ { pop << /PageSize [1001 1417] >> setpagedevice }
498 +@+ { /b3 where { pop b3 } if }
499 +@+ ifelse
500 +@+ %%EndPaperSize
501 +
502 +@ b4 250mm 353mm
503 +@+ ! %%DocumentPaperSizes: b4
504 +@+ %%BeginPaperSize: b4
505 +@+ /setpagedevice where
506 +@+ { pop << /PageSize [709 1001] >> setpagedevice }
507 +@+ { /b4 where { pop b4 } if }
508 +@+ ifelse
509 +@+ %%EndPaperSize
510 +
511 +@ b5 176mm 250mm
512 +@+ ! %%DocumentPaperSizes: b5
513 +@+ %%BeginPaperSize: b5
514 +@+ /setpagedevice where
515 +@+ { pop << /PageSize [499 709] >> setpagedevice }
516 +@+ { /b5 where { pop b5 } if }
517 +@+ ifelse
518 +@+ %%EndPaperSize
519 +
520 +@ b6 125mm 176mm
521 +@+ ! %%DocumentPaperSizes: b6
522 +@+ %%BeginPaperSize: b6
523 +@+ /setpagedevice where
524 +@+ { pop << /PageSize [354 499] >> setpagedevice }
525 +@+ { /b6 where { pop b6 } if }
526 +@+ ifelse
527 +@+ %%EndPaperSize
528 +
529 +@ c5 162mm 229mm
530 +@+ ! %%DocumentPaperSizes: c5
531 +@+ %%BeginPaperSize: c5
532 +@+ /setpagedevice where
533 +@+ { pop << /PageSize [459 649] >> setpagedevice }
534 +@+ { /c5 where { pop c5 } if }
535 +@+ ifelse
536 +@+ %%EndPaperSize
537 +
538 +@ DL 110mm 220mm
539 +@+ ! %%DocumentPaperSizes: DL
540 +@+ %%BeginPaperSize: DL
541 +@+ /setpagedevice where
542 +@+ { pop << /PageSize [312 624] >> setpagedevice }
543 +@+ if
544 +@+ %%EndPaperSize
545 +
546 +@ Comm10 105mm 241mm
547 +@+ ! %%DocumentPaperSizes: Comm10
548 +@+ %%BeginPaperSize: Comm10
549 +@+ /setpagedevice where
550 +@+ { pop << /PageSize [297 684] >> setpagedevice }
551 +@+ if
552 +@+ %%EndPaperSize
553 +
554 +@ Monarch 98.4mm 190.5mm
555 +@+ ! %%DocumentPaperSizes: Monarch
556 +@+ %%BeginPaperSize: Monarch
557 +@+ /setpagedevice where
558 +@+ { pop << /PageSize [279 540] >> setpagedevice }
559 +@+ if
560 +@+ %%EndPaperSize
561 +
562 +@ archE 36in 48in
563 +@+ ! %%DocumentPaperSizes: archE
564 +@+ %%BeginPaperSize: archE
565 +@+ /setpagedevice where
566 +@+ { pop << /PageSize [2592 3456] >> setpagedevice }
567 +@+ if
568 +@+ %%EndPaperSize
569 +
570 +@ archD 24in 36in
571 +@+ ! %%DocumentPaperSizes: archD
572 +@+ %%BeginPaperSize: archD
573 +@+ /setpagedevice where
574 +@+ { pop << /PageSize [1728 2592] >> setpagedevice }
575 +@+ if
576 +@+ %%EndPaperSize
577 +
578 +@ archC 18in 24in
579 +@+ ! %%DocumentPaperSizes: archC
580 +@+ %%BeginPaperSize: archC
581 +@+ /setpagedevice where
582 +@+ { pop << /PageSize [1296 1728] >> setpagedevice }
583 +@+ if
584 +@+ %%EndPaperSize
585 +
586 +@ archB 12in 18in
587 +@+ ! %%DocumentPaperSizes: archB
588 +@+ %%BeginPaperSize: archB
589 +@+ /setpagedevice where
590 +@+ { pop << /PageSize [864 1296] >> setpagedevice }
591 +@+ if
592 +@+ %%EndPaperSize
593 +
594 +@ archA 9in 12in
595 +@+ ! %%DocumentPaperSizes: archA
596 +@+ %%BeginPaperSize: archA
597 +@+ /setpagedevice where
598 +@+ { pop << /PageSize [648 864] >> setpagedevice }
599 +@+ if
600 +@+ %%EndPaperSize
601 +
602 +@ flsa 216mm 330.2mm
603 +@+ ! %%DocumentPaperSizes: flsa
604 +@+ %%BeginPaperSize: flsa
605 +@+ /setpagedevice where
606 +@+ { pop << /PageSize [612 936] >> setpagedevice }
607 +@+ if
608 +@+ %%EndPaperSize
609 +
610 +@ flse 216mm 330.2mm
611 +@+ ! %%DocumentPaperSizes: flse
612 +@+ %%BeginPaperSize: flse
613 +@+ /setpagedevice where
614 +@+ { pop << /PageSize [612 936] >> setpagedevice }
615 +@+ if
616 +@+ %%EndPaperSize
617 +
618 +@ csheet 431.8mm 558.8mm
619 +@+ ! %%DocumentPaperSizes: csheet
620 +@+ %%BeginPaperSize: csheet
621 +@+ /setpagedevice where
622 +@+ { pop << /PageSize [1224 1584] >> setpagedevice }
623 +@+ if
624 +@+ %%EndPaperSize
625 +
626 +@ dsheet 558.8mm 863.6mm
627 +@+ ! %%DocumentPaperSizes: dsheet
628 +@+ %%BeginPaperSize: dsheet
629 +@+ /setpagedevice where
630 +@+ { pop << /PageSize [1584 2448] >> setpagedevice }
631 +@+ if
632 +@+ %%EndPaperSize
633 +
634 +@ esheet 863.6mm 1117.6mm
635 +@+ ! %%DocumentPaperSizes: esheet
636 +@+ %%BeginPaperSize: esheet
637 +@+ /setpagedevice where
638 +@+ { pop << /PageSize [2448 3168] >> setpagedevice }
639 +@+ if
640 @+ %%EndPaperSize
641
642 @ unknown 0in 0in

admin@fedoraproject.org
ViewVC Help
Powered by ViewVC 1.1.2