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

history: show branch name for head revisions

Changeset 7355efe26eba

Parent 25e2fe12f5e3

by TK Soh

Changes to one file · Browse files at 7355efe26eba Showing diff from parent 25e2fe12f5e3 Diff from another changeset...

 
110
111
112
 
 
 
 
 
 
113
114
115
 
110
111
112
113
114
115
116
117
118
119
120
121
@@ -110,6 +110,12 @@
  summary = '<span background="#ffffaa"> %s </span> %s' % (   tag, summary)   + # show no-default branch names in head changesets + branch = ctx.branch() + if revid in self.heads and branch != "default": + summary = '<span background="#aaffaa"> %s </span> %s' % ( + branch, summary) +   if '<' in ctx.user():   author = toutf(self.author_re.sub('', ctx.user()).strip(' '))   else: