⚲
Project
Profile
Help
Tour this page
Frequent Planio Questions
Learning Resources
Sign in
Register
Switch Planio account
Open in Planio App
Share current page
Search
:
Projects
All Projects
Help
Tour this page
Frequent Planio Questions
Learning Resources
Sign in
Register
Switch Planio account
Open in Planio App
Share current page
Saxon
»
SaxonC
Overview
Issues
Calendar
Blog
Forums
Files
Download (655 Bytes)
Bug #6676
ยป initial-template-005.xsl
Debbie Lockett
, 2025-01-30 19:03
<?xml version="1.0" encoding="UTF-8"?>
<xsl:transform
xmlns:xsl=
"http://www.w3.org/1999/XSL/Transform"
version=
"2.0"
>
<!-- Purpose: Test different combinations of tunnel parameters and non-tunnel
parameters. -->
<xsl:template
name=
"start"
>
<xsl:param
name=
"par1"
select=
"'xyz1'"
tunnel=
"yes"
/>
<xsl:param
name=
"par2"
select=
"'xyz2'"
tunnel=
"yes"
/>
<xsl:param
name=
"par3"
select=
"'xyz3'"
tunnel=
"no"
/>
<xsl:param
name=
"par4"
select=
"'xyz4'"
tunnel=
"no"
/>
<out>
<xsl:value-of
select=
"$par1"
/>
,
<xsl:value-of
select=
"$par2"
/>
,
<xsl:value-of
select=
"$par3"
/>
,
<xsl:value-of
select=
"$par4"
/>
</out>
</xsl:template>
</xsl:transform>
(1-1/1)
Loading...