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/05/23 18:00:56 UTC

svn commit: r408950 - in /maven/maven-1/plugins/trunk/file-activity: project.xml src/plugin-resources/maven-file-activity-plugin.jsl xdocs/changes.xml

Author: ltheussl
Date: Tue May 23 09:00:56 2006
New Revision: 408950

URL: http://svn.apache.org/viewvc?rev=408950&view=rev
Log:
PR: MPFILEACTIVITY-3
Submitted by: Dennis Lundberg
Only show the timeframe when maven.changelog.type=range.

Modified:
    maven/maven-1/plugins/trunk/file-activity/project.xml
    maven/maven-1/plugins/trunk/file-activity/src/plugin-resources/maven-file-activity-plugin.jsl
    maven/maven-1/plugins/trunk/file-activity/xdocs/changes.xml

Modified: maven/maven-1/plugins/trunk/file-activity/project.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/file-activity/project.xml?rev=408950&r1=408949&r2=408950&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/file-activity/project.xml (original)
+++ maven/maven-1/plugins/trunk/file-activity/project.xml Tue May 23 09:00:56 2006
@@ -22,7 +22,7 @@
   <pomVersion>3</pomVersion>
   <id>maven-file-activity-plugin</id>
   <name>Maven File Activity Plugin</name>
-  <currentVersion>1.6</currentVersion>
+  <currentVersion>1.6.1-SNAPSHOT</currentVersion>
   <gumpRepositoryId>jakarta</gumpRepositoryId>
   <description>This document provides a report of activity in terms of CVS commits and breaks it out by file.</description>
   <shortDescription>File activity Report</shortDescription>

Modified: maven/maven-1/plugins/trunk/file-activity/src/plugin-resources/maven-file-activity-plugin.jsl
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/file-activity/src/plugin-resources/maven-file-activity-plugin.jsl?rev=408950&r1=408949&r2=408950&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/file-activity/src/plugin-resources/maven-file-activity-plugin.jsl (original)
+++ maven/maven-1/plugins/trunk/file-activity/src/plugin-resources/maven-file-activity-plugin.jsl Tue May 23 09:00:56 2006
@@ -3,7 +3,7 @@
 <!--
  * ========================================================================
  * 
- * Copyright 2004 The Apache Software Foundation.
+ * Copyright 2004-2006 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -57,7 +57,10 @@
         </j:choose>
     <subsection name="${setname}">
           <p>
-            Timeframe: ${maven.changelog.range} days,
+            <j:set var="type" value="${maven.changelog.type}"/>
+            <j:if test="${type == 'range'}">
+              Timeframe: ${maven.changelog.range} days,
+            </j:if>
             Total Commits:
             <x:expr select="count(./changelog-entry)"/>
             Total Number of Files Changed:

Modified: maven/maven-1/plugins/trunk/file-activity/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/file-activity/xdocs/changes.xml?rev=408950&r1=408949&r2=408950&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/file-activity/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/file-activity/xdocs/changes.xml Tue May 23 09:00:56 2006
@@ -23,6 +23,9 @@
     <author email="evenisse@ifrance.com">Emmanuel Venisse</author>
   </properties>
   <body>
+    <release version="1.6.1-SNAPSHOT" date="In SVN">
+      <action dev="ltheussl" type="fix" issue="MPFILEACTIVITY-3" due-to="Dennis Lundberg">Only show the timeframe when maven.changelog.type=range</action>
+    </release>
     <release version="1.6" date="2006-01-29">
       <action dev="ltheussl" type="fix" issue="MPFILEACTIVITY-2">File activity plugin creates wrong links for Subversion repositories. Use
         <code>maven.changelog.svn.baseurl</code>property.