From 978f7b6d8a6c0851abf31ba71fad68be1d34d566 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Tue, 2 Sep 2008 13:22:29 +0200 Subject: Removed ConfigParser.set_boolean and use normal ConfigParser.set instead --- portato/config_parser.py | 49 ++++++++++----------------------------- portato/gui/windows/preference.py | 4 ++-- 2 files changed, 14 insertions(+), 39 deletions(-) diff --git a/portato/config_parser.py b/portato/config_parser.py index e3f78db..37a32bf 100644 --- a/portato/config_parser.py +++ b/portato/config_parser.py @@ -354,7 +354,7 @@ class ConfigParser: raise ValueError, "\"%s\" is not a boolean. (%s)" % (key, val.value) - def set (self, key, value = "", section = "MAIN"): + def set (self, key, value, section = "MAIN"): """ Sets a new value of a given key in a section. @@ -362,7 +362,7 @@ class ConfigParser: key : string the key - value : string + value : string or boolean the new value section : string the section @@ -371,47 +371,22 @@ class ConfigParser: - `KeyNotFoundException` : Raised if the specified key could not be found. - `SectionNotFoundException` : Raised if the specified section could not be found. + - `ValueError` : if a boolean value is passed and the old/new value is not a boolean """ section = section.upper() key = key.lower() - self._access(key, section).value = value - - def set_boolean (self, key, value, section = "MAIN"): - """ - Sets a new boolean value of a given key in a section. - Therefore it invertes the string representation of the boolean (in lowercase). - - :Parameters: - - key : string - the key - value : boolean - the new value - section : string - the section - - :Exceptions: - - - `KeyNotFoundException` : Raised if the specified key could not be found. - - `SectionNotFoundException` : Raised if the specified section could not be found. - - `ValueError` : if the old/new value is not a boolean - """ - - section = section.upper() - key = key.lower() - - if not isinstance(value, bool): - raise ValueError, "Passed value must be a boolean." - - val = self._access(key, section) - if val.is_bool(): - if value is not val.boolean: - val.boolean = value - val.value = self._invert(val.value) + if not isinstance(value, bool): # str + self._access(key, section).value = value else: - raise ValueError, "\"%s\" is not a boolean." % key + val = self._access(key, section) + if val.is_bool(): + if value is not val.boolean: + val.boolean = value + val.value = self._invert(val.value) + else: + raise ValueError, "\"%s\" is not a boolean." % key def add_section (self, section, comment = None, with_blankline = True): """ diff --git a/portato/gui/windows/preference.py b/portato/gui/windows/preference.py index 94d7ade..57425a0 100644 --- a/portato/gui/windows/preference.py +++ b/portato/gui/windows/preference.py @@ -143,9 +143,9 @@ class PreferenceWindow (AbstractDialog): for box, val in self.checkboxes.iteritems(): if isinstance(val, tuple): - self.cfg.set_boolean(val[0], self.tree.get_widget(box).get_active(), section = val[1]) + self.cfg.set(val[0], self.tree.get_widget(box).get_active(), section = val[1]) else: - self.cfg.set_boolean(val, self.tree.get_widget(box).get_active()) + self.cfg.set(val, self.tree.get_widget(box).get_active()) for edit, val in self.edits.iteritems(): if isinstance(val,tuple): -- cgit v1.2.3