To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=52214


User sus changed the following:

                  What    |Old value                 |New value
================================================================================
                OS/Version|Linux                     |All
--------------------------------------------------------------------------------
                   Version|OOo 2.0 Beta              |OOo 2.0
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Mon Aug  8 06:23:59 -0700 
2005 -------
Even repeated cells would work - repeated (empty) cells would be created, when
adding content the end of the row, but skipping some (repeated empty) cells.

Unfortunately the width (added by the column / colgroup) get lost.
Even the similar repeated colums could be exchange to one columngroup (cmp.
http://de.selfhtml.org/html/tabellen/aufbau.htm#vordefinieren)
A valid expression as
<colgroup class="co1" />
would not be recognized in the Mozilla Firefox 1.04 (Windows)

Nevertheless it should be worth to be added in export\xhtml\table.xsl, so future
browser might show it correct by exchanging the existing <xsl:element
name="colgroup"> to:

<xsl:element name="colgroup">
    <xsl:choose>
        <xsl:when test="count(table:table-column) = 1">
            <xsl:if test="not(table:table-column/@table:visibility = 'collapse'
or table:table-column/@table:visibility = 'filter')">                
                <xsl:attribute name="class"><xsl:value-of
select="table:table-column/@table:style-name"/></xsl:attribute>
            </xsl:if>
        </xsl:when>
        <xsl:otherwise>
            <xsl:for-each select="$allTableColumns/table:table-column">
                <xsl:if test="not(@table:visibility = 'collapse' or
@table:visibility = 'filter')">
                    <xsl:element name="col">
                        <xsl:variable name="value"
select="$globalData/all-ooo-styles/[EMAIL PROTECTED]:name =
current()/@table:style-name]/*/@style:column-width" />
                        <xsl:if test="$value">
                            <xsl:attribute name="width">
                                <!-- using the absolute width, problems with the
relative in browser (in OOo style:rel-column-width) -->
                                <xsl:call-template name="convert2px">
                                    <xsl:with-param name="value"
select="$globalData/all-ooo-styles/[EMAIL PROTECTED]:name =
current()/@table:style-name]/*/@style:column-width" />
                                </xsl:call-template>
                            </xsl:attribute>
                        </xsl:if>
                    </xsl:element>
                </xsl:if>
            </xsl:for-each>
        </xsl:otherwise>
    </xsl:choose>
</xsl:element>  

---------------------------------------------------------------------
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]

Reply via email to