Show
Ignore:
Timestamp:
02/08/03 23:39:46 (21 years ago)
Author:
jalet
Message:

--reset command line option added

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storage.py

    r759 r768  
    1515# 
    1616# $Log$ 
     17# Revision 1.5  2003/02/08 22:39:46  jalet 
     18# --reset command line option added 
     19# 
    1720# Revision 1.4  2003/02/08 09:59:59  jalet 
    1821# Added preliminary base class for all storages 
     
    6669         
    6770    def addUserPQuota(self, username, printername) : 
    68         """Adds a tuple (user, printer) to the Quota Storage, both are also added individually if needed.""" 
     71        """Initializes a user print quota on a printer, adds the printer and the user to the quota storage if needed.""" 
    6972        pass 
    7073         
     
    7982    def setUserPQuota(self, username, printername, softlimit, hardlimit) : 
    8083        """Sets soft and hard limits for a user quota on a specific printer given (username, printername).""" 
     84        pass 
     85         
     86    def resetUserPQuota(self, username, printername) :     
     87        """Resets the page counter to zero. Life time page counter is kept unchanged.""" 
    8188        pass 
    8289