File: gtdbtool

package info (click to toggle)
samba 3.0.14a-3sarge11
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 41,300 kB
  • ctags: 34,258
  • sloc: ansic: 272,220; sh: 6,859; perl: 6,419; makefile: 2,548; python: 2,315; awk: 1,435; exp: 1,147; yacc: 880; csh: 58; sed: 45
file content (39 lines) | stat: -rwxr-xr-x 772 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python

import sys
from gtkdictbrowser import GtkDictBrowser
import gtk
from samba import tdb
import string

# Open handle on tdb

if len(sys.argv) != 2:
    print "Usage: gdbtool <tdbfile>"
    sys.exit(1)

try:
    t = tdb.open(sys.argv[1])
except tdb.error, t:
    print "gtdbtool: error opening %s: %s" % (sys.argv[1], t)
    sys.exit(1)

# Create interface

db = GtkDictBrowser(t)

def display_key_x00(key):
    """Remove \x00 from all keys as they mucks up GTK."""
    return string.replace(key, "\x00", "")

db.register_get_key_text_fn(display_key_x00)

db.build_ui('gtdbtool')

# Override Python's handling of ctrl-c so we can break out of the
# gui from the command line.

import signal
signal.signal(signal.SIGINT, signal.SIG_DFL)

gtk.mainloop()