From f06809355527394f3c32c0e46e6f9cb48786b668 Mon Sep 17 00:00:00 2001 From: MarLinn Date: Thu, 23 Jul 2015 09:06:14 +0200 Subject: Added odt reader Fully implemented features: * Paragraphs * Headers * Basic styling * Unordered lists * Ordered lists * External Links * Internal Links * Footnotes, Endnotes * Blockquotes Partly implemented features: * Citations Very basic, but pandoc can't do much more * Tables No headers, no sizing, limited styling --- tests/odt/markdown/bold.md | 1 + tests/odt/markdown/citation.md | 1 + tests/odt/markdown/endnote.md | 3 +++ tests/odt/markdown/externalLink.md | 1 + tests/odt/markdown/footnote.md | 3 +++ tests/odt/markdown/headers.md | 9 +++++++++ tests/odt/markdown/horizontalRule.md | 1 + tests/odt/markdown/image.md | 1 + tests/odt/markdown/imageIndex.md | 6 ++++++ tests/odt/markdown/imageWithCaption.md | 1 + tests/odt/markdown/italic.md | 1 + tests/odt/markdown/listBlocks.md | 6 ++++++ tests/odt/markdown/paragraph.md | 5 +++++ tests/odt/markdown/strikeout.md | 1 + tests/odt/markdown/trackedChanges.md | 1 + tests/odt/markdown/underlined.md | 1 + tests/odt/native/blockquote.native | 1 + tests/odt/native/orderedListMixed.native | 1 + tests/odt/native/orderedListRoman.native | 1 + tests/odt/native/orderedListSimple.native | 1 + tests/odt/native/referenceToChapter.native | 1 + tests/odt/native/referenceToListItem.native | 1 + tests/odt/native/referenceToText.native | 1 + tests/odt/native/simpleTable.native | 1 + tests/odt/native/unicode.native | 1 + tests/odt/native/unorderedList.native | 1 + tests/odt/odt/blockquote.odt | Bin 0 -> 8594 bytes tests/odt/odt/bold.odt | Bin 0 -> 10377 bytes tests/odt/odt/citation.odt | Bin 0 -> 10842 bytes tests/odt/odt/endnote.odt | Bin 0 -> 10950 bytes tests/odt/odt/expression.odt | Bin 0 -> 10916 bytes tests/odt/odt/expressionUnevaluated.odt | Bin 0 -> 10829 bytes tests/odt/odt/externalLink.odt | Bin 0 -> 10735 bytes tests/odt/odt/footnote.odt | Bin 0 -> 10843 bytes tests/odt/odt/formula.odt | Bin 0 -> 14252 bytes tests/odt/odt/headers.odt | Bin 0 -> 10515 bytes tests/odt/odt/hiddenTextByStyle.odt | Bin 0 -> 10798 bytes tests/odt/odt/hiddenTextByVariable.odt | Bin 0 -> 10788 bytes tests/odt/odt/horizontalRule.odt | Bin 0 -> 10130 bytes tests/odt/odt/image.odt | Bin 0 -> 33360 bytes tests/odt/odt/imageIndex.odt | Bin 0 -> 34417 bytes tests/odt/odt/imageWithCaption.odt | Bin 0 -> 33811 bytes tests/odt/odt/italic.odt | Bin 0 -> 10426 bytes tests/odt/odt/listBlocks.odt | Bin 0 -> 10565 bytes tests/odt/odt/orderedListMixed.odt | Bin 0 -> 10580 bytes tests/odt/odt/orderedListRoman.odt | Bin 0 -> 10622 bytes tests/odt/odt/orderedListSimple.odt | Bin 0 -> 10570 bytes tests/odt/odt/paragraph.odt | Bin 0 -> 8538 bytes tests/odt/odt/referenceAllInOne.odt | Bin 0 -> 10878 bytes tests/odt/odt/referenceToChapter.odt | Bin 0 -> 10487 bytes tests/odt/odt/referenceToListItem.odt | Bin 0 -> 10855 bytes tests/odt/odt/referenceToText.odt | Bin 0 -> 10179 bytes tests/odt/odt/simpleTable.odt | Bin 0 -> 10705 bytes tests/odt/odt/strikeout.odt | Bin 0 -> 10582 bytes tests/odt/odt/table.odt | Bin 0 -> 10763 bytes tests/odt/odt/tableWithCaption.odt | Bin 0 -> 10623 bytes tests/odt/odt/trackedChanges.odt | Bin 0 -> 11135 bytes tests/odt/odt/underlined.odt | Bin 0 -> 10513 bytes tests/odt/odt/unicode.odt | Bin 0 -> 11787 bytes tests/odt/odt/unorderedList.odt | Bin 0 -> 9505 bytes tests/odt/odt/variable.odt | Bin 0 -> 10851 bytes 61 files changed, 52 insertions(+) create mode 100644 tests/odt/markdown/bold.md create mode 100644 tests/odt/markdown/citation.md create mode 100644 tests/odt/markdown/endnote.md create mode 100644 tests/odt/markdown/externalLink.md create mode 100644 tests/odt/markdown/footnote.md create mode 100644 tests/odt/markdown/headers.md create mode 100644 tests/odt/markdown/horizontalRule.md create mode 100644 tests/odt/markdown/image.md create mode 100644 tests/odt/markdown/imageIndex.md create mode 100644 tests/odt/markdown/imageWithCaption.md create mode 100644 tests/odt/markdown/italic.md create mode 100644 tests/odt/markdown/listBlocks.md create mode 100644 tests/odt/markdown/paragraph.md create mode 100644 tests/odt/markdown/strikeout.md create mode 100644 tests/odt/markdown/trackedChanges.md create mode 100644 tests/odt/markdown/underlined.md create mode 100644 tests/odt/native/blockquote.native create mode 100644 tests/odt/native/orderedListMixed.native create mode 100644 tests/odt/native/orderedListRoman.native create mode 100644 tests/odt/native/orderedListSimple.native create mode 100644 tests/odt/native/referenceToChapter.native create mode 100644 tests/odt/native/referenceToListItem.native create mode 100644 tests/odt/native/referenceToText.native create mode 100644 tests/odt/native/simpleTable.native create mode 100644 tests/odt/native/unicode.native create mode 100644 tests/odt/native/unorderedList.native create mode 100644 tests/odt/odt/blockquote.odt create mode 100644 tests/odt/odt/bold.odt create mode 100644 tests/odt/odt/citation.odt create mode 100644 tests/odt/odt/endnote.odt create mode 100644 tests/odt/odt/expression.odt create mode 100644 tests/odt/odt/expressionUnevaluated.odt create mode 100644 tests/odt/odt/externalLink.odt create mode 100644 tests/odt/odt/footnote.odt create mode 100644 tests/odt/odt/formula.odt create mode 100644 tests/odt/odt/headers.odt create mode 100644 tests/odt/odt/hiddenTextByStyle.odt create mode 100644 tests/odt/odt/hiddenTextByVariable.odt create mode 100644 tests/odt/odt/horizontalRule.odt create mode 100644 tests/odt/odt/image.odt create mode 100644 tests/odt/odt/imageIndex.odt create mode 100644 tests/odt/odt/imageWithCaption.odt create mode 100644 tests/odt/odt/italic.odt create mode 100644 tests/odt/odt/listBlocks.odt create mode 100644 tests/odt/odt/orderedListMixed.odt create mode 100644 tests/odt/odt/orderedListRoman.odt create mode 100644 tests/odt/odt/orderedListSimple.odt create mode 100644 tests/odt/odt/paragraph.odt create mode 100644 tests/odt/odt/referenceAllInOne.odt create mode 100644 tests/odt/odt/referenceToChapter.odt create mode 100644 tests/odt/odt/referenceToListItem.odt create mode 100644 tests/odt/odt/referenceToText.odt create mode 100644 tests/odt/odt/simpleTable.odt create mode 100644 tests/odt/odt/strikeout.odt create mode 100644 tests/odt/odt/table.odt create mode 100644 tests/odt/odt/tableWithCaption.odt create mode 100644 tests/odt/odt/trackedChanges.odt create mode 100644 tests/odt/odt/underlined.odt create mode 100644 tests/odt/odt/unicode.odt create mode 100644 tests/odt/odt/unorderedList.odt create mode 100644 tests/odt/odt/variable.odt (limited to 'tests/odt') diff --git a/tests/odt/markdown/bold.md b/tests/odt/markdown/bold.md new file mode 100644 index 000000000..fa4eb0431 --- /dev/null +++ b/tests/odt/markdown/bold.md @@ -0,0 +1 @@ +Here comes **bold** text \ No newline at end of file diff --git a/tests/odt/markdown/citation.md b/tests/odt/markdown/citation.md new file mode 100644 index 000000000..adcc9f0ff --- /dev/null +++ b/tests/odt/markdown/citation.md @@ -0,0 +1 @@ +Some text[@Ex] with a citation. \ No newline at end of file diff --git a/tests/odt/markdown/endnote.md b/tests/odt/markdown/endnote.md new file mode 100644 index 000000000..679af3fdc --- /dev/null +++ b/tests/odt/markdown/endnote.md @@ -0,0 +1,3 @@ +Some text[^1] with an endnote. + +[^1]: Endnote text \ No newline at end of file diff --git a/tests/odt/markdown/externalLink.md b/tests/odt/markdown/externalLink.md new file mode 100644 index 000000000..14f48d0f5 --- /dev/null +++ b/tests/odt/markdown/externalLink.md @@ -0,0 +1 @@ +Here comes an [external link](http://example.com/) to example.com. \ No newline at end of file diff --git a/tests/odt/markdown/footnote.md b/tests/odt/markdown/footnote.md new file mode 100644 index 000000000..973ae2d3a --- /dev/null +++ b/tests/odt/markdown/footnote.md @@ -0,0 +1,3 @@ +Some text[^1] with a footnote. + +[^1]: Footnote text \ No newline at end of file diff --git a/tests/odt/markdown/headers.md b/tests/odt/markdown/headers.md new file mode 100644 index 000000000..ea5d4452c --- /dev/null +++ b/tests/odt/markdown/headers.md @@ -0,0 +1,9 @@ +# A header (Lv 1) + +A paragraph + +## Another header (Lv 2) + +Another paragraph + +# Back to Level 1 \ No newline at end of file diff --git a/tests/odt/markdown/horizontalRule.md b/tests/odt/markdown/horizontalRule.md new file mode 100644 index 000000000..73b314ff7 --- /dev/null +++ b/tests/odt/markdown/horizontalRule.md @@ -0,0 +1 @@ +--- \ No newline at end of file diff --git a/tests/odt/markdown/image.md b/tests/odt/markdown/image.md new file mode 100644 index 000000000..3862d709e --- /dev/null +++ b/tests/odt/markdown/image.md @@ -0,0 +1 @@ +![](10000000000000FA000000FAD6A15225.jpg) \ No newline at end of file diff --git a/tests/odt/markdown/imageIndex.md b/tests/odt/markdown/imageIndex.md new file mode 100644 index 000000000..6719ab8a8 --- /dev/null +++ b/tests/odt/markdown/imageIndex.md @@ -0,0 +1,6 @@ +# Abbildungsverzeichnis + +Abbildung 1: Image caption + +![Abbildung 1: Image caption](10000000000000FA000000FAD6A15225.jpg) + diff --git a/tests/odt/markdown/imageWithCaption.md b/tests/odt/markdown/imageWithCaption.md new file mode 100644 index 000000000..0046ae141 --- /dev/null +++ b/tests/odt/markdown/imageWithCaption.md @@ -0,0 +1 @@ +![Abbildung 1: Image caption](10000000000000FA000000FAD6A15225.jpg) \ No newline at end of file diff --git a/tests/odt/markdown/italic.md b/tests/odt/markdown/italic.md new file mode 100644 index 000000000..b4d2f3d40 --- /dev/null +++ b/tests/odt/markdown/italic.md @@ -0,0 +1 @@ +Here comes *italic* text \ No newline at end of file diff --git a/tests/odt/markdown/listBlocks.md b/tests/odt/markdown/listBlocks.md new file mode 100644 index 000000000..22c77bb2b --- /dev/null +++ b/tests/odt/markdown/listBlocks.md @@ -0,0 +1,6 @@ + + +Indented text in a list. + + +This is a numbered block.It contains several paragraphs of text.Like this.Next item. \ No newline at end of file diff --git a/tests/odt/markdown/paragraph.md b/tests/odt/markdown/paragraph.md new file mode 100644 index 000000000..0a822e322 --- /dev/null +++ b/tests/odt/markdown/paragraph.md @@ -0,0 +1,5 @@ +This is a paragraph. + +This is another paragraph. + +This is a third one. \ No newline at end of file diff --git a/tests/odt/markdown/strikeout.md b/tests/odt/markdown/strikeout.md new file mode 100644 index 000000000..6ae4571dd --- /dev/null +++ b/tests/odt/markdown/strikeout.md @@ -0,0 +1 @@ +Here comes text that was ~~striken out~~. \ No newline at end of file diff --git a/tests/odt/markdown/trackedChanges.md b/tests/odt/markdown/trackedChanges.md new file mode 100644 index 000000000..f0bd478a3 --- /dev/null +++ b/tests/odt/markdown/trackedChanges.md @@ -0,0 +1 @@ +Some text with and inserted text. \ No newline at end of file diff --git a/tests/odt/markdown/underlined.md b/tests/odt/markdown/underlined.md new file mode 100644 index 000000000..05fb92379 --- /dev/null +++ b/tests/odt/markdown/underlined.md @@ -0,0 +1 @@ +Here comes *underlined* text \ No newline at end of file diff --git a/tests/odt/native/blockquote.native b/tests/odt/native/blockquote.native new file mode 100644 index 000000000..8c9409dde --- /dev/null +++ b/tests/odt/native/blockquote.native @@ -0,0 +1 @@ +[Para [Str "Normal"],BlockQuote [Para [Str "Indented",Space,Str "(1cm)"]]] \ No newline at end of file diff --git a/tests/odt/native/orderedListMixed.native b/tests/odt/native/orderedListMixed.native new file mode 100644 index 000000000..a50f5e2ad --- /dev/null +++ b/tests/odt/native/orderedListMixed.native @@ -0,0 +1 @@ +Pandoc (Meta {unMeta = fromList []}) [OrderedList (1,Decimal,Period) [[Plain [Str "A",Space,Str "list",Space,Str "item"]],[Plain [Str "A",Space,Str "second"]],[Para [Str "A",Space,Str "third"],OrderedList (1,Decimal,Period) [[Para [Str "New",Space,Str "level!"],OrderedList (1,LowerAlpha,OneParen) [[Plain [Str "And",Space,Str "another!"]],[Plain [Str "It's",Space,Str "great",Space,Str "up",Space,Str "here!"]]]],[Plain [Str "Oh",Space,Str "noes"]],[Plain [Str "We",Space,Str "fell!"]]]],[Plain [Str "Maybe",Space,Str "someone"]],[Plain [Str "Pushed",Space,Str "us?"]]]] \ No newline at end of file diff --git a/tests/odt/native/orderedListRoman.native b/tests/odt/native/orderedListRoman.native new file mode 100644 index 000000000..f186e0735 --- /dev/null +++ b/tests/odt/native/orderedListRoman.native @@ -0,0 +1 @@ +Pandoc (Meta {unMeta = fromList []}) [OrderedList (1,UpperRoman,Period) [[Plain[Str "A",Space,Str "list",Space,Str "item"]],[Plain [Str "A",Space,Str "second"]],[Para [Str "A",Space,Str "third"],OrderedList (1,UpperRoman,Period) [[Para [Str "New",Space,Str "level!"],OrderedList (1,UpperRoman,Period) [[Plain [Str "And",Space,Str "another!"]],[Plain [Str "It's",Space,Str "great",Space,Str "up",Space,Str "here!"]]]],[Plain [Str "Oh",Space,Str "noes"]],[Plain [Str "We",Space,Str "fell!"]]]],[Plain [Str "Maybe",Space,Str "someone"]],[Plain [Str "Pushed",Space,Str "us?"]]]] \ No newline at end of file diff --git a/tests/odt/native/orderedListSimple.native b/tests/odt/native/orderedListSimple.native new file mode 100644 index 000000000..90a51856a --- /dev/null +++ b/tests/odt/native/orderedListSimple.native @@ -0,0 +1 @@ +Pandoc (Meta {unMeta = fromList []}) [OrderedList (1,Decimal,Period) [[Plain [Str "A",Space,Str "list",Space,Str "item"]],[Plain [Str "A",Space,Str "second"]],[Para [Str "A",Space,Str "third"],OrderedList (1,Decimal,Period) [[Para [Str "New",Space,Str "level!"],OrderedList (1,Decimal,Period) [[Plain [Str "And",Space,Str "another!"]],[Plain [Str "It's",Space,Str "great",Space,Str "up",Space,Str "here!"]]]],[Plain [Str "Oh",Space,Str "noes"]],[Plain [Str "We",Space,Str "fell!"]]]],[Plain [Str "Maybe",Space,Str "someone"]],[Plain [Str "Pushed",Space,Str "us?"]]]] \ No newline at end of file diff --git a/tests/odt/native/referenceToChapter.native b/tests/odt/native/referenceToChapter.native new file mode 100644 index 000000000..fc6c6cf5c --- /dev/null +++ b/tests/odt/native/referenceToChapter.native @@ -0,0 +1 @@ +[Header 1 ("a-chapter",[],[]) [Span ("anchor",[],[]) [],Str "A",Space,Str "chapter"],Para [Str "Some",Space,Str "text."],Header 1 ("another-chapter",[],[]) [Str "Another",Space,Str "chapter"],Para [Str "A",Space,Str "reference",Space,Str "to",Space,Str "."],Para [Str "A",Space,Str "reference",Space,Str "to",Space,Link [Str "A",Space,Str "chapter"] ("#anchor",""),Str "."]] \ No newline at end of file diff --git a/tests/odt/native/referenceToListItem.native b/tests/odt/native/referenceToListItem.native new file mode 100644 index 000000000..d009f8d23 --- /dev/null +++ b/tests/odt/native/referenceToListItem.native @@ -0,0 +1 @@ +[OrderedList (1,Decimal,Period) [[Plain [Span ("anchor",[],[]) [],Str "A",Space,Str "list",Space,Str "item"]],[Plain [Str "Another",Space,Str "list",Space,Str "item"]]],Para [Str "A",Space,Str "reference",Space,Str "to",Space,Str "list",Space,Str "item",Space,Link [Str "1."] ("#anchor",""),Str "."],Para [],Para []] \ No newline at end of file diff --git a/tests/odt/native/referenceToText.native b/tests/odt/native/referenceToText.native new file mode 100644 index 000000000..45f7ac44c --- /dev/null +++ b/tests/odt/native/referenceToText.native @@ -0,0 +1 @@ +[Para [Span ("an anchor",[],[]) [],Str "Some",Space,Str "text."],Para [Str "A",Space,Str "reference",Space,Str "to",Space,Link [Str "Some",Space,Str "text"] ("#an anchor",""),Str "."]] \ No newline at end of file diff --git a/tests/odt/native/simpleTable.native b/tests/odt/native/simpleTable.native new file mode 100644 index 000000000..f94026bd5 --- /dev/null +++ b/tests/odt/native/simpleTable.native @@ -0,0 +1 @@ +[Table [] [] [] [] [[[Plain [Str "Content"]],[Plain [Str "More",Space,Str "content"]]]],Para []] \ No newline at end of file diff --git a/tests/odt/native/unicode.native b/tests/odt/native/unicode.native new file mode 100644 index 000000000..b6ac9760c --- /dev/null +++ b/tests/odt/native/unicode.native @@ -0,0 +1 @@ +[Para [Str "\8220\8221\8217\231\1256\169\188\1074\1073\1060\1064\246\201\181"]] \ No newline at end of file diff --git a/tests/odt/native/unorderedList.native b/tests/odt/native/unorderedList.native new file mode 100644 index 000000000..a8c083d13 --- /dev/null +++ b/tests/odt/native/unorderedList.native @@ -0,0 +1 @@ +[BulletList [[Plain [Str "A",Space,Str "list",Space,Str "item"]],[Plain [Str "A",Space,Str "second"]],[Para [Str "A",Space,Str "third"],BulletList [[Para [Str "New",Space,Str "level!"],BulletList [[Plain [Str "And",Space,Str "another!"]],[Plain [Str "It's",Space,Str "great",Space,Str "up",Space,Str "here!"]]]],[Plain [Str "Oh",Space,Str "noes"]],[Plain [Str "We",Space,Str "fell!"]]]],[Plain [Str "Maybe",Space,Str "someone"]],[Plain [Str "Pushed",Space,Str "us?"]]]] \ No newline at end of file diff --git a/tests/odt/odt/blockquote.odt b/tests/odt/odt/blockquote.odt new file mode 100644 index 000000000..0114e308f Binary files /dev/null and b/tests/odt/odt/blockquote.odt differ diff --git a/tests/odt/odt/bold.odt b/tests/odt/odt/bold.odt new file mode 100644 index 000000000..49285722e Binary files /dev/null and b/tests/odt/odt/bold.odt differ diff --git a/tests/odt/odt/citation.odt b/tests/odt/odt/citation.odt new file mode 100644 index 000000000..b6dbe649e Binary files /dev/null and b/tests/odt/odt/citation.odt differ diff --git a/tests/odt/odt/endnote.odt b/tests/odt/odt/endnote.odt new file mode 100644 index 000000000..c1aba45da Binary files /dev/null and b/tests/odt/odt/endnote.odt differ diff --git a/tests/odt/odt/expression.odt b/tests/odt/odt/expression.odt new file mode 100644 index 000000000..1085d7008 Binary files /dev/null and b/tests/odt/odt/expression.odt differ diff --git a/tests/odt/odt/expressionUnevaluated.odt b/tests/odt/odt/expressionUnevaluated.odt new file mode 100644 index 000000000..64df660b6 Binary files /dev/null and b/tests/odt/odt/expressionUnevaluated.odt differ diff --git a/tests/odt/odt/externalLink.odt b/tests/odt/odt/externalLink.odt new file mode 100644 index 000000000..1d8f55489 Binary files /dev/null and b/tests/odt/odt/externalLink.odt differ diff --git a/tests/odt/odt/footnote.odt b/tests/odt/odt/footnote.odt new file mode 100644 index 000000000..74915c33c Binary files /dev/null and b/tests/odt/odt/footnote.odt differ diff --git a/tests/odt/odt/formula.odt b/tests/odt/odt/formula.odt new file mode 100644 index 000000000..5cf5f3451 Binary files /dev/null and b/tests/odt/odt/formula.odt differ diff --git a/tests/odt/odt/headers.odt b/tests/odt/odt/headers.odt new file mode 100644 index 000000000..9212e9fb1 Binary files /dev/null and b/tests/odt/odt/headers.odt differ diff --git a/tests/odt/odt/hiddenTextByStyle.odt b/tests/odt/odt/hiddenTextByStyle.odt new file mode 100644 index 000000000..79c40ca98 Binary files /dev/null and b/tests/odt/odt/hiddenTextByStyle.odt differ diff --git a/tests/odt/odt/hiddenTextByVariable.odt b/tests/odt/odt/hiddenTextByVariable.odt new file mode 100644 index 000000000..ec793d466 Binary files /dev/null and b/tests/odt/odt/hiddenTextByVariable.odt differ diff --git a/tests/odt/odt/horizontalRule.odt b/tests/odt/odt/horizontalRule.odt new file mode 100644 index 000000000..df09386bc Binary files /dev/null and b/tests/odt/odt/horizontalRule.odt differ diff --git a/tests/odt/odt/image.odt b/tests/odt/odt/image.odt new file mode 100644 index 000000000..c2fd1e407 Binary files /dev/null and b/tests/odt/odt/image.odt differ diff --git a/tests/odt/odt/imageIndex.odt b/tests/odt/odt/imageIndex.odt new file mode 100644 index 000000000..220a49047 Binary files /dev/null and b/tests/odt/odt/imageIndex.odt differ diff --git a/tests/odt/odt/imageWithCaption.odt b/tests/odt/odt/imageWithCaption.odt new file mode 100644 index 000000000..99b5b7af1 Binary files /dev/null and b/tests/odt/odt/imageWithCaption.odt differ diff --git a/tests/odt/odt/italic.odt b/tests/odt/odt/italic.odt new file mode 100644 index 000000000..d05cfeade Binary files /dev/null and b/tests/odt/odt/italic.odt differ diff --git a/tests/odt/odt/listBlocks.odt b/tests/odt/odt/listBlocks.odt new file mode 100644 index 000000000..5855e9920 Binary files /dev/null and b/tests/odt/odt/listBlocks.odt differ diff --git a/tests/odt/odt/orderedListMixed.odt b/tests/odt/odt/orderedListMixed.odt new file mode 100644 index 000000000..1aa50ff06 Binary files /dev/null and b/tests/odt/odt/orderedListMixed.odt differ diff --git a/tests/odt/odt/orderedListRoman.odt b/tests/odt/odt/orderedListRoman.odt new file mode 100644 index 000000000..7266e89bc Binary files /dev/null and b/tests/odt/odt/orderedListRoman.odt differ diff --git a/tests/odt/odt/orderedListSimple.odt b/tests/odt/odt/orderedListSimple.odt new file mode 100644 index 000000000..4fe543794 Binary files /dev/null and b/tests/odt/odt/orderedListSimple.odt differ diff --git a/tests/odt/odt/paragraph.odt b/tests/odt/odt/paragraph.odt new file mode 100644 index 000000000..b635b2164 Binary files /dev/null and b/tests/odt/odt/paragraph.odt differ diff --git a/tests/odt/odt/referenceAllInOne.odt b/tests/odt/odt/referenceAllInOne.odt new file mode 100644 index 000000000..e9f38e359 Binary files /dev/null and b/tests/odt/odt/referenceAllInOne.odt differ diff --git a/tests/odt/odt/referenceToChapter.odt b/tests/odt/odt/referenceToChapter.odt new file mode 100644 index 000000000..d4be67b0b Binary files /dev/null and b/tests/odt/odt/referenceToChapter.odt differ diff --git a/tests/odt/odt/referenceToListItem.odt b/tests/odt/odt/referenceToListItem.odt new file mode 100644 index 000000000..be3aed245 Binary files /dev/null and b/tests/odt/odt/referenceToListItem.odt differ diff --git a/tests/odt/odt/referenceToText.odt b/tests/odt/odt/referenceToText.odt new file mode 100644 index 000000000..281055aa0 Binary files /dev/null and b/tests/odt/odt/referenceToText.odt differ diff --git a/tests/odt/odt/simpleTable.odt b/tests/odt/odt/simpleTable.odt new file mode 100644 index 000000000..a00622918 Binary files /dev/null and b/tests/odt/odt/simpleTable.odt differ diff --git a/tests/odt/odt/strikeout.odt b/tests/odt/odt/strikeout.odt new file mode 100644 index 000000000..3a3f1543a Binary files /dev/null and b/tests/odt/odt/strikeout.odt differ diff --git a/tests/odt/odt/table.odt b/tests/odt/odt/table.odt new file mode 100644 index 000000000..7a2b1cfae Binary files /dev/null and b/tests/odt/odt/table.odt differ diff --git a/tests/odt/odt/tableWithCaption.odt b/tests/odt/odt/tableWithCaption.odt new file mode 100644 index 000000000..d44654460 Binary files /dev/null and b/tests/odt/odt/tableWithCaption.odt differ diff --git a/tests/odt/odt/trackedChanges.odt b/tests/odt/odt/trackedChanges.odt new file mode 100644 index 000000000..5ac493ed7 Binary files /dev/null and b/tests/odt/odt/trackedChanges.odt differ diff --git a/tests/odt/odt/underlined.odt b/tests/odt/odt/underlined.odt new file mode 100644 index 000000000..d645717b8 Binary files /dev/null and b/tests/odt/odt/underlined.odt differ diff --git a/tests/odt/odt/unicode.odt b/tests/odt/odt/unicode.odt new file mode 100644 index 000000000..07e200425 Binary files /dev/null and b/tests/odt/odt/unicode.odt differ diff --git a/tests/odt/odt/unorderedList.odt b/tests/odt/odt/unorderedList.odt new file mode 100644 index 000000000..50a950024 Binary files /dev/null and b/tests/odt/odt/unorderedList.odt differ diff --git a/tests/odt/odt/variable.odt b/tests/odt/odt/variable.odt new file mode 100644 index 000000000..73ff5f648 Binary files /dev/null and b/tests/odt/odt/variable.odt differ -- cgit v1.2.3