Changeset 2904

Show
Ignore:
Timestamp:
05/31/06 19:16:52 (18 years ago)
Author:
jerome
Message:

Previously reported MySQL problem is now fixed.

Location:
pykota/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/NEWS

    r2896 r2904  
    2222PyKota NEWS : 
    2323        
     24    - 1.25alpha5 (2006-05-31) : 
     25     
     26        - Fixed MySQL schema to workaround some "features"... 
     27         
    2428    - 1.25alpha4 (2006-05-23) : 
    2529     
  • pykota/trunk/pykota/version.py

    r2891 r2904  
    2222# 
    2323 
    24 __version__ = "1.25alpha4_unofficial" 
     24__version__ = "1.25alpha5_unofficial" 
    2525 
    2626__doc__ = "PyKota : a complete Printing Quota Solution for CUPS." 
  • pykota/trunk/TODO

    r2902 r2904  
    2222TODO, in no particular order : 
    2323         
    24         - Work around some of MySQL "features" like this one : 
    25          
    26           --- CUT ---   
    27           mysql> SELECT datelimit FROM userpquota WHERE userid=1 AND printerid=1; 
    28           +---------------------+ 
    29           | datelimit           | 
    30           +---------------------+ 
    31           | 2006-05-31 16:20:03 | 
    32           +---------------------+ 
    33           1 row in set (0.00 sec) 
    34            
    35           mysql> UPDATE userpquota SET datelimit=NULL WHERE userid=1 AND printerid=1; 
    36           Query OK, 1 row affected (0.05 sec) 
    37           Rows matched: 1  Changed: 1  Warnings: 0 
    38            
    39           mysql> SELECT datelimit FROM userpquota WHERE userid=1 AND printerid=1; 
    40           +---------------------+ 
    41           | datelimit           | 
    42           +---------------------+ 
    43           | 2006-05-31 16:27:45 | 
    44           +---------------------+ 
    45           1 row in set (0.00 sec) 
    46            
    47           mysql>  
    48           --- CUT ---   
    49            
    5024        - Add a pkrefund command line tool & optional CGI script. 
    5125