1<xsl:stylesheet version="1.0" encoding="UTF-8" 2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 3 xmlns:office="http://openoffice.org/2000/office" 4 xmlns:style="http://openoffice.org/2000/style" 5 xmlns:table="http://openoffice.org/2000/table" 6 xmlns:draw="http://openoffice.org/2000/drawing" 7 xmlns:fo="http://www.w3.org/1999/XSL/Format" 8 xmlns:xlink="http://www.w3.org/1999/xlink" 9 xmlns:dc="http://purl.org/dc/elements/1.1/" 10 xmlns:meta="http://openoffice.org/2000/meta" 11 xmlns:number="http://openoffice.org/2000/datastyle" 12 xmlns:svg="http://www.w3.org/2000/svg" 13 xmlns:chart="http://openoffice.org/2000/chart" 14 xmlns:help="http://openoffice.org/2000/help" 15 xmlns:index="http://sun.com/2000/XMLSearch" 16 xmlns:text="http://openoffice.org/2000/text">
| 1<xsl:stylesheet version="1.0" encoding="UTF-8" 2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 3 xmlns:office="http://openoffice.org/2000/office" 4 xmlns:style="http://openoffice.org/2000/style" 5 xmlns:table="http://openoffice.org/2000/table" 6 xmlns:draw="http://openoffice.org/2000/drawing" 7 xmlns:fo="http://www.w3.org/1999/XSL/Format" 8 xmlns:xlink="http://www.w3.org/1999/xlink" 9 xmlns:dc="http://purl.org/dc/elements/1.1/" 10 xmlns:meta="http://openoffice.org/2000/meta" 11 xmlns:number="http://openoffice.org/2000/datastyle" 12 xmlns:svg="http://www.w3.org/2000/svg" 13 xmlns:chart="http://openoffice.org/2000/chart" 14 xmlns:help="http://openoffice.org/2000/help" 15 xmlns:index="http://sun.com/2000/XMLSearch" 16 xmlns:text="http://openoffice.org/2000/text">
|
| 17<!--*********************************************************** 18 * 19 * Licensed to the Apache Software Foundation (ASF) under one 20 * or more contributor license agreements. See the NOTICE file 21 * distributed with this work for additional information 22 * regarding copyright ownership. The ASF licenses this file 23 * to you under the Apache License, Version 2.0 (the 24 * "License"); you may not use this file except in compliance 25 * with the License. You may obtain a copy of the License at 26 * 27 * http://www.apache.org/licenses/LICENSE-2.0 28 * 29 * Unless required by applicable law or agreed to in writing, 30 * software distributed under the License is distributed on an 31 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 32 * KIND, either express or implied. See the License for the 33 * specific language governing permissions and limitations 34 * under the License. 35 * 36 ***********************************************************-->
|
17 18<xsl:param name="Language" select="'en-US'"/> 19 20<xsl:template match="helpdocument|body"> 21 <xsl:choose> 22 <xsl:when test="meta/topic[@indexer='exclude']"/> 23 <xsl:otherwise> 24 <xsl:apply-templates/>
--- 99 unchanged lines hidden --- | 37 38<xsl:param name="Language" select="'en-US'"/> 39 40<xsl:template match="helpdocument|body"> 41 <xsl:choose> 42 <xsl:when test="meta/topic[@indexer='exclude']"/> 43 <xsl:otherwise> 44 <xsl:apply-templates/>
--- 99 unchanged lines hidden --- |