- Timestamp:
- 02/27/04 10:30:33 (21 years ago)
- Location:
- pykota/trunk/pykota
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/storage.py
r1365 r1367 22 22 # 23 23 # $Log$ 24 # Revision 1.47 2004/02/27 09:30:33 jalet 25 # datelimit wasn't reset when modifying soft and hard limits with the LDAP backend 26 # 24 27 # Revision 1.46 2004/02/26 14:18:07 jalet 25 28 # Should fix the remaining bugs wrt printers groups and users groups. … … 351 354 self.SoftLimit = softlimit 352 355 self.HardLimit = hardlimit 356 self.DateLimit = None 353 357 354 358 def reset(self) : … … 416 420 self.SoftLimit = softlimit 417 421 self.HardLimit = hardlimit 422 self.DateLimit = None 418 423 419 424 class StorageJob(StorageObject) : -
pykota/trunk/pykota/storages/ldapstorage.py
r1365 r1367 22 22 # 23 23 # $Log$ 24 # Revision 1.58 2004/02/27 09:30:33 jalet 25 # datelimit wasn't reset when modifying soft and hard limits with the LDAP backend 26 # 24 27 # Revision 1.57 2004/02/26 14:18:07 jalet 25 28 # Should fix the remaining bugs wrt printers groups and users groups. … … 940 943 "pykotaSoftLimit" : str(softlimit), 941 944 "pykotaHardLimit" : str(hardlimit), 945 "pykotaDateLimit" : "None", 942 946 } 943 947 self.doModify(userpquota.ident, fields) … … 948 952 "pykotaSoftLimit" : str(softlimit), 949 953 "pykotaHardLimit" : str(hardlimit), 954 "pykotaDateLimit" : "None", 950 955 } 951 956 self.doModify(grouppquota.ident, fields)