- Timestamp:
- 11/08/03 17:05:32 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 1 added
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/pykota
r1176 r1177 24 24 # 25 25 # $Log$ 26 # Revision 1.44 2003/11/08 16:05:31 jalet 27 # CUPS backend added for people to experiment. 28 # 26 29 # Revision 1.43 2003/11/06 22:33:25 jalet 27 30 # French variable name … … 342 345 sys.stderr.write("ERROR : PyKota filter failed (%s)\n" % msg) 343 346 sys.stderr.flush() 344 retcode = -1 347 try : 348 retcode = kotafilter.removeJob() 349 except : 350 retcode = -1 345 351 346 352 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/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/README 2 2 recursive-include po README *.po *.mo *.pot 3 3 recursive-include man README *.1 -
pykota/trunk/NEWS
r1175 r1177 22 22 PyKota NEWS : 23 23 24 - 1.16alpha4 : 25 26 - New CUPS backend added. 27 24 28 - 1.16alpha3 : 25 29 -
pykota/trunk/pykota/version.py
r1175 r1177 22 22 # 23 23 24 __version__ = "1.16alpha 3_unofficial"24 __version__ = "1.16alpha4_unofficial" 25 25 26 26 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng.""" -
pykota/trunk/setup.py
r1149 r1177 24 24 # 25 25 # $Log$ 26 # Revision 1.26 2003/11/08 16:05:31 jalet 27 # CUPS backend added for people to experiment. 28 # 26 29 # Revision 1.25 2003/10/08 07:01:19 jalet 27 30 # Job history can be disabled. … … 332 335 url = "http://www.librelogiciel.com/software/", 333 336 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" ], 335 338 data_files = data_files) 336 339