RoxenCMS 5.4Web 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:param/> or <xsl:param></xsl:param>

Provided by module: CMS: XSLTransform

Declares a parameter in a template rule or at the top level of a stylesheet. The default value specified in the select attribute or as the tag contents will only be used if the invoker of the rule/stylesheet doesn't provide another value. Except for the way initial values are computed parameters are handled identically to variables.

See also the XSLT specification.


Attributes

name="string"

Name of the parameter.


select="expression"

An expression which when evaluated becomes the default value.


rxml:type="{int, string, color, float, text, checkbox, font, select:choices..., file:paths...}"

When applied to a global parameter it will supply the typing information necessary for Roxen SiteBuilder to present the parameter in the Customize Template wizard. The select choices should be a comma-separated list of strings (use \, to insert a literal comma). The paths choices is a comma-separated list of file paths; if the path is absolute (i.e. starts with /) it may contain globbing characters * or ? in the last path segment.

Note!

This attribute is Roxen-specific.


rxml:group="string"

Sets the group name for a global parameter. Groups are used to order parameters when displaying them in the Roxen SiteBuilder user interface.

Note!

This attribute is a Roxen-specific extension.


rxml:doc="string"

Sets the documentation string for a global parameter. This string is displayed in the Roxen SiteBuilder user interface.

Note!

This attribute is a Roxen-specific extension.