Changeset 256
- Timestamp:
- 09/06/05 15:56:34 (19 years ago)
- Location:
- pkpgcounter/trunk
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/NEWS
r255 r256 22 22 pkpgcounter News : 23 23 24 * 1.65 : 25 26 - Improved PostScript parser. 27 28 - Improved PCL3/4/5 parser. 29 24 30 * 1.64 : 25 31 -
pkpgcounter/trunk/pkpgpdls/pcl345.py
r255 r256 344 344 if ejects : 345 345 pagecount = ejects 346 elif (resets == 2) and (startgfx == endgfx) and (mediasourcecount == 1) : 347 pass 348 elif (resets == 1) and (startgfx == endgfx) and (mediasourcecount == 0) : 349 pass 346 350 elif startgfx == endgfx : 347 351 pagecount = startgfx -
pkpgcounter/trunk/pkpgpdls/postscript.py
r252 r256 84 84 pagecount += 1 85 85 pages[pagecount] = { "copies" : 1 } 86 elif line.startswith(r"(%%[Page: ") : 87 pagecount += 1 88 pages[pagecount] = { "copies" : 1 } 86 89 elif line.startswith(r"%%Requirements: numcopies(") : 87 90 try : -
pkpgcounter/trunk/pkpgpdls/version.py
r255 r256 20 20 # 21 21 22 __version__ = "1.6 4"22 __version__ = "1.65" 23 23 24 24 __doc__ = """pkpgcounter : a generic Page Description Languages parser."""