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
RevLine 
[4235]1diff -up gdm2setup-0.5.3-lucid/gdm2/gdm2gconf.py.fix-case-sensitive gdm2setup-0.5.3-lucid/gdm2/gdm2gconf.py
2--- gdm2setup-0.5.3-lucid/gdm2/gdm2gconf.py.fix-case-sensitive  2011-06-28 20:20:45.923692463 +0900
3+++ gdm2setup-0.5.3-lucid/gdm2/gdm2gconf.py     2011-06-28 20:22:51.979692463 +0900
4@@ -61,6 +61,7 @@ class GDM2Theme(object): 
5     def GetAutoLogin(self):
6         try:
7             config = ConfigParser.RawConfigParser()
8+            config.optionxform = str
9             config.read(self.GDMCONF_FILE)
10             return config.getboolean('daemon', 'AutomaticLoginEnable')
11         except:
Note: See TracBrowser for help on using the repository browser.