office-gobmx/xmerge/source/htmlsoff/sofftohtml.xsl
Rüdiger Timm d964f5d92b INTEGRATION: CWS changefileheader (1.3.36); FILE MERGED
2008/03/28 15:50:04 rt 1.3.36.1: #i87441# Change license header to LPGL v3.
2008-04-10 18:03:41 +00:00

122 lines
5 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
Copyright 2008 by Sun Microsystems, Inc.
OpenOffice.org - a multi-platform office productivity suite
$RCSfile: sofftohtml.xsl,v $
$Revision: 1.4 $
This file is part of OpenOffice.org.
OpenOffice.org is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 3
only, as published by the Free Software Foundation.
OpenOffice.org is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License version 3 for more details
(a copy is included in the LICENSE file that accompanied this code).
You should have received a copy of the GNU Lesser General Public License
version 3 along with OpenOffice.org. If not, see
<http://www.openoffice.org/license.html>
for a copy of the LGPLv3 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>