Last change
on this file was 203, checked in by Herwig Bauernfeind, 16 years ago |
Missing 3.2.2 client and HOWTO files
|
File size:
1.1 KB
|
Rev | Line | |
---|
[203] | 1 | <?xml version='1.0'?>
|
---|
| 2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
| 3 | xmlns:exsl="http://exslt.org/common"
|
---|
| 4 | version="1.1">
|
---|
| 5 |
|
---|
| 6 | <xsl:output method="xml" encoding="UTF-8" omit-xml-declaration="yes"/>
|
---|
| 7 |
|
---|
| 8 | <xsl:template match="refentry">
|
---|
| 9 | <xsl:element name="varlistentry">
|
---|
| 10 | <xsl:apply-templates/>
|
---|
| 11 | </xsl:element>
|
---|
| 12 | </xsl:template>
|
---|
| 13 |
|
---|
| 14 | <xsl:template match="refentry/refmeta">
|
---|
| 15 | <xsl:element name="term">
|
---|
| 16 | <xsl:element name="ulink">
|
---|
| 17 | <xsl:attribute name="url">
|
---|
| 18 | <xsl:value-of select="refentrytitle"/><xsl:text>.</xsl:text><xsl:value-of select="manvolnum"/><xsl:text>.html</xsl:text>
|
---|
| 19 | </xsl:attribute>
|
---|
| 20 | <xsl:value-of select="refentrytitle"/><xsl:text>(</xsl:text><xsl:value-of select="manvolnum"/><xsl:text>)</xsl:text>
|
---|
| 21 | </xsl:element>
|
---|
| 22 | </xsl:element>
|
---|
| 23 | </xsl:template>
|
---|
| 24 |
|
---|
| 25 | <xsl:template match="refentry/refnamediv">
|
---|
| 26 | <xsl:element name="listitem">
|
---|
| 27 | <xsl:element name="para">
|
---|
| 28 | <xsl:value-of select="refpurpose"/><xsl:text> </xsl:text>
|
---|
| 29 | </xsl:element>
|
---|
| 30 | </xsl:element>
|
---|
| 31 | </xsl:template>
|
---|
| 32 |
|
---|
| 33 | <xsl:template match="@*|node()">
|
---|
| 34 | <xsl:apply-templates/>
|
---|
| 35 | </xsl:template>
|
---|
| 36 | </xsl:stylesheet>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.