dleslie 01/10/16 09:09:27 Modified: java/xdocs/style/stylesheets done.xsl Log: redirect XSLTC commits to XSLTCDONE. Revision Changes Path 1.4 +23 -11 xml-xalan/java/xdocs/style/stylesheets/done.xsl Index: done.xsl =================================================================== RCS file: /home/cvs/xml-xalan/java/xdocs/style/stylesheets/done.xsl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- done.xsl 2001/07/18 16:09:23 1.3 +++ done.xsl 2001/10/16 16:09:27 1.4 @@ -4,9 +4,15 @@ <!-- XSL Style sheet, DTD omitted --> -<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:lxslt="http://xml.apache.org/xslt" + xmlns:redirect="org.apache.xalan.lib.Redirect" + extension-element-prefixes="redirect"> + <xsl:output method="xml"/> + <xsl:param name="xsltcdone" select="'.\XSLTCDONE'"/> + <xsl:template match="Commits"> <xsl:comment>This XML fragment contains a list of source code updates to place in an <s3> section of readme.xml</xsl:comment> <xsl:if test="count([EMAIL PROTECTED]'core'])>0"> @@ -31,17 +37,23 @@ <xsl:if test="count([EMAIL PROTECTED]'compat'])=0"> <note>This release includes no updates of the compatibility source code (now deprecated).</note> </xsl:if> - <!--xsl:if test="count([EMAIL PROTECTED]'xsltc'])>0"> - <p>XSLTC source code updates:</p> - <ul> - <xsl:for-each select="[EMAIL PROTECTED]'xsltc']"> - <li><xsl:apply-templates select="Who|DateCommitted|Modified|Added|Removed|Log"/></li> - </xsl:for-each> - </ul> - </xsl:if> + + <xsl:if test="count([EMAIL PROTECTED]'xsltc'])>0"> + <redirect:write file="{$xsltcdone}"> + <p>XSLTC source code updates:</p> + <ul> + <xsl:for-each select="[EMAIL PROTECTED]'xsltc']"> + <li><xsl:apply-templates select="Who|DateCommitted|Modified|Added|Removed|Log"/></li> + </xsl:for-each> + </ul> + </redirect:write> + </xsl:if> <xsl:if test="count([EMAIL PROTECTED]'xsltc'])=0"> - <note>This release includes no updates of the XSLTC source code.</note> - </xsl:if--> + <redirect:write file="{$xsltcdone}"> + <note>This release includes no updates of the XSLTC source code.</note> + </redirect:write> + </xsl:if> + </xsl:template> <xsl:template match="Who">
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
