You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sb...@apache.org on 2001/01/26 02:32:09 UTC

cvs commit: xml-xalan/test/tests/conf/processorinfo processorinfo01.xsl

sboag       01/01/25 17:32:09

  Modified:    test/tests/conf/processorinfo processorinfo01.xsl
  Log:
  The namespace handling in Xalan for xmlns:element was changed
  so that the name is not changed if possible, and manufactured prefixes
  are not made.  Also, see namespace24, where the alias is not used
  inside of the name attribute for xsl:element.
  
  Revision  Changes    Path
  1.2       +1 -1      xml-xalan/test/tests/conf/processorinfo/processorinfo01.xsl
  
  Index: processorinfo01.xsl
  ===================================================================
  RCS file: /home/cvs/xml-xalan/test/tests/conf/processorinfo/processorinfo01.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- processorinfo01.xsl	2000/12/15 22:28:41	1.1
  +++ processorinfo01.xsl	2001/01/26 01:32:09	1.2
  @@ -9,7 +9,7 @@
   
   <xsl:template match="doc">
     <out>
  -    <xsl:value-of select="system-property('xsl:version')"/>
  +    <xsl:value-of select="substring(system-property('xsl:version'), 1, 1)"/>
     </out>
   </xsl:template>