Author: remy.maucherat(a)jboss.com
Date: 2008-03-25 11:51:30 -0400 (Tue, 25 Mar 2008)
New Revision: 545
Modified:
trunk/webapps/docs/changelog.xml
trunk/webapps/docs/tomcat-docs.xsl
Log:
- Improve my Jira tag a bit.
Modified: trunk/webapps/docs/changelog.xml
===================================================================
--- trunk/webapps/docs/changelog.xml 2008-03-25 15:45:26 UTC (rev 544)
+++ trunk/webapps/docs/changelog.xml 2008-03-25 15:51:30 UTC (rev 545)
@@ -21,6 +21,9 @@
<fix>
Update to more polished CSS, submitted by James Cobb. (remm)
</fix>
+ <fix>
+ Remove tomcat-native.tar.gz from the distribution (JBoss Native should be used
instead). (remm)
+ </fix>
</changelog>
</subsection>
<subsection name="Catalina">
@@ -37,7 +40,7 @@
<subsection name="Coyote">
<changelog>
<fix>
- Fix for JBWEB-105. (jfclere)
+ <jira>105</jira>: The code that processes parameters from chars[] is
incorrect. (jfclere)
</fix>
<fix>
Better fix for cookie path quoting scenario. (markt)
Modified: trunk/webapps/docs/tomcat-docs.xsl
===================================================================
--- trunk/webapps/docs/tomcat-docs.xsl 2008-03-25 15:45:26 UTC (rev 544)
+++ trunk/webapps/docs/tomcat-docs.xsl 2008-03-25 15:51:30 UTC (rev 545)
@@ -31,6 +31,7 @@
<xsl:param name="standalone" select="''"/>
<xsl:param name="buglink"
select="'http://issues.apache.org/bugzilla/show_bug.cgi?id='...
<xsl:param name="jiralink"
select="'http://jira.jboss.com/jira/browse/JBWEB-'"/>
+ <xsl:param name="jbossjiralink"
select="'http://jira.jboss.com/jira/browse/'"/>
<!-- Defined variables (non-overrideable) -->
<xsl:variable name="body-bg"
select="'#ffffff'"/>
@@ -356,6 +357,12 @@
<!-- Link to a JIRA report -->
<xsl:template match="jira">
<xsl:variable name="link"><xsl:value-of
select="$jiralink"/><xsl:value-of
select="text()"/></xsl:variable>
+ <a href="{$link}">JBWEB-<xsl:apply-templates/></a>
+ </xsl:template>
+
+ <!-- Link to a JBoss JIRA report for another project -->
+ <xsl:template match="jboss-jira">
+ <xsl:variable name="link"><xsl:value-of
select="$jbossjiralink"/><xsl:value-of
select="text()"/></xsl:variable>
<a href="{$link}"><xsl:apply-templates/></a>
</xsl:template>