Next in thread → Next in month →

Re: DOCBOOK-APPS: speedy XSLT processor for win

From
Gabor Hojtsy <>
Date
2002-07-31T13:25:04+00:00
ID
00a801c23869$86241b70$6bc14d3e@mia
Thread
Re: DOCBOOK-APPS: 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>
> 
>
Next in thread → Next in month →