Changeset 272
- Timestamp:
- 10/06/05 13:21:48 (19 years ago)
- Location:
- pkpgcounter/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/NEWS
r269 r272 22 22 pkpgcounter News : 23 23 24 * 1.71 : 25 26 - Now uses ghostscript as the parser when the PS stream was created by a 27 particular MSWindows driver. 28 29 - Only complains about Psyco missing at install time, and stays 30 quiet when running without Psyco. 31 24 32 * 1.70 : 25 33 -
pkpgcounter/trunk/pkpgpdls/postscript.py
r263 r272 82 82 previousline = "" 83 83 for line in self.infile.xreadlines() : 84 if line.startswith(r"%%Page: ") or line.startswith(r"(%%[Page: ") : 84 if line.startswith(r"%%Creator: PScript5.dll") : 85 return 0 # Let this stuff be managed by GhostScript, since nup and copies disturb us. 86 elif line.startswith(r"%%Page: ") or line.startswith(r"(%%[Page: ") : 85 87 proceed = 1 86 88 try : -
pkpgcounter/trunk/pkpgpdls/version.py
r269 r272 20 20 # 21 21 22 __version__ = "1.7 0"22 __version__ = "1.71" 23 23 24 24 __doc__ = """pkpgcounter : a generic Page Description Languages parser."""