summaryrefslogtreecommitdiffstats
path: root/source/python
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-09-18 08:16:22 +0000
committerTim Potter <tpot@samba.org>2002-09-18 08:16:22 +0000
commit3c6975c711d87755f0532147f9aaecb224159f43 (patch)
treefa1b6c274a0b136076e9fe8e5d6a2b7bee83970f /source/python
parent0c1fadd9e024ef886542d362a7f119968552852d (diff)
downloadsamba-3c6975c711d87755f0532147f9aaecb224159f43.tar.gz
samba-3c6975c711d87755f0532147f9aaecb224159f43.tar.xz
samba-3c6975c711d87755f0532147f9aaecb224159f43.zip
Display the repr() of non-string dictionary values.
Diffstat (limited to 'source/python')
-rwxr-xr-xsource/python/gtkdictbrowser.py25
1 files changed, 18 insertions, 7 deletions
diff --git a/source/python/gtkdictbrowser.py b/source/python/gtkdictbrowser.py
index 6d6cdb3c8ae..dd8bed8f478 100755
--- a/source/python/gtkdictbrowser.py
+++ b/source/python/gtkdictbrowser.py
@@ -116,16 +116,27 @@ class GtkDictBrowser:
# Set the text to appear in the right hand side of the user interface
- def set_value_text(self, text):
- self.text.delete_text(0, self.text.get_length())
+ def set_value_text(self, item):
- # The text widget has trouble inserting text containing NULL
- # characters.
+ # Clear old old value in text window
- text = string.replace(text, "\x00", ".")
+ self.text.delete_text(0, self.text.get_length())
+
+ if type(item) == str:
- self.text.insert(self.font, None, None, text)
+ # The text widget has trouble inserting text containing NULL
+ # characters.
+
+ item = string.replace(item, "\x00", ".")
+
+ self.text.insert(self.font, None, None, item)
+ else:
+
+ # A non-text item
+
+ self.text.insert(self.font, None, None, repr(item))
+
# This function is called when a key is selected in the left hand side
# of the user interface.
@@ -246,7 +257,7 @@ def hex_string(data):
if __name__ == "__main__":
- dict = {"chicken": "ham", "spam": "fun"}
+ dict = {"chicken": "ham", "spam": "fun", "subdict": {"a": "b", "c": "d"}}
db = GtkDictBrowser(dict)