updated all test documents

This commit is contained in:
Hendrik Schutter 2019-06-10 15:19:53 +02:00
parent 491578806e
commit 9975364621
11 changed files with 7044 additions and 824 deletions

View File

@ -9,7 +9,7 @@ import tornadofx.App
class Main: App(StartupView::class){ class Main: App(StartupView::class){
//start first controller //start first controller
private val svc = StartupViewController() val svc = StartupViewController()
override fun start(stage: Stage) { override fun start(stage: Stage) {

View File

@ -33,7 +33,11 @@ import java.text.SimpleDateFormat
class RootController : Controller() { class RootController : Controller() {
private val mvc: MainViewController by inject() private val mvc: MainViewController by inject()
private val svc: StartupViewController by inject() private val svc: StartupViewController by inject()
private val ivc: ImportViewController by inject() private val ivc: ImportViewController by inject()
private lateinit var con: Connection private lateinit var con: Connection
@ -170,6 +174,7 @@ class RootController : Controller() {
// TODO this could be a companion object // TODO this could be a companion object
fun switchStartupToMain() { fun switchStartupToMain() {
println("switchStartupToMain")
Platform.runLater { Platform.runLater {
find(StartupView::class).replaceWith(MainView::class, sizeToScene = true, centerOnScreen = true) find(StartupView::class).replaceWith(MainView::class, sizeToScene = true, centerOnScreen = true)
} }
@ -177,12 +182,14 @@ class RootController : Controller() {
// These runLater calls should be unnecessary // These runLater calls should be unnecessary
fun switchMainToImport() { fun switchMainToImport() {
println("switchMainToImport")
Platform.runLater { Platform.runLater {
find(MainView::class).replaceWith(ImportView::class, sizeToScene = true, centerOnScreen = true) find(MainView::class).replaceWith(ImportView::class, sizeToScene = true, centerOnScreen = true)
} }
} }
fun switchImportToMain() { fun switchImportToMain() {
println("switchImportToMain")
Platform.runLater { Platform.runLater {
find(ImportView::class).replaceWith(MainView::class, sizeToScene = true, centerOnScreen = true) find(ImportView::class).replaceWith(MainView::class, sizeToScene = true, centerOnScreen = true)
} }

View File

@ -22,6 +22,7 @@ class StartupView : View("TextureSync") {
private val svc: StartupViewController by inject() private val svc: StartupViewController by inject()
override val root = borderpane { override val root = borderpane {
minWidth = 1000.0 minWidth = 1000.0
minHeight = 500.0 minHeight = 500.0

File diff suppressed because it is too large Load Diff

View File

@ -1,126 +1,126 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text"> <office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2019-03-22T18:11:56.768840842</meta:creation-date><dc:date>2019-04-13T14:00:15.483038496</dc:date><meta:editing-duration>PT2H27M14S</meta:editing-duration><meta:editing-cycles>65</meta:editing-cycles><meta:generator>LibreOffice/6.2.2.2$Linux_X86_64 LibreOffice_project/20$Build-2</meta:generator><dc:title>Integrationstest</dc:title><meta:document-statistic meta:table-count="2" meta:image-count="0" meta:object-count="0" meta:page-count="5" meta:paragraph-count="27" meta:word-count="65" meta:character-count="415" meta:non-whitespace-character-count="377"/><meta:user-defined meta:name="Version">1.0.0</meta:user-defined></office:meta> <office:meta><meta:creation-date>2019-03-22T18:11:56.768840842</meta:creation-date><dc:date>2019-06-10T15:02:14.762211981</dc:date><meta:editing-duration>PT2H31M52S</meta:editing-duration><meta:editing-cycles>74</meta:editing-cycles><meta:generator>LibreOffice/6.2.3.2$Linux_X86_64 LibreOffice_project/20$Build-2</meta:generator><dc:title>Integrationstest</dc:title><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="5" meta:paragraph-count="60" meta:word-count="278" meta:character-count="1997" meta:non-whitespace-character-count="1775"/><meta:user-defined meta:name="Version">1.1.0</meta:user-defined></office:meta>
<office:settings> <office:settings>
<config:config-item-set config:name="ooo:view-settings"> <config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaTop" config:type="long">10179</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item> <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">50034</config:config-item> <config:config-item config:name="ViewAreaWidth" config:type="long">41697</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">22650</config:config-item> <config:config-item config:name="ViewAreaHeight" config:type="long">18875</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item> <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item> <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views"> <config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry> <config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item> <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">20974</config:config-item> <config:config-item config:name="ViewLeft" config:type="long">12347</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">16552</config:config-item> <config:config-item config:name="ViewTop" config:type="long">17715</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item> <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item> <config:config-item config:name="VisibleTop" config:type="long">10179</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">50033</config:config-item> <config:config-item config:name="VisibleRight" config:type="long">41695</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">22648</config:config-item> <config:config-item config:name="VisibleBottom" config:type="long">29053</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item> <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item> <config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item> <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item> <config:config-item config:name="ZoomFactor" config:type="short">120</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item> <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item> <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry> </config:config-item-map-entry>
</config:config-item-map-indexed> </config:config-item-map-indexed>
</config:config-item-set> </config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings"> <config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item> <config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item> <config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item> <config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/> <config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="DisableOffPagePositioning" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">false</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
<config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item> <config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">192011</config:config-item> <config:config-item config:name="RsidRoot" config:type="int">192011</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item> <config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">false</config:config-item> <config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">true</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item> <config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">4073838</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item> <config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item> <config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
<config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item> <config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item> <config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item> <config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item> <config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item> <config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="DisableOffPagePositioning" config:type="boolean">true</config:config-item>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">3982578</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">false</config:config-item>
</config:config-item-set> </config:config-item-set>
</office:settings> </office:settings>
<office:scripts> <office:scripts>
@ -113871,31 +113871,181 @@
<style:style style:name="Tabelle1.B4" style:family="table-cell"> <style:style style:name="Tabelle1.B4" style:family="table-cell">
<style:table-cell-properties style:vertical-align="" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/> <style:table-cell-properties style:vertical-align="" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabelle3" style:family="table"> <style:style style:name="Tabelle2" style:family="table">
<style:table-properties style:width="17.006cm" table:align="margins"/> <style:table-properties style:width="17.006cm" table:align="margins"/>
</style:style> </style:style>
<style:style style:name="Tabelle3.A" style:family="table-column"> <style:style style:name="Tabelle2.A" style:family="table-column">
<style:table-column-properties style:column-width="2.494cm" style:rel-column-width="9611*"/> <style:table-column-properties style:column-width="2.494cm" style:rel-column-width="9611*"/>
</style:style> </style:style>
<style:style style:name="Tabelle3.B" style:family="table-column"> <style:style style:name="Tabelle2.B" style:family="table-column">
<style:table-column-properties style:column-width="14.512cm" style:rel-column-width="55924*"/> <style:table-column-properties style:column-width="14.512cm" style:rel-column-width="55924*"/>
</style:style> </style:style>
<style:style style:name="Tabelle3.A1" style:family="table-cell"> <style:style style:name="Tabelle2.A1" style:family="table-cell">
<style:table-cell-properties fo:background-color="#ffde03" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"> <style:table-cell-properties fo:background-color="#ffde03" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000">
<style:background-image/> <style:background-image/>
</style:table-cell-properties> </style:table-cell-properties>
</style:style> </style:style>
<style:style style:name="Tabelle3.B1" style:family="table-cell"> <style:style style:name="Tabelle2.B1" style:family="table-cell">
<style:table-cell-properties fo:background-color="#ffde03" fo:padding="0.097cm" fo:border="0.05pt solid #000000"> <style:table-cell-properties fo:background-color="#ffde03" fo:padding="0.097cm" fo:border="0.05pt solid #000000">
<style:background-image/> <style:background-image/>
</style:table-cell-properties> </style:table-cell-properties>
</style:style> </style:style>
<style:style style:name="Tabelle3.A2" style:family="table-cell"> <style:style style:name="Tabelle2.A2" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/> <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabelle3.B2" style:family="table-cell"> <style:style style:name="Tabelle2.B2" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/> <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
</style:style> </style:style>
<style:style style:name="Tabelle2.3" style:family="table-row">
<style:table-row-properties style:min-row-height="0.73cm"/>
</style:style>
<style:style style:name="Tabelle2.A3" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
</style:style>
<style:style style:name="Tabelle2.B3" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
</style:style>
<style:style style:name="Tabelle5" style:family="table">
<style:table-properties style:width="25.709cm" fo:margin-left="0cm" table:align="left" fo:keep-with-next="always" style:may-break-between-rows="true"/>
</style:style>
<style:style style:name="Tabelle5.A" style:family="table-column">
<style:table-column-properties style:column-width="2.066cm"/>
</style:style>
<style:style style:name="Tabelle5.B" style:family="table-column">
<style:table-column-properties style:column-width="3.434cm"/>
</style:style>
<style:style style:name="Tabelle5.C" style:family="table-column">
<style:table-column-properties style:column-width="9.89cm"/>
</style:style>
<style:style style:name="Tabelle5.D" style:family="table-column">
<style:table-column-properties style:column-width="10.319cm"/>
</style:style>
<style:style style:name="Tabelle5.1" style:family="table-row">
<style:table-row-properties fo:keep-together="always"/>
</style:style>
<style:style style:name="Tabelle5.A1" style:family="table-cell">
<style:table-cell-properties fo:background-color="#ffde03" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.D1" style:family="table-cell">
<style:table-cell-properties fo:background-color="#ffde03" fo:padding="0.097cm" fo:border="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.A2" style:family="table-cell">
<style:table-cell-properties style:vertical-align="middle" fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.B2" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.C2" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.D2" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.B3" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.C3" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.D3" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.B4" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.C4" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.D4" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.B5" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.C5" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.D5" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.B6" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.C6" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.D6" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.7" style:family="table-row">
<style:table-row-properties style:min-row-height="0.762cm" fo:keep-together="always"/>
</style:style>
<style:style style:name="Tabelle5.B7" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.C7" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.D7" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.B8" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.C8" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.D8" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Footer"> <style:style style:name="P1" style:family="paragraph" style:parent-style-name="Footer">
<style:text-properties officeooo:paragraph-rsid="0010decd"/> <style:text-properties officeooo:paragraph-rsid="0010decd"/>
</style:style> </style:style>
@ -114065,33 +114215,83 @@
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Heading_20_3"> <style:style style:name="P48" style:family="paragraph" style:parent-style-name="Heading_20_3">
<style:text-properties officeooo:rsid="002aa4d8" officeooo:paragraph-rsid="002aa4d8"/> <style:text-properties officeooo:rsid="002aa4d8" officeooo:paragraph-rsid="002aa4d8"/>
</style:style> </style:style>
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name=""> <style:style style:name="P49" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="First_20_Page">
<style:paragraph-properties style:page-number="auto"/>
<style:text-properties officeooo:paragraph-rsid="0004b30c"/>
</style:style>
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties fo:color="#000000" officeooo:rsid="0002ee0b" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties fo:color="#000000" officeooo:rsid="003ac753" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="0038585e" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="003ac753" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="00398afd" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="003e296e" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:text-properties officeooo:paragraph-rsid="00085afb"/>
</style:style>
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:break-before="page"/>
<style:text-properties officeooo:rsid="003e296e" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="Landscape">
<style:paragraph-properties style:page-number="auto" fo:break-before="page"/>
<style:text-properties officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="Standard">
<style:paragraph-properties style:page-number="auto" fo:break-before="page"/>
<style:text-properties officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="">
<style:paragraph-properties> <style:paragraph-properties>
<style:tab-stops> <style:tab-stops>
<style:tab-stop style:position="14.203cm"/> <style:tab-stop style:position="14.203cm"/>
</style:tab-stops> </style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
</style:style> </style:style>
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Heading_20_1"> <style:style style:name="P62" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:paragraph-rsid="00085afb"/> <style:text-properties officeooo:paragraph-rsid="003e296e"/>
</style:style> </style:style>
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Heading_20_1" style:list-style-name=""> <style:style style:name="P63" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:line-height="100%"> <style:text-properties officeooo:rsid="0036369b" officeooo:paragraph-rsid="003e296e"/>
<style:tab-stops/> </style:style>
<style:style style:name="P64" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:rsid="0035f878" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties officeooo:rsid="0038585e" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties officeooo:rsid="003ac753" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties officeooo:rsid="003e296e" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Contents_20_Heading" style:master-page-name="">
<style:paragraph-properties style:page-number="auto" fo:break-before="auto" fo:break-after="auto"/>
</style:style>
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Contents_20_1">
<style:paragraph-properties>
<style:tab-stops>
<style:tab-stop style:position="17.006cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
</style:tab-stops>
</style:paragraph-properties> </style:paragraph-properties>
<style:text-properties officeooo:rsid="00341578" officeooo:paragraph-rsid="00341578"/>
</style:style>
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:break-before="page"/>
<style:text-properties officeooo:rsid="003beac9" officeooo:paragraph-rsid="003beac9"/>
</style:style>
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:break-before="page"/>
<style:text-properties officeooo:paragraph-rsid="00341578"/>
</style:style>
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="First_20_Page">
<style:paragraph-properties style:page-number="auto"/>
<style:text-properties officeooo:paragraph-rsid="0004b30c"/>
</style:style> </style:style>
<style:style style:name="T1" style:family="text"> <style:style style:name="T1" style:family="text">
<style:text-properties officeooo:rsid="00095978"/> <style:text-properties officeooo:rsid="00095978"/>
@ -114132,6 +114332,24 @@
<style:style style:name="T13" style:family="text"> <style:style style:name="T13" style:family="text">
<style:text-properties officeooo:rsid="003cc4f2"/> <style:text-properties officeooo:rsid="003cc4f2"/>
</style:style> </style:style>
<style:style style:name="T14" style:family="text">
<style:text-properties officeooo:rsid="003e296e"/>
</style:style>
<style:style style:name="T15" style:family="text">
<style:text-properties officeooo:rsid="003e93e2"/>
</style:style>
<style:style style:name="T16" style:family="text">
<style:text-properties officeooo:rsid="0036369b"/>
</style:style>
<style:style style:name="T17" style:family="text">
<style:text-properties officeooo:rsid="003ac753"/>
</style:style>
<style:style style:name="T18" style:family="text">
<style:text-properties officeooo:rsid="003b4a9f"/>
</style:style>
<style:style style:name="T19" style:family="text">
<style:text-properties fo:color="#000000"/>
</style:style>
<style:style style:name="Sect1" style:family="section"> <style:style style:name="Sect1" style:family="section">
<style:section-properties style:editable="false"> <style:section-properties style:editable="false">
<style:columns fo:column-count="1" fo:column-gap="0cm"/> <style:columns fo:column-count="1" fo:column-gap="0cm"/>
@ -114167,6 +114385,13 @@
<style:header-style/> <style:header-style/>
<style:footer-style/> <style:footer-style/>
</style:page-layout> </style:page-layout>
<style:page-layout style:name="pm5">
<style:page-layout-properties fo:page-width="29.693cm" fo:page-height="21.006cm" style:num-format="1" style:print-orientation="landscape" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:footnote-max-height="0cm">
<style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
</style:page-layout-properties>
<style:header-style/>
<style:footer-style/>
</style:page-layout>
<number:number-style style:name="N0"> <number:number-style style:name="N0">
<number:number number:min-integer-digits="1"/> <number:number number:min-integer-digits="1"/>
</number:number-style> </number:number-style>
@ -114181,12 +114406,13 @@
<office:master-styles> <office:master-styles>
<style:master-page style:name="Standard" style:page-layout-name="pm1"> <style:master-page style:name="Standard" style:page-layout-name="pm1">
<style:footer> <style:footer>
<text:p text:style-name="P1"><text:span text:style-name="T1">TextureSync</text:span> <text:tab/><text:title>Integrationstest</text:title> <text:span text:style-name="T2">⸬ </text:span><text:span text:style-name="T1">Version </text:span><text:user-defined style:data-style-name="N0" text:name="Version">1.0.0</text:user-defined><text:tab/><text:span text:style-name="T3">Seite</text:span> <text:page-number text:select-page="current">5</text:page-number>/<text:page-count>5</text:page-count></text:p> <text:p text:style-name="P1"><text:span text:style-name="T1">TextureSync</text:span> <text:tab/><text:title>Integrationstest</text:title> <text:span text:style-name="T2">⸬ </text:span><text:span text:style-name="T1">Version </text:span><text:user-defined style:data-style-name="N0" text:name="Version">1.1.0</text:user-defined><text:tab/><text:span text:style-name="T3">Seite</text:span> <text:page-number text:select-page="current">5</text:page-number>/<text:page-count>5</text:page-count></text:p>
</style:footer> </style:footer>
</style:master-page> </style:master-page>
<style:master-page style:name="First_20_Page" style:display-name="First Page" style:page-layout-name="pm2" style:next-style-name="Standard"/> <style:master-page style:name="First_20_Page" style:display-name="First Page" style:page-layout-name="pm2" style:next-style-name="Standard"/>
<style:master-page style:name="Index" style:page-layout-name="pm3"/> <style:master-page style:name="Index" style:page-layout-name="pm3"/>
<style:master-page style:name="HTML" style:page-layout-name="pm4"/> <style:master-page style:name="HTML" style:page-layout-name="pm4"/>
<style:master-page style:name="Landscape" style:page-layout-name="pm5"/>
</office:master-styles> </office:master-styles>
<office:body> <office:body>
<office:text text:use-soft-page-breaks="true"> <office:text text:use-soft-page-breaks="true">
@ -114198,7 +114424,7 @@
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/> <text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/> <text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls> </text:sequence-decls>
<text:p text:style-name="P54"/> <text:p text:style-name="P49"/>
<text:p text:style-name="P34"/> <text:p text:style-name="P34"/>
<text:p text:style-name="P35"><text:title>Integrationstest</text:title></text:p> <text:p text:style-name="P35"><text:title>Integrationstest</text:title></text:p>
<text:p text:style-name="Subtitle">TextureSync</text:p> <text:p text:style-name="Subtitle">TextureSync</text:p>
@ -114206,7 +114432,7 @@
<text:p text:style-name="Text_20_body"/> <text:p text:style-name="Text_20_body"/>
<text:p text:style-name="Text_20_body"/> <text:p text:style-name="Text_20_body"/>
<text:p text:style-name="Text_20_body"/> <text:p text:style-name="Text_20_body"/>
<text:p text:style-name="P8">TODO → Dieses Dokument wird aus den im Mastertestplan <text:span text:style-name="T13">definierten</text:span> Test<text:span text:style-name="T13">s</text:span> abgeleitet und die Testergebnisse darin vermerkt.</text:p> <text:p text:style-name="P8">TODO → Testergebnisse darin vermerk<text:span text:style-name="T14">en</text:span>.</text:p>
<text:p text:style-name="Text_20_body"/> <text:p text:style-name="Text_20_body"/>
<text:p text:style-name="Text_20_body"/> <text:p text:style-name="Text_20_body"/>
<text:p text:style-name="Text_20_body"/> <text:p text:style-name="Text_20_body"/>
@ -114221,7 +114447,7 @@
<text:p text:style-name="P10">Version</text:p> <text:p text:style-name="P10">Version</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabelle1.B1" office:value-type="string"> <table:table-cell table:style-name="Tabelle1.B1" office:value-type="string">
<text:p text:style-name="P9"><text:user-defined style:data-style-name="N0" text:name="Version">1.0.0</text:user-defined></text:p> <text:p text:style-name="P9"><text:user-defined style:data-style-name="N0" text:name="Version">1.1.0</text:user-defined></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row table:style-name="Tabelle1.1"> <table:table-row table:style-name="Tabelle1.1">
@ -114229,7 +114455,7 @@
<text:p text:style-name="P10">Datum</text:p> <text:p text:style-name="P10">Datum</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabelle1.B3" office:value-type="string"> <table:table-cell table:style-name="Tabelle1.B3" office:value-type="string">
<text:p text:style-name="Table_20_Contents"><text:date style:data-style-name="N37" text:date-value="2019-03-22T18:20:01.209366065" text:fixed="true">22.03.19</text:date></text:p> <text:p text:style-name="Table_20_Contents"><text:date style:data-style-name="N37" text:date-value="2019-06-10T15:02:18.861065357">10.06.19</text:date></text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row table:style-name="Tabelle1.1"> <table:table-row table:style-name="Tabelle1.1">
@ -114237,7 +114463,10 @@
<text:p text:style-name="P13">Autor</text:p> <text:p text:style-name="P13">Autor</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabelle1.B3" office:value-type="string"> <table:table-cell table:style-name="Tabelle1.B3" office:value-type="string">
<text:p text:style-name="P24">TODO</text:p> <text:p text:style-name="P50">Hendrik Schutter,</text:p>
<text:p text:style-name="P50">Lukas Fürderer,</text:p>
<text:p text:style-name="P50">Robin Willmann,</text:p>
<text:p text:style-name="P50">Jannik Seiler</text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row table:style-name="Tabelle1.1"> <table:table-row table:style-name="Tabelle1.1">
@ -114252,7 +114481,7 @@
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:h text:style-name="P49" text:outline-level="1"/> <text:h text:style-name="P61" text:outline-level="1"/>
<text:table-of-content text:style-name="Sect1" text:protected="true" text:name="Inhaltsverzeichnis1"> <text:table-of-content text:style-name="Sect1" text:protected="true" text:name="Inhaltsverzeichnis1">
<text:table-of-content-source text:outline-level="2"> <text:table-of-content-source text:outline-level="2">
<text:index-title-template text:style-name="Contents_20_Heading">Inhaltsverzeichnis</text:index-title-template> <text:index-title-template text:style-name="Contents_20_Heading">Inhaltsverzeichnis</text:index-title-template>
@ -114341,38 +114570,165 @@
<text:index-title text:style-name="Sect1" text:name="Inhaltsverzeichnis1_Head"> <text:index-title text:style-name="Sect1" text:name="Inhaltsverzeichnis1_Head">
<text:p text:style-name="P44"><text:soft-page-break/>Inhaltsverzeichnis</text:p> <text:p text:style-name="P44"><text:soft-page-break/>Inhaltsverzeichnis</text:p>
</text:index-title> </text:index-title>
<text:p text:style-name="P32"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc122_1745181160" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1 Bla bla<text:tab/>3</text:a></text:p> <text:p text:style-name="P32"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc122_1745181160" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">1 Testumgebung<text:tab/>3</text:a></text:p>
<text:p text:style-name="P32"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc481_1832135473" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2 Bla bla<text:tab/>4</text:a></text:p> <text:p text:style-name="P32"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc2798_2391892654" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">2 Testdefinition mit Ergebnis<text:tab/>4</text:a></text:p>
<text:p text:style-name="P32"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc752_3921231312" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">3 Changelog<text:tab/>5</text:a></text:p> <text:p text:style-name="P32"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc2800_2391892654" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">3 Changelog<text:tab/>5</text:a></text:p>
</text:index-body> </text:index-body>
</text:table-of-content> </text:table-of-content>
<text:h text:style-name="P45" text:outline-level="1" text:is-list-header="true"/> <text:h text:style-name="P45" text:outline-level="1" text:is-list-header="true"/>
<text:h text:style-name="P31" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc122_1745181160"/>Bla bla<text:bookmark-end text:name="__RefHeading___Toc122_1745181160"/></text:h> <text:h text:style-name="P58" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc122_1745181160"/>Testumgebung<text:bookmark-end text:name="__RefHeading___Toc122_1745181160"/></text:h>
<text:h text:style-name="P51" text:outline-level="1"/> <text:p text:style-name="P64">Mehrere komplette Arbeitsaufträge für die komplette Software werden getestet. Aus einem bestimmten Ausgangspunkt muss mit den gleichen Interaktionen das gleiche Ergebnis entstehen. </text:p>
<text:h text:style-name="P31" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc481_1832135473"/>Bla bla<text:bookmark-end text:name="__RefHeading___Toc481_1832135473"/></text:h> <text:p text:style-name="P64">Als Ausgangspunkt werden speziell präparierte Situationen gewählt, welche wiederholt werden können. </text:p>
<text:p text:style-name="P7"/> <text:p text:style-name="P63">Die fehlerfreie Kommunikation innerhalb der Client- und der Server-<text:span text:style-name="T15">S</text:span>oftware wie auch die Kommunikation des Servers und des Clients werden dadurch verifiziert. </text:p>
<text:h text:style-name="P29" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc752_3921231312"/>Changelog<text:bookmark-end text:name="__RefHeading___Toc752_3921231312"/></text:h> <text:h text:style-name="P59" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc2798_2391892654"/><text:span text:style-name="T14">Testdefinition mit Ergebnis</text:span><text:bookmark-end text:name="__RefHeading___Toc2798_2391892654"/></text:h>
<table:table table:name="Tabelle3" table:style-name="Tabelle3"> <table:table table:name="Tabelle5" table:style-name="Tabelle5">
<table:table-column table:style-name="Tabelle3.A"/> <table:table-column table:style-name="Tabelle5.A"/>
<table:table-column table:style-name="Tabelle3.B"/> <table:table-column table:style-name="Tabelle5.B"/>
<table:table-row> <table:table-column table:style-name="Tabelle5.C"/>
<table:table-cell table:style-name="Tabelle3.A1" office:value-type="string"> <table:table-column table:style-name="Tabelle5.D"/>
<text:p text:style-name="Table_20_Heading">Version</text:p> <table:table-row table:style-name="Tabelle5.1">
<table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
<text:p text:style-name="P67">Nummer</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabelle3.B1" office:value-type="string"> <table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
<text:p text:style-name="Table_20_Heading">Änderung</text:p> <text:p text:style-name="P67">Titel</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
<text:p text:style-name="P67">Erklärung</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.D1" office:value-type="string">
<text:p text:style-name="P68">Ergebnis</text:p>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
<table:table-row> <table:table-row table:style-name="Tabelle5.1">
<table:table-cell table:style-name="Tabelle3.A2" office:value-type="string"> <table:table-cell table:style-name="Tabelle5.A2" office:value-type="string">
<text:p text:style-name="P23">1.0.<text:span text:style-name="T12">0</text:span></text:p> <text:p text:style-name="P67"><text:span text:style-name="T16">IT</text:span>#1</text:p>
</table:table-cell> </table:table-cell>
<table:table-cell table:style-name="Tabelle3.B2" office:value-type="string"> <table:table-cell table:style-name="Tabelle5.B2" office:value-type="string">
<text:p text:style-name="Table_20_Contents">-</text:p> <text:p text:style-name="P52">Verbindung <text:span text:style-name="T17">aufbauen</text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.C2" office:value-type="string">
<text:p text:style-name="P52">Ein neu installierter Server und Client müssen eine Verbindung herstellen können.</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.D2" office:value-type="string">
<text:p text:style-name="P52"/>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle5.1">
<table:table-cell table:style-name="Tabelle5.A2" office:value-type="string">
<text:p text:style-name="P67"><text:span text:style-name="T16">IT</text:span>#2</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.B3" office:value-type="string">
<text:p text:style-name="P52">Alle Texturen anzeigen</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.C3" office:value-type="string">
<text:p text:style-name="P52">Der Client muss bei einer Suche ohne ange<text:span text:style-name="T15">gebene</text:span> Suchkriterien alle Texturen anzeigen.</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.D3" office:value-type="string">
<text:p text:style-name="P52"/>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle5.1">
<table:table-cell table:style-name="Tabelle5.A2" office:value-type="string">
<text:p text:style-name="P65">IT#3</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.B4" office:value-type="string">
<text:p text:style-name="P52">Einstelldatum</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.C4" office:value-type="string">
<text:p text:style-name="P52">Eine Textur wird eingefügt. Danach wird manuell das Datum in die Zukunft gesetzt und wieder eine Textur eingefügt. Bei einer Suche mit dem Kriterium des anfänglichen Datums wird nur die erste Textur angezeigt. </text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.D4" office:value-type="string">
<text:p text:style-name="P52"/>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle5.1">
<table:table-cell table:style-name="Tabelle5.A2" office:value-type="string">
<text:p text:style-name="P65">IT#4</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.B5" office:value-type="string">
<text:p text:style-name="P52">Textur hinzufügen</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.C5" office:value-type="string">
<text:p text:style-name="P52">Es wird eine neue Textur ins System eingefügt. Diese muss von der Server-Software gespeichert und indexiert werden. Bei der nächsten Suchanfrage mit passenden Kriterien wird diese angezeigt.</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.D5" office:value-type="string">
<text:p text:style-name="P52"/>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle5.1">
<table:table-cell table:style-name="Tabelle5.A2" office:value-type="string">
<text:p text:style-name="P65">IT#5</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.B6" office:value-type="string">
<text:p text:style-name="P51">Textur löschen</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.C6" office:value-type="string">
<text:p text:style-name="P53">Ein Client löscht eine Textur, diese wird auch auf dem Server gelöscht und kommt <text:span text:style-name="T18">bei</text:span> keinem Suchergebnis <text:span text:style-name="T18">mehr </text:span>vor.</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.D6" office:value-type="string">
<text:p text:style-name="P53"/>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle5.7">
<table:table-cell table:style-name="Tabelle5.A2" office:value-type="string">
<text:p text:style-name="P66">IT#6</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.B7" office:value-type="string">
<text:p text:style-name="P51">Metadaten aktualisieren</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.C7" office:value-type="string">
<text:p text:style-name="P53">Ein Client ändert einen Tag ab und ein weitere<text:span text:style-name="T18">r</text:span> macht danach eine Suchanfrage mit diesem neuen Tag. Die dazugehörige Textur wird angezeigt.</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.D7" office:value-type="string">
<text:p text:style-name="P53"/>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle5.7">
<table:table-cell table:style-name="Tabelle5.A2" office:value-type="string">
<text:p text:style-name="P66">IT#7</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.B8" office:value-type="string">
<text:p text:style-name="P53"><text:span text:style-name="T19">Verbindung schließen</text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.C8" office:value-type="string">
<text:p text:style-name="P53">Ein verbundener Client schließt die Verbindung und kann diese danach wieder aufbauen.</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.D8" office:value-type="string">
<text:p text:style-name="P53"/>
</table:table-cell> </table:table-cell>
</table:table-row> </table:table-row>
</table:table> </table:table>
<text:p text:style-name="Text_20_body"/> <text:h text:style-name="P60" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc2800_2391892654"/>Changelog<text:bookmark-end text:name="__RefHeading___Toc2800_2391892654"/></text:h>
<table:table table:name="Tabelle2" table:style-name="Tabelle2">
<table:table-column table:style-name="Tabelle2.A"/>
<table:table-column table:style-name="Tabelle2.B"/>
<table:table-row>
<table:table-cell table:style-name="Tabelle2.A1" office:value-type="string">
<text:p text:style-name="P67">Version</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle2.B1" office:value-type="string">
<text:p text:style-name="P67">Änderung</text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabelle2.A2" office:value-type="string">
<text:p text:style-name="P54">1.0.<text:span text:style-name="T12">0</text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle2.B2" office:value-type="string">
<text:p text:style-name="P55">-</text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle2.3">
<table:table-cell table:style-name="Tabelle2.A3" office:value-type="string">
<text:p text:style-name="P56">1.1.0</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle2.B3" office:value-type="string">
<text:p text:style-name="P56">Testdefinition hinzugefügt</text:p>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="P62"/>
</office:text> </office:text>
</office:body> </office:body>
</office:document> </office:document>

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.