Changeset 3018
- Timestamp:
- 09/15/06 16:31:53 (18 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r3013 r3018 361 361 self.OriginalJobBillingCode = None 362 362 else : 363 self.JobBillingCode = self.UTF8ToUserCharset(self.JobBillingCode) 363 364 self.OriginalJobBillingCode = self.JobBillingCode[:] 364 365 … … 466 467 action = "CANCEL" 467 468 elif line.startswith("USERNAME=") : 468 username = line.split("=", 1)[1].strip()469 username = self.userCharsetToUTF8(line.split("=", 1)[1].strip()) 469 470 self.logdebug("Seen new username [%s]" % username) 470 471 elif line.startswith("BILLINGCODE=") : 471 billingcode = line.split("=", 1)[1].strip()472 billingcode = self.userCharsetToUTF8(line.split("=", 1)[1].strip()) 472 473 self.logdebug("Seen new billing code [%s]" % billingcode) 473 474 except IOError, msg : -
pykota/trunk/NEWS
r3012 r3018 22 22 PyKota NEWS : 23 23 24 - 1.25alpha12 (2006-09-15) : 25 26 - Fixes encoding of username and billingcode when they 27 are overwritten by a subprocess. 28 24 29 - 1.25alpha11 (2006-09-06) : 25 30 -
pykota/trunk/pykota/version.py
r3012 r3018 22 22 # 23 23 24 __version__ = "1.25alpha1 1_unofficial"24 __version__ = "1.25alpha12_unofficial" 25 25 26 26 __doc__ = "PyKota : a complete Printing Quota Solution for CUPS."