from
http://forums.zutubi.com/viewtopic.php?t=967&start=0&postdays=0&postorder=asc&highlight=
Hi,
I'd like to display the full SVN commit message in the changelist display that Pulse emails out after a build. Currently it truncates the commit comment to keep it short.
I looked at the html-email.ftl file, and it seems that this truncation must happen in the @buildChangesHTML macro. Is there an option to have the macro product the full length messages (or could such an option be added)?
Thanks!
Mike
renderer.transformComment(change) // currently available
renderer.transformComment(change, int trimToLength) // available in 1.2.34
renderer.transformCommentWithoutTrimming(change) // available in 1.2.34
So, Mike, what you will want to do is replace:
[@contentCell cc=renderer.transformComment(change)/]
with
[@contentCell cc=renderer.transformCommentWithoutTrimming(change)/]