You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2006/01/16 18:59:42 UTC

svn commit: r369535 - in /maven/maven-1/plugins/trunk/dashboard: src/plugin-resources/aggregators/scmchangedcommit.jelly src/plugin-resources/aggregators/scmchangedfiles.jelly xdocs/aggregators.xml xdocs/changes.xml

Author: ltheussl
Date: Mon Jan 16 09:59:38 2006
New Revision: 369535

URL: http://svn.apache.org/viewcvs?rev=369535&view=rev
Log:
PR: MPDASHBOARD-35
Submitted by: Christoph Jerolimov
Fix count of changelog-entries with maven-changelog-plugin-1.9.

Modified:
    maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/aggregators/scmchangedcommit.jelly
    maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/aggregators/scmchangedfiles.jelly
    maven/maven-1/plugins/trunk/dashboard/xdocs/aggregators.xml
    maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/aggregators/scmchangedcommit.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/aggregators/scmchangedcommit.jelly?rev=369535&r1=369534&r2=369535&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/aggregators/scmchangedcommit.jelly (original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/aggregators/scmchangedcommit.jelly Mon Jan 16 09:59:38 2006
@@ -30,7 +30,7 @@
   <j:choose>
     <j:when test="${artifactAsFile.exists()}">
       <x:parse var="doc" xml="${artifactAsFile}"/>
-      <x:expr select="count($doc/changelog/changelog-entry)"/>
+      <x:expr select="count($doc/changelog/changeset/changelog-entry)"/>
     </j:when>
     <j:otherwise>
       <j:expr value="-"/>

Modified: maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/aggregators/scmchangedfiles.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/aggregators/scmchangedfiles.jelly?rev=369535&r1=369534&r2=369535&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/aggregators/scmchangedfiles.jelly (original)
+++ maven/maven-1/plugins/trunk/dashboard/src/plugin-resources/aggregators/scmchangedfiles.jelly Mon Jan 16 09:59:38 2006
@@ -30,7 +30,7 @@
   <j:choose>
     <j:when test="${artifactAsFile.exists()}">
       <x:parse var="doc" xml="${artifactAsFile}"/>
-      <x:expr select="count($doc/changelog/changelog-entry/file)"/>
+      <x:expr select="count($doc/changelog/changeset/changelog-entry/file)"/>
     </j:when>
     <j:otherwise>
       <j:expr value="-"/>

Modified: maven/maven-1/plugins/trunk/dashboard/xdocs/aggregators.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/xdocs/aggregators.xml?rev=369535&r1=369534&r2=369535&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/xdocs/aggregators.xml (original)
+++ maven/maven-1/plugins/trunk/dashboard/xdocs/aggregators.xml Mon Jan 16 09:59:38 2006
@@ -205,15 +205,17 @@
           <td>SCM Changed Files</td>
           <td>
             Total number of changed files in scm.
+            <strong>Note:</strong> requires at least maven-changelog-plugin-1.9.
           </td>
-        </tr>        
+        </tr>
         <tr>
           <td>scmchangedcommit</td>
-          <td>JavaNCSS Packages Total</td>
+          <td>SCM Committed Files</td>
           <td>
             Total number of scm commit.
+            <strong>Note:</strong> requires at least maven-changelog-plugin-1.9.
           </td>
-        </tr>        
+        </tr>
         <tr>
           <td>javancsspackagestotal</td>
           <td>JavaNCSS</td>

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=369535&r1=369534&r2=369535&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/dashboard/xdocs/changes.xml Mon Jan 16 09:59:38 2006
@@ -25,6 +25,7 @@
   </properties>
   <body>
     <release version="1.9-SNAPSHOT" date="in svn">
+      <action dev="ltheussl" type="fix" issue="MPDASHBOARD-35" due-to="Christoph Jerolimov">Fix count of changelog-entries with maven-changelog-plugin-1.9.</action>
       <action dev="ltheussl" type="add">Add new aggregators <code>jiraopen</code> and <code>jirascheduled</code>.</action>
       <action dev="ltheussl" type="fix" issue="MPDASHBOARD-24" due-to="Wim Deblauwe">Incorrect links with multiproject independent navigation.</action>
       <action dev="ltheussl" type="fix" issue="MPDASHBOARD-32" due-to="Wim Deblauwe"><code>maven.dashboard.report.showempty</code> property not honored.</action>