Changeset 1115
- Timestamp:
- 08/17/03 16:20:25 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/CREDITS
r1108 r1115 40 40 - Peter Allmaker - Massachusetts College of Liberal Arts 41 41 - Nigel Pallett - Optimus UK Ltd 42 - Joby Mathew 43 - Alejandra Rodriguez 44 - Matt Hyclak - Ohio University 42 45 43 46 Contributors : … … 53 56 - Bob Martel - Cleveland State University : SNMP examples 54 57 - Michael Stuebiger : Non-postscript printers support documentation 58 - Oleg Biteryakov - University of Michigan : Bug fix in SQL code 55 59 56 60 ============================================================== -
pykota/trunk/NEWS
r1113 r1115 22 22 PyKota NEWS : 23 23 24 - 1.15alpha1 : 25 26 - Bug fix in SQL code. 27 24 28 - 1.14 : 25 29 -
pykota/trunk/pykota/storages/pgstorage.py
r1113 r1115 21 21 # 22 22 # $Log$ 23 # Revision 1.12 2003/08/17 14:20:25 jalet 24 # Bug fix by Oleg Biteryakov 25 # 23 26 # Revision 1.11 2003/07/29 20:55:17 jalet 24 27 # 1.14 is out ! … … 385 388 def writeUserPQuotaDateLimit(self, userpquota, datelimit) : 386 389 """Sets the date limit permanently for a user print quota.""" 387 self.doModify("UPDATE userpquota SET datelimit ::TIMESTAMP=%s WHERE id=%s" % (self.doQuote(datelimit), self.doQuote(userpquota.ident)))390 self.doModify("UPDATE userpquota SET datelimit=%s WHERE id=%s" % (self.doQuote(datelimit), self.doQuote(userpquota.ident))) 388 391 389 392 def writeGroupPQuotaDateLimit(self, grouppquota, datelimit) : 390 393 """Sets the date limit permanently for a group print quota.""" 391 self.doModify("UPDATE grouppquota SET datelimit ::TIMESTAMP=%s WHERE id=%s" % (self.doQuote(datelimit), self.doQuote(grouppquota.ident)))394 self.doModify("UPDATE grouppquota SET datelimit=%s WHERE id=%s" % (self.doQuote(datelimit), self.doQuote(grouppquota.ident))) 392 395 393 396 def writeUserPQuotaPagesCounters(self, userpquota, newpagecounter, newlifepagecounter) : -
pykota/trunk/pykota/version.py
r1113 r1115 21 21 # 22 22 23 __version__ = "1.1 4_unofficial"23 __version__ = "1.15alpha1_unofficial" 24 24 25 25 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""