Changeset 487 for pkpgcounter/trunk

Show
Ignore:
Timestamp:
11/17/07 14:59:30 (16 years ago)
Author:
jerome
Message:

Added gdi driver in the testsuite.
Fixed some docstrings.

Location:
pkpgcounter/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pkpgcounter/trunk/pkpgpdls/spl1.py

    r463 r487  
    3636    """A parser for SPL1 documents.""" 
    3737    def isValid(self) :     
    38         """Returns True if data is QPDL aka SPL2, else False.""" 
     38        """Returns True if data is SPL1, else False.""" 
    3939        if ((self.firstblock[:128].find("\033%-12345X") != -1) and \ 
    4040            (self.firstblock.find("$PJL ") != -1) and \ 
    4141             ((self.firstblock.find("LANGUAGE=SMART") != -1) or \ 
    4242              (self.firstblock.find("LANGUAGE = SMART") != -1))) : 
    43             self.logdebug("DEBUG: Input file is in the SPL1 (aka SPL12) format.") 
     43            self.logdebug("DEBUG: Input file is in the SPL1 format.") 
    4444            return True 
    4545        else :     
  • pkpgcounter/trunk/tests/runtest.sh

    r480 r487  
    8484              hpdjplus \ 
    8585              hpdjportable \ 
     86              gdi \ 
    8687              tiff12nc \ 
    8788              tiff24nc \