Changeset 321
- Timestamp:
- 02/15/06 14:00:46 (19 years ago)
- Location:
- pkpgcounter/trunk
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/man/pkpgcounter.1
r318 r321 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.3 5.1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36. 2 2 .TH PKPGCOUNTER "1" "February 2006" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 pkpgcounter \- manual page for pkpgcounter 1.7 74 pkpgcounter \- manual page for pkpgcounter 1.78 5 5 .SH DESCRIPTION 6 pkpgcounter v1.7 7(c) 2003, 2004, 2005, 2006 Jerome Alet6 pkpgcounter v1.78 (c) 2003, 2004, 2005, 2006 Jerome Alet 7 7 .PP 8 8 pkpgcounter is a generic Page Description Language parser. -
pkpgcounter/trunk/NEWS
r318 r321 22 22 pkpgcounter News : 23 23 24 * 1.78 : 25 26 - Launches gs less often when printing is done from Acrobat 27 Reader. 28 24 29 * 1.77 : 25 30 -
pkpgcounter/trunk/pkpgpdls/postscript.py
r314 r321 86 86 notrust = 0 87 87 prescribe = 0 # Kyocera's Prescribe commands 88 acrobatmarker = 0 88 89 for line in self.infile.xreadlines() : 89 if (not prescribe) and line.startswith(r"%%BeginResource: procset pdf") : 90 if (not prescribe) and line.startswith(r"%%BeginResource: procset pdf") \ 91 and not acrobatmarker : 90 92 notrust = 1 # Let this stuff be managed by GhostScript, but we still extract number of copies 93 elif line.startswith(r"%ADOPrintSettings: L3") : 94 acrobatmarker = 1 91 95 elif line.startswith("!R!") : 92 96 prescribe = 1 -
pkpgcounter/trunk/pkpgpdls/version.py
r318 r321 20 20 # 21 21 22 __version__ = "1.7 7"22 __version__ = "1.78" 23 23 24 24 __doc__ = """pkpgcounter : a generic Page Description Languages parser."""