Open rju opened 1 week ago
author nils-christian -- Tue, 20 May 2014 09:52:37 +0200
scratch that
author Jan Waller -- Tue, 20 May 2014 09:54:30 +0200
Maybe instead fix the html output creator in a way that it creates valid html and escapes some chars?
author nils-christian -- Tue, 20 May 2014 10:10:10 +0200
Apache Commons Lang should provide a html escape mechanism we could use to filter the relevant output (would just lead to a runtime dependency of the trace analysis to the commons-lang library).
author nils-christian -- Tue, 20 May 2014 10:21:56 +0200
Alternative solution:
Use the following code snippet from Stackoverflow.
StringUtils.replaceEach(text, new String[]{"&", "<", ">", "\"", "'", "/"}, new String[]{"&", "<", ">", """, "'", "/"});
Would be enough for our bug and could be done without additional library. However, this would only replace some of the html characters.
JIRA Issue: KIEKER-766 Constructurs not properly displayed in system HTML output Original Reporter: Andre van Hoorn
The "pseudo method name" <init> is not displayed in the HTML output because it would need to be escaped:
1. Screenshot
1. HTML source (excerpt):
Checklist: