Changeset 383
- Timestamp:
- 08/29/06 00:08:45 (18 years ago)
- Location:
- pkpgcounter/trunk
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/MANIFEST.in
r197 r383 1 1 include README FAQ COPYING BUGS TODO NEWS CREDITS MANIFEST.in clean.sh bin/pkpgcounter 2 2 recursive-include man README *.sh *.1 3 recursive-include tests README *.ps.gz *.sh 3 recursive-include tests README *.ps.gz *.sh *.py colors.pdf -
pkpgcounter/trunk/NEWS
r378 r383 22 22 pkpgcounter News : 23 23 24 * 1.85alpha : 25 26 - Added test document and program to generate the test document 27 to check the functionning of the ink coverage computation algorithm. 28 24 29 * 1.84 : 25 30 -
pkpgcounter/trunk/pkpgpdls/analyzer.py
r377 r383 248 248 for k in cspace : # NB : this way we preserve the order of the planes 249 249 try : 250 lineparts.append("%s : % f%%" % (k, page[k]))250 lineparts.append("%s : %s%%" % (k, ("%f" % page[k]).rjust(10))) 251 251 except KeyError : 252 252 pass -
pkpgcounter/trunk/pkpgpdls/version.py
r378 r383 23 23 24 24 25 __version__ = "1.8 4"25 __version__ = "1.85alpha" 26 26 27 27 __doc__ = """pkpgcounter : a generic Page Description Languages parser."""