odt2mediawiki.xsl: table cell color in cell attributes

Change-Id: I44f1969a227a811cdb740b387e30cf10994360b9
Reviewed-on: https://gerrit.libreoffice.org/15445
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
This commit is contained in:
Robert Antoni Buj Gelonch
2015-04-20 16:10:43 +02:00
committed by David Tardon
parent 5e2708a5a8
commit a323ec686a

View File

@@ -534,7 +534,18 @@
<with-param name="style-element" select="key('style-ref', $style-name)"/>
</call-template>
</if>
</variable>
<!-- Font color -->
<if test="text:p and count(*) = 1">
<if test="boolean(text:p/@text:style-name)">
<variable name="style-element" select="key('style-ref', text:p/@text:style-name)"/>
<call-template name="translate-style-property">
<with-param name="style-name" select="'color'"/>
<with-param name="style-property" select="$style-element/style:text-properties/@fo:color"/>
</call-template>
</if>
</if>
</variable>
<if test="string-length($style) &gt; 0">
<text> style="</text>
@@ -702,27 +713,38 @@
select="($alignment mod (2 * $RIGHT_BIT)) - ($alignment mod ($RIGHT_BIT)) != 0"/>
<variable name="style">
<if test="name(parent::*) != 'table:table-cell'">
<choose>
<when test="$center">
<text>text-align:center;</text>
</when>
<when test="$right">
<text>text-align:right;</text>
</when>
</choose>
</if>
<if test="boolean(@text:style-name)">
<variable name="style-element" select="key('style-ref', @text:style-name)"/>
<choose>
<when test="name(parent::*) != 'table:table-cell'">
<choose>
<when test="$center">
<text>text-align:center;</text>
</when>
<when test="$right">
<text>text-align:right;</text>
</when>
</choose>
<if test="boolean(@text:style-name)">
<variable name="style-element" select="key('style-ref', @text:style-name)"/>
<call-template name="translate-style-property">
<with-param name="style-name" select="'color'"/>
<with-param name="style-property" select="$style-element/style:text-properties/@fo:color"/>
</call-template>
</if>
<call-template name="translate-style-property">
<with-param name="style-name" select="'color'"/>
<with-param name="style-property" select="$style-element/style:text-properties/@fo:color"/>
</call-template>
</if>
</when>
<otherwise>
<if test="count(../text:p) &gt; 1 and boolean(@text:style-name)">
<variable name="style-element" select="key('style-ref', @text:style-name)"/>
<call-template name="translate-style-property">
<with-param name="style-name" select="'color'"/>
<with-param name="style-property" select="$style-element/style:text-properties/@fo:color"/>
</call-template>
</if>
</otherwise>
</choose>
</variable>
<if test="string-length($style) &gt; 0">
<text>&lt;div style="</text>
<value-of select="$style"/>
@@ -800,7 +822,6 @@
<value-of select="$NL"/>
</template>
<!--
== Preformatted text ==
-->