Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

hgtk: add rename dialog

Changeset ebc244134a0b

Parent 78030fddc3f6

by Steve Borho

Changes to one file · Browse files at ebc244134a0b Showing diff from parent 78030fddc3f6 Diff from another changeset...

Change 1 of 2 Show Entire File contrib/​hgtk Stacked
 
204
205
206
 
 
 
 
 
 
207
208
209
 
463
464
465
 
466
467
468
 
204
205
206
207
208
209
210
211
212
213
214
215
 
469
470
471
472
473
474
475
@@ -204,6 +204,12 @@
  opts['files'] = opts['root']   run(**opts)   +def rename(ui, *pats, **opts): + """repository configuration editor""" + from hggtk.rename import run + opts['fname'] = pats[0] + run(**opts) +  def datamine(ui, *pats, **opts):   """repository search and annotate tool"""   from hggtk.datamine import run @@ -463,6 +469,7 @@
  "^status|st": (status, [], _('hgtk status [FILE]...')),   "^userconfig": (userconfig, [], _('hgtk userconfig')),   "^repoconfig": (repoconfig, [], _('hgtk repoconfig')), + "^rename|mv": (rename, [], _('hgtk rename FILE')),   "^serve":   (serve,   [('', 'webdir-conf', '', _('name of the webdir config file'))],