diff options
author | W. Trevor King <wking@drexel.edu> | 2008-11-24 21:15:55 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2008-11-24 21:15:55 -0500 |
commit | 4c6f8ceeafd1eadb4de8f86fed93f779613deece (patch) | |
tree | 56d42ceb27d9d343c742c85558b55a05f6fd3fcd /libbe | |
parent | cb18ea54f783ed37a39fc12561329b398830d656 (diff) | |
download | bugseverywhere-4c6f8ceeafd1eadb4de8f86fed93f779613deece.tar.gz |
Adjusted becommands/set to handle user_id properly.
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/bugdir.py | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/libbe/bugdir.py b/libbe/bugdir.py index 7e4cf3e..596922f 100644 --- a/libbe/bugdir.py +++ b/libbe/bugdir.py @@ -74,6 +74,9 @@ def setting_property(name, valid=None, doc=None): def setter(self, value): if value != getter(self): + if valid is not None: + if value not in valid and value != None: + raise InvalidValue(name, value) if value is None: del self.settings[name] else: @@ -178,7 +181,7 @@ settings easy. Don't set this attribute. Set .rcs instead, and rcs = property(_get_rcs, _set_rcs, doc="A revision control system (RCS) instance") - _user_id = setting_property("user-id", doc= + _user_id = setting_property("user_id", doc= """The user's prefered name. Kept seperate to make saving/loading settings easy. Don't set this attribute. Set .user_id instead, and ._user_id will be automatically adjusted. This setting is @@ -238,9 +241,9 @@ that the Arch RCS backend *enforces* ids with this format.""") self.settings = self._get_settings(self.get_path("settings")) self.rcs = rcs.rcs_by_name(self.rcs_name) - if self._user_id != None: # was a user name in the settings file - self.save_user_id() - + if self.settings.get("user_id") != None: + self.save_user_id() # was a user name in the settings file + self._bug_map_gen() def load_all_bugs(self): @@ -286,9 +289,9 @@ that the Arch RCS backend *enforces* ids with this format.""") # to go cluttering up his file system with settings files. return if self._save_user_id == False: - if "user-id" in settings: + if "user_id" in settings: settings = copy.copy(settings) - del settings["user-id"] + del settings["user_id"] allow_no_rcs = not self.rcs.path_in_root(settings_path) # allow_no_rcs=True should only be for the special case of # configuring duplicate bugdir settings @@ -304,7 +307,7 @@ that the Arch RCS backend *enforces* ids with this format.""") duplicate_settings = self._get_settings(duplicate_settings_path) if "rcs_name" in duplicate_settings: duplicate_settings["rcs_name"] = "None" - duplicate_settings["user-id"] = self.user_id + duplicate_settings["user_id"] = self.user_id self._save_settings(duplicate_settings_path, duplicate_settings) return BugDir(duplicate_path, from_disk=True) |