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/storages/ldapstorage.py

    r1179 r1200  
    2222# 
    2323# $Log$ 
     24# Revision 1.36  2003/11/21 14:28:46  jalet 
     25# More complete job history. 
     26# 
    2427# Revision 1.35  2003/11/12 13:06:37  jalet 
    2528# Bug fix wrt no user/group name command line argument to edpykota 
     
    690693        self.doModify(lastjob.ident, fields)          
    691694         
    692     def writeJobNew(self, printer, user, jobid, pagecounter, action, jobsize=None) :     
     695    def writeJobNew(self, printer, user, jobid, pagecounter, action, jobsize=None, filename=None, title=None, copies=None, options=None) :     
    693696        """Adds a job in a printer's history.""" 
    694697        if (not self.disablehistory) or (not printer.LastJob.Exists) : 
     
    706709                   "pykotaPrinterPageCounter" : str(pagecounter), 
    707710                   "pykotaAction" : action, 
     711                   "pykotaFileName" : str(filename),  
     712                   "pykotaTitle" : str(title),  
     713                   "pykotaCopies" : str(copies),  
     714                   "pykotaOptions" : str(options),  
    708715                 } 
    709716        if (not self.disablehistory) or (not printer.LastJob.Exists) :