RoxenCMS 17Web Developer ManualXSLT Tags

   

<xsl:apply-imports>
<xsl:apply-templates>
<xsl:attribute>
<xsl:attribute-set>
<xsl:call-template>
<xsl:choose>
<xsl:comment>
<xsl:copy>
<xsl:copy-of>
<xsl:decimal-format>
<xsl:element>
<xsl:fallback>
<xsl:for-each>
<xsl:if>
<xsl:import>
<xsl:include>
<xsl:key>
<xsl:message>
<xsl:namespace-alias>
<xsl:number>
<xsl:otherwise>
<xsl:output>
<xsl:param>
<xsl:preserve-space>
<xsl:processing-instruction>
<xsl:sort>
<xsl:strip-space>
<xsl:stylesheet>
<xsl:template>
<xsl:text>
<xsl:transform>
<xsl:value-of>
<xsl:variable>
<xsl:when>
<xsl:with-param>

<xsl:import/>

Provided by module: CMS: XSLTransform

Top-level element which imports another XSL stylesheet. All imported definitions will have lower priority than the ones in the current document. This tag must precede all other element children of an <xsl:stylesheet> element.

See also the XSLT specification.


Attributes

href="uri-reference"

Stylesheet reference. The current implementation only supports file references (with or without the 'file:' prefix).

Note!

This implementation treats the href attribute as an Attribute Value Template. The expression must not refer to any global parameters/variables declared outside of the stylesheet file it appears in.

Note!

When using a file name without any path prefix (i.e. no / is included) the name may be prefixed with either ancestor:: or ancestor-or-self:: to signal that searching should start in the parent directory of, or same directory as, respectively, the current stylesheet. This is a Roxen-specific extension.


rxml:customize-params="{yes, no}"

When set to no parameters imported from the given stylesheet will not appear as customizable in the Roxen SiteBuilder user interface. The default value is yes.

Note!

This attribute is Roxen-specific.