Kiln » TortoiseHg » TortoiseHg
Clone URL:  
hgtk
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python # # front-end script for TortoiseHg dialogs # # Copyright (C) 2008-9 Steve Borho <steve@borho.org> # Copyright (C) 2008 TK Soh <teekaysoh@gmail.com> # import pygtk pygtk.require('2.0') import gtk from mercurial import demandimport; demandimport.enable() import os import sys import cStringIO if hasattr(sys, "frozen"): thgdir = os.path.dirname(sys.executable) os.environ['THG_ICON_PATH'] = os.path.join(thgdir, 'icons') else: # check if hggtk is a symlink first pfile = __file__ if pfile.endswith('.pyc'): pfile = pfile[:-1] thgpath = os.path.dirname(os.path.realpath(pfile)) testpath = os.path.join(thgpath, 'hggtk') if os.path.isdir(testpath): if thgpath not in sys.path: sys.path.insert(0, thgpath) else: # try environment thgpath = os.environ.get('TORTOISEHG_PATH') if thgpath: thgpath = os.path.normpath(os.path.expanduser(thgpath)) if os.path.exists(thgpath) and thgpath not in sys.path: sys.path.insert(0, thgpath) # else assume tortoise is already in PYTHONPATH try: import hggtk.hgtk except ImportError: sys.stderr.write("abort: couldn't find hggtk libraries in [%s]\n" % ';'.join(sys.path)) sys.stderr.write("(check your install and PYTHONPATH)\n") sys.exit(-1) sys.stderr = cStringIO.StringIO() ret = hggtk.hgtk.dispatch(sys.argv[1:]) sys.stderr.seek(0) for l in sys.stderr.readlines(): if l.startswith('Traceback') or l.startswith('TypeError'): from hggtk.bugreport import run from mercurial import ui from hggtk.hgtk import gtkrun sys.stderr.seek(0) error = 'Recoverable runtime error (stderr):\n' + sys.stderr.read() gtkrun(run(ui.ui(), **{'cmd':' '.join(sys.argv[1:]), 'error':error})) break sys.exit(ret)