Changeset 1226
- Timestamp:
- 11/28/03 09:31:28 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 1 added
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/conf/pykota.conf.sample
r1197 r1226 285 285 # pagecount.ps file from untested/netatalk into /etc or any 286 286 # 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) 288 288 # 289 289 # 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/ README1 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/papwaitprinter.sh bin/README 2 2 recursive-include po README *.po *.mo *.pot 3 3 recursive-include man README *.1 -
pykota/trunk/NEWS
r1221 r1226 22 22 PyKota NEWS : 23 23 24 - 1.15alpha15 : 25 26 - Now includes the papwaitprinter.sh shell script to wait for 27 AppleTalk enabled printers. 28 24 29 - 1.16alpha14 : 25 30 -
pykota/trunk/pykota/version.py
r1221 r1226 22 22 # 23 23 24 __version__ = "1.16alpha1 4_unofficial"24 __version__ = "1.16alpha15_unofficial" 25 25 26 26 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng.""" -
pykota/trunk/setup.py
r1177 r1226 24 24 # 25 25 # $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 # 26 29 # Revision 1.26 2003/11/08 16:05:31 jalet 27 30 # CUPS backend added for people to experiment. … … 335 338 url = "http://www.librelogiciel.com/software/", 336 339 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" ], 338 341 data_files = data_files) 339 342