galaxy-dist commit 647ca0049221: Enable display of unicode characters in history and workflow annotations.
# HG changeset patch -- Bitbucket.org # Project galaxy-dist # URL http://bitbucket.org/galaxy/galaxy-dist/overview # User jeremy goecks <jeremy.goecks@emory.edu> # Date 1287604356 14400 # Node ID 647ca0049221bcadde31559d6a99a6ccf236d134 # Parent b3763f7ecec7082e76a5ff407091fa7f0bffb7df Enable display of unicode characters in history and workflow annotations. --- a/templates/workflow/editor.mako +++ b/templates/workflow/editor.mako @@ -1038,7 +1038,7 @@ <label>Annotation / Notes:</label><div id="workflow-annotation" class="tooltip editable-text" original-title="Click to edit annotation"> %if annotation: - ${annotation | h} + ${h.to_unicode( annotation ) | h} %else: <em>Describe or add notes to workflow</em> %endif --- a/templates/root/history.mako +++ b/templates/root/history.mako @@ -378,7 +378,7 @@ div.form-row { <div id="history-annotation-container"><div id="history-annotation" class="tooltip editable-text" title="Click to edit annotation"> %if annotation: - ${annotation | h} + ${h.to_unicode( annotation ) | h} %else: <em>Describe or add notes to history</em> %endif
participants (1)
-
commits-noreply@bitbucket.org