Show
Ignore:
Timestamp:
05/29/07 11:12:17 (17 years ago)
Author:
jerome
Message:

Special DB auth seems to work fine with clear text passwords.

Location:
pykota/branches/specialauth/pykota
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • pykota/branches/specialauth/pykota/storage.py

    r3133 r3179  
    7171        self.LifeTimePaid = None 
    7272        self.Email = None 
     73        self.Password = None 
    7374        self.OverCharge = 1.0 
    7475        self.Payments = [] # TODO : maybe handle this smartly for SQL, for now just don't retrieve them 
  • pykota/branches/specialauth/pykota/storages/sql.py

    r3165 r3179  
    3636        user.LifeTimePaid = record.get("lifetimepaid") 
    3737        user.Email = record.get("email") 
     38        user.Password = record.get("password") 
    3839        user.Description = self.databaseToUserCharset(record.get("description")) 
    3940        user.OverCharge = record.get("overcharge", 1.0) 
  • pykota/branches/specialauth/pykota/version.py

    r3162 r3179  
    2222# 
    2323 
    24 __version__ = "1.26alpha5_unofficial" 
     24__version__ = "1.26alpha5_specialauth_unofficial" 
    2525 
    2626__doc__ = "PyKota : a complete Printing Quota Solution for CUPS."