Show
Ignore:
Timestamp:
11/21/03 15:28:46 (20 years ago)
Author:
jalet
Message:

More complete job history.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storage.py

    r1151 r1200  
    2222# 
    2323# $Log$ 
     24# Revision 1.26  2003/11/21 14:28:45  jalet 
     25# More complete job history. 
     26# 
    2427# Revision 1.25  2003/10/08 21:12:27  jalet 
    2528# Do not cache anymore entries which don't exist. 
     
    211214        self.LastJob = None 
    212215         
    213     def addJobToHistory(self, jobid, user, pagecounter, action, jobsize=None) :     
     216    def addJobToHistory(self, jobid, user, pagecounter, action, jobsize=None, filename=None, title=None, copies=None, options=None) :     
    214217        """Adds a job to the printer's history.""" 
    215         self.parent.writeJobNew(self, user, jobid, pagecounter, action, jobsize) 
     218        self.parent.writeJobNew(self, user, jobid, pagecounter, action, jobsize, filename, title, copies, options) 
    216219        # TODO : update LastJob object ? Probably not needed. 
    217220