Changeset 1430

Show
Ignore:
Timestamp:
04/08/04 19:07:42 (20 years ago)
Author:
jalet
Message:

pkpgcounter added

Location:
pykota/trunk
Files:
1 added
7 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/Makefile.am

    r1417 r1430  
    1818#       pykotme                         \ 
    1919#       pkprinters                      \ 
    20 #       pkhint 
     20#       pkhint                          \ 
     21#       pkpgcounter 
  • pykota/trunk/conf/pykota.conf.sample

    r1422 r1430  
    198198# 
    199199#                   accounter: external(/bin/grep -c "%%Page:") 
     200# 
     201#                 Finally the new smart external accounter which 
     202#                 can handle both PostScript and PCL documents : 
     203# 
     204#                   accounter: external(/usr/bin/pkpgcounter) 
    200205#  
    201206#    - stupid : counts the occurences of the 'showpage' postscript 
     
    203208#               THIS IS NOT RELIABLE. This is just to serve as 
    204209#               an example on how to implement your own accounting 
    205 #               method. 
     210#               method. Use pkpgcounter instead. 
    206211# 
    207212# This value can be set either globally or on a per printer basis 
  • pykota/trunk/MANIFEST.in

    r1416 r1430  
    1 include README FAQ COPYING LICENSE TODO NEWS CREDITS SECURITY MANIFEST.in clean.sh bin/cupspykota bin/pykota bin/edpykota bin/warnpykota bin/repykota bin/pykotme bin/pkprinters bin/pkhint bin/snmpprinterstatus bin/waitprinter.sh bin/papwaitprinter.sh bin/mailandpopup.sh bin/README 
     1include README FAQ COPYING LICENSE TODO NEWS CREDITS SECURITY MANIFEST.in clean.sh bin/cupspykota bin/pykota bin/edpykota bin/warnpykota bin/repykota bin/pykotme bin/pkprinters bin/pkhint bin/pkpgcounter bin/snmpprinterstatus bin/waitprinter.sh bin/papwaitprinter.sh bin/mailandpopup.sh bin/README 
    22recursive-include po README *.po *.mo *.pot 
    33recursive-include man README *.sh *.1 
  • pykota/trunk/man/Makefile.am

    r1417 r1430  
    88        repykota.1                      \ 
    99        waitprinter.sh.1        \ 
     10        pkpgcounter.1   \ 
    1011        warnpykota.1 
    1112 
  • pykota/trunk/NEWS

    r1421 r1430  
    2222PyKota NEWS : 
    2323 
     24    - 1.19alpha2 : 
     25     
     26        - pkpgcounter is now included as a smart external 
     27          accounter which can handle both PostScript and PCL. 
     28           
    2429    - 1.19alpha1 :  
    2530     
  • pykota/trunk/pykota/version.py

    r1417 r1430  
    2222# 
    2323 
    24 __version__ = "1.19alpha1_unofficial" 
     24__version__ = "1.19alpha2_unofficial" 
    2525 
    2626__doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng.""" 
  • pykota/trunk/setup.py

    r1407 r1430  
    2424# 
    2525# $Log$ 
     26# Revision 1.39  2004/04/08 17:07:41  jalet 
     27# pkpgcounter added 
     28# 
    2629# Revision 1.38  2004/03/18 09:18:09  jalet 
    2730# Installation now checks for old scripts 
     
    413416      url = "http://www.librelogiciel.com/software/", 
    414417      packages = [ "pykota", "pykota.storages", "pykota.requesters", "pykota.loggers", "pykota.accounters", "pykota.reporters" ], 
    415       scripts = [ "bin/snmpprinterstatus", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme", "bin/pkprinters", "bin/pkhint" ], 
     418      scripts = [ "bin/pkpgcounter", "bin/snmpprinterstatus", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme", "bin/pkprinters", "bin/pkhint" ], 
    416419      data_files = data_files) 
    417420