review/rutil.py @ 0dc141617716

Display obsolete comments/signoff with lower opacity.

Add a obsolete class on comments and signoff messages, which
sets the opacity to 0.6
author Christophe de Vienne <cdevienne@gmail.com>
date Tue, 28 Oct 2014 00:28:05 +0100
parents 96afc843f1a7
children (none)
from mercurial import encoding

def tolocal(s):
    return encoding.tolocal(s.encode('UTF-8'))

def fromlocal(s):
    return s.decode(encoding.encoding, 'replace')