Show
Ignore:
Timestamp:
04/10/04 00:24:47 (20 years ago)
Author:
jalet
Message:

Began work on correct handling of child processes when jobs are cancelled by
the user. Especially important when an external requester is running for a
long time.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/requesters/external.py

    r1257 r1433  
    2222# 
    2323# $Log$ 
     24# Revision 1.11  2004/04/09 22:24:47  jalet 
     25# Began work on correct handling of child processes when jobs are cancelled by 
     26# the user. Especially important when an external requester is running for a 
     27# long time. 
     28# 
    2429# Revision 1.10  2004/01/08 14:10:33  jalet 
    2530# Copyright year changed. 
     
    6368class Requester : 
    6469    """A class to send queries to printers via external commands.""" 
    65     def __init__(self, printername, arguments) : 
     70    def __init__(self, kotabackend, printername, arguments) : 
    6671        """Sets instance vars depending on the current printer.""" 
     72        self.kotabackend = kotabackend 
    6773        self.printername = printername 
    6874        self.commandline = arguments.strip()