You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axkit-dev@xml.apache.org by ki...@apache.org on 2003/08/23 21:38:38 UTC

cvs commit: xml-axkit/t/htdocs/style/xslt-basic 05_params.xsl

kip         2003/08/23 12:38:38

  Added:       t/htdocs/style/xslt-basic 05_params.xsl
  Log:
  Forgotten file
  
  Revision  Changes    Path
  1.1                  xml-axkit/t/htdocs/style/xslt-basic/05_params.xsl
  
  Index: 05_params.xsl
  ===================================================================
  <?xml version="1.0"?>
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  
  <xsl:param name="p1">no value</xsl:param>
  <xsl:param name="p2">no value</xsl:param>
  <xsl:template match="root">
  <root>
    <xsl:value-of select="concat( $p1, ' ', $p2 )"/>
  </root>
  </xsl:template>
  
  </xsl:stylesheet>