Kiln » TortoiseHg » TortoiseHg
Clone URL:  
rename.py
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
61
62
63
64
65
66
67
68
69
70
71
72
73
# rename.py - TortoiseHg's dialogs for handling renames # # Copyright 2009 Steve Borho <steve@borho.org> # # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. import sys import gtk import cStringIO from mercurial import hg, ui, util, commands from tortoisehg.util.i18n import _ from tortoisehg.util import hglib, paths from tortoisehg.hgtk import dialog def run(ui, *pats, **opts): fname, target = '', '' try: fname = pats[0] target = pats[1] except IndexError: pass fname = util.normpath(fname) if target: target = hglib.toutf(util.normpath(target)) else: target = hglib.toutf(fname) title = _('Rename ') + hglib.toutf(fname) dlg = dialog.entry_dialog(None, title, True, target, rename_resp) dlg.orig = fname return dlg def rename_resp(dlg, response): if response != gtk.RESPONSE_OK: dlg.destroy() return try: root = paths.find_root() repo = hg.repository(ui.ui(), root) except (ImportError, hglib.RepoError): dlg.destroy() return new_name = hglib.fromutf(dlg.entry.get_text()) opts = {} opts['force'] = False # Checkbox? Nah. opts['after'] = False opts['dry_run'] = False saved = sys.stderr errors = cStringIO.StringIO() toquit = False try: sys.stderr = errors repo.ui.pushbuffer() repo.ui.quiet = True try: commands.rename(repo.ui, repo, dlg.orig, new_name, **opts) toquit = True except (util.Abort, hglib.RepoError), inst: dlg.error_dialog(None, _('rename error'), str(inst)) toquit = False finally: sys.stderr = saved textout = errors.getvalue() + repo.ui.popbuffer() errors.close() if len(textout) > 1: dlg.error_dialog(None, _('rename error'), textout) elif toquit: dlg.destroy()