Changeset 343
- Timestamp:
- 07/20/06 15:33:11 (18 years ago)
- Location:
- pkpgcounter/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/NEWS
r339 r343 22 22 pkpgcounter News : 23 23 24 * 1.83 : 25 26 - Fixed a famously known 'brown paper bag' issue with file type autodetection. 27 24 28 * 1.82 : 25 29 -
pkpgcounter/trunk/pkpgpdls/pcl345.py
r339 r343 86 86 self.firstblock.startswith("\033%8\033") or \ 87 87 (self.firstblock.find("\033%-12345X") != -1) or \ 88 self.firstblock.find("@PJL ENTER LANGUAGE=PCL\012\015\033") or \88 (self.firstblock.find("@PJL ENTER LANGUAGE=PCL\012\015\033") != -1) or \ 89 89 (self.firstblock.startswith(chr(0xcd)+chr(0xca)) and self.firstblock.find("\033E\033")) : 90 90 self.logdebug("DEBUG: Input file is in the PCL3/4/5 format.") -
pkpgcounter/trunk/pkpgpdls/version.py
r339 r343 20 20 # 21 21 22 __version__ = "1.8 2"22 __version__ = "1.83" 23 23 24 24 __doc__ = """pkpgcounter : a generic Page Description Languages parser."""