summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2018-04-11 11:51:12 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-04-11 15:39:12 +0200
commitadc10e62ddc4a65f6b1fecbcfc7c6560489e3aaa (patch)
tree5c8745c391d7c91be9418c3e52a684c102814875
parent6eea5cffc4399fd31f97b19359eb6ae9c75d21b8 (diff)
sw XHTML export: fix missing namespace prefix of lists
Unordered lists, but fixes ordered lists as a side effect, too. Change-Id: I1752522e906975b112e6938ffc5456e53a165996 Reviewed-on: https://gerrit.libreoffice.org/52724 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
-rw-r--r--sw/qa/extras/htmlexport/data/reqif-list.xhtml11
-rw-r--r--sw/qa/extras/htmlexport/htmlexport.cxx12
-rw-r--r--sw/source/filter/html/htmlnumwriter.cxx1
3 files changed, 24 insertions, 0 deletions
diff --git a/sw/qa/extras/htmlexport/data/reqif-list.xhtml b/sw/qa/extras/htmlexport/data/reqif-list.xhtml
new file mode 100644
index 000000000000..5433ee10a6ea
--- /dev/null
+++ b/sw/qa/extras/htmlexport/data/reqif-list.xhtml
@@ -0,0 +1,11 @@
+<reqif-xhtml:div>Heading<reqif-xhtml:br/>
+ <reqif-xhtml:ul>
+ <reqif-xhtml:li>
+ <reqif-xhtml:strong>First</reqif-xhtml:strong></reqif-xhtml:li>
+ <reqif-xhtml:li>
+ <reqif-xhtml:strong>Second</reqif-xhtml:strong></reqif-xhtml:li>
+ <reqif-xhtml:li>
+ <reqif-xhtml:strong>Third</reqif-xhtml:strong>
+ </reqif-xhtml:li>
+ </reqif-xhtml:ul>
+</reqif-xhtml:div>
diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx b/sw/qa/extras/htmlexport/htmlexport.cxx
index 7f10e4befa90..6eb45ff90882 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -478,6 +478,18 @@ DECLARE_HTMLEXPORT_TEST(testReqIfTable, "reqif-table.xhtml")
assertXPathNoAttribute(pDoc, "/html/body/div/table/tr/th", "bgcolor");
}
+DECLARE_HTMLEXPORT_TEST(testReqIfList, "reqif-list.xhtml")
+{
+ SvStream* pStream = maTempFile.GetStream(StreamMode::READ);
+ CPPUNIT_ASSERT(pStream);
+ pStream->Seek(STREAM_SEEK_TO_END);
+ sal_uInt64 nLength = pStream->Tell();
+ pStream->Seek(0);
+ OString aStream(read_uInt8s_ToOString(*pStream, nLength));
+ // This failed, <ul> was written.
+ CPPUNIT_ASSERT(aStream.indexOf("<reqif-xhtml:ul>") != -1);
+}
+
DECLARE_HTMLEXPORT_ROUNDTRIP_TEST(testReqIfOle2, "reqif-ole2.xhtml")
{
uno::Reference<text::XTextEmbeddedObjectsSupplier> xSupplier(mxComponent, uno::UNO_QUERY);
diff --git a/sw/source/filter/html/htmlnumwriter.cxx b/sw/source/filter/html/htmlnumwriter.cxx
index 81ed85ae016c..7d5c23b95379 100644
--- a/sw/source/filter/html/htmlnumwriter.cxx
+++ b/sw/source/filter/html/htmlnumwriter.cxx
@@ -182,6 +182,7 @@ Writer& OutHTML_NumBulListStart( SwHTMLWriter& rWrt,
rWrt.m_aBulletGrfs[i].clear();
OString sOut = "<";
+ sOut += rWrt.GetNamespace();
const SwNumFormat& rNumFormat = rInfo.GetNumRule()->Get( i );
sal_Int16 eType = rNumFormat.GetNumberingType();
if( SVX_NUM_CHAR_SPECIAL == eType )