Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.2, 2.0.3, and 2.0.4

stable repomodel: fix message display of unapplied patches

HTML markup characters have to be encoded to ensure correct display
For instance, if the message contains "<", the remaining characters
are not displayed.

Changeset 9ef10ca8a41d

Parent e9548d34d160

by André Sintzoff

Changes to one file · Browse files at 9ef10ca8a41d Showing diff from parent e9548d34d160 Diff from another changeset...

 
521
522
523
 
524
525
526
 
521
522
523
524
525
526
527
@@ -521,6 +521,7 @@
  effects = qtlib.geteffect('log.unapplied_patch')   text = qtlib.applyeffects(' %s ' % ctx._patchname, effects)   # qtlib.markup(msg, fg=UNAPPLIED_PATCH_COLOR) + msg = qtlib.markup(msg)   return hglib.tounicode(text + ' ' + msg)     parts = []