website-targets.xsl 738 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. version="1.0">
  4. <xsl:import href="tabular.xsl"/>
  5. <xsl:output method="xml"
  6. indent="no"
  7. encoding="utf-8"
  8. doctype-public="-//Norman Walsh//DTD DocBook OLink Summary V2.0//EN"
  9. doctype-system="http://docbook.sourceforge.net/release/xsl/current/common/targetdatabase.dtd"/>
  10. <!-- Used only when processing autolayout.xml -->
  11. <xsl:template match="/">
  12. <xsl:apply-templates mode="collect.targets"/>
  13. </xsl:template>
  14. <xsl:template match="*"/>
  15. <xsl:template match="autolayout" mode="collect.targets">
  16. <targetset>
  17. <xsl:apply-templates mode="olink.mode"/>
  18. </targetset>
  19. </xsl:template>
  20. </xsl:stylesheet>