Changeset 1177

Show
Ignore:
Timestamp:
11/08/03 17:05:32 (20 years ago)
Author:
jalet
Message:

CUPS backend added for people to experiment.

Location:
pykota/trunk
Files:
1 added
5 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/pykota

    r1176 r1177  
    2424# 
    2525# $Log$ 
     26# Revision 1.44  2003/11/08 16:05:31  jalet 
     27# CUPS backend added for people to experiment. 
     28# 
    2629# Revision 1.43  2003/11/06 22:33:25  jalet 
    2730# French variable name 
     
    342345        sys.stderr.write("ERROR : PyKota filter failed (%s)\n" % msg) 
    343346        sys.stderr.flush() 
    344         retcode = -1 
     347        try : 
     348            retcode = kotafilter.removeJob() 
     349        except : 
     350            retcode = -1 
    345351 
    346352    try : 
  • pykota/trunk/MANIFEST.in

    r1095 r1177  
    1 include COPYING TODO NEWS CREDITS SECURITY MANIFEST.in clean.sh bin/pykota bin/edpykota bin/warnpykota bin/repykota bin/pykotme bin/waitprinter.sh bin/README  
     1include COPYING TODO NEWS CREDITS SECURITY MANIFEST.in clean.sh bin/cupspykota bin/pykota bin/edpykota bin/warnpykota bin/repykota bin/pykotme bin/waitprinter.sh bin/README  
    22recursive-include po README *.po *.mo *.pot 
    33recursive-include man README *.1 
  • pykota/trunk/NEWS

    r1175 r1177  
    2222PyKota NEWS : 
    2323 
     24    - 1.16alpha4 : 
     25     
     26        - New CUPS backend added.  
     27         
    2428    - 1.16alpha3 : 
    2529        
  • pykota/trunk/pykota/version.py

    r1175 r1177  
    2222# 
    2323 
    24 __version__ = "1.16alpha3_unofficial" 
     24__version__ = "1.16alpha4_unofficial" 
    2525 
    2626__doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng.""" 
  • pykota/trunk/setup.py

    r1149 r1177  
    2424# 
    2525# $Log$ 
     26# Revision 1.26  2003/11/08 16:05:31  jalet 
     27# CUPS backend added for people to experiment. 
     28# 
    2629# Revision 1.25  2003/10/08 07:01:19  jalet 
    2730# Job history can be disabled. 
     
    332335      url = "http://www.librelogiciel.com/software/", 
    333336      packages = [ "pykota", "pykota.storages", "pykota.requesters", "pykota.loggers", "pykota.accounters", "pykota.reporters" ], 
    334       scripts = [ "bin/pykota", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme", "bin/waitprinter.sh" ], 
     337      scripts = [ "bin/cupspykota", "bin/pykota", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme", "bin/waitprinter.sh" ], 
    335338      data_files = data_files) 
    336339