git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278428 13f79535-47bb-0310-9956-ffa450edef68master
@@ -1,5 +1,5 @@ | |||||
Changes from current Ant 1.6 CVS version to current CVS version | |||||
============================================= | |||||
Changes from current Ant 1.6.5 version to current CVS version | |||||
============================================================= | |||||
Changes that could break older environments: | Changes that could break older environments: | ||||
-------------------------------------------- | -------------------------------------------- | ||||
@@ -113,6 +113,9 @@ Fixed bugs: | |||||
* <tar> / <untar> now accepts files upto 8GB, <tar> gives an error if larger | * <tar> / <untar> now accepts files upto 8GB, <tar> gives an error if larger | ||||
files are to be included. This is the POSIX size limit. | files are to be included. This is the POSIX size limit. | ||||
* <junitreport> removed line-breaks from stack-traces. Bugzilla | |||||
Report 34963. | |||||
Other changes: | Other changes: | ||||
-------------- | -------------- | ||||
@@ -701,8 +701,7 @@ h6 { | |||||
--> | --> | ||||
<xsl:template name="br-replace"> | <xsl:template name="br-replace"> | ||||
<xsl:param name="word"/> | <xsl:param name="word"/> | ||||
<xsl:param name="br"><br/></xsl:param> | |||||
<xsl:value-of select='stringutils:replace(string($word),"
",$br)'/> | |||||
<xsl:value-of disable-output-escaping="yes" select='stringutils:replace(string($word),"
","<br/>")'/> | |||||
</xsl:template> | </xsl:template> | ||||
<xsl:template name="display-time"> | <xsl:template name="display-time"> | ||||
@@ -5,7 +5,7 @@ | |||||
doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" /> | doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" /> | ||||
<xsl:decimal-format decimal-separator="." grouping-separator="," /> | <xsl:decimal-format decimal-separator="." grouping-separator="," /> | ||||
<!-- | <!-- | ||||
Copyright 2001-2004 The Apache Software Foundation | |||||
Copyright 2001-2005 The Apache Software Foundation | |||||
Licensed under the Apache License, Version 2.0 (the "License"); | Licensed under the Apache License, Version 2.0 (the "License"); | ||||
you may not use this file except in compliance with the License. | you may not use this file except in compliance with the License. | ||||
@@ -447,8 +447,7 @@ | |||||
--> | --> | ||||
<xsl:template name="br-replace"> | <xsl:template name="br-replace"> | ||||
<xsl:param name="word"/> | <xsl:param name="word"/> | ||||
<xsl:param name="br"><br/></xsl:param> | |||||
<xsl:value-of select='stringutils:replace(string($word),"
",$br)'/> | |||||
<xsl:value-of disable-output-escaping="yes" select='stringutils:replace(string($word),"
","<br/>")'/> | |||||
</xsl:template> | </xsl:template> | ||||
<xsl:template name="display-time"> | <xsl:template name="display-time"> | ||||
@@ -91,7 +91,7 @@ public class JUnitReportTest extends BuildFileTest { | |||||
} | } | ||||
// Bugzilla Report 34963 | // Bugzilla Report 34963 | ||||
public void XtestStackTraceLineBreaks() throws Exception { | |||||
public void testStackTraceLineBreaks() throws Exception { | |||||
expectReportWithText("testStackTraceLineBreaks", null); | expectReportWithText("testStackTraceLineBreaks", null); | ||||
FileReader r = null; | FileReader r = null; | ||||
try { | try { | ||||