vmassol     01/06/30 02:58:43

  Modified:    cactus/docs/framework/skins/jakarta.apache.org/stylesheets
                        changes2document.xsl document2html.xsl
  Log:
  (forget the stupid thing I just committed !). Here is the correct thing: It seems 
that the latest Xalan 2 is less permissive and that all XSL parameters need to be 
defined before being used (so, added needed <xsl:param> defs)
  
  Revision  Changes    Path
  1.6       +3 -1      
jakarta-commons/cactus/docs/framework/skins/jakarta.apache.org/stylesheets/changes2document.xsl
  
  Index: changes2document.xsl
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/cactus/docs/framework/skins/jakarta.apache.org/stylesheets/changes2document.xsl,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- changes2document.xsl      2001/06/30 09:51:59     1.5
  +++ changes2document.xsl      2001/06/30 09:58:42     1.6
  @@ -2,6 +2,8 @@
   
   <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
   
  + <xsl:param name="software"/>
  +
    <xsl:import href="copyover.xsl"/>
   
    <xsl:template match="changes">
  @@ -27,7 +29,7 @@
    <xsl:template match="release">
     <s2>
       <xsl:attribute name="title">
  -      <xsl:value-of select="@software"/><xsl:text> </xsl:text>
  +      <xsl:value-of select="$software"/><xsl:text> </xsl:text>
         <xsl:value-of select="@version"/>
         <xsl:if test="@date">
           <xsl:text> (released on </xsl:text>
  
  
  
  1.8       +2 -1      
jakarta-commons/cactus/docs/framework/skins/jakarta.apache.org/stylesheets/document2html.xsl
  
  Index: document2html.xsl
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/cactus/docs/framework/skins/jakarta.apache.org/stylesheets/document2html.xsl,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- document2html.xsl 2001/06/30 09:51:59     1.7
  +++ document2html.xsl 2001/06/30 09:58:42     1.8
  @@ -4,6 +4,7 @@
   
     <xsl:param name="stylebook.project"/>
     <xsl:param name="copyright"/>
  +  <xsl:param name="updated"/>
     <xsl:param name="docid"/>
     <xsl:param name="target"/>
   
  @@ -83,7 +84,7 @@
               <td width="14%" valign="top" nowrap="1">
   
               <font size="-2">
  -              Last update : <xsl:value-of select="@updated"/>
  +              Last update : <xsl:value-of select="$updated"/>
               </font>
   
                 <br/>
  
  
  

Reply via email to