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/pykota/storage.py

    r2054 r2057  
    2222# 
    2323# $Log$ 
     24# Revision 1.69  2005/02/13 22:48:37  jalet 
     25# Added the md5sum to the history 
     26# 
    2427# Revision 1.68  2005/02/13 22:02:29  jalet 
    2528# Big database structure changes. Upgrade script is now included as well as 
     
    380383            raise AttributeError, name 
    381384             
    382     def addJobToHistory(self, jobid, user, pagecounter, action, jobsize=None, jobprice=None, filename=None, title=None, copies=None, options=None, clienthost=None, jobsizebytes=None) : 
     385    def addJobToHistory(self, jobid, user, pagecounter, action, jobsize=None, jobprice=None, filename=None, title=None, copies=None, options=None, clienthost=None, jobsizebytes=None, jobmd5sum=None) : 
    383386        """Adds a job to the printer's history.""" 
    384         self.parent.writeJobNew(self, user, jobid, pagecounter, action, jobsize, jobprice, filename, title, copies, options, clienthost, jobsizebytes) 
     387        self.parent.writeJobNew(self, user, jobid, pagecounter, action, jobsize, jobprice, filename, title, copies, options, clienthost, jobsizebytes, jobmd5sum) 
    385388        # TODO : update LastJob object ? Probably not needed. 
    386389