| 1 |
<?xml version="1.0" encoding="utf-8"?>
|
| 2 |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
| 3 |
|
| 4 |
<xsl:output
|
| 5 |
method="xml" indent="yes" encoding="utf-8"
|
| 6 |
doctype-system="http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"
|
| 7 |
doctype-public="-//OASIS//DTD DocBook XML V4.5//EN"/>
|
| 8 |
|
| 9 |
<xsl:template match="systemitem[@role='package']">
|
| 10 |
<xsl:copy-of select="."/>
|
| 11 |
<indexterm><primary>packages</primary><secondary><xsl:value-of
|
| 12 |
select="."/></secondary></indexterm>
|
| 13 |
</xsl:template>
|
| 14 |
|
| 15 |
<xsl:template match="*|@*|text()">
|
| 16 |
<xsl:copy>
|
| 17 |
<xsl:apply-templates select="*|@*|text()"/>
|
| 18 |
</xsl:copy>
|
| 19 |
</xsl:template>
|
| 20 |
</xsl:stylesheet>
|