# HG changeset patch # User Christophe de Vienne # Date 1418376979 -3600 # Node ID 73d048325dfdc5922cb28557cd8449bbadb5fc49 # Parent e5cc5cf29c7e687b9254dcb3e84e8a50ae1a65f8# Parent 5bef954cfecd517feaa94b7a5aa2d0bd6bae6ef0 Merged in akabos/hg-review (pull request #2) diff -r e5cc5cf29c7e -r 73d048325dfd review/templates/changeset.html --- a/review/templates/changeset.html Sat Nov 22 16:05:35 2014 +0100 +++ b/review/templates/changeset.html Fri Dec 12 10:36:19 2014 +0100 @@ -29,12 +29,12 @@

{{ rev.rev() }}: - {{ rev.description().splitlines()[0] }} + {{ utils['decode'](rev.description().splitlines()[0]) }} by {{ utils['person'](rev.user()) }}

-
{{ rev.description() }}
+
{{ utils['decode'](rev.description()) }}
{% with %} diff -r e5cc5cf29c7e -r 73d048325dfd review/templates/index.html --- a/review/templates/index.html Sat Nov 22 16:05:35 2014 +0100 +++ b/review/templates/index.html Fri Dec 12 10:36:19 2014 +0100 @@ -19,7 +19,7 @@ {% if rev.branch() != 'default' %} [{{ rev.branch() }}] {%endif%} - {{ rev.description().splitlines()[0] }} + {{ utils['decode'](rev.description().splitlines()[0]) }}