curcuru     00/02/16 12:47:26

  Modified:    samples/AppletXMLtoHTML s1ToHTML.xsl
               samples/Pipe foo.xsl foo2.xsl
               samples/SimpleTransform foo.xsl
               samples/TransformToDom foo.xsl
               samples/UseStylesheetParam foo.xsl
  Log:
  Update sample .xsl files with required version="1.0" attribute
  
  Revision  Changes    Path
  1.2       +1 -1      xml-xalan/samples/AppletXMLtoHTML/s1ToHTML.xsl
  
  Index: s1ToHTML.xsl
  ===================================================================
  RCS file: /home/cvs/xml-xalan/samples/AppletXMLtoHTML/s1ToHTML.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- s1ToHTML.xsl      2000/02/12 00:00:09     1.1
  +++ s1ToHTML.xsl      2000/02/16 20:47:25     1.2
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
version="1.0">
     <xsl:output method="html" indent="yes"/>
       
     <xsl:template match="/">
  
  
  
  1.2       +1 -1      xml-xalan/samples/Pipe/foo.xsl
  
  Index: foo.xsl
  ===================================================================
  RCS file: /home/cvs/xml-xalan/samples/Pipe/foo.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- foo.xsl   2000/02/12 00:00:11     1.1
  +++ foo.xsl   2000/02/16 20:47:25     1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?> 
  -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
version="1.0">
     <xsl:template match="doc">
       <out><xsl:value-of select="."/></out>
     </xsl:template>
  
  
  
  1.2       +1 -1      xml-xalan/samples/Pipe/foo2.xsl
  
  Index: foo2.xsl
  ===================================================================
  RCS file: /home/cvs/xml-xalan/samples/Pipe/foo2.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- foo2.xsl  2000/02/12 00:00:11     1.1
  +++ foo2.xsl  2000/02/16 20:47:25     1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?> 
  -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
version="1.0">
     <xsl:template match="out">
       <out><xsl:value-of select="."/> ...and goodby!</out>
     </xsl:template>
  
  
  
  1.2       +1 -1      xml-xalan/samples/SimpleTransform/foo.xsl
  
  Index: foo.xsl
  ===================================================================
  RCS file: /home/cvs/xml-xalan/samples/SimpleTransform/foo.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- foo.xsl   2000/02/12 00:00:14     1.1
  +++ foo.xsl   2000/02/16 20:47:26     1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?> 
  -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
version="1.0">
     <xsl:template match="doc">
       <out><xsl:value-of select="."/></out>
     </xsl:template>
  
  
  
  1.2       +1 -1      xml-xalan/samples/TransformToDom/foo.xsl
  
  Index: foo.xsl
  ===================================================================
  RCS file: /home/cvs/xml-xalan/samples/TransformToDom/foo.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- foo.xsl   2000/02/12 00:00:14     1.1
  +++ foo.xsl   2000/02/16 20:47:26     1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?> 
  -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
version="1.0">
     <xsl:template match="doc">
       <out><xsl:value-of select="."/></out>
     </xsl:template>
  
  
  
  1.2       +1 -1      xml-xalan/samples/UseStylesheetParam/foo.xsl
  
  Index: foo.xsl
  ===================================================================
  RCS file: /home/cvs/xml-xalan/samples/UseStylesheetParam/foo.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- foo.xsl   2000/02/12 00:00:15     1.1
  +++ foo.xsl   2000/02/16 20:47:26     1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?> 
  -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
version="1.0">
     <xsl:param name="param1" select="'default value'"/>
     <xsl:template match="doc">
       <out><xsl:value-of select="$param1"/></out>
  
  
  

Reply via email to