Changeset 3171

Show
Ignore:
Timestamp:
04/19/07 14:16:47 (17 years ago)
Author:
jerome
Message:

Still apply the deprecated utolower directive if it is set, in order
to not break existing configurations.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/cupspykota

    r3169 r3171  
    393393        # this option is deprecated, and we want to tell people     
    394394        # this is the case. 
    395         dummy = self.config.getUserNameToLower() 
    396         if dummy is not None : 
     395        tolower = self.config.getUserNameToLower() 
     396        if tolower is not None : 
    397397            self.printInfo("Option 'utolower' is deprecated. Please use the 'usernamecase' option instead. Syntax is 'usernamecase: lower|upper|native' and defaults to 'native'.", "error") 
     398            # We apply it anyway if needed, to not break existing 
     399            # configurations. TODO : make this a fatal failure in v1.27 
     400            if self.config.isTrue(tolower) : 
     401                self.UserName = self.UserName.lower() 
     402                 
    398403        # Now use the newer and more complete 'usernamecase' directive.     
    399404        casechange = self.config.getUserNameCase()