I agree that we should render Subversion commit messages to allow wrapping, but
I have a problem with this change.
I think Util.espcae should remain faithful conversion from ascii text to HTML.
Not converting whitespace to means consective whitespaces will be
combined into one.
I suggest we handle this differently. We should convert like:
'abc def' -> 'abc def'
'abc def' -> 'abc def'
'abc def' -> 'abc def'
'abc def' -> 'abc def'
'abc def' -> 'abc def'
In this way we can allow line wraps but without incorrectly trimming whitespaces.
Fixed in version 1.36 of Util.java. Modified the escape(String) method so that
it doesn't replace spaces with HTML non-breaking space entities. Should be in
Hudson 1.159.