- Timestamp:
- 11/17/04 00:23:40 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/CREDITS
r1923 r1933 144 144 - Klaus Ade Johnstad - SkoleLinux - Norwegian Bokm�translation 145 145 - Matt Hyclak - Wrote the banner handling stuff. 146 - Wilson Roberto Afonso - Sent a patch for PJL. 146 147 147 148 ============================================================== -
pykota/trunk/NEWS
r1923 r1933 22 22 PyKota NEWS : 23 23 24 - 1.21alpha4 : 25 26 - Fixed job's data file detection code for LPRng. 27 28 - Fixed a problem with PJL and PowerSave mode, 29 thanks to Wilson Roberto Afonso. 30 24 31 - 1.21alpha3 : 25 32 -
pykota/trunk/pykota/accounters/hardware.py
r1896 r1933 22 22 # 23 23 # $Log$ 24 # Revision 1.32 2004/11/16 23:23:40 jalet 25 # Fixed internal PJL handling wrt the 35078 PowerSave mode. 26 # 24 27 # Revision 1.31 2004/11/01 14:32:26 jalet 25 28 # Fix for unneeded out of band status in pjl_over_tcp/9100 … … 239 242 "10005" : "Reset", 240 243 "10023" : "Printing", 244 "35078" : "Powersave Mode", # 10000 is ALSO powersave !!! 241 245 } 242 246 class PJLAccounter : … … 295 299 while 1: 296 300 self.retrievePJLValues() 297 if self.printerStatus in ('10000', '10001', '10023' ) :301 if self.printerStatus in ('10000', '10001', '10023', '35078') : 298 302 break 299 303 self.parent.filter.logdebug(_("Waiting for printer %s to be idle or printing...") % self.parent.filter.printername) … … 306 310 self.retrievePJLValues() 307 311 idle_flag = 0 308 if self.printerStatus in ('10000', '10001', ) :312 if self.printerStatus in ('10000', '10001', '35078') : 309 313 idle_flag = 1 310 314 if idle_flag : -
pykota/trunk/pykota/version.py
r1923 r1933 22 22 # 23 23 24 __version__ = "1.21alpha 3_unofficial"24 __version__ = "1.21alpha4_unofficial" 25 25 26 26 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""