summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorLászló Németh <nemeth@numbertext.org>2018-09-18 14:43:31 +0200
committerAron Budea <aron.budea@collabora.com>2019-01-10 12:10:12 +0100
commit51f7ebeed4d5e57dec420248bb4aa5520afbffa0 (patch)
tree7231587cb11d03cdfec32d1adaa0ba6074d30d00 /writerfilter
parent20c7a26bf1fbdb5e5e7fa6fe075fca7fe897e41d (diff)
tdf#58944 DOCX import: workaround for hidden table headers
Repeating table headers consisted of more than 10 table rows switch off table header repetition during DOCX table import to fix non-visible table content and broken tables. Repeating header lines are not visible in MSO, if there is no space for them. OOXML (and ODF) standards don't specify this exception, and unfortunately, it's easy to create tables with invisible repeating headers in MSO, resulting OOXML files with non-standardized layout. To show the same or a similar layout in LibreOffice (instead of a broken table with invisible content), we use a reasonable 10-row limit to apply header repetition, as a workaround. Later it's still possible to switch on header repetition or create a better compatible repeating table header in Writer for (pretty unlikely) tables with really repeating headers consisted of more than 10 table rows. Note: This workaround could help to create standard and more portable OOXML files in a mixed environment. Reviewed-on: https://gerrit.libreoffice.org/60689 Tested-by: Jenkins Reviewed-by: László Németh <nemeth@numbertext.org> (cherry picked from commit 110781a3a27dffe9e6690839bdce993796a08331) Change-Id: I17fbc0173ec1c4f188a46227b99dde5726530da3
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/DomainMapperTableManager.cxx22
1 files changed, 20 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/DomainMapperTableManager.cxx b/writerfilter/source/dmapper/DomainMapperTableManager.cxx
index 60e1792b56dd..50b7ea040b3f 100644
--- a/writerfilter/source/dmapper/DomainMapperTableManager.cxx
+++ b/writerfilter/source/dmapper/DomainMapperTableManager.cxx
@@ -200,9 +200,27 @@ bool DomainMapperTableManager::sprm(Sprm & rSprm)
// to prevent later rows from increasing the repeating m_nHeaderRepeat is set to NULL when repeating stops
if( nIntValue > 0 && m_nHeaderRepeat >= 0 )
{
- ++m_nHeaderRepeat;
TablePropertyMapPtr pPropMap( new TablePropertyMap );
- pPropMap->Insert( PROP_HEADER_ROW_COUNT, uno::makeAny( m_nHeaderRepeat ));
+
+ // Repeating header lines are not visible in MSO, if there is no space for them.
+ // OOXML (and ODF) standards don't specify this exception, and unfortunately,
+ // it's easy to create tables with invisible repeating headers in MSO, resulting
+ // OOXML files with non-standardized layout. To show the same or a similar layout
+ // in LibreOffice (instead of a broken table with invisible content), we use a
+ // reasonable 10-row limit to apply header repetition, as a workaround.
+ // Later it's still possible to switch on header repetition or create a better
+ // compatible repeating table header in Writer for (pretty unlikely) tables with
+ // really repeating headers consisted of more than 10 table rows.
+ if ( m_nHeaderRepeat == 10 )
+ {
+ m_nHeaderRepeat = -1;
+ pPropMap->Insert( PROP_HEADER_ROW_COUNT, uno::makeAny(sal_Int32(0)));
+ }
+ else
+ {
+ ++m_nHeaderRepeat;
+ pPropMap->Insert( PROP_HEADER_ROW_COUNT, uno::makeAny( m_nHeaderRepeat ));
+ }
insertTableProps(pPropMap);
}
else