Compare commits
27 Commits
1.0.0
...
5f4a7fe7e6
Author | SHA1 | Date | |
---|---|---|---|
5f4a7fe7e6 | |||
b4a1116513 | |||
e742f39f51 | |||
62700850b1 | |||
fb9e712778 | |||
b8ca5dc498
|
|||
dbdba120c3 | |||
33a46c4cbf
|
|||
d81aa56e49 | |||
95496536db | |||
8f3b61462a | |||
cff5ec76bf | |||
1bbfe800e1 | |||
c722a39116
|
|||
911983bff4
|
|||
6feb1c3dad | |||
7da58c7dbe | |||
86c05c0363
|
|||
a3c03c4bc7 | |||
9444e8198f | |||
730a0ab383 | |||
a10e2aceb6 | |||
f0fe4bb981 | |||
32883a2639 | |||
0e293768d7 | |||
6a5b2f555c | |||
8d210d756d |
@ -27,7 +27,7 @@ compileTestKotlin {
|
||||
}
|
||||
|
||||
group 'org.hso'
|
||||
version '1.0'
|
||||
version '1.0.1'
|
||||
archivesBaseName = 'TextureSync'
|
||||
mainClassName = 'org.hso.texturesyncclient.app.Main'
|
||||
|
||||
|
@ -18,9 +18,7 @@ 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 tornadofx.*
|
||||
import java.io.File
|
||||
import java.io.FileOutputStream
|
||||
import java.io.IOException
|
||||
@ -51,7 +49,7 @@ class RootController : Controller() {
|
||||
val uuid = UUID.randomUUID()
|
||||
val format = if (File(path).extension.toLowerCase() == "png") TextureFormat.PNG else TextureFormat.JPEG
|
||||
val bimg = ImageIO.read(File(path)) //image for obtaining resolution
|
||||
val resolution = Pair(bimg.height, bimg.width)
|
||||
val resolution = Pair(bimg.width, bimg.height)
|
||||
val cal = Calendar.getInstance() //calendar obj with current time
|
||||
val hash = Sha256(data)
|
||||
|
||||
@ -103,6 +101,8 @@ class RootController : Controller() {
|
||||
println("[auto] Connection to Server successful")
|
||||
switchStartupToMain()
|
||||
showAll()
|
||||
|
||||
return // abort
|
||||
} else {
|
||||
println("[auto] no server found")
|
||||
}
|
||||
@ -119,6 +119,8 @@ class RootController : Controller() {
|
||||
println("[file] Connection to Server successful")
|
||||
switchStartupToMain()
|
||||
showAll()
|
||||
|
||||
return // abort
|
||||
} catch (e: Exception) {
|
||||
println(e)
|
||||
println("[file] Connection to Server NOT successful")
|
||||
@ -137,6 +139,8 @@ class RootController : Controller() {
|
||||
switchStartupToMain()
|
||||
showAll()
|
||||
println("swithing to MainView @ initCon")
|
||||
|
||||
return // abort
|
||||
} catch (e: Exception) {
|
||||
println(e)
|
||||
println("Connection to Server NOT successful")
|
||||
@ -183,7 +187,7 @@ class RootController : Controller() {
|
||||
fun exportTexture(data: Texture) {
|
||||
val directoryChooser = DirectoryChooser()
|
||||
directoryChooser.title = "Export Verzeichnis wählen"
|
||||
directoryChooser.initialDirectory = File(lastExportDir)
|
||||
directoryChooser.initialDirectory = if(File(lastExportDir).exists()) File(lastExportDir) else File(System.getProperty("user.home"))
|
||||
|
||||
|
||||
val alertExport = JFXInfoAlert(
|
||||
@ -295,20 +299,20 @@ class RootController : Controller() {
|
||||
|
||||
fun switchStartupToMain() {
|
||||
Platform.runLater {
|
||||
find(StartupView::class).replaceWith(MainView::class, sizeToScene = true, centerOnScreen = true)
|
||||
find(StartupView::class).replaceWith(MainView::class, ViewTransition.FadeThrough(0.01.seconds))
|
||||
}
|
||||
}
|
||||
|
||||
// These runLater calls should be unnecessary
|
||||
fun switchMainToImport() {
|
||||
Platform.runLater {
|
||||
find(MainView::class).replaceWith(ImportView::class, sizeToScene = true, centerOnScreen = true)
|
||||
find(MainView::class).replaceWith(ImportView::class, ViewTransition.FadeThrough(0.01.seconds))
|
||||
}
|
||||
}
|
||||
|
||||
fun switchImportToMain() {
|
||||
Platform.runLater {
|
||||
find(ImportView::class).replaceWith(MainView::class, sizeToScene = true, centerOnScreen = true)
|
||||
find(ImportView::class).replaceWith(MainView::class, ViewTransition.FadeThrough(0.01.seconds))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -49,9 +49,7 @@ class ImportViewController : Controller() {
|
||||
fun btnImportAction() {
|
||||
rootc.importTexture(iv.tfFilePath.text, iv.tfName.text, iv.cvTags.chips)
|
||||
RootController.switchImportToMain()
|
||||
iv.tfFilePath.clear()
|
||||
iv.tfName.clear()
|
||||
iv.cvTags.chips.clear()
|
||||
reset()
|
||||
}
|
||||
|
||||
fun validateImport() {
|
||||
@ -61,8 +59,13 @@ class ImportViewController : Controller() {
|
||||
|
||||
fun btnBackAction() {
|
||||
RootController.switchImportToMain()
|
||||
reset()
|
||||
}
|
||||
|
||||
fun reset() {
|
||||
iv.tfFilePath.clear()
|
||||
iv.tfName.clear()
|
||||
iv.cvTags.chips.clear()
|
||||
iv.preview.root.isVisible = false
|
||||
}
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ class MainViewController : Controller() {
|
||||
}
|
||||
}
|
||||
|
||||
// DetailView actions
|
||||
// MainView actions
|
||||
|
||||
fun cvSearchAction(tags: ObservableList<String>) {
|
||||
// show spinner, block ui
|
||||
|
BIN
doc/tests/akzeptanztest/akzeptanztest-v1.0.0.pdf
Normal file
BIN
doc/tests/akzeptanztest/akzeptanztest-v1.0.0.pdf
Normal file
Binary file not shown.
BIN
doc/tests/akzeptanztest/akzeptanztest-v1.0.1.pdf
Normal file
BIN
doc/tests/akzeptanztest/akzeptanztest-v1.0.1.pdf
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
doc/tests/integrationstest/integrationstest-v1.0.0.pdf
Normal file
BIN
doc/tests/integrationstest/integrationstest-v1.0.0.pdf
Normal file
Binary file not shown.
BIN
doc/tests/integrationstest/integrationstest-v1.0.1.pdf
Normal file
BIN
doc/tests/integrationstest/integrationstest-v1.0.1.pdf
Normal file
Binary file not shown.
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.
BIN
doc/tests/modultest/modultest-v1.0.0.pdf
Normal file
BIN
doc/tests/modultest/modultest-v1.0.0.pdf
Normal file
Binary file not shown.
@ -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-12T14:21:25.648124050</dc:date><meta:editing-duration>PT2H53M4S</meta:editing-duration><meta:editing-cycles>83</meta:editing-cycles><meta:generator>LibreOffice/6.2.3.2$Linux_X86_64 LibreOffice_project/20$Build-2</meta:generator><dc:title>Modultest</dc:title><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="8" meta:paragraph-count="193" meta:word-count="416" meta:character-count="2820" meta:non-whitespace-character-count="2581"/><meta:user-defined meta:name="Version">1.1.1</meta:user-defined></office:meta>
|
||||
<office:meta><meta:creation-date>2019-03-22T18:11:56.768840842</meta:creation-date><dc:date>2019-06-14T14:41:53.858199684</dc:date><meta:editing-duration>PT3H30M17S</meta:editing-duration><meta:editing-cycles>90</meta:editing-cycles><meta:generator>LibreOffice/6.2.3.2$Linux_X86_64 LibreOffice_project/20$Build-2</meta:generator><dc:title>Modultest</dc:title><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="8" meta:paragraph-count="195" meta:word-count="431" meta:character-count="3057" meta:non-whitespace-character-count="2805"/><meta:user-defined meta:name="Version">1.2.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">157480</config:config-item>
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">27728</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">18016</config:config-item>
|
||||
<config:config-item config:name="ViewAreaWidth" config:type="long">50034</config:config-item>
|
||||
<config:config-item config:name="ViewAreaHeight" config:type="long">22650</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">25677</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">167839</config:config-item>
|
||||
<config:config-item config:name="ViewLeft" config:type="long">16514</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">34627</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">157480</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">175495</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">27728</config:config-item>
|
||||
<config:config-item config:name="VisibleRight" config:type="long">50033</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">50377</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">100</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>
|
||||
@ -45,7 +45,7 @@
|
||||
<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="DisableOffPagePositioning" 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="EmbedFonts" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">false</config:config-item>
|
||||
@ -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">4622626</config:config-item>
|
||||
<config:config-item config:name="Rsid" config:type="int">5224767</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>
|
||||
@ -114151,6 +114151,18 @@
|
||||
<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="Tabelle2.A5" 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.B5" 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.A6" 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.B6" 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>
|
||||
@ -114288,201 +114300,256 @@
|
||||
<style:text-properties style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="003f615f" officeooo:paragraph-rsid="003f615f" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P44" 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="004a717a" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P45" 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="003f615f" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Contents_20_Heading">
|
||||
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00468922" officeooo:paragraph-rsid="00468922" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00486bae" officeooo:paragraph-rsid="00486bae" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="004a23a0" officeooo:paragraph-rsid="004a23a0" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="004a23a0" officeooo:paragraph-rsid="004a717a" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="004a717a" officeooo:paragraph-rsid="004a717a" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="004c55b2" officeooo:paragraph-rsid="004c55b2" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P52" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="004d2722" officeooo:paragraph-rsid="004d2722" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties fo:color="#000000" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00468922" officeooo:paragraph-rsid="003f615f" fo:background-color="#00a933" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties fo:color="#006600" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00486bae" officeooo:paragraph-rsid="00486bae" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties fo:color="#006600" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="004a23a0" officeooo:paragraph-rsid="004a23a0" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties fo:color="#006600" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="004a717a" officeooo:paragraph-rsid="004a717a" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties fo:color="#006600" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="004c55b2" officeooo:paragraph-rsid="004c55b2" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties fo:color="#006600" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="004d2722" officeooo:paragraph-rsid="004d2722" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties fo:color="#990000" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="004a23a0" officeooo:paragraph-rsid="004a717a" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties officeooo:rsid="004c55b2" officeooo:paragraph-rsid="004c55b2"/>
|
||||
</style:style>
|
||||
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties officeooo:rsid="004f0a69" officeooo:paragraph-rsid="004f0a69"/>
|
||||
</style:style>
|
||||
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Contents_20_Heading">
|
||||
<style:paragraph-properties fo:break-before="page"/>
|
||||
</style:style>
|
||||
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:paragraph-properties fo:break-before="page"/>
|
||||
</style:style>
|
||||
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:style style:name="P64" 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="P48" 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:paragraph-properties fo:break-before="page"/>
|
||||
<style:text-properties officeooo:rsid="0032c64c" officeooo:paragraph-rsid="0032c64c"/>
|
||||
</style:style>
|
||||
<style:style style:name="P49" 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:paragraph-rsid="00341578"/>
|
||||
</style:style>
|
||||
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:style style:name="P67" 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="P51" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:style style:name="P68" 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="P52" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:paragraph-properties fo:break-before="page"/>
|
||||
<style:text-properties officeooo:rsid="0040df82" officeooo:paragraph-rsid="0040df82"/>
|
||||
</style:style>
|
||||
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Standard">
|
||||
<style:paragraph-properties fo:break-before="page"/>
|
||||
</style:style>
|
||||
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Contents_20_1">
|
||||
<style:style style:name="P71" 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="P55" style:family="paragraph" style:parent-style-name="Contents_20_2">
|
||||
<style:style style:name="P72" 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="P56" style:family="paragraph" style:parent-style-name="Title">
|
||||
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Title">
|
||||
<style:text-properties officeooo:paragraph-rsid="0004b30c"/>
|
||||
</style:style>
|
||||
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Title">
|
||||
<style:style style:name="P74" 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="P58" style:family="paragraph" style:parent-style-name="Title">
|
||||
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Title">
|
||||
<style:text-properties fo:font-size="56pt" style:font-size-asian="56pt" style:font-size-complex="56pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P76" 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="P60" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P77" 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="P61" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P78" 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="P62" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P79" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:text-properties fo:background-color="transparent"/>
|
||||
</style:style>
|
||||
<style:style style:name="P63" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P80" 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="P64" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P81" 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="P65" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P82" 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="P66" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P83" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:text-properties officeooo:rsid="0038585e" officeooo:paragraph-rsid="0040df82"/>
|
||||
</style:style>
|
||||
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P84" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:text-properties officeooo:rsid="0038585e" officeooo:paragraph-rsid="004270eb"/>
|
||||
</style:style>
|
||||
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P85" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:text-properties officeooo:rsid="003ac753" officeooo:paragraph-rsid="0040df82"/>
|
||||
</style:style>
|
||||
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P86" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:text-properties officeooo:rsid="003ac753" officeooo:paragraph-rsid="004270eb"/>
|
||||
</style:style>
|
||||
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P87" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:text-properties officeooo:rsid="003ffec4" officeooo:paragraph-rsid="0040df82"/>
|
||||
</style:style>
|
||||
<style:style style:name="P71" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P88" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:text-properties officeooo:rsid="003ffec4" officeooo:paragraph-rsid="004270eb"/>
|
||||
</style:style>
|
||||
<style:style style:name="P72" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P89" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:text-properties officeooo:paragraph-rsid="0040df82"/>
|
||||
</style:style>
|
||||
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P90" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:text-properties officeooo:rsid="0040df82" officeooo:paragraph-rsid="0040df82"/>
|
||||
</style:style>
|
||||
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P91" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:text-properties officeooo:paragraph-rsid="004270eb"/>
|
||||
</style:style>
|
||||
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:style style:name="P92" style:family="paragraph" style:parent-style-name="Table_20_Heading">
|
||||
<style:text-properties officeooo:rsid="004270eb" officeooo:paragraph-rsid="004270eb"/>
|
||||
</style:style>
|
||||
<style:style style:name="P76" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="">
|
||||
<style:style style:name="P93" 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="P77" style:family="paragraph" style:parent-style-name="Contents_20_Heading" style:master-page-name="">
|
||||
<style:style style:name="P94" 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="P78" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
|
||||
<style:style style:name="P95" 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="0040df82"/>
|
||||
</style:style>
|
||||
<style:style style:name="P79" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
|
||||
<style:style style:name="P96" 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="004270eb"/>
|
||||
</style:style>
|
||||
<style:style style:name="P80" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="">
|
||||
<style:style style:name="P97" 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:rsid="0040df82" officeooo:paragraph-rsid="0040df82"/>
|
||||
</style:style>
|
||||
<style:style style:name="P81" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:style style:name="P98" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:text-properties officeooo:paragraph-rsid="00085afb"/>
|
||||
</style:style>
|
||||
<style:style style:name="P82" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:style style:name="P99" 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="P83" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:style style:name="P100" 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:paragraph-rsid="00341578"/>
|
||||
</style:style>
|
||||
<style:style style:name="P84" style:family="paragraph" style:parent-style-name="Heading_20_2">
|
||||
<style:style style:name="P101" 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="P85" style:family="paragraph" style:parent-style-name="Heading_20_3">
|
||||
<style:style style:name="P102" 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="P86" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="">
|
||||
<style:style style:name="P103" 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="P87" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00468922" officeooo:paragraph-rsid="00468922" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
<style:style style:name="P104" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties fo:color="#006600" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00486bae" officeooo:paragraph-rsid="004fb93f" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P88" 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="003f615f" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
<style:style style:name="P105" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties fo:color="#000000" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00413bfc" officeooo:paragraph-rsid="004fb93f" fo:background-color="#ff420e" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P89" 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="003f615f" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P90" style:family="paragraph" style:parent-style-name="Table_20_Contents">
|
||||
<style:text-properties fo:color="#000000" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00468922" officeooo:paragraph-rsid="003f615f" fo:background-color="#00a933" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="P91" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:style style:name="P106" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:text-properties officeooo:paragraph-rsid="00085afb"/>
|
||||
</style:style>
|
||||
<style:style style:name="P92" style:family="paragraph" style:parent-style-name="Heading_20_1" style:list-style-name="">
|
||||
<style:style style:name="P107" style:family="paragraph" style:parent-style-name="Heading_20_1" style:list-style-name="">
|
||||
<style:paragraph-properties fo:line-height="100%">
|
||||
<style:tab-stops/>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties officeooo:paragraph-rsid="00341578"/>
|
||||
</style:style>
|
||||
<style:style style:name="P93" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:style style:name="P108" style:family="paragraph" style:parent-style-name="Heading_20_1">
|
||||
<style:paragraph-properties fo:break-before="page"/>
|
||||
<style:text-properties officeooo:rsid="0040df82" officeooo:paragraph-rsid="0040df82"/>
|
||||
</style:style>
|
||||
<style:style style:name="P94" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="Landscape">
|
||||
<style:style style:name="P109" 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="0040df82" officeooo:paragraph-rsid="0040df82"/>
|
||||
</style:style>
|
||||
<style:style style:name="P95" style:family="paragraph" style:parent-style-name="Heading_20_1" style:master-page-name="Standard">
|
||||
<style:style style:name="P110" 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="004270eb"/>
|
||||
</style:style>
|
||||
<style:style style:name="P96" style:family="paragraph" style:parent-style-name="Title" style:master-page-name="First_20_Page">
|
||||
<style:style style:name="P111" 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="P112" 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="P113" 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="T1" style:family="text">
|
||||
<style:text-properties officeooo:rsid="00095978"/>
|
||||
</style:style>
|
||||
@ -114549,6 +114616,24 @@
|
||||
<style:style style:name="T22" style:family="text">
|
||||
<style:text-properties officeooo:rsid="004393c3"/>
|
||||
</style:style>
|
||||
<style:style style:name="T23" style:family="text">
|
||||
<style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="T24" style:family="text">
|
||||
<style:text-properties fo:font-weight="normal" officeooo:rsid="004a23a0" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="T25" style:family="text">
|
||||
<style:text-properties fo:font-weight="normal" officeooo:rsid="004f0a69" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="T26" style:family="text">
|
||||
<style:text-properties fo:font-weight="normal" officeooo:rsid="004f9220" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="T27" style:family="text">
|
||||
<style:text-properties fo:font-weight="normal" officeooo:rsid="00413bfc" fo:background-color="#aecf00" loext:char-shading-value="0" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="T28" style:family="text">
|
||||
<style:text-properties officeooo:rsid="004f0a69"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sect1" style:family="section">
|
||||
<style:section-properties style:editable="false">
|
||||
<style:columns fo:column-count="1" fo:column-gap="0cm"/>
|
||||
@ -114605,7 +114690,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>Modultest</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">8</text:page-number>/<text:page-count>8</text:page-count></text:p>
|
||||
<text:p text:style-name="P1"><text:span text:style-name="T1">TextureSync</text:span> <text:tab/><text:title>Modultest</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.2.1</text:user-defined><text:tab/><text:span text:style-name="T3">Seite</text:span> <text:page-number text:select-page="current">2</text:page-number>/<text:page-count>8</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"/>
|
||||
@ -114623,15 +114708,15 @@
|
||||
<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="P96"/>
|
||||
<text:p text:style-name="P56"/>
|
||||
<text:p text:style-name="P58"><text:title>Modultest</text:title></text:p>
|
||||
<text:p text:style-name="P111"/>
|
||||
<text:p text:style-name="P73"/>
|
||||
<text:p text:style-name="P75"><text:title>Modultest</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"/>
|
||||
<text:p text:style-name="Text_20_body"/>
|
||||
<text:p text:style-name="Text_20_body"/>
|
||||
<text:p text:style-name="P8">TODO → Testergebnisse darin vermerk<text:span text:style-name="T21">en</text:span>.</text:p>
|
||||
<text:p text:style-name="P8"/>
|
||||
<text:p text:style-name="Text_20_body"/>
|
||||
<text:p text:style-name="Text_20_body"/>
|
||||
<text:p text:style-name="Text_20_body"/>
|
||||
@ -114646,7 +114731,7 @@
|
||||
<text:p text:style-name="P14">Version</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle1.B1" office:value-type="string">
|
||||
<text:p text:style-name="P13"><text:user-defined style:data-style-name="N0" text:name="Version">1.1.1</text:user-defined></text:p>
|
||||
<text:p text:style-name="P13"><text:user-defined style:data-style-name="N0" text:name="Version">1.2.1</text:user-defined></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle1.1">
|
||||
@ -114654,7 +114739,7 @@
|
||||
<text:p text:style-name="P14">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-12T14:21:26.024333210">12.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-14T14:41:53.992425589">14.06.19</text:date></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle1.1">
|
||||
@ -114680,7 +114765,7 @@
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:h text:style-name="P86" text:outline-level="1"><text:soft-page-break/></text:h>
|
||||
<text:h text:style-name="P103" text:outline-level="1"><text:soft-page-break/></text:h>
|
||||
<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>
|
||||
@ -114767,18 +114852,18 @@
|
||||
</text:table-of-content-source>
|
||||
<text:index-body>
|
||||
<text:index-title text:style-name="Sect1" text:name="Inhaltsverzeichnis1_Head">
|
||||
<text:p text:style-name="P77">Inhaltsverzeichnis</text:p>
|
||||
<text:p text:style-name="P94">Inhaltsverzeichnis</text:p>
|
||||
</text:index-title>
|
||||
<text:p text:style-name="P54"><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="P54"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc2189_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="P54"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc2191_2391892654" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">3 Changelog<text:tab/>8</text:a></text:p>
|
||||
<text:p text:style-name="P71"><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="P71"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc2189_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="P71"><text:a xlink:type="simple" xlink:href="#__RefHeading___Toc2191_2391892654" text:style-name="Index_20_Link" text:visited-style-name="Index_20_Link">3 Changelog<text:tab/>8</text:a></text:p>
|
||||
</text:index-body>
|
||||
</text:table-of-content>
|
||||
<text:h text:style-name="P81" text:outline-level="1" text:is-list-header="true"/>
|
||||
<text:h text:style-name="P52" 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="P98" text:outline-level="1" text:is-list-header="true"/>
|
||||
<text:h text:style-name="P69" 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="P10">Teile der Server- bzw. Client-Software werden nach dem <text:span text:style-name="T16">E</text:span>ntwickeln einzeln getestet. Als Testwerkzeuge dienen eigens geschriebene Test-Anwendungen, welche die Module ansprechen und deren Ergebnisse darstellen. Da die Tests direkt am Source-Code in der IDE vorgenommen werden wird mittels White-Box Verfahren getestet.</text:p>
|
||||
<text:h text:style-name="P92" text:outline-level="1"/>
|
||||
<text:h text:style-name="P94" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc2189_2391892654"/>Testdefinition mit Ergebnis<text:bookmark-end text:name="__RefHeading___Toc2189_2391892654"/></text:h>
|
||||
<text:h text:style-name="P107" text:outline-level="1"/>
|
||||
<text:h text:style-name="P109" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc2189_2391892654"/>Testdefinition mit Ergebnis<text:bookmark-end text:name="__RefHeading___Toc2189_2391892654"/></text:h>
|
||||
<text:p text:style-name="P11"/>
|
||||
<table:table table:name="Tabelle6" table:style-name="Tabelle6">
|
||||
<table:table-column table:style-name="Tabelle6.A"/>
|
||||
@ -114787,21 +114872,21 @@
|
||||
<table:table-column table:style-name="Tabelle6.D"/>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A1" office:value-type="string">
|
||||
<text:p text:style-name="P74">Nummer</text:p>
|
||||
<text:p text:style-name="P91">Nummer</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.A1" office:value-type="string">
|
||||
<text:p text:style-name="P74">Titel</text:p>
|
||||
<text:p text:style-name="P91">Titel</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.A1" office:value-type="string">
|
||||
<text:p text:style-name="P74">Erklärung</text:p>
|
||||
<text:p text:style-name="P91">Erklärung</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D1" office:value-type="string">
|
||||
<text:p text:style-name="P75">Ergebnis</text:p>
|
||||
<text:p text:style-name="P92">Ergebnis</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P74"><text:span text:style-name="T17">MT</text:span>#1</text:p>
|
||||
<text:p text:style-name="P91"><text:span text:style-name="T17">MT</text:span>#1</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B2" office:value-type="string">
|
||||
<text:p text:style-name="P31">Client: Textur auswählen</text:p>
|
||||
@ -114811,18 +114896,18 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D2" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P47">13.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P47">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P47">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P74"><text:span text:style-name="T17">MT</text:span>#2</text:p>
|
||||
<text:p text:style-name="P91"><text:span text:style-name="T17">MT</text:span>#2</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B3" office:value-type="string">
|
||||
<text:p text:style-name="P31">Client: Steuerelemente der Suche</text:p>
|
||||
@ -114832,18 +114917,18 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D3" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P48">13.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P48">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler:</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P67">MT#3</text:p>
|
||||
<text:p text:style-name="P84">MT#3</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B4" office:value-type="string">
|
||||
<text:p text:style-name="P31">Client: Validierung Name</text:p>
|
||||
@ -114853,19 +114938,19 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D4" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P48">13.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P48">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<text:soft-page-break/>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P67">MT#4</text:p>
|
||||
<text:p text:style-name="P84">MT#4</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B8" office:value-type="string">
|
||||
<text:p text:style-name="P31">Client: Textur <text:span text:style-name="T18">importieren</text:span></text:p>
|
||||
@ -114875,18 +114960,18 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D5" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P48">13.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P48">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P69">MT#5</text:p>
|
||||
<text:p text:style-name="P86">MT#5</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B8" office:value-type="string">
|
||||
<text:p text:style-name="P33">Client: Textur exportieren</text:p>
|
||||
@ -114896,18 +114981,18 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D6" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">13.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P69">MT#6</text:p>
|
||||
<text:p text:style-name="P86">MT#6</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B8" office:value-type="string">
|
||||
<text:p text:style-name="P33">Client: Einfügedatum </text:p>
|
||||
@ -114917,18 +115002,18 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D7" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">13.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P69">MT#<text:span text:style-name="T19">7</text:span></text:p>
|
||||
<text:p text:style-name="P86">MT#<text:span text:style-name="T19">7</text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B8" office:value-type="string">
|
||||
<text:p text:style-name="P33"><text:span text:style-name="T19">Client</text:span>: Metadaten automatisch erkennen</text:p>
|
||||
@ -114938,19 +115023,19 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D8" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">13.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<text:soft-page-break/>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P67">MT#<text:span text:style-name="T19">8</text:span></text:p>
|
||||
<text:p text:style-name="P84">MT#<text:span text:style-name="T19">8</text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B9" office:value-type="string">
|
||||
<text:p text:style-name="P31">Server: Metadaten abspeichern</text:p>
|
||||
@ -114960,18 +115045,18 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D9" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">13.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P67">MT#<text:span text:style-name="T19">9</text:span></text:p>
|
||||
<text:p text:style-name="P84">MT#<text:span text:style-name="T19">9</text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B10" office:value-type="string">
|
||||
<text:p text:style-name="P31">Server: Metadaten lesen</text:p>
|
||||
@ -114981,18 +115066,18 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D10" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">13.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P67">MT#<text:span text:style-name="T19">10</text:span></text:p>
|
||||
<text:p text:style-name="P84">MT#<text:span text:style-name="T19">10</text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B11" office:value-type="string">
|
||||
<text:p text:style-name="P31">Server: Suchanfrage <text:span text:style-name="T20">ver</text:span>arbeiten</text:p>
|
||||
@ -115001,19 +115086,18 @@
|
||||
<text:p text:style-name="P31">Die Suche wird wie i<text:span text:style-name="T16">m</text:span> Such-Feindesign beschrieben korrekt bearbeitet.</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D11" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P44">Datum </text:p>
|
||||
<text:p text:style-name="P49">1<text:span text:style-name="T28">4</text:span>.06.2019</text:p>
|
||||
<text:p text:style-name="P44">Version</text:p>
|
||||
<text:p text:style-name="P49">1.0.0</text:p>
|
||||
<text:p text:style-name="P44">Fehler:<text:span text:style-name="T23"> </text:span><text:span text:style-name="T24">Der Filter „</text:span><text:span text:style-name="T25">n</text:span><text:span text:style-name="T24">:“ </text:span><text:span text:style-name="T26">ist</text:span><text:span text:style-name="T25"> case-sensitiv, was er gemäß Such-</text:span><text:span text:style-name="T26">Feindesign</text:span><text:span text:style-name="T25"> nicht sein soll.</text:span></text:p>
|
||||
<text:p text:style-name="P44">Resultat</text:p>
|
||||
<text:p text:style-name="P105">Fehler</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P69">MT#1<text:span text:style-name="T19">1</text:span></text:p>
|
||||
<text:p text:style-name="P86">MT#1<text:span text:style-name="T19">1</text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B12" office:value-type="string">
|
||||
<text:p text:style-name="P33">Server: Textur lokal abspeichern</text:p>
|
||||
@ -115023,19 +115107,19 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D12" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">13.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<text:soft-page-break/>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P71">MT#12</text:p>
|
||||
<text:p text:style-name="P88">MT#12</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B13" office:value-type="string">
|
||||
<text:p text:style-name="P35">Server: Daten übertragen</text:p>
|
||||
@ -115045,18 +115129,18 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D13" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum </text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">13.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P50">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
<table:table-cell table:style-name="Tabelle6.A2" office:value-type="string">
|
||||
<text:p text:style-name="P71">MT#13</text:p>
|
||||
<text:p text:style-name="P88">MT#13</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.B14" office:value-type="string">
|
||||
<text:p text:style-name="P35">Server: Hashing</text:p>
|
||||
@ -115066,13 +115150,13 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D14" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P51">14.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P51">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabelle6.1">
|
||||
@ -115087,26 +115171,26 @@
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle6.D15" office:value-type="string">
|
||||
<text:p text:style-name="P43">Datum</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P52">14.06.2019</text:p>
|
||||
<text:p text:style-name="P43">Version</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P52">1.0.0</text:p>
|
||||
<text:p text:style-name="P43">Fehler</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P45">-</text:p>
|
||||
<text:p text:style-name="P43">Resultat</text:p>
|
||||
<text:p text:style-name="P44">todo</text:p>
|
||||
<text:p text:style-name="P104"><text:span text:style-name="T27">Bestanden</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:h text:style-name="P95" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc2191_2391892654"/>Changelog<text:bookmark-end text:name="__RefHeading___Toc2191_2391892654"/></text:h>
|
||||
<text:h text:style-name="P110" text:outline-level="1"><text:bookmark-start text:name="__RefHeading___Toc2191_2391892654"/>Changelog<text:bookmark-end text:name="__RefHeading___Toc2191_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="P72">Version</text:p>
|
||||
<text:p text:style-name="P89">Version</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle2.B1" office:value-type="string">
|
||||
<text:p text:style-name="P72">Änderung</text:p>
|
||||
<text:p text:style-name="P89">Änderung</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
@ -115133,6 +115217,22 @@
|
||||
<text:p text:style-name="P42">Ergebnisbeschreibung hinzugefügt</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabelle2.A5" office:value-type="string">
|
||||
<text:p text:style-name="P60">1.2.0</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle2.B5" office:value-type="string">
|
||||
<text:p text:style-name="P60">Tests durchgeführt</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabelle2.A6" office:value-type="string">
|
||||
<text:p text:style-name="P61">1.2.1</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabelle2.B6" office:value-type="string">
|
||||
<text:p text:style-name="P61">Test MT#10 nach Missverständnis wiederholt</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P9"/>
|
||||
</office:text>
|
||||
|
Binary file not shown.
BIN
doc/tests/systemtest/systemtest-v1.0.0.pdf
Normal file
BIN
doc/tests/systemtest/systemtest-v1.0.0.pdf
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
42
orga/statusberichte/Statusbericht_KW24.md
Normal file
42
orga/statusberichte/Statusbericht_KW24.md
Normal file
@ -0,0 +1,42 @@
|
||||
|
||||
#Statusbericht KW24 - TextureSync
|
||||
|
||||
Sehr geehrter Herr Nikolaropoulos,
|
||||
|
||||
hier der Statusbericht der vergangenen Woche TextureSync.
|
||||
|
||||
#Vergangene Arbeitswoche
|
||||
|
||||
* Der Client wurde fertiggestellt und um mehre Wunschfunktionen ergäntzt.
|
||||
* Es wurden drei Releases erstellt und diese getestet.
|
||||
* Kurzanleitungen erstellt für Server und Client.
|
||||
|
||||
#Nächste Arbeitswoche
|
||||
|
||||
* Die Präsentation für den 21.06 fertigstellen.
|
||||
|
||||
#Aktuelle Informationen über das Projekt
|
||||
|
||||
Die Release 1.0.2 ist unsere erste Stable Release.
|
||||
|
||||
Alle Dokumente sind auf Moodle hochgeladen und somit von und offiziell abgegeben.
|
||||
|
||||
Sie können Sich gerne unsere Kurzanleitungen anschauen um einen ersten eindruck der Software zu bekommen:
|
||||
|
||||
https://git.mosad.xyz/localhorst/TextureSync/wiki
|
||||
|
||||
Die eingebettenetn YouTube-Clips sind unsere Demos.
|
||||
|
||||
* Website mit aktuellem Projektplan: https://planner.mosad.xyz/TextureSync.html
|
||||
* Repository mit Code und Dokumenten: https://git.mosad.xyz/localhorst/TextureSync
|
||||
|
||||
Sollten Sie Fragen haben, können Sie sich gern bei uns melden.
|
||||
Wir freuen uns auf nächste Woche Freitag Ihnen die fertige Software präsentieren zu können.
|
||||
|
||||
Mit freundlichen Grüßen
|
||||
|
||||
Hendrik Schutter und Team TextureSync
|
||||
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "texture-sync-server"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
authors = ["CodeSteak <codesteak@shellf.art>"]
|
||||
edition = "2018"
|
||||
|
||||
|
@ -66,7 +66,7 @@ impl QueryFilter {
|
||||
|
||||
SpecialInName(name) => Score::RequiredMatch(
|
||||
//
|
||||
texture.name.contains(name),
|
||||
texture.name.to_lowercase().contains(&name.to_lowercase()),
|
||||
),
|
||||
|
||||
SpecialBeforeDate(date) => Score::RequiredMatch(texture.added_on <= *date),
|
||||
|
Reference in New Issue
Block a user