Files
circular_buffer/doc/update_srcdoc.xslt
Jan Gaspar aa498d9ade Added methods - not finished yet.
[SVN r2526]
2005-03-14 08:01:10 +00:00

21 lines
628 B
HTML

<?xml version='1.0' encoding='iso-8859-1'?>
<!--
XSL transformation updating source code documentation sections in the specified file.
Author: Jan Gaspar (jano_gaspar[at]yahoo.com)
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:import href="copy.xslt"/>
<xsl:output method="html" version="1.0" encoding="iso-8859-1" indent="yes" omit-xml-declaration="yes" media-type="text/html"/>
<xsl:param name="srcdoc"/>
<xsl:template match="div[contains(@id, 'srcdoc')]">
<xsl:copy-of select="document($srcdoc)//body/div[@id=current()/@id]"/>
</xsl:template>
</xsl:stylesheet>