You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by rg...@apache.org on 2005/11/24 09:05:10 UTC

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

Author: rgardler
Date: Thu Nov 24 00:05:04 2005
New Revision: 348683

URL: http://svn.apache.org/viewcvs?rev=348683&view=rev
Log:
fix type in key name

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

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes-to-document.xsl?rev=348683&r1=348682&r2=348683&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 Thu Nov 24 00:05:04 2005
@@ -76,12 +76,12 @@
   </document>
  </xsl:template>
 
- <xsl:key name="contextes" match="changes/release/action" use="concat(../@version, '_', @context)"/>
+ <xsl:key name="contexts" match="changes/release/action" use="concat(../@version, '_', @context)"/>
 
  <xsl:template match="release">
   <section id="version_{@version}">
    <title>Version <xsl:value-of select="@version"/> (<xsl:value-of select="@date"/>)</title>
-   <xsl:for-each select="action[generate-id()=generate-id(key('contextes',concat(../@version, '_', @context)))]">
+   <xsl:for-each select="action[generate-id()=generate-id(key('contexts',concat(../@version, '_', @context)))]">
     <xsl:sort select="@context"/>
     <section>
     <xsl:variable name="context" select="@context"/>
@@ -96,7 +96,7 @@
     </xsl:choose>
     </title>
      <ul>
-      <xsl:apply-templates select="key('contextes',concat(../@version, '_', @context) )">
+      <xsl:apply-templates select="key('contexts',concat(../@version, '_', @context) )">
        <xsl:sort select="@type"/>
       </xsl:apply-templates>
      </ul>