Changeset 2904
- Timestamp:
- 05/31/06 19:16:52 (18 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r2896 r2904 22 22 PyKota NEWS : 23 23 24 - 1.25alpha5 (2006-05-31) : 25 26 - Fixed MySQL schema to workaround some "features"... 27 24 28 - 1.25alpha4 (2006-05-23) : 25 29 -
pykota/trunk/pykota/version.py
r2891 r2904 22 22 # 23 23 24 __version__ = "1.25alpha 4_unofficial"24 __version__ = "1.25alpha5_unofficial" 25 25 26 26 __doc__ = "PyKota : a complete Printing Quota Solution for CUPS." -
pykota/trunk/TODO
r2902 r2904 22 22 TODO, in no particular order : 23 23 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: 038 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 50 24 - Add a pkrefund command line tool & optional CGI script. 51 25