Changeset 383

Show
Ignore:
Timestamp:
08/29/06 00:08:45 (18 years ago)
Author:
jerome
Message:

Cleaner output for color components.

Location:
pkpgcounter/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • pkpgcounter/trunk/MANIFEST.in

    r197 r383  
    11include README FAQ COPYING BUGS TODO NEWS CREDITS MANIFEST.in clean.sh bin/pkpgcounter 
    22recursive-include man README *.sh *.1 
    3 recursive-include tests README *.ps.gz *.sh 
     3recursive-include tests README *.ps.gz *.sh *.py colors.pdf 
  • pkpgcounter/trunk/NEWS

    r378 r383  
    2222pkpgcounter News : 
    2323 
     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       
    2429  * 1.84 : 
    2530   
  • pkpgcounter/trunk/pkpgpdls/analyzer.py

    r377 r383  
    248248                            for k in cspace : # NB : this way we preserve the order of the planes 
    249249                                try : 
    250                                     lineparts.append("%s : %f%%" % (k, page[k])) 
     250                                    lineparts.append("%s : %s%%" % (k, ("%f" % page[k]).rjust(10))) 
    251251                                except KeyError : 
    252252                                    pass 
  • pkpgcounter/trunk/pkpgpdls/version.py

    r378 r383  
    2323 
    2424 
    25 __version__ = "1.84" 
     25__version__ = "1.85alpha" 
    2626 
    2727__doc__ = """pkpgcounter : a generic Page Description Languages parser."""