Index: xdocs/changes.xml
===================================================================
--- xdocs/changes.xml	(revision 408148)
+++ xdocs/changes.xml	(arbetskopia)
@@ -23,6 +23,9 @@
     <author email="evenisse@ifrance.com">Emmanuel Venisse</author>
   </properties>
   <body>
+    <release version="1.6.1" date="In SVN">
+      <action dev="JoeDeveloper" type="fix" issue="MPDEVACTIVITY-7" 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="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated :
         <ul>
Index: project.xml
===================================================================
--- project.xml	(revision 408148)
+++ project.xml	(arbetskopia)
@@ -22,7 +22,7 @@
   <pomVersion>3</pomVersion>
   <id>maven-developer-activity-plugin</id>
   <name>Maven Developer Activity Plugin</name>
-  <currentVersion>1.6</currentVersion>
+  <currentVersion>1.6.1-SNAPSHOT</currentVersion>
   <description>This document provides a report of activity in terms of CVS commits and breaks it out by developer.</description>
   <shortDescription>Developer Activity report</shortDescription>
   <issueTrackingUrl>http://jira.codehaus.org/browse/MPDEVACTIVITY</issueTrackingUrl>
Index: src/plugin-resources/developer-activity.jsl
===================================================================
--- src/plugin-resources/developer-activity.jsl	(revision 408148)
+++ src/plugin-resources/developer-activity.jsl	(arbetskopia)
@@ -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.
@@ -59,7 +59,10 @@
     <subsection name="${setname}">
           <p>
             <!-- The range needs to be fed in somehow. -->
-            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:

