To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=65441
------- Additional comments from [EMAIL PROTECTED] Tue May 16 14:36:43 -0700
2006 -------
finally found the source so here comes the patch:
Index: wordml2ooo_table.xsl
===================================================================
RCS file: /cvs/framework/filter/source/xslt/import/wordml/wordml2ooo_table.xsl,v
retrieving revision 1.8
diff -u -r1.8 wordml2ooo_table.xsl
--- wordml2ooo_table.xsl 8 Sep 2005 22:13:21 -0000 1.8
+++ wordml2ooo_table.xsl 16 May 2006 21:33:53 -0000
@@ -645,14 +657,6 @@
<xsl:otherwise>single</xsl:otherwise>
</xsl:choose>
</xsl:variable>
- <!-- totally basic Word table border styles: nil, none, single, thick,
double, dotted, dashed, dot-dash, dot-dot-dash, triple, thin-thick-small-gap,
thick-thin-small-gap, thin-thick-thin-small-gap, thin-thick-medium-gap,
thick-thin-medium-gap, thin-thick-thin-medium-gap, thin-thick-large-gap,
thick-thin-large-gap, thin-thick-thin-large-gap, wave, double-wave,
dash-small-gap, dash-dot-stroked, three-d-emboss, three-d-engrave, outset,
inset. Others are advanced graphical table border styles. glu -->
- <xsl:variable name="style-border">
- <xsl:choose>
- <xsl:when test="$border-style = 'nil' or $border-style
='none'">hidden</xsl:when>
- <xsl:when test="$border-style = 'single' or $border-style =
'thick' or $border-style = 'dotted' or $border-style = 'dashed' or $border-style
= 'dot-dash' or $border-style = 'dot-dot-dash' or $border-style = 'wave' or
$border-style = 'dash-small-gap' or $border-style =
'dash-dot-stroked'">solid</xsl:when>
- <xsl:otherwise>double</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
<xsl:variable name="color-border">
<xsl:choose>
<xsl:when test="$style-position-0 and
string-length($style-position-0/@w:color) = 6">
@@ -678,6 +682,9 @@
</xsl:variable>
<!-- mapping border line widths. glu -->
<xsl:choose>
+ <xsl:when test="$border-style = 'nil' or $border-style = 'none'">
+ <xsl:attribute name="{concat('fo:border-',
$style-pos)}">hidden</xsl:attribute>
+ </xsl:when>
<xsl:when test="$border-style = 'single'">
<xsl:choose>
<xsl:when test="$size-style < 7">
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]