Changeset 3141 for pykota/trunk
- Timestamp:
- 01/31/07 16:00:41 (18 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r3136 r3141 1173 1173 self.BannerSize = 0 1174 1174 accountbanner = self.config.getAccountBanner(self.PrinterName) 1175 if accountbanner in ["ENDING", "NONE"] :1175 if (self.Action != "CANCEL") and accountbanner in ["ENDING", "NONE"] : 1176 1176 self.handleBanner("starting", 0) 1177 1177 … … 1187 1187 1188 1188 # handle starting banner pages with accounting 1189 if accountbanner in ["STARTING", "BOTH"] :1189 if (self.Action != "CANCEL") and accountbanner in ["STARTING", "BOTH"] : 1190 1190 if not self.gotSigTerm : 1191 1191 self.handleBanner("starting", 1) … … 1201 1201 1202 1202 # handle ending banner pages with accounting 1203 if accountbanner in ["ENDING", "BOTH"] :1203 if (self.Action != "CANCEL") and accountbanner in ["ENDING", "BOTH"] : 1204 1204 if not self.gotSigTerm : 1205 1205 self.handleBanner("ending", 1) … … 1289 1289 1290 1290 # handle ending banner pages without accounting 1291 if accountbanner in ["STARTING", "NONE"] :1291 if (self.Action != "CANCEL") and accountbanner in ["STARTING", "NONE"] : 1292 1292 self.handleBanner("ending", 0) 1293 1293 -
pykota/trunk/NEWS
r3140 r3141 22 22 PyKota NEWS : 23 23 24 - 1.26alpha3 (2007-01-31) : 25 26 - Doesn't print banners anymore when the user cancelled the print job. 27 24 28 - 1.26alpha2 (2007-01-18) : 25 29 -
pykota/trunk/pykota/version.py
r3135 r3141 22 22 # 23 23 24 __version__ = "1.26alpha 2_unofficial"24 __version__ = "1.26alpha3_unofficial" 25 25 26 26 __doc__ = "PyKota : a complete Printing Quota Solution for CUPS."