Changeset 2316
- Timestamp:
- 06/15/05 20:44:13 (19 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r2311 r2316 22 22 PyKota NEWS : 23 23 24 - 1.23alpha11 : 25 26 - Small fix to the PCL3/4/5 parser for some drivers. 27 24 28 - 1.23alpha10 : 25 29 -
pykota/trunk/pykota/pdlanalyzer.py
r2302 r2316 467 467 # pagecount = endgfx 468 468 469 470 469 if pagecount == mediasourcecount == escstart : 471 470 pass # should be OK. … … 476 475 elif startgfx == (endgfx - 1) : 477 476 pagecount = startgfx 477 elif (startgfx == 1) and not endgfx : 478 pass 478 479 else : 479 480 pagecount = abs(startgfx - endgfx) … … 972 973 # Try to detect file type by reading first block of datas 973 974 self.infile.seek(0) 974 firstblock = self.infile.read( 4* KILOBYTE)975 firstblock = self.infile.read(16 * KILOBYTE) 975 976 try : 976 977 self.infile.seek(-LASTBLOCKSIZE, 2) -
pykota/trunk/pykota/version.py
r2311 r2316 22 22 # 23 23 24 __version__ = "1.23alpha1 0_unofficial"24 __version__ = "1.23alpha11_unofficial" 25 25 26 26 __doc__ = "PyKota : a complete Printing Quota Solution for CUPS and LPRng."