- Timestamp:
- 04/08/04 19:07:42 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 1 added
- 7 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/Makefile.am
r1417 r1430 18 18 # pykotme \ 19 19 # pkprinters \ 20 # pkhint 20 # pkhint \ 21 # pkpgcounter -
pykota/trunk/conf/pykota.conf.sample
r1422 r1430 198 198 # 199 199 # 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) 200 205 # 201 206 # - stupid : counts the occurences of the 'showpage' postscript … … 203 208 # THIS IS NOT RELIABLE. This is just to serve as 204 209 # an example on how to implement your own accounting 205 # method. 210 # method. Use pkpgcounter instead. 206 211 # 207 212 # 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/README1 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/pkpgcounter bin/snmpprinterstatus bin/waitprinter.sh bin/papwaitprinter.sh bin/mailandpopup.sh bin/README 2 2 recursive-include po README *.po *.mo *.pot 3 3 recursive-include man README *.sh *.1 -
pykota/trunk/man/Makefile.am
r1417 r1430 8 8 repykota.1 \ 9 9 waitprinter.sh.1 \ 10 pkpgcounter.1 \ 10 11 warnpykota.1 11 12 -
pykota/trunk/NEWS
r1421 r1430 22 22 PyKota NEWS : 23 23 24 - 1.19alpha2 : 25 26 - pkpgcounter is now included as a smart external 27 accounter which can handle both PostScript and PCL. 28 24 29 - 1.19alpha1 : 25 30 -
pykota/trunk/pykota/version.py
r1417 r1430 22 22 # 23 23 24 __version__ = "1.19alpha 1_unofficial"24 __version__ = "1.19alpha2_unofficial" 25 25 26 26 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng.""" -
pykota/trunk/setup.py
r1407 r1430 24 24 # 25 25 # $Log$ 26 # Revision 1.39 2004/04/08 17:07:41 jalet 27 # pkpgcounter added 28 # 26 29 # Revision 1.38 2004/03/18 09:18:09 jalet 27 30 # Installation now checks for old scripts … … 413 416 url = "http://www.librelogiciel.com/software/", 414 417 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" ], 416 419 data_files = data_files) 417 420