office-gobmx/writerfilter
László Németh 09ae3c0194 tdf#152203 DOCX import: fix mixed footnotes/endnotes
Footnotes (like endnotes) were imported in the order
of their w:footnote elements in footnotes.xml, resulting
mixed footnote text content during loading documents
exported from Google Docs. Import them in the order
of their w:id attributes.

Regression from commit 9b39ce0e66
"tdf#76260 DOCX import: fix slow footnote import".

Change-Id: I7d9ed36fe96b2b90c4d62fb1ca7201318581775d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143824
Tested-by: Jenkins
Reviewed-by: László Németh <nemeth@numbertext.org>
2022-12-10 18:28:25 +00:00
..
documentation
inc tdf#152203 DOCX import: fix mixed footnotes/endnotes 2022-12-10 18:28:25 +00:00
qa Remove some unused includes 2022-11-24 08:09:53 +01:00
source tdf#152203 DOCX import: fix mixed footnotes/endnotes 2022-12-10 18:28:25 +00:00
util
CppunitTest_writerfilter_dmapper.mk move password handling from SwModelTestBase to UnoApiTest 2022-11-11 20:09:41 +01:00
CppunitTest_writerfilter_filters_test.mk writerfilter: name the FiltersTest test CppunitTest_writerfilter_filters_test 2019-12-05 08:46:16 +01:00
CppunitTest_writerfilter_misc.mk
CppunitTest_writerfilter_rtftok.mk move password handling from SwModelTestBase to UnoApiTest 2022-11-11 20:09:41 +01:00
CustomTarget_source.mk tdf#122222: add DOCX import of resolved comments as "done" 2021-04-16 18:41:47 +02:00
IwyuFilter_writerfilter.yaml
Library_writerfilter.mk Generally determine Rdb content from gb_*_set_componentfile calls 2021-12-10 08:14:24 +01:00
Makefile switch to include-based build rather than sourced-based build 2012-02-05 19:34:05 -06:00
Module_writerfilter.mk tdf#134400 RTF import: fix unexpected inner properties for picture-in-textframe 2020-07-21 08:52:38 +02:00
README.md

Import Filters for LibreOffice Writer

The writerfilter module contains import filters for Writer, using its UNO API.

Import filter for DOCX and RTF.

  • Module contents

    • documentation: RNG schema for the OOXML tokenizer, etc.
    • inc: module-global headers (can be included by any files under source)
    • qa: cppunit tests
    • source: the filters themselves
    • util: UNO passive registration config
  • Source contents

    • dmapper: the domain mapper, hiding UNO from the tokenizers, used by DOCX and RTF import
      • The incoming traffic of dmapper can be dumped into an XML file in /tmp in dbgutil builds, start soffice with the SW_DEBUG_WRITERFILTER=1 environment variable if you want that.
    • filter: the UNO filter service implementations, invoked by UNO and calling the dmapper + one of the tokenizers
    • ooxml: the docx tokenizer
    • rtftok: the rtf tokenizer