Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.1, 2.0.2, and 2.0.3

stable clone: display correctly non ASCII repository names

Changeset 71804cca102a

Parent b8bcc6ed744b

by André Sintzoff

Changes to one file · Browse files at 71804cca102a Showing diff from parent b8bcc6ed744b Diff from another changeset...

 
29
30
31
32
 
33
34
35
36
37
 
 
 
38
39
40
 
80
81
82
83
 
84
85
86
87
88
 
89
90
91
 
162
163
164
165
 
166
167
168
 
29
30
31
 
32
33
34
35
36
37
38
39
40
41
42
43
 
83
84
85
 
86
87
88
89
90
 
91
92
93
94
 
165
166
167
 
168
169
170
171
@@ -29,12 +29,15 @@
  self.ui = ui.ui()   self.ret = None   - dest = src = cwd = hglib.tounicode(os.getcwd()) + dest = src = cwd = os.getcwd()   if len(args) > 1:   src = args[0]   dest = args[1]   elif len(args):   src = args[0] + udest = hglib.tounicode(dest) + usrc = hglib.tounicode(src) + ucwd = hglib.tounicode(cwd)     # base layout box   box = QVBoxLayout() @@ -80,12 +83,12 @@
  self.shist = s.value('clone/source').toStringList()   for path in self.shist:   if path: self.src_combo.addItem(path) - self.src_combo.setEditText(src) + self.src_combo.setEditText(usrc)     self.dhist = s.value('clone/dest').toStringList()   for path in self.dhist:   if path: self.dest_combo.addItem(path) - self.dest_combo.setEditText(dest) + self.dest_combo.setEditText(udest)     ### options   expander = qtlib.ExpanderLabel(_('Options'), False) @@ -162,7 +165,7 @@
  # dialog setting   self.setLayout(box)   self.layout().setSizeConstraint(QLayout.SetFixedSize) - self.setWindowTitle(_('Clone - %s') % cwd) + self.setWindowTitle(_('Clone - %s') % ucwd)   self.setWindowIcon(qtlib.geticon('hg-clone'))     # prepare to show