Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

commit: show parent details

Changeset b488e072a1ee

Parent 6ec9ed8b183d

by Adrian Buehlmann

Changes to one file · Browse files at b488e072a1ee Showing diff from parent 6ec9ed8b183d Diff from another changeset...

 
8
9
10
 
11
12
13
14
15
16
 
17
18
19
 
76
77
78
 
 
 
 
 
79
80
81
82
83
 
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
78
79
80
81
82
83
84
85
86
 
87
88
89
@@ -8,12 +8,14 @@
 import os    from mercurial import hg, ui, cmdutil, util, dispatch +from mercurial.node import short as short_hex    from PyQt4.QtCore import *  from PyQt4.QtGui import *    from tortoisehg.hgqt.i18n import _  from tortoisehg.util import hglib, shlib, paths +from tortoisehg.util.util import format_desc    from tortoisehg.hgqt import qtlib, status, cmdui, branchop   @@ -76,8 +78,12 @@
    usercombo.setEditable(True)   form.addRow(_('Changeset:'), QLabel(_('Working Copy'))) + ctx = repo['.'] + desc = format_desc(ctx.description(), 80) + fmt = "<span style='font-family:Courier'>%s(%s)</span> %s" + ptext = fmt % (ctx.rev(), short_hex(ctx.node()), desc) + form.addRow(_('Parent:'), QLabel(ptext))   form.addRow(_('User:'), usercombo) - form.addRow(_('Parent:'), QLabel('Description of ' + str(repo['.'])))   frame = QFrame()   frame.setLayout(form)   frame.setFrameStyle(QFrame.NoFrame)