File: ref2dbinc.xsl

package info (click to toggle)
idzebra 2.2.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,572 kB
  • sloc: ansic: 54,389; xml: 27,058; sh: 5,892; makefile: 1,102; perl: 210; tcl: 64
file content (38 lines) | stat: -rw-r--r-- 777 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0"?>
<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">

    <xsl:output method="xml" encoding="UTF-8"/>

<xsl:template match="/refentry">
  <xsl:comment>Generated by stripref.xsl . Do not edit</xsl:comment>
  <section>
    <title>
      <xsl:value-of select="refmeta/refentrytitle"/>
    </title>
    <xsl:apply-templates/>
  </section>
</xsl:template>

<xsl:template match="refnamediv">
  <para>
     <xsl:value-of select="refpurpose"/> 
  </para>
</xsl:template>

<xsl:template match="refmeta">
</xsl:template>

<xsl:template match="refsynopsisdiv">
  <xsl:copy-of select="cmdsynopsis"/>
</xsl:template>

<xsl:template match="refsect1">
 <section>
  <xsl:copy-of select="*"/>
 </section>
</xsl:template>

</xsl:stylesheet>