Lines Matching refs:xsl
4 xsl
12 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
13 <xsl:template match="/">
14 <xsl:call-template name="recurse"/>
15 </xsl:template>
17 <xsl:template name="recurse">
18 <xsl:call-template name="recurse"/>
19 </xsl:template>
20 </xsl:stylesheet>
23 $xsl = new DOMDocument();
24 $xsl->loadXML($myxsl);
30 $proc->importStyleSheet($xsl);