1<!--*********************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 ***********************************************************--> 21<xsl:stylesheet version="1.0" encoding="UTF-8" 22 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 23 xmlns:office="http://openoffice.org/2000/office" 24 xmlns:style="http://openoffice.org/2000/style" 25 xmlns:table="http://openoffice.org/2000/table" 26 xmlns:draw="http://openoffice.org/2000/drawing" 27 xmlns:fo="http://www.w3.org/1999/XSL/Format" 28 xmlns:xlink="http://www.w3.org/1999/xlink" 29 xmlns:dc="http://purl.org/dc/elements/1.1/" 30 xmlns:meta="http://openoffice.org/2000/meta" 31 xmlns:number="http://openoffice.org/2000/datastyle" 32 xmlns:svg="http://www.w3.org/2000/svg" 33 xmlns:chart="http://openoffice.org/2000/chart" 34 xmlns:help="http://openoffice.org/2000/help" 35 xmlns:index="http://sun.com/2000/XMLSearch" 36 xmlns:text="http://openoffice.org/2000/text"> 37 38<xsl:param name="Language" select="'en-US'"/> 39<xsl:output method="text" encoding="UTF-8"/> 40 41<xsl:template match="helpdocument|body"> 42 <xsl:choose> 43 <xsl:when test="meta/topic[@indexer='exclude']"/> 44 <xsl:otherwise> 45 <xsl:apply-templates/> 46 </xsl:otherwise> 47 </xsl:choose> 48</xsl:template> 49 50<xsl:template match="title"> 51 <xsl:value-of select="."/> 52 <xsl:text>
</xsl:text> 53</xsl:template> 54 55<xsl:template match="table"> 56 <xsl:apply-templates/> 57 <xsl:text>
</xsl:text> 58</xsl:template> 59 60<xsl:template match="tablecell"> 61 <xsl:apply-templates/> 62 <xsl:text>
</xsl:text> 63</xsl:template> 64 65<xsl:template match="tablerow"> 66 <xsl:apply-templates/> 67 <xsl:text>
</xsl:text> 68</xsl:template> 69 70<xsl:template match="list"> 71 <xsl:apply-templates/> 72 <xsl:text>
</xsl:text> 73</xsl:template> 74 75<xsl:template match="listitem"> 76 <xsl:apply-templates/> 77 <xsl:text>
</xsl:text> 78</xsl:template> 79 80<xsl:template match="item"> 81 <xsl:apply-templates/> 82 <xsl:text>
</xsl:text> 83</xsl:template> 84 85<xsl:template match="emph"> 86 <xsl:apply-templates/> 87 <xsl:text>
</xsl:text> 88</xsl:template> 89 90<xsl:template match="paragraph"> 91 <xsl:value-of select="."/> 92 <xsl:text>
</xsl:text> 93</xsl:template> 94 95<xsl:template match="section"> 96 <xsl:apply-templates/> 97 <xsl:text>
</xsl:text> 98</xsl:template> 99 100<xsl:template match="bookmark"> 101 <xsl:apply-templates/> 102 <xsl:text>
</xsl:text> 103</xsl:template> 104 105<xsl:template match="bookmark_value"> 106 <xsl:apply-templates/> 107 <xsl:text>
</xsl:text> 108</xsl:template> 109 110<xsl:template match="link"> 111 <xsl:apply-templates/> 112 <xsl:text>
</xsl:text> 113</xsl:template> 114 115<xsl:template match="ahelp[@visibility='visible']"> 116 <xsl:value-of select="."/> 117 <xsl:text>
</xsl:text> 118</xsl:template> 119 120<xsl:template match="*"/> 121 122</xsl:stylesheet> 123 124 125