Changeset 1226

Show
Ignore:
Timestamp:
11/28/03 09:31:28 (20 years ago)
Author:
jalet
Message:

Shell script to wait for AppleTalk? enabled printers being idle was added.

Location:
pykota/trunk
Files:
1 added
5 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/conf/pykota.conf.sample

    r1197 r1226  
    285285# pagecount.ps file from untested/netatalk into /etc or any  
    286286# appropriate location) 
    287 #     requester: external(/usr/bin/pap -p "MyPrinter:LaserWriter" /etc/pagecount.ps  2>/dev/null | grep -v status | grep -v Connect | tail -1) 
     287#     requester: external(/usr/bin/papwaitprinter.sh "MyPrinter:LaserWriter@*" && /usr/bin/pap -p "MyPrinter:LaserWriter@*" /etc/pagecount.ps  2>/dev/null | grep -v status | grep -v Connect | tail -1) 
    288288# 
    289289# This value can be set either globally or per printer or both. 
  • pykota/trunk/MANIFEST.in

    r1202 r1226  
    1 include 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  
     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/papwaitprinter.sh bin/README  
    22recursive-include po README *.po *.mo *.pot 
    33recursive-include man README *.1 
  • pykota/trunk/NEWS

    r1221 r1226  
    2222PyKota NEWS : 
    2323 
     24    - 1.15alpha15 : 
     25     
     26        - Now includes the papwaitprinter.sh shell script to wait for 
     27          AppleTalk enabled printers. 
     28           
    2429    - 1.16alpha14 : 
    2530     
  • pykota/trunk/pykota/version.py

    r1221 r1226  
    2222# 
    2323 
    24 __version__ = "1.16alpha14_unofficial" 
     24__version__ = "1.16alpha15_unofficial" 
    2525 
    2626__doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng.""" 
  • pykota/trunk/setup.py

    r1177 r1226  
    2424# 
    2525# $Log$ 
     26# Revision 1.27  2003/11/28 08:31:28  jalet 
     27# Shell script to wait for AppleTalk enabled printers being idle was added. 
     28# 
    2629# Revision 1.26  2003/11/08 16:05:31  jalet 
    2730# CUPS backend added for people to experiment. 
     
    335338      url = "http://www.librelogiciel.com/software/", 
    336339      packages = [ "pykota", "pykota.storages", "pykota.requesters", "pykota.loggers", "pykota.accounters", "pykota.reporters" ], 
    337       scripts = [ "bin/cupspykota", "bin/pykota", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme", "bin/waitprinter.sh" ], 
     340      scripts = [ "bin/cupspykota", "bin/pykota", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme", "bin/waitprinter.sh", "bin/papwaitprinter.sh" ], 
    338341      data_files = data_files) 
    339342