From 571a8e73c7e332d2c7ab2cc5bca78277aed367ca Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 21 Jul 2009 16:20:21 -0400 Subject: Added BugDir.extra_strings. --- libbe/bugdir.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/libbe/bugdir.py b/libbe/bugdir.py index 9802502..6e020ee 100644 --- a/libbe/bugdir.py +++ b/libbe/bugdir.py @@ -228,6 +228,20 @@ settings easy. Don't set this attribute. Set .rcs instead, and map[uuid] = None self._bug_map_value = map # ._bug_map_value used by @local_property + def _extra_strings_check_fn(value): + return utility.iterable_full_of_strings(value, \ + alternative=settings_object.EMPTY) + def _extra_strings_change_hook(self, old, new): + self.extra_strings.sort() # to make merging easier + self._prop_save_settings(old, new) + @_versioned_property(name="extra_strings", + doc="Space for an array of extra strings. Useful for storing state for functionality implemented purely in becommands/.py.", + default=[], + check_fn=_extra_strings_check_fn, + change_hook=_extra_strings_change_hook, + mutable=True) + def extra_strings(): return {} + @Property @primed_property(primer=_bug_map_gen) @local_property("bug_map") -- cgit