Show
Ignore:
Timestamp:
11/29/03 21:06:20 (20 years ago)
Author:
jalet
Message:

Added 'utolower' configuration option to convert all usernames to
lowercase when printing. All database accesses are still and will
remain case sensitive though.

Files:
1 modified

Legend:

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

    r1218 r1227  
    2222# 
    2323# $Log$ 
     24# Revision 1.63  2003/11/29 20:06:20  jalet 
     25# Added 'utolower' configuration option to convert all usernames to 
     26# lowercase when printing. All database accesses are still and will 
     27# remain case sensitive though. 
     28# 
    2429# Revision 1.62  2003/11/25 22:37:22  jalet 
    2530# Small code move 
     
    640645         self.originalbackend) = self.extractInfoFromCupsOrLprng() 
    641646        self.username = self.username or 'root'  
     647        if self.config.getUserNameToLower() : 
     648            self.username = self.username.lower() 
    642649        self.preserveinputfile = self.inputfile  
    643650        self.accounter = accounter.openAccounter(self)