blob: 9e05f1e2609084651212be89a2b944b9469ab8dd [file] [log] [blame]
<?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
* regarding copyright ownership. The ASF licenses this file
* 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 version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:style="http://openoffice.org/2000/style" xmlns:table="http://openoffice.org/2000/table" xmlns:text="http://openoffice.org/2000/text" xmlns:office="http://openoffice.org/2000/office" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:output method="xml" omit-xml-declaration="yes" indent="yes" encoding="ISO-8859-1"/>
<!--doctype-system=[<!ENTITY acirc "">] -->
<xsl:strip-space elements="tokens"/>
<xsl:template match="office:document">
<html>
<xsl:apply-templates/>
</html>
</xsl:template>
<xsl:template match="office:document-content">
<html>
<xsl:apply-templates/>
</html>
</xsl:template>
<xsl:template match="office:automatic-styles">
<style type="text/css">p.Table-Heading{font-weight:bold;}<xsl:apply-templates/>
</style>
</xsl:template>
<xsl:template match="office:styles"/>
<xsl:template match="office:meta"/>
<xsl:template match="office:settings"/>
<xsl:template match="style:style">
<xsl:if test="@style:family ='paragraph'">p.<xsl:value-of select="@style:name"/>{<xsl:apply-templates/>}</xsl:if>
<xsl:if test="@style:family ='paragraph'">p.<xsl:value-of select="@style:name"/>{<xsl:if test="@style:parent-style-name='Table Heading'">font-weight:bold;font-style:italic;</xsl:if>
<xsl:apply-templates/>}</xsl:if>
<xsl:if test="@style:family ='table-cell'">td.<xsl:value-of select="@style:name"/>{<xsl:if test="@style:parent-style-name='Table Heading'">font-weight:bold;font-style:italic;</xsl:if>
<xsl:apply-templates/>}</xsl:if>
</xsl:template>
<xsl:template match="style:properties">
<!--<xsl:param name="style" select="@fo:font-weight"/>-->
<xsl:if test="@fo:font-weight">font-weight:<xsl:value-of select="@fo:font-weight"/>;</xsl:if>
<xsl:if test="@fo:font-style">font-style:<xsl:value-of select="@fo:font-style"/>;</xsl:if>
<xsl:if test="@style:font-name">font-family:<xsl:value-of select="@style:font-name"/>;</xsl:if>
<xsl:if test="@fo:font-size">font-size:<xsl:value-of select="@fo:font-size"/>;</xsl:if>
<xsl:if test="@style:text-underline='single'">text-decoration:underline;</xsl:if>
<xsl:if test="@style:text-crossing-out='single-line'">text-decoration:line-through;</xsl:if>
<xsl:if test="@fo:text-align='start'">text-align:left</xsl:if>
<xsl:if test="@fo:text-align='center'">text-align:center</xsl:if>
<xsl:if test="@fo:text-align='end'">text-align:right</xsl:if>
<!--<xsl:value-of select="$style"/>-->
</xsl:template>
<xsl:template match="office:body">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="table:table">
<table border="1" cellpadding="2" width="100%">
<xsl:apply-templates/>
</table>
</xsl:template>
<xsl:template match="table:table-header-rows">
<th>
<xsl:apply-templates/>
</th>
</xsl:template>
<xsl:template match="table:table-row">
<tr>
<xsl:apply-templates/>
</tr>
</xsl:template>
<xsl:template match="table:table-cell">
<xsl:text disable-output-escaping="yes">&lt;td class="</xsl:text>
<xsl:value-of select="@table:style-name"/>
<xsl:text disable-output-escaping="yes">"&gt;</xsl:text>
<!--<xsl:value-of select="."/>-->
<xsl:apply-templates/>
<xsl:text disable-output-escaping="yes">&lt;/td&gt;</xsl:text>
<!--<td width="20%">
<xsl:apply-templates />
</td>-->
</xsl:template>
<xsl:template match="text:p">
<xsl:if test="ancestor-or-self::table:table-cell">
<xsl:if test=".=''">
<br/>
</xsl:if>
</xsl:if>
<xsl:text disable-output-escaping="yes">&lt;p class="</xsl:text>
<xsl:choose>
<xsl:when test="@text:style-name ='Table Heading'">Table-Heading</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@text:style-name"/>
</xsl:otherwise>
</xsl:choose>
<xsl:text disable-output-escaping="yes">"&gt;</xsl:text>
<xsl:apply-templates/>
<xsl:text disable-output-escaping="yes">&lt;/p&gt;</xsl:text>
<!--<xsl:value-of select="."/>-->
<!--<xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text>-->
<!--<br/>-->
</xsl:template>
</xsl:stylesheet>