source: projects/specs/trunk/g/gdm2setup/gdm2setup-0.5.3-fix-case-sensitive.patch @ 4235

Revision 4235, 599 bytes checked in by daisuke, 13 years ago (diff)

gdm2setup:

  • add patch4: ConfigParser? should be case-sensitive.
  • add patch5 to fix typo
  • add patch6 to enable show userlist even if autologin is enabled.
  • add patch7 to disable debug message
  • gdm2setup-0.5.3-lucid/gdm2/gdm2gconf.py

    diff -up gdm2setup-0.5.3-lucid/gdm2/gdm2gconf.py.fix-case-sensitive gdm2setup-0.5.3-lucid/gdm2/gdm2gconf.py
    old new class GDM2Theme(object):  
    6161    def GetAutoLogin(self): 
    6262        try: 
    6363            config = ConfigParser.RawConfigParser() 
     64            config.optionxform = str 
    6465            config.read(self.GDMCONF_FILE) 
    6566            return config.getboolean('daemon', 'AutomaticLoginEnable') 
    6667        except: 
Note: See TracBrowser for help on using the repository browser.