Changeset 2609
- Timestamp:
- 01/05/06 16:31:39 (19 years ago)
- Location:
- pykota/trunk
- Files:
-
- 15 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/autopykota
r2512 r2609 120 120 except KeyboardInterrupt : 121 121 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 122 retcode = -3 122 123 except PyKotaCommandLineError, msg : 123 124 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 125 retcode = -2 124 126 except SystemExit : 125 127 pass -
pykota/trunk/bin/dumpykota
r2600 r2609 161 161 except KeyboardInterrupt : 162 162 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 163 retcode = -3 163 164 except PyKotaCommandLineError, msg : 164 165 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 166 retcode = -2 165 167 except SystemExit : 166 168 pass -
pykota/trunk/bin/edpykota
r2515 r2609 613 613 except KeyboardInterrupt : 614 614 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 615 retcode = -3 615 616 except PyKotaCommandLineError, msg : 616 617 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 618 retcode = -2 617 619 except SystemExit : 618 620 pass -
pykota/trunk/bin/pkbanner
r2512 r2609 312 312 except KeyboardInterrupt : 313 313 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 314 retcode = -3 314 315 except PyKotaCommandLineError, msg : 315 316 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 317 retcode = -2 316 318 except SystemExit : 317 319 pass -
pykota/trunk/bin/pkbcodes
r2554 r2609 167 167 except KeyboardInterrupt : 168 168 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 169 retcode = -3 169 170 except PyKotaCommandLineError, msg : 170 171 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 172 retcode = -2 171 173 except SystemExit : 172 174 pass -
pykota/trunk/bin/pkmail
r2512 r2609 159 159 except KeyboardInterrupt : 160 160 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 161 retcode = -3 161 162 except PyKotaCommandLineError, msg : 162 163 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 164 retcode = -2 163 165 except SystemExit : 164 166 pass -
pykota/trunk/bin/pkprinters
r2512 r2609 264 264 except KeyboardInterrupt : 265 265 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 266 retcode = -3 266 267 except PyKotaCommandLineError, msg : 267 268 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 269 retcode = -2 268 270 except SystemExit : 269 271 pass -
pykota/trunk/bin/pkturnkey
r2512 r2609 492 492 except KeyboardInterrupt : 493 493 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 494 retcode = -3 494 495 except PyKotaCommandLineError, msg : 495 496 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 497 retcode = -2 496 498 except SystemExit : 497 499 pass -
pykota/trunk/bin/pykoef
r2572 r2609 131 131 except KeyboardInterrupt : 132 132 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 133 retcode = -3 133 134 except PyKotaCommandLineError, msg : 134 135 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 136 retcode = -2 135 137 except SystemExit : 136 138 pass -
pykota/trunk/bin/pykosd
r2544 r2609 194 194 except KeyboardInterrupt : 195 195 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 196 retcode = -3 196 197 except PyKotaCommandLineError, msg : 197 198 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 199 retcode = -2 198 200 except SystemExit : 199 201 pass -
pykota/trunk/bin/pykotme
r2524 r2609 151 151 except KeyboardInterrupt : 152 152 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 153 retcode = -3 153 154 except PyKotaCommandLineError, msg : 154 155 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 156 retcode = -2 155 157 except SystemExit : 156 158 pass -
pykota/trunk/bin/repykota
r2512 r2609 160 160 except KeyboardInterrupt : 161 161 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 162 retcode = -3 162 163 except PyKotaCommandLineError, msg : 163 164 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 165 retcode = -2 164 166 except SystemExit : 165 167 pass -
pykota/trunk/bin/warnpykota
r2547 r2609 160 160 except KeyboardInterrupt : 161 161 sys.stderr.write("\nInterrupted with Ctrl+C !\n") 162 retcode = -3 162 163 except PyKotaCommandLineError, msg : 163 164 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 165 retcode = -2 164 166 except SystemExit : 165 167 pass -
pykota/trunk/NEWS
r2605 r2609 22 22 PyKota NEWS : 23 23 24 - 1.24alpha6 : 25 26 - Now command line errors and Ctrl+C repectively cause 27 PyKota commands to exit with status -2 and -3. 28 24 29 - 1.24alpha5 : 25 30 -
pykota/trunk/pykota/version.py
r2600 r2609 22 22 # 23 23 24 __version__ = "1.24alpha 5_unofficial"24 __version__ = "1.24alpha6_unofficial" 25 25 26 26 __doc__ = "PyKota : a complete Printing Quota Solution for CUPS."