diff options
author | Matthias Seidel <mseidel@apache.org> | 2018-11-08 15:26:39 +0000 |
---|---|---|
committer | Matthias Seidel <mseidel@apache.org> | 2018-11-08 15:26:39 +0000 |
commit | 3106f8d4ffacec335d9987e4df6ed4f2978fcdca (patch) | |
tree | 1041a4f1b80917d2708b462c6bed4a5790e1d29e /readlicense_oo | |
parent | 7364f1749a8e25959aa580d7a4c2bc710a52ccbe (diff) |
Removed whitespace
Notes
Notes:
ignore: aoo
Diffstat (limited to 'readlicense_oo')
-rw-r--r-- | readlicense_oo/docs/readme.xsl | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/readlicense_oo/docs/readme.xsl b/readlicense_oo/docs/readme.xsl index 3be95373a63b..d68af653748c 100644 --- a/readlicense_oo/docs/readme.xsl +++ b/readlicense_oo/docs/readme.xsl @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!--*********************************************************** - * + * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information @@ -8,16 +8,16 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. - * + * ***********************************************************--> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> @@ -33,7 +33,7 @@ <xsl:param name="type"/> <xsl:param name="file"/> <xsl:strip-space elements="*"/> - + <xsl:param name="platform"> <xsl:if test="$os1='LINUX'"> <xsl:value-of select="'LINUX'"/> @@ -53,33 +53,33 @@ <xsl:value-of select="'MAC'"/> </xsl:if> </xsl:param> - + <xsl:param name="lf"> <xsl:choose> <xsl:when test="$platform='WIN'"><xsl:text>
</xsl:text></xsl:when> <xsl:otherwise><xsl:text>
</xsl:text></xsl:otherwise> </xsl:choose> </xsl:param> - + <xsl:template match="/"> <xsl:choose> <xsl:when test="$type='html'"> - + <xsl:document method="html" href="{$file}" doctype-public="-//W3C//DTD HTML 3.2//EN"> <xsl:apply-templates mode="html"/> </xsl:document> - + </xsl:when> <xsl:when test="$type='text'"> - + <xsl:document method="text" href="{$file}"> <xsl:call-template name="textout" /> </xsl:document> - + </xsl:when> </xsl:choose> </xsl:template> - + <xsl:template match="*" mode="html"> <xsl:choose> <xsl:when test="(contains(@class,$platform) or not(@class) or (name(.)='p'))"> @@ -105,15 +105,15 @@ </xsl:if> </xsl:when> <xsl:otherwise> - + </xsl:otherwise> </xsl:choose> </xsl:template> - + <xsl:template name="textout"> <xsl:apply-templates /> </xsl:template> - + <xsl:template match="*"> <xsl:if test="(@xml:lang=$lang1 or not(@xml:lang))"> <!-- check for correct language --> <xsl:choose> @@ -125,7 +125,7 @@ </xsl:when> <xsl:when test="name(.)='hr'"> <xsl:text> - + ---------------------------------------------------------------------------------------------------------- </xsl:text> @@ -161,11 +161,11 @@ </xsl:when> <xsl:when test="name(.)='h1'"> <xsl:value-of select="$lf"/> - <xsl:text>==================================================================</xsl:text> + <xsl:text>===================================================================</xsl:text> <xsl:value-of select="$lf"/> <xsl:apply-templates/> <xsl:value-of select="$lf"/> - <xsl:text>==================================================================</xsl:text> + <xsl:text>===================================================================</xsl:text> <xsl:value-of select="$lf"/> </xsl:when> <xsl:when test="name(.)='h2'"> |