Changeset 459
- Timestamp:
- 07/26/07 23:54:09 (17 years ago)
- Location:
- pkpgcounter/trunk
- Files:
-
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/CREDITS
r443 r459 35 35 - Franck (?) : sent a path to improve the PostScript parser when 36 36 the PS code generated several copies. 37 38 - Yves Lavoie : reported a bug with Python 2.5 37 39 38 40 ============================================================== -
pkpgcounter/trunk/debian/manpage.1
r458 r459 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36. 2 .TH PKPGCOUNTER "1" "Ju ne2007" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPGCOUNTER "1" "July 2007" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 pkpgcounter \- manual page for pkpgcounter 2.1 74 pkpgcounter \- manual page for pkpgcounter 2.18 5 5 .SH DESCRIPTION 6 pkpgcounter v2.1 7(c) 2003, 2004, 2005, 2006, 2007 Jerome Alet6 pkpgcounter v2.18 (c) 2003, 2004, 2005, 2006, 2007 Jerome Alet 7 7 .PP 8 8 pkpgcounter is a generic Page Description Language parser. -
pkpgcounter/trunk/man/pkpgcounter.1
r456 r459 1 1 .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36. 2 .TH PKPGCOUNTER "1" "Ju ne2007" "C@LL - Conseil Internet & Logiciels Libres" "User Commands"2 .TH PKPGCOUNTER "1" "July 2007" "C@LL - Conseil Internet & Logiciels Libres" "User Commands" 3 3 .SH NAME 4 pkpgcounter \- manual page for pkpgcounter 2.1 74 pkpgcounter \- manual page for pkpgcounter 2.18 5 5 .SH DESCRIPTION 6 pkpgcounter v2.1 7(c) 2003, 2004, 2005, 2006, 2007 Jerome Alet6 pkpgcounter v2.18 (c) 2003, 2004, 2005, 2006, 2007 Jerome Alet 7 7 .PP 8 8 pkpgcounter is a generic Page Description Language parser. -
pkpgcounter/trunk/pkpgpdls/analyzer.py
r450 r459 115 115 116 116 # Use a temporary file, always seekable contrary to standard input. 117 self.infile = tempfile.TemporaryFile(mode="w+b U")117 self.infile = tempfile.TemporaryFile(mode="w+b") # TODO : not opened in universal newline mode, Python 2.5 refuses. 118 118 while 1 : 119 119 data = infile.read(pdlparser.MEGABYTE) -
pkpgcounter/trunk/pkpgpdls/version.py
r458 r459 23 23 24 24 25 __version__ = "2.18 alpha"25 __version__ = "2.18" 26 26 27 27 __doc__ = """pkpgcounter : a generic Page Description Languages parser."""