How can I check which XSLT processor is used in Solr?

How to check which XSLT processor is used in Solr? I want to change the XSLT version from 1.0 to 2.0.

I am using Solr 4.0.

+1
source share
1 answer

Using:

<xsl:value-of select="system-property('xsl:vendor')"/>

to identify the processor and:

<xsl:value-of select="system-property('xsl:version')"/> 

to determine the version.

+5
source

All Articles