Changeset 1115

Show
Ignore:
Timestamp:
08/17/03 16:20:25 (21 years ago)
Author:
jalet
Message:

Bug fix by Oleg Biteryakov

Location:
pykota/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/CREDITS

    r1108 r1115  
    4040    - Peter Allmaker - Massachusetts College of Liberal Arts 
    4141    - Nigel Pallett - Optimus UK Ltd 
     42    - Joby Mathew 
     43    - Alejandra Rodriguez 
     44    - Matt Hyclak - Ohio University 
    4245 
    4346Contributors : 
     
    5356    - Bob Martel - Cleveland State University : SNMP examples 
    5457    - Michael Stuebiger : Non-postscript printers support documentation 
     58    - Oleg Biteryakov - University of Michigan : Bug fix in SQL code 
    5559 
    5660============================================================== 
  • pykota/trunk/NEWS

    r1113 r1115  
    2222PyKota NEWS : 
    2323 
     24    - 1.15alpha1 : 
     25     
     26        - Bug fix in SQL code. 
     27         
    2428    - 1.14 :  
    2529     
  • pykota/trunk/pykota/storages/pgstorage.py

    r1113 r1115  
    2121# 
    2222# $Log$ 
     23# Revision 1.12  2003/08/17 14:20:25  jalet 
     24# Bug fix by Oleg Biteryakov 
     25# 
    2326# Revision 1.11  2003/07/29 20:55:17  jalet 
    2427# 1.14 is out ! 
     
    385388    def writeUserPQuotaDateLimit(self, userpquota, datelimit) :     
    386389        """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))) 
    388391             
    389392    def writeGroupPQuotaDateLimit(self, grouppquota, datelimit) :     
    390393        """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))) 
    392395         
    393396    def writeUserPQuotaPagesCounters(self, userpquota, newpagecounter, newlifepagecounter) :     
  • pykota/trunk/pykota/version.py

    r1113 r1115  
    2121# 
    2222 
    23 __version__ = "1.14_unofficial" 
     23__version__ = "1.15alpha1_unofficial" 
    2424 
    2525__doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""