Enable PDF media objects for print DSSSL
[id-docbook-common-moved-to-github.git] / ref2dbinc.xsl
1 <?xml version="1.0"?>
2 <!-- $Id: ref2dbinc.xsl,v 1.1 2006-04-20 12:10:50 adam Exp $ -->
3 <xsl:stylesheet
4   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5   version="1.0">
6
7     <xsl:output method="xml" encoding="UTF-8"/>
8
9 <xsl:template match="/refentry">
10   <section>
11     <title>
12       <xsl:value-of select="refmeta/refentrytitle"/>
13     </title>
14     <xsl:apply-templates/>
15   </section>
16 </xsl:template>
17
18 <xsl:template match="refnamediv">
19   <para>
20      <xsl:value-of select="refpurpose"/> 
21   </para>
22 </xsl:template>
23
24 <xsl:template match="refmeta">
25 </xsl:template>
26
27 <xsl:template match="refsynopsisdiv">
28   <xsl:copy-of select="cmdsynopsis"/>
29 </xsl:template>
30
31 <xsl:template match="refsect1">
32  <section>
33   <xsl:copy-of select="*"/>
34  </section>
35 </xsl:template>
36
37 </xsl:stylesheet>
38