Author: ltheussl Date: Tue Jan 10 17:08:46 2006 New Revision: 367861 URL: http://svn.apache.org/viewcvs?rev=367861&view=rev Log: PR: MPDASHBOARD-32 maven.dashboard.report.showempty property not honored.
Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl?rev=367861&r1=367860&r2=367861&view=diff ============================================================================== --- maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl (original) +++ maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/templates/dashboard.jsl Tue Jan 10 17:08:46 2006 @@ -85,7 +85,7 @@ <j:set var="shallDisplay" value="true"/> <j:if test="${context.getVariable('maven.dashboard.report.showempty') == 'false'}"> <x:set var="notEmptyElems" select="aggregator[not(text() = '-')]"/> - <j:if test="${notEmptyElems.isEmpty() == 'true'}"> + <j:if test="${empty(notEmptyElems)}"> <j:set var="shallDisplay" value="false"/> </j:if> </j:if> Modified: maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml?rev=367861&r1=367860&r2=367861&view=diff ============================================================================== --- maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml (original) +++ maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml Tue Jan 10 17:08:46 2006 @@ -25,6 +25,7 @@ </properties> <body> <release version="1.9-SNAPSHOT" date="in svn"> + <action dev="ltheussl" type="fix" issue="MPDASHBOARD-32" due-to="Wim Deblauwe"><code>maven.dashboard.report.showempty</code> property not honored.</action> <action dev="aheritier" type="fix" issue="MPDASHBOARD-34" due-to="Philippe Kernevez">Cobertura aggregator don't support offline mode. From now the Cobertura aggregator works only with MAVEN 1.1.</action> <action dev="aheritier" type="update" issue="MPDASHBOARD-33" due-to="[EMAIL PROTECTED]">Update the default checkstyle report location to make it compatible with Checkstyle plugin 3.0+ (MPCHECKSTYLE-40).</action> <action dev="carlos" type="add" issue="MPDASHBOARD-31">Added Cobertura aggregator.</action>