Show
Ignore:
Timestamp:
02/13/05 23:48:38 (19 years ago)
Author:
jalet
Message:

Added the md5sum to the history

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/lprngpykota

    r2028 r2057  
    2424# 
    2525# $Log$ 
     26# Revision 1.14  2005/02/13 22:48:37  jalet 
     27# Added the md5sum to the history 
     28# 
    2629# Revision 1.13  2005/01/17 08:44:23  jalet 
    2730# Modified copyright years 
     
    177180            jobprice = userpquota.increasePagesUsage(jobsize) 
    178181             
    179             printer.addJobToHistory(self.jobid, user, self.accounter.getLastPageCounter(), action, jobsize, jobprice, self.preserveinputfile, self.title, self.copies, self.options, clienthost, self.jobSizeBytes) 
     182            printer.addJobToHistory(self.jobid, user, self.accounter.getLastPageCounter(), \ 
     183                                    action, jobsize, jobprice, self.preserveinputfile, \ 
     184                                    self.title, self.copies, self.options, clienthost, \ 
     185                                    self.jobSizeBytes, self.checksum) 
    180186            self.printMoreInfo(user, printer, _("Job added to history.")) 
    181187             
     
    193199            # here accounting was completed, either software, or hardware but over quota 
    194200        else : 
    195             printer.addJobToHistory(self.jobid, user, self.accounter.getLastPageCounter(), action, filename=self.preserveinputfile, title=self.title, copies=self.copies, options=self.options, clienthost=clienthost, jobsizebytes=self.jobSizeBytes) 
     201            printer.addJobToHistory(self.jobid, user, self.accounter.getLastPageCounter(), \ 
     202                                    action, filename=self.preserveinputfile, title=self.title, \ 
     203                                    copies=self.copies, options=self.options, clienthost=clienthost, \ 
     204                                    jobsizebytes=self.jobSizeBytes, self.checksum) 
    196205            self.logdebug("Job added to history during first pass : Job's size and price are still unknown.") 
    197206