mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-03-06 22:28:47 +00:00
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10355 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
28 lines
738 B
XML
28 lines
738 B
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
|
|
<xsl:import href="tabular.xsl"/>
|
|
|
|
<xsl:output method="xml"
|
|
indent="no"
|
|
encoding="utf-8"
|
|
doctype-public="-//Norman Walsh//DTD DocBook OLink Summary V2.0//EN"
|
|
doctype-system="http://docbook.sourceforge.net/release/xsl/current/common/targetdatabase.dtd"/>
|
|
|
|
|
|
<!-- Used only when processing autolayout.xml -->
|
|
<xsl:template match="/">
|
|
<xsl:apply-templates mode="collect.targets"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="*"/>
|
|
|
|
<xsl:template match="autolayout" mode="collect.targets">
|
|
<targetset>
|
|
<xsl:apply-templates mode="olink.mode"/>
|
|
</targetset>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|