commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/8c663e656f64/ Changeset: 8c663e656f64 Branch: stable User: jgoecks Date: 2013-06-27 18:11:21 Summary: Fix unicode issues in page editor. Affected #: 1 file diff -r 53f9bc7009f4c7c93177eb1f71d014e822b43640 -r 8c663e656f64a60dac55979841947e78ce23a473 templates/webapps/galaxy/page/editor.mako --- a/templates/webapps/galaxy/page/editor.mako +++ b/templates/webapps/galaxy/page/editor.mako @@ -782,7 +782,7 @@ </div><div class="unified-panel-body"> - <textarea name="page_content">${page.latest_revision.content.decode('utf-8')}</textarea> + <textarea name="page_content">${util.unicodify( page.latest_revision.content) }</textarea></div></%def> https://bitbucket.org/galaxy/galaxy-central/commits/507ac09f587d/ Changeset: 507ac09f587d User: jgoecks Date: 2013-06-27 18:12:07 Summary: Automated merge of stable branch. Affected #: 3 files diff -r e1955f57e73a8ce096bf77fd6c9d0e0ad8c5f086 -r 507ac09f587d2e0c40c1d8f06ed385817a209626 templates/webapps/galaxy/page/editor.mako --- a/templates/webapps/galaxy/page/editor.mako +++ b/templates/webapps/galaxy/page/editor.mako @@ -782,7 +782,7 @@ </div><div class="unified-panel-body"> - <textarea name="page_content">${page.latest_revision.content.decode('utf-8')}</textarea> + <textarea name="page_content">${util.unicodify( page.latest_revision.content) }</textarea></div></%def> Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org