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

datamine: fix markup issue in grep/annotate tooltips

Changeset 13b0c8347b3b

Parent 4fbc655d707a

by Steve Borho

Changes to one file · Browse files at 13b0c8347b3b Showing diff from parent 4fbc655d707a Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​datamine.py Stacked
 
20
21
22
 
23
24
25
 
150
151
152
 
153
154
155
 
20
21
22
23
24
25
26
 
151
152
153
154
155
156
157
@@ -20,6 +20,7 @@
 from vis.colormap import AnnotateColorMap, AnnotateColorSaturation  from vis.treeview import TreeView  import gtklib +import cgi    class DataMineDialog(GDialog):   COL_REVID = 0 @@ -150,6 +151,7 @@
  summary = summary.split('\n')[0]   date = displaytime(ctx.date())   desc = author+'@'+str(rev)+' '+date+' "'+summary+'"' + desc = cgi.escape(desc)   self.changedesc[rev] = (desc, author)   return (desc, author)