You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by dl...@apache.org on 2001/10/16 18:09:27 UTC

cvs commit: xml-xalan/java/xdocs/style/stylesheets done.xsl

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 &lt;s3&gt; section of readme.xml</xsl:comment>
       <xsl:if test="count(Commit[@category='core'])>0">
  @@ -31,17 +37,23 @@
       <xsl:if test="count(Commit[@category='compat'])=0">
         <note>This release includes no updates of the compatibility source code (now deprecated).</note>
       </xsl:if>
  -    <!--xsl:if test="count(Commit[@category='xsltc'])>0">
  -      <p>XSLTC source code updates:</p>
  -      <ul>
  -      <xsl:for-each select="Commit[@category='xsltc']">
  -        <li><xsl:apply-templates select="Who|DateCommitted|Modified|Added|Removed|Log"/></li>
  -      </xsl:for-each>
  -      </ul>
  -    </xsl:if>
  +    
  +    <xsl:if test="count(Commit[@category='xsltc'])>0">
  +      <redirect:write file="{$xsltcdone}">
  +        <p>XSLTC source code updates:</p>
  +        <ul>
  +        <xsl:for-each select="Commit[@category='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(Commit[@category='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: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org