remm 2003/06/04 14:57:36 Modified: webapps/docs changelog.xml tomcat-docs.xsl Log: - Update changelog. - Implement bug links (link to the bug description in BZ). Revision Changes Path 1.3 +9 -0 jakarta-tomcat-catalina/webapps/docs/changelog.xml Index: changelog.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- changelog.xml 4 Jun 2003 18:15:19 -0000 1.2 +++ changelog.xml 4 Jun 2003 21:57:35 -0000 1.3 @@ -42,6 +42,15 @@ <changelog> + <update> + Add caching mechanism for invocation of methods using privileged actions + (jfarcand) + </update> + <fix> + <bug>20380</bug>: AccessLogValve incorrectly calculates timezone, + <bug>16374</bug>: Date in file name configurable, <bug>16400</bug>: + Allow logging to be conditional (funkman) + </fix> <add> W3C Extended Log File Format support (funkman) </add> 1.5 +8 -1 jakarta-tomcat-catalina/webapps/docs/tomcat-docs.xsl Index: tomcat-docs.xsl =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/tomcat-docs.xsl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- tomcat-docs.xsl 3 Jun 2003 20:32:55 -0000 1.4 +++ tomcat-docs.xsl 4 Jun 2003 21:57:35 -0000 1.5 @@ -22,6 +22,7 @@ <xsl:param name="void-image" select="'/images/void.gif'"/> <xsl:param name="project-menu" select="'menu'"/> <xsl:param name="standalone" select="''"/> + <xsl:param name="buglink" select="'http://nagoya.apache.org/bugzilla/show_bug.cgi?id='"/> <!-- Defined variables (non-overrideable) --> <xsl:variable name="body-bg" select="'#ffffff'"/> @@ -410,6 +411,12 @@ </xsl:for-each> </tr> </table> + </xsl:template> + + <!-- Link to a bug report --> + <xsl:template match="bug"> + <xsl:variable name="link"><xsl:value-of select="$buglink"/><xsl:value-of select="text()"/></xsl:variable> + <a href="{$link}"><xsl:apply-templates/></a> </xsl:template> <!-- Process everything else by just passing it through -->
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]