This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: speedy XSLT processor for win


OK, some of these may work in some cases, but as far as the PHP
documentation goes, we need to have files named after IDs, because
all other components of our systems and PHP IDEs are expecting file
names to be in that form. Other parts like header and footer may
be speeded up, if the titles are not required, or so, but it's not
a too significant speedup as I see it...

Goba

> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
> version="1.0">
> 
> <!-- change as needed -->
> <xsl:import href="xslt/docbook-xsl/html/chunk.xsl"/>
> 
> <xsl:param name="chunk.section.depth" select="1"/>
> 
> <xsl:template name="html.head"/>
> <xsl:template name="user.header.navigation"/>
> <xsl:template name="header.navigation"/>
> <xsl:template name="user.header.content"/>
> <xsl:template name="user.footer.content"/>
> <xsl:template name="footer.navigation"/>
> <xsl:template name="user.footer.navigation"/>
> 
> <xsl:template match="*" mode="chunk-filename">
>   <xsl:value-of select="generate-id(.)"/>
>   <xsl:text>.html</xsl:text>
> </xsl:template>
> 
> </xsl:stylesheet>
> 
> 



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]