You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by th...@apache.org on 2006/06/09 12:44:37 UTC

svn commit: r413007 - in /forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo: resources/stylesheets/changes-to-document.xsl status.xml

Author: thorsten
Date: Fri Jun  9 03:44:36 2006
New Revision: 413007

URL: http://svn.apache.org/viewvc?rev=413007&view=rev
Log:
Fixing small issue with the 
        last ',' which should not be displayed on the last entry of the 
        contributors list.

Modified:
    forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl
    forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl?rev=413007&r1=413006&r2=413007&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl Fri Jun  9 03:44:36 2006
@@ -138,7 +138,9 @@
          <xsl:for-each select="action[@due-to and count(. | key('distinct-contributor', @due-to)[1]) = 1 and not(@due-to='')]">
            <xsl:sort select="@due-to"/>
            <xsl:value-of select="@due-to"/>
-           <xsl:text>, </xsl:text>
+           <xsl:if test="not(position()=last())">
+              <xsl:text>, </xsl:text>
+            </xsl:if>
          </xsl:for-each>
        </p>
      </section>

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml?rev=413007&r1=413006&r2=413007&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml Fri Jun  9 03:44:36 2006
@@ -46,6 +46,9 @@
         <p>This plugin provides various mechanisms for extracting and
         displaying information about one or more projects.</p>
       </notes>
+      <action type="fix" context="code" dev="TS"> Fixing small issue with the 
+        last ',' which should not be displayed on the last entry of the 
+        contributors list. </action>
       <action type="fix" fixes-bug="FOR-839" context="code" dev="TS">
         Using the Muenchian Method for grouping all contributors of a release.
       </action>