On 22.08.2023 15:34, LEGAULT, PHILLIP plegault@xxxxxxxxxx wrote:
>
> I have a need to determine what environment Ibm working on without
> hardcoding the differences in the large xslt file.
>
> I have tried
>
> <xsl:variable name="externalDoc" select="document('inc/env.xml')"/>
>
> File content
>
> <?xml version="1.0" encoding="UTF-8"?>
>
> <root>
>
> <environment>test</environment>
>
> </root>
>
> And in the main xslt file I use, I just want to add a T at the end.
>
> <xsl:choose>
>
> B <xsl:when test="$externalDoc/environment = 'test'">
>
The XPath would be e.g.
B $externalDoc/root/environment
|