Merge branch 'resize'

This commit is contained in:
CodeSteak 2019-06-12 19:11:08 +02:00
commit f094a68b04
19 changed files with 36667 additions and 1644 deletions

View File

@ -2,25 +2,30 @@ package org.hso.texturesyncclient.app
import javafx.scene.image.Image
import javafx.stage.Stage
import org.hso.texturesyncclient.controller.SettingsController
import org.hso.texturesyncclient.view.startupView.StartupView
import org.hso.texturesyncclient.view.startupView.StartupViewController
import tornadofx.App
class Main: App(StartupView::class){
class Main : App(StartupView::class) {
//start first controller
val svc = StartupViewController()
val svc = StartupViewController()
override fun start(stage: Stage) {
stage.minWidth = 1000.00
stage.minHeight = 500.00
stage.isResizable = false
stage.icons.add(Image("icons/TextureSync_Icon_256x256.jpeg"))
stage.minWidth = 1008.00
stage.minHeight = 535.00
stage.width = 1008.00
stage.height = 535.00
stage.isResizable = true
stage.icons.add(Image("icons/TextureSync_Icon_256x256.png"))
stage.setOnCloseRequest { System.exit(0) }
super.start(stage)
stage.scene.stylesheets.add("/css/Styles.css") // this call must be after the super call
SettingsController.init()
svc.initConnection()
}
}

View File

@ -13,22 +13,21 @@ import org.hso.texturesyncclient.model.Sha256
import org.hso.texturesyncclient.model.Texture
import org.hso.texturesyncclient.model.TextureFormat
import org.hso.texturesyncclient.view.importView.ImportView
import org.hso.texturesyncclient.view.importView.ImportViewController
import org.hso.texturesyncclient.view.mainView.MainView
import org.hso.texturesyncclient.view.mainView.MainViewController
import org.hso.texturesyncclient.view.startupView.StartupView
import org.hso.texturesyncclient.view.startupView.StartupViewController
import tornadofx.Controller
import tornadofx.find
import tornadofx.observable
import java.net.InetAddress
import java.util.Calendar
import java.io.File
import javax.imageio.ImageIO
import java.util.UUID
import java.nio.file.Files
import java.io.FileOutputStream
import java.io.IOException
import java.net.InetAddress
import java.nio.file.Files
import java.text.SimpleDateFormat
import java.util.*
import javax.imageio.ImageIO
class RootController : Controller() {
@ -36,15 +35,13 @@ class RootController : Controller() {
private val svc: StartupViewController by inject()
private val ivc: ImportViewController by inject()
private lateinit var con: Connection
private lateinit var selectedTextureModel: GUIModel
private var lastExportDir: String = System.getProperty("user.home")
lateinit var selectedTexture: Texture
fun isSelectedTextureInitialized() = ::selectedTexture.isInitialized
/**
* calculate the resolution, get today's date -> upload to server
@ -172,29 +169,6 @@ class RootController : Controller() {
return previewList
}
// TODO this could be a companion object
fun switchStartupToMain() {
println("switchStartupToMain")
Platform.runLater {
find(StartupView::class).replaceWith(MainView::class, sizeToScene = true, centerOnScreen = true)
}
}
// These runLater calls should be unnecessary
fun switchMainToImport() {
println("switchMainToImport")
Platform.runLater {
find(MainView::class).replaceWith(ImportView::class, sizeToScene = true, centerOnScreen = true)
}
}
fun switchImportToMain() {
println("switchImportToMain")
Platform.runLater {
find(ImportView::class).replaceWith(MainView::class, sizeToScene = true, centerOnScreen = true)
}
}
/**
* save the texture file to a local directory
* @param data the texture as meta element
@ -288,7 +262,11 @@ class RootController : Controller() {
selectedTextureModel.data.textureHash
)
try {
con.updateTexture(selectedTextureModel.data, newTexture, con.getTextureFile(selectedTextureModel.data.textureHash))
con.updateTexture(
selectedTextureModel.data,
newTexture,
con.getTextureFile(selectedTextureModel.data.textureHash)
)
selectedTextureModel.setTexture(newTexture)
selectedTextureModel.data = newTexture
} catch (e: Exception) {
@ -307,8 +285,28 @@ class RootController : Controller() {
* set the last selected texture-GUIModell
* @param model the last selected element
*/
fun setSelectedTexture(model: GUIModel){
fun setSelectedTexture(model: GUIModel) {
selectedTextureModel = model
}
companion object {
fun switchStartupToMain() {
Platform.runLater {
find(StartupView::class).replaceWith(MainView::class, sizeToScene = true, centerOnScreen = true)
}
}
// These runLater calls should be unnecessary
fun switchMainToImport() {
Platform.runLater {
find(MainView::class).replaceWith(ImportView::class, sizeToScene = true, centerOnScreen = true)
}
}
fun switchImportToMain() {
Platform.runLater {
find(ImportView::class).replaceWith(MainView::class, sizeToScene = true, centerOnScreen = true)
}
}
}
}

View File

@ -18,7 +18,7 @@ class ImportView : View("TextureSync") {
val tfName = JFXTextField()
val cvTags = JFXChipView<String>()
val btnImport = JFXButton("Importieren")
val btnBack = JFXButton("Zurück")
private val btnBack = JFXButton("Zurück")
private val ivc: ImportViewController by inject()
@ -27,8 +27,8 @@ class ImportView : View("TextureSync") {
}
override val root = borderpane {
minWidth = 1000.0
minHeight = 500.0
prefWidth = FX.primaryStage.width
prefHeight = FX.primaryStage.height
background = Background(BackgroundFill(Paint.valueOf("#2b2b2b"), CornerRadii.EMPTY, Insets.EMPTY))
center = vbox(50) {

View File

@ -34,7 +34,7 @@ class ImportViewController : Controller() {
fun btnImportAction() {
rootc.importTexture(iv.tfFilePath.text, iv.tfName.text, iv.cvTags.chips)
rootc.switchImportToMain()
RootController.switchImportToMain()
iv.tfFilePath.clear()
iv.tfName.clear()
iv.cvTags.chips.clear()
@ -46,7 +46,7 @@ class ImportViewController : Controller() {
}
fun btnBackAction() {
rootc.switchImportToMain()
RootController.switchImportToMain()
iv.tfFilePath.clear()
iv.tfName.clear()
iv.cvTags.chips.clear()

View File

@ -1,10 +1,8 @@
package org.hso.texturesyncclient.view.mainView
import com.jfoenix.controls.JFXButton
import com.jfoenix.controls.JFXChipView
import javafx.geometry.Insets
import javafx.geometry.Orientation
import javafx.geometry.Pos
import javafx.scene.control.Label
import javafx.scene.image.Image
import javafx.scene.layout.Background
@ -18,7 +16,6 @@ class DetailView: View() {
val preview = Preview3D()
val metaLabel = Label("Auflösung: 8MP\nName: Texture.png\nAndere: was anderes\nEinfügedatum: 31.02.2019")
val cvTags = JFXChipView<String>()
val btnImport = JFXButton("+")
init {
// set a default texture
@ -49,12 +46,6 @@ class DetailView: View() {
}
field {
hbox(alignment = Pos.CENTER_RIGHT) {
add(btnImport)
}
}
}
style {
@ -63,9 +54,6 @@ class DetailView: View() {
cvTags.minHeight = 145.0
cvTags.paddingAll = 3.0
cvTags.style = "-fx-background-color: #53585b; -fx-text-inner-color: #b15b2e;"
btnImport.buttonType = JFXButton.ButtonType.RAISED
btnImport.styleClass.add("jfx-floating-action-button")
}
}

View File

@ -13,12 +13,7 @@ class FolderView : View("FolderView"){
hgap = 5.0
vgap = 5.0
paddingAll = 10.0
prefWidth = 732.0
prefHeight = 401.0
background = Background(BackgroundFill(Paint.valueOf("#2b2b2b"), CornerRadii.EMPTY, Insets.EMPTY))
style {
}
}
}

View File

@ -1,8 +1,8 @@
package org.hso.texturesyncclient.view.mainView
import com.jfoenix.controls.JFXButton
import com.jfoenix.controls.JFXChipView
import javafx.geometry.Insets
import javafx.scene.control.ScrollPane
import javafx.scene.layout.Background
import javafx.scene.layout.BackgroundFill
@ -13,51 +13,60 @@ import tornadofx.*
class MainView : View("TextureSync") {
val cvSearch = JFXChipView<String>()
private val btnImport = JFXButton("+")
val folderView = find(FolderView::class)
val detailView = find(DetailView::class)
private val mvc: MainViewController by inject()
override val root = borderpane {
override val root = anchorpane {
background = Background(BackgroundFill(Paint.valueOf("#2b2b2b"), CornerRadii.EMPTY, Insets.EMPTY))
minWidth = 1000.0
maxWidth = 1000.0
minHeight = 500.0
maxHeight = 500.0
prefWidth = FX.primaryStage.width
prefHeight = FX.primaryStage.height
left = vbox {
//background = Background(BackgroundFill(Paint.valueOf("#2b2b2b"), CornerRadii.EMPTY, Insets.EMPTY))
anchorpane{
this.fitToParentWidth()
paddingAll = 5.0
add(cvSearch)
add(cvSearch)
scrollpane {
style = "-fx-background-color:transparent;"
isFitToWidth = true
isFitToHeight = true
add(folderView.root)
anchorpaneConstraints {
topAnchor = 106
bottomAnchor = 0
leftAnchor = 0
rightAnchor = 255
}
anchorpane {
scrollpane {
this.fitToParentSize()
this.vbarPolicy = ScrollPane.ScrollBarPolicy.ALWAYS
add(folderView.root)
style = "-fx-background-color:transparent;"
}
}
}
right = detailView.root
add(detailView)
add(btnImport)
style {
cvSearch.promptText = "Suche"
cvSearch.paddingAll = 5.0
cvSearch.minHeight = 70.0
cvSearch.minHeight = 65.0
cvSearch.style = "-fx-background-color: #53585b; -fx-text-inner-color: #b15b2e;"
cvSearch.anchorpaneConstraints {
topAnchor = 3
bottomAnchor = 3
leftAnchor = 3
rightAnchor = -5
rightAnchor = 253
}
detailView.root.anchorpaneConstraints {
topAnchor = 0
bottomAnchor = 0
rightAnchor = 0
}
btnImport.buttonType = JFXButton.ButtonType.RAISED
btnImport.styleClass.add("jfx-floating-action-button")
btnImport.anchorpaneConstraints {
bottomAnchor = 5
rightAnchor = 5
}
}
// actions
@ -65,14 +74,22 @@ class MainView : View("TextureSync") {
mvc.cvSearchAction(cvSearch.chips)
}
btnImport.setOnAction {
mvc.btnImportAction()
}
detailView.cvTags.chips.onChange {
mvc.updateTags()
}
detailView.btnImport.setOnAction {
//keyboard actions
shortcut("Ctrl+I") {
mvc.btnImportAction()
}
shortcut("Ctrl+E") {
mvc.scExport()
}
}
}

View File

@ -60,6 +60,7 @@ class MainViewController : Controller() {
folderView.children.clear()
mv.cvSearch.isDisable = true
setPreview3DTexture(Image("icons/TextureSync_Icon_256x256.jpeg")) // reset the 3DPreview to the logo
// TODO should we clear the selectedTexture?
runAsync {
rootc.queryElements(tags)
@ -70,7 +71,7 @@ class MainViewController : Controller() {
}
fun btnImportAction() {
rootc.switchMainToImport()
RootController.switchMainToImport()
}
fun removeTextureFromView(data: Texture) {
@ -89,4 +90,10 @@ class MainViewController : Controller() {
}
}
fun scExport() {
if (rootc.isSelectedTextureInitialized()) {
rootc.exportTexture(rootc.selectedTexture)
}
}
}

View File

@ -1,7 +1,6 @@
package org.hso.texturesyncclient.view.startupView
import org.hso.texturesyncclient.controller.RootController
import org.hso.texturesyncclient.controller.SettingsController
import tornadofx.Controller
@ -10,9 +9,8 @@ class StartupViewController : Controller() {
private val sv = find(StartupView::class)
private val rootc = find(RootController::class)
init {
fun initConnection() {
println("init StartupViewController")
SettingsController.init()
startConnectionUI()
runAsync {
rootc.initConnection(" ")

File diff suppressed because it is too large Load Diff

View File

@ -1,28 +1,28 @@
<?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: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:meta><meta:creation-date>2019-03-22T18:11:56.768840842</meta:creation-date><dc:date>2019-06-12T14:04:14.793866644</dc:date><meta:editing-duration>PT2H32M51S</meta:editing-duration><meta:editing-cycles>77</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="6" meta:paragraph-count="118" meta:word-count="337" meta:character-count="2335" meta:non-whitespace-character-count="2105"/><meta:user-defined meta:name="Version">1.1.1</meta:user-defined></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">10179</config:config-item>
<config:config-item config:name="ViewAreaTop" config:type="long">26476</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">41697</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">18875</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">76974</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">34846</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-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</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">17715</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">29984</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">32703</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">10179</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">29053</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">26476</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">76973</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">61320</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="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">120</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">65</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-map-entry>
@ -72,7 +72,7 @@
<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="Rsid" config:type="int">4129453</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>
@ -113871,40 +113871,6 @@
<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:style>
<style:style style:name="Tabelle2" style:family="table">
<style:table-properties style:width="17.006cm" table:align="margins"/>
</style:style>
<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:style>
<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:style>
<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:background-image/>
</style:table-cell-properties>
</style:style>
<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:background-image/>
</style:table-cell-properties>
</style:style>
<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:style>
<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: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>
@ -113953,6 +113919,9 @@
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle5.3" style:family="table-row">
<style:table-row-properties style:min-row-height="4.135cm" fo:keep-together="always"/>
</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/>
@ -114046,6 +114015,46 @@
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Tabelle2" style:family="table">
<style:table-properties style:width="17.006cm" table:align="margins"/>
</style:style>
<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:style>
<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:style>
<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:background-image/>
</style:table-cell-properties>
</style:style>
<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:background-image/>
</style:table-cell-properties>
</style:style>
<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:style>
<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: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="Tabelle2.A4" 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.B4" 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="P1" style:family="paragraph" style:parent-style-name="Footer">
<style:text-properties officeooo:paragraph-rsid="0010decd"/>
</style:style>
@ -114074,219 +114083,242 @@
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties fo:color="#c9211e" fo:font-size="18pt" fo:font-weight="bold" officeooo:rsid="003a4872" officeooo:paragraph-rsid="003a4872" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="0002ee0b" officeooo:paragraph-rsid="0002ee0b"/>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties officeooo:rsid="0002ee0b" officeooo:paragraph-rsid="0002ee0b"/>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:rsid="0036369b" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="00362d6b" officeooo:paragraph-rsid="002dfe1b"/>
<style:style style:name="P11" 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="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:paragraph-rsid="002dfe1b"/>
<style:text-properties officeooo:rsid="0002ee0b" officeooo:paragraph-rsid="0002ee0b"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties officeooo:rsid="0032709a" officeooo:paragraph-rsid="0032709a"/>
<style:text-properties officeooo:rsid="0002ee0b" officeooo:paragraph-rsid="0002ee0b"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="0032709a" officeooo:paragraph-rsid="0032709a"/>
<style:text-properties officeooo:rsid="00362d6b" officeooo:paragraph-rsid="002dfe1b"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="0032c64c" officeooo:paragraph-rsid="0032c64c"/>
<style:text-properties officeooo:paragraph-rsid="002dfe1b"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="00339adc" officeooo:paragraph-rsid="00339adc"/>
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties officeooo:rsid="0032709a" officeooo:paragraph-rsid="0032709a"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="00341578" officeooo:paragraph-rsid="00341578"/>
<style:text-properties officeooo:rsid="0032709a" officeooo:paragraph-rsid="0032709a"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="00350789" officeooo:paragraph-rsid="00350789"/>
<style:text-properties officeooo:rsid="0032c64c" officeooo:paragraph-rsid="0032c64c"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="003526a0" officeooo:paragraph-rsid="003526a0"/>
<style:text-properties officeooo:rsid="00339adc" officeooo:paragraph-rsid="00339adc"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="0036a91a" officeooo:paragraph-rsid="0036a91a"/>
<style:text-properties officeooo:rsid="00341578" officeooo:paragraph-rsid="00341578"/>
</style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="003740fe" officeooo:paragraph-rsid="003740fe"/>
<style:text-properties officeooo:rsid="00350789" officeooo:paragraph-rsid="00350789"/>
</style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="0037dffe" officeooo:paragraph-rsid="0037dffe"/>
<style:text-properties officeooo:rsid="003526a0" officeooo:paragraph-rsid="003526a0"/>
</style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="00398afd" officeooo:paragraph-rsid="00398afd"/>
<style:text-properties officeooo:rsid="0036a91a" officeooo:paragraph-rsid="0036a91a"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="003740fe" officeooo:paragraph-rsid="003740fe"/>
</style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="0037dffe" officeooo:paragraph-rsid="0037dffe"/>
</style:style>
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="00398afd" officeooo:paragraph-rsid="00398afd"/>
</style:style>
<style:style style:name="P27" 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="P28" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties fo:color="#c9211e" officeooo:rsid="003beac9" officeooo:paragraph-rsid="003beac9"/>
</style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Contents_20_Heading">
<style:style style:name="P29" 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="P30" 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="P31" 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="P32" 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="P33" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P34" 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="P35" style:family="paragraph" style:parent-style-name="Contents_20_Heading">
<style:paragraph-properties fo:break-before="page"/>
</style:style>
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:break-before="page"/>
</style:style>
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:break-before="page"/>
<style:text-properties officeooo:paragraph-rsid="00085afb"/>
</style:style>
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:break-before="page"/>
<style:text-properties officeooo:rsid="0032c64c" officeooo:paragraph-rsid="0032c64c"/>
</style:style>
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:style style:name="P39" 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="P30" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:break-before="page"/>
<style:text-properties officeooo:rsid="00341578" officeooo:paragraph-rsid="00341578"/>
</style:style>
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:style style:name="P41" 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="P32" style:family="paragraph" style:parent-style-name="Contents_20_1">
<style:style style:name="P42" 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="P43" 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:style>
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Contents_20_2">
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Contents_20_2">
<style:paragraph-properties>
<style:tab-stops>
<style:tab-stop style:position="16.506cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
</style:tab-stops>
</style:paragraph-properties>
</style:style>
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Title">
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Title">
<style:text-properties officeooo:paragraph-rsid="0004b30c"/>
</style:style>
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Title">
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Title">
<style:text-properties fo:font-size="48pt" style:font-size-asian="48pt" style:font-size-complex="48pt"/>
</style:style>
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#ffde03" draw:opacity="100%"/>
<style:paragraph-properties fo:background-color="#ffde03"/>
<style:text-properties officeooo:paragraph-rsid="002dfe1b"/>
</style:style>
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties officeooo:rsid="00339adc" officeooo:paragraph-rsid="00339adc"/>
</style:style>
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties officeooo:rsid="00341578" officeooo:paragraph-rsid="00341578"/>
</style:style>
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties fo:background-color="transparent"/>
</style:style>
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties officeooo:rsid="00350789" officeooo:paragraph-rsid="00350789"/>
</style:style>
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties officeooo:rsid="003526a0" officeooo:paragraph-rsid="003526a0"/>
</style:style>
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties officeooo:rsid="003740fe" officeooo:paragraph-rsid="003740fe"/>
</style:style>
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="">
<style:style style:name="P54" 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="P55" 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="P56" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P57" 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="P58" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="">
<style:paragraph-properties style:page-number="auto"/>
<style:text-properties officeooo:paragraph-rsid="0004b30c"/>
</style:style>
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Contents_20_Heading" style:master-page-name="">
<style:style style:name="P59" 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="P45" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
<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="Heading_20_1">
<style:text-properties officeooo:paragraph-rsid="00085afb"/>
</style:style>
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:line-height="100%">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties officeooo:rsid="00341578" officeooo:paragraph-rsid="00341578"/>
</style:style>
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Heading_20_2">
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Heading_20_2">
<style:text-properties officeooo:rsid="002b4dc2" officeooo:paragraph-rsid="002b4dc2"/>
</style:style>
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Heading_20_3">
<style:style style:name="P64" style:family="paragraph" style:parent-style-name="Heading_20_3">
<style:text-properties officeooo:rsid="002aa4d8" officeooo:paragraph-rsid="002aa4d8"/>
</style:style>
<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:style style:name="P65" 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:style style:name="P66" 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:style style:name="P67" 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:rsid="003e296e" officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P68" 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="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:name="P69" 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="P61" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="">
<style:style style:name="P70" 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="P71" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="003f615f" officeooo:paragraph-rsid="003f02ad" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P72" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="003f615f" officeooo:paragraph-rsid="003f02ad" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="003f02ad" officeooo:paragraph-rsid="003f02ad"/>
</style:style>
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="003f615f" officeooo:paragraph-rsid="003f02ad"/>
</style:style>
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="">
<style:paragraph-properties>
<style:tab-stops>
<style:tab-stop style:position="14.203cm"/>
</style:tab-stops>
</style:paragraph-properties>
</style:style>
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:paragraph-rsid="003e296e"/>
</style:style>
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:rsid="0036369b" officeooo:paragraph-rsid="003e296e"/>
</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:style style:name="P76" 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:style style:name="P77" 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="."/>
@ -114386,7 +114418,7 @@
<style:footer-style/>
</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: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:layout-grid-color="#c0c0c0" style:layout-grid-lines="20" style:layout-grid-base-height="0.706cm" style:layout-grid-ruby-height="0.353cm" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="false" style:layout-grid-display="false" 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/>
@ -114406,7 +114438,7 @@
<office:master-styles>
<style:master-page style:name="Standard" style:page-layout-name="pm1">
<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.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>
<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.1</text:user-defined><text:tab/><text:span text:style-name="T3">Seite</text:span> <text:page-number text:select-page="current">6</text:page-number>/<text:page-count>6</text:page-count></text:p>
</style:footer>
</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"/>
@ -114424,9 +114456,9 @@
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls>
<text:p text:style-name="P49"/>
<text:p text:style-name="P34"/>
<text:p text:style-name="P35"><text:title>Integrationstest</text:title></text:p>
<text:p text:style-name="P69"/>
<text:p text:style-name="P45"/>
<text:p text:style-name="P46"><text:title>Integrationstest</text:title></text:p>
<text:p text:style-name="Subtitle">TextureSync</text:p>
<text:p text:style-name="Text_20_body"/>
<text:p text:style-name="Text_20_body"/>
@ -114444,44 +114476,44 @@
<table:table-column table:style-name="Tabelle1.B"/>
<table:table-row table:style-name="Tabelle1.1">
<table:table-cell table:style-name="Tabelle1.A1" office:value-type="string">
<text:p text:style-name="P10">Version</text:p>
<text:p text:style-name="P13">Version</text:p>
</table:table-cell>
<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.1.0</text:user-defined></text:p>
<text:p text:style-name="P12"><text:user-defined style:data-style-name="N0" text:name="Version">1.1.1</text:user-defined></text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle1.1">
<table:table-cell table:style-name="Tabelle1.A2" office:value-type="string">
<text:p text:style-name="P10">Datum</text:p>
<text:p text:style-name="P13">Datum</text:p>
</table:table-cell>
<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-06-10T15:02:18.861065357">10.06.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-12T14:04:19.908328810">12.06.19</text:date></text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle1.1">
<table:table-cell table:style-name="Tabelle1.A2" office:value-type="string">
<text:p text:style-name="P13">Autor</text:p>
<text:p text:style-name="P16">Autor</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle1.B3" office:value-type="string">
<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>
<text:p text:style-name="P29">Hendrik Schutter,</text:p>
<text:p text:style-name="P29">Lukas Fürderer,</text:p>
<text:p text:style-name="P29">Robin Willmann,</text:p>
<text:p text:style-name="P29">Jannik Seiler</text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle1.1">
<table:table-cell table:style-name="Tabelle1.A2" office:value-type="string">
<text:p text:style-name="P10">Projektmitglieder</text:p>
<text:p text:style-name="P13">Projektmitglieder</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle1.B4" office:value-type="string">
<text:p text:style-name="P9">Hendrik Schutter,</text:p>
<text:p text:style-name="P9">Lukas Fürderer,</text:p>
<text:p text:style-name="P9">Robin Willmann,</text:p>
<text:p text:style-name="P9">Jannik Seiler</text:p>
<text:p text:style-name="P12">Hendrik Schutter,</text:p>
<text:p text:style-name="P12">Lukas Fürderer,</text:p>
<text:p text:style-name="P12">Robin Willmann,</text:p>
<text:p text:style-name="P12">Jannik Seiler</text:p>
</table:table-cell>
</table:table-row>
</table:table>
<text:h text:style-name="P61" text:outline-level="1"/>
<text:h text:style-name="P75" text:outline-level="1"/>
<text:table-of-content text:style-name="Sect1" text:protected="true" text:name="Inhaltsverzeichnis1">
<text:table-of-content-source text:outline-level="2">
<text:index-title-template text:style-name="Contents_20_Heading">Inhaltsverzeichnis</text:index-title-template>
@ -114568,19 +114600,19 @@
</text:table-of-content-source>
<text:index-body>
<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="P59"><text:soft-page-break/>Inhaltsverzeichnis</text:p>
</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 Testumgebung<text:tab/>3</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___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:p text:style-name="P43"><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="P43"><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="P43"><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/>6</text:a></text:p>
</text:index-body>
</text:table-of-content>
<text:h text:style-name="P45" text:outline-level="1" text:is-list-header="true"/>
<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: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: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="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="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>
<text:h text:style-name="P61" text:outline-level="1" text:is-list-header="true"/>
<text:h text:style-name="P42" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc122_1745181160"/>Testumgebung<text:bookmark-end text:name="__RefHeading___Toc122_1745181160"/></text:h>
<text:p text:style-name="P11">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:p text:style-name="P11">Als Ausgangspunkt werden speziell präparierte Situationen gewählt, welche wiederholt werden können. </text:p>
<text:p text:style-name="P10">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="P67" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc2798_2391892654"/>Testdefinition mit Ergebnis<text:bookmark-end text:name="__RefHeading___Toc2798_2391892654"/></text:h>
<table:table table:name="Tabelle5" table:style-name="Tabelle5">
<table:table-column table:style-name="Tabelle5.A"/>
<table:table-column table:style-name="Tabelle5.B"/>
@ -114588,147 +114620,205 @@
<table:table-column table:style-name="Tabelle5.D"/>
<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>
<text:p text:style-name="P56">Nummer</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.A1" office:value-type="string">
<text:p text:style-name="P67">Titel</text:p>
<text:p text:style-name="P56">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>
<text:p text:style-name="P56">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>
<text:p text:style-name="P57">Ergebnis</text:p>
</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>#1</text:p>
<text:p text:style-name="P56"><text:span text:style-name="T16">IT</text:span>#1</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle5.B2" office:value-type="string">
<text:p text:style-name="P52">Verbindung <text:span text:style-name="T17">aufbauen</text:span></text:p>
<text:p text:style-name="P31">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>
<text:p text:style-name="P31">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"/>
<text:p text:style-name="P72">Datum </text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Version</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Fehler</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Resultat</text:p>
<text:p text:style-name="P71">todo</text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle5.1">
<table:table-row table:style-name="Tabelle5.3">
<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>
<text:p text:style-name="P56"><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>
<text:p text:style-name="P31">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>
<text:p text:style-name="P31">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"/>
<text:p text:style-name="P72">Datum </text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Version</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Fehler</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Resultat</text:p>
<text:p text:style-name="P71">todo</text:p>
</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>
<text:p text:style-name="P54">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>
<text:p text:style-name="P31">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>
<text:p text:style-name="P31">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"/>
<text:p text:style-name="P72">Datum </text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Version</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Fehler</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Resultat</text:p>
<text:p text:style-name="P71">todo</text:p>
</table:table-cell>
</table:table-row>
<text:soft-page-break/>
<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>
<text:p text:style-name="P54">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>
<text:p text:style-name="P31">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>
<text:p text:style-name="P31">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"/>
<text:p text:style-name="P72">Datum </text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Version</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Fehler</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Resultat</text:p>
<text:p text:style-name="P71">todo</text:p>
</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>
<text:p text:style-name="P54">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>
<text:p text:style-name="P30">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>
<text:p text:style-name="P32">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"/>
<text:p text:style-name="P72">Datum </text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Version</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Fehler</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Resultat</text:p>
<text:p text:style-name="P71">todo</text:p>
</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>
<text:p text:style-name="P55">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>
<text:p text:style-name="P30">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>
<text:p text:style-name="P32">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"/>
<text:p text:style-name="P72">Datum </text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Version</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Fehler</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Resultat</text:p>
<text:p text:style-name="P71">todo</text:p>
</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>
<text:p text:style-name="P55">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>
<text:p text:style-name="P30">Verbindung schließen</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>
<text:p text:style-name="P32">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"/>
<text:p text:style-name="P72">Datum </text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Version</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Fehler</text:p>
<text:p text:style-name="P71">todo</text:p>
<text:p text:style-name="P72">Resultat</text:p>
<text:p text:style-name="P71">todo</text:p>
</table:table-cell>
</table:table-row>
</table:table>
<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>
<text:h text:style-name="P68" 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>
<text:p text:style-name="P56">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>
<text:p text:style-name="P56">Ä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>
<text:p text:style-name="P27">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>
<text:p text:style-name="P33">-</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>
<text:p text:style-name="P34">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>
<text:p text:style-name="P34">Testdefinition hinzugefügt</text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="Tabelle2.3">
<table:table-cell table:style-name="Tabelle2.A4" office:value-type="string">
<text:p text:style-name="P73">1.1.1</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabelle2.B4" office:value-type="string">
<text:p text:style-name="P74">Ergebnisbeschreibung hinzugefügt</text:p>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="P62"/>
<text:p text:style-name="P9"/>
</office:text>
</office:body>
</office:document>

File diff suppressed because it is too large Load Diff

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.