Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1, 1.1.1, and 1.1.2

datamine: markup-escape match text

I also removed the trunctation as I'm not sure if it's safe to
do after markup-escaping and UTF8 conversion.

Changeset 4037b8e6c0f1

Parent ee5c2eae37ed

by Steve Borho

Changes to one file · Browse files at 4037b8e6c0f1 Showing diff from parent ee5c2eae37ed Diff from another changeset...

 
493
494
495
 
496
497
498
 
506
507
508
509
510
 
511
512
513
 
493
494
495
496
497
498
499
 
507
508
509
 
 
510
511
512
513
@@ -493,6 +493,7 @@
  text = ''   while q.qsize():   data, label = q.get(0) + data = gtklib.markup_escape_text(hglib.toutf(data))   if label == 'grep.match':   text += '<span foreground="red"><b>%s</b></span>' % data   else: @@ -506,8 +507,7 @@
  desc, user = self.get_rev_desc(long(revid))   if self.tabwidth:   text = text.expandtabs(self.tabwidth) - model.append((revid, hglib.toutf(text[:512]), desc, - hglib.toutf(path))) + model.append((revid, text, desc, hglib.toutf(path)))   if thread.isAlive():   return True   else: