commit/galaxy-central: dan: HTML escape job stderr/stdout/info on dataset error page.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/9a6e1f17879a/ changeset: 9a6e1f17879a user: dan date: 2011-10-06 18:16:48 summary: HTML escape job stderr/stdout/info on dataset error page. affected #: 1 file (-1 bytes) --- a/templates/dataset/errors.mako Thu Oct 06 10:59:50 2011 -0400 +++ b/templates/dataset/errors.mako Thu Oct 06 12:16:48 2011 -0400 @@ -24,21 +24,21 @@ <% job = hda.creating_job_associations[0].job %> %if job.traceback: The Galaxy framework encountered the following error while attempting to run the tool: - <pre>${job.traceback}</pre> + <pre>${job.traceback | h}</pre> %endif %if job.stderr or job.info: Tool execution generated the following error message: %if job.stderr: - <pre>${job.stderr}</pre> + <pre>${job.stderr | h}</pre> %elif job.info: - <pre>${job.info}</pre> + <pre>${job.info | h}</pre> %endif %else: Tool execution did not generate any error messages. %endif %if job.stdout: The tool produced the following additional output: - <pre>${job.stdout}</pre> + <pre>${job.stdout | h}</pre> %endif %else: The tool did not create any additional job / error info. 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)
-
Bitbucket