Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Stephane Crozat
hdoc
Commits
7d8f8ffb
Commit
7d8f8ffb
authored
Dec 21, 2015
by
Decorde Jeffrey
Browse files
Code refactoring
parent
1889a62b
Changes
2
Hide whitespace changes
Inline
Side-by-side
hdoc_to_opale/hdoc_to_opale.ant
View file @
7d8f8ffb
...
...
@@ -17,20 +17,15 @@
<target
name=
"convert"
>
<delete
dir=
"${tmp}"
failonerror=
"false"
/>
<sleep
seconds=
"
2
"
/>
<sleep
seconds=
"
1
"
/>
<mkdir
dir=
"${tmp}"
/>
<delete
dir=
"${out}"
failonerror=
"false"
/>
<sleep
seconds=
"
2
"
/>
<sleep
seconds=
"
1
"
/>
<mkdir
dir=
"${out}"
/>
<delete
dir=
"${log}"
failonerror=
"false"
/>
<sleep
seconds=
"
2
"
/>
<sleep
seconds=
"
1
"
/>
<mkdir
dir=
"${log}"
/>
<antcall
target=
"UnzipHdocFile"
/>
<antcall
target=
"ValidateInput"
/>
<antcall
target=
"FindContentFiles"
/>
<for
param=
"inputFile"
>
<path>
<fileset
dir=
"${in}"
includes=
"**/*.hdoc"
/>
...
...
@@ -38,187 +33,137 @@
<sequential>
<local
name=
"filename"
/>
<basename
property=
"filename"
file=
"@{inputFile}"
/>
<ant
antfile=
"${tmp}/${filename}/generateContentPath.xml"
>
<property
name=
"filename"
value=
"${filename}"
/>
</ant>
</sequential>
</for>
<antcall
target=
"ValidateOutput"
/>
<antcall
target=
"DivideOutput"
/>
<antcall
target=
"UnzipHdocFile"
>
<param
name=
"filename"
value=
"${filename}"
/>
</antcall>
<antcall
target=
"ZipOutput"
/>
<antcall
target=
"ZipDividedOutput"
/>
<antcall
target=
"ValidateInput"
>
<param
name=
"filename"
value=
"${filename}"
/>
</antcall>
</target>
<antcall
target=
"FindContentFiles"
>
<param
name=
"filename"
value=
"${filename}"
/>
</antcall>
<target
name=
"CleanDirectory"
>
<delete>
<fileset
dir=
"${tmp}"
>
<include
name=
"*"
/>
</fileset>
</delete>
</target>
<ant
antfile=
"${tmp}/${filename}/generateContentPath.xml"
>
<property
name=
"filename"
value=
"${filename}"
/>
</ant>
<target
name=
"UnzipHdocFile"
>
<!-- Unzip the input hdoc file. Decompressed folder is named "decompressedHdoc" : this name is the only one which
refers to the hdoc file furthermore in this project. -->
<for
param=
"inputFile"
>
<path>
<fileset
dir=
"${in}"
includes=
"**/*.hdoc"
/>
</path>
<sequential>
<local
name=
"filename"
/>
<basename
property=
"filename"
file=
"@{inputFile}"
/>
<unzip
src=
"${in}/${filename}"
dest=
"${tmp}/${filename}/decompressedHdoc"
/>
<chmod
dir=
"${tmp}/${filename}/decompressedHdoc"
perm=
"777"
/>
</sequential>
</for>
</target>
<antcall
target=
"ValidateOutput"
>
<param
name=
"filename"
value=
"${filename}"
/>
</antcall>
<target
name=
"FindContentFiles"
>
<!-- Finds the absolute path of container.xml and applies transformation0.xsl on it.-->
<for
param=
"inputFile"
>
<path>
<fileset
dir=
"${in}"
includes=
"**/*.hdoc"
/>
</path>
<sequential>
<local
name=
"filename"
/>
<basename
property=
"filename"
file=
"@{inputFile}"
/>
<first
id=
"first"
>
<fileset
dir=
"${tmp}/${filename}/decompressedHdoc/META-INF"
includes=
"**/container.xml"
/>
</first>
<xslt
in=
"${toString:first}"
out=
"${tmp}/${filename}/generateContentPath.xml"
style=
"${xsl}/transformation0.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
>
<param
name=
"filename"
expression=
"${filename}"
/>
<param
name=
"lib"
expression=
"${lib}"
/>
</xslt>
<chmod
file=
"${tmp}/${filename}/generateContentPath.xml"
perm=
"777"
/>
</sequential>
</for>
</target>
<antcall
target=
"DivideOutput"
>
<param
name=
"filename"
value=
"${filename}"
/>
</antcall>
<target
name=
"ZipOutput"
>
<for
param=
"inputFile"
>
<path>
<fileset
dir=
"${in}"
includes=
"**/*.hdoc"
/>
</path>
<sequential>
<local
name=
"filename"
/>
<basename
property=
"filename"
file=
"@{inputFile}"
/>
<propertyregex
property=
"properFilename"
input=
"${filename}"
regexp=
".hdoc"
replace=
""
casesensitive=
"false"
override=
"true"
/>
<antcall
target=
"ZipOutput"
>
<param
name=
"filename"
value=
"${filename}"
/>
</antcall>
<copy
file=
"${bibtex}/.wspmeta"
todir=
"${tmp}/${filename}/decompressedOpale"
/>
<mkdir
dir=
"${tmp}/${filename}/decompressedOpale/res"
/>
<ant
antfile=
"${tmp}/${filename}/moveRessourceFiles.xml"
/>
<zip
basedir=
"${tmp}/${filename}/decompressedOpale"
destfile=
"${out}/${properFilename}/output.scar"
encoding=
"UTF-8"
/>
</sequential>
</for>
</target>
<antcall
target=
"ZipDividedOutput"
>
<param
name=
"filename"
value=
"${filename}"
/>
</antcall>
<target
name=
"ZipDividedOutput"
>
<for
param=
"inputFile"
>
<path>
<fileset
dir=
"${in}"
includes=
"**/*.hdoc"
/>
</path>
<sequential>
<local
name=
"filename"
/>
<basename
property=
"filename"
file=
"@{inputFile}"
/>
<propertyregex
property=
"properFilename"
input=
"${filename}"
regexp=
".hdoc"
replace=
""
casesensitive=
"false"
override=
"true"
/>
<copy
file=
"${bibtex}/.wspmeta"
todir=
"${tmp}/${filename}/decompressedOpaleDivided"
/>
<copy
todir=
"${tmp}/${filename}/decompressedOpaleDivided/res"
>
<fileset
dir=
"${tmp}/${filename}/decompressedOpale/res"
includes=
"**"
/>
</copy>
<copy
todir=
"${tmp}/${filename}/decompressedOpaleDivided/references"
>
<fileset
dir=
"${tmp}/${filename}/decompressedOpale/references"
includes=
"**"
/>
</copy>
<zip
basedir=
"${tmp}/${filename}/decompressedOpaleDivided"
destfile=
"${out}/${properFilename}/dividedOutput.scar"
encoding=
"UTF-8"
/>
</sequential>
</for>
</target>
<!-- Validating the XML container file -->
<target
name=
"ValidateInput"
>
<for
param=
"inputFile"
>
<path>
<fileset
dir=
"${in}"
includes=
"**/*.hdoc"
/>
</path>
<sequential>
<local
name=
"filename"
/>
<basename
property=
"filename"
file=
"@{inputFile}"
/>
<trycatch
property=
"foo"
reference=
"bar"
>
<try>
<jing
file=
"${tmp}/${filename}/decompressedHdoc/META-INF/container.xml"
rngfile=
"${schema}/hdoc1-container.rng"
></jing>
</try>
<catch>
<echo>
Validation failed
</echo>
</catch>
</trycatch>
</sequential>
</for>
</target>
<!-- Validating the XML output -->
<target
name=
"ValidateOutput"
>
<for
param=
"inputFile"
>
<path>
<fileset
dir=
"${in}"
includes=
"**/*.hdoc"
/>
</path>
<sequential>
<local
name=
"filename"
/>
<basename
property=
"filename"
file=
"@{inputFile}"
/>
<trycatch
property=
"foo"
reference=
"bar"
>
<try>
<jing
file=
"${tmp}/${filename}/decompressedOpale/main.xml"
rngfile=
"${schema}/op_ue.rng"
></jing>
</try>
<catch>
<echo>
Validation failed
</echo>
</catch>
</trycatch>
</sequential>
</for>
<target
name=
"UnzipHdocFile"
>
<!-- Unzip the input hdoc file. Decompressed folder is named "decompressedHdoc" : this name is the only one which
refers to the hdoc file furthermore in this project. -->
<unzip
src=
"${in}/${filename}"
dest=
"${tmp}/${filename}/decompressedHdoc"
/>
<chmod
dir=
"${tmp}/${filename}/decompressedHdoc"
perm=
"777"
/>
</target>
<target
name=
"DivideOutput"
>
<for
param=
"inputFile"
>
<path>
<fileset
dir=
"${in}"
includes=
"**/*.hdoc"
/>
</path>
<sequential>
<local
name=
"filename"
/>
<basename
property=
"filename"
file=
"@{inputFile}"
/>
<mkdir
dir=
"${tmp}/${filename}/decompressedOpaleDivided"
/>
<!-- Adding IDS to the general output file -->
<xslt
in=
"${tmp}/${filename}/decompressedOpale/main.xml"
out=
"${tmp}/${filename}/outputWithCourseUcIds.xml"
style=
"${xsl}/addCourseUcIds.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
/>
<!-- Generating the root file (with refs to other files) -->
<xslt
in=
"${tmp}/${filename}/outputWithCourseUcIds.xml"
out=
"${tmp}/${filename}/decompressedOpaleDivided/main.xml"
style=
"${xsl}/addCourseUcReferences.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
/>
<!-- Generating the ANT file that will copy the files -->
<xslt
in=
"${tmp}/${filename}/outputWithCourseUcIds.xml"
out=
"${tmp}/${filename}/exportUnits.ant"
style=
"${xsl}/prepareCourseUcCopies.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
>
<param
name=
"filename"
expression=
"${filename}"
/>
</xslt>
<!-- Executing that ANT file -->
<ant
antfile=
"${tmp}/${filename}/exportUnits.ant"
/>
</sequential>
</for>
</target>
<target
name=
"FindContentFiles"
>
<!-- Finds the absolute path of container.xml and applies transformation0.xsl on it.-->
<first
id=
"first"
>
<fileset
dir=
"${tmp}/${filename}/decompressedHdoc/META-INF"
includes=
"**/container.xml"
/>
</first>
<xslt
in=
"${toString:first}"
out=
"${tmp}/${filename}/generateContentPath.xml"
style=
"${xsl}/transformation0.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
>
<param
name=
"filename"
expression=
"${filename}"
/>
<param
name=
"lib"
expression=
"${lib}"
/>
</xslt>
<chmod
file=
"${tmp}/${filename}/generateContentPath.xml"
perm=
"777"
/>
</target>
<target
name=
"ZipOutput"
>
<propertyregex
property=
"properFilename"
input=
"${filename}"
regexp=
".hdoc"
replace=
""
casesensitive=
"false"
override=
"true"
/>
<copy
file=
"${bibtex}/.wspmeta"
todir=
"${tmp}/${filename}/decompressedOpale"
/>
<mkdir
dir=
"${tmp}/${filename}/decompressedOpale/res"
/>
<ant
antfile=
"${tmp}/${filename}/moveRessourceFiles.xml"
/>
<zip
basedir=
"${tmp}/${filename}/decompressedOpale"
destfile=
"${out}/${properFilename}/output.scar"
encoding=
"UTF-8"
/>
</target>
<target
name=
"ZipDividedOutput"
>
<propertyregex
property=
"properFilename"
input=
"${filename}"
regexp=
".hdoc"
replace=
""
casesensitive=
"false"
override=
"true"
/>
<copy
file=
"${bibtex}/.wspmeta"
todir=
"${tmp}/${filename}/decompressedOpaleDivided"
/>
<copy
todir=
"${tmp}/${filename}/decompressedOpaleDivided/res"
>
<fileset
dir=
"${tmp}/${filename}/decompressedOpale/res"
includes=
"**"
/>
</copy>
<copy
todir=
"${tmp}/${filename}/decompressedOpaleDivided/references"
>
<fileset
dir=
"${tmp}/${filename}/decompressedOpale/references"
includes=
"**"
/>
</copy>
<zip
basedir=
"${tmp}/${filename}/decompressedOpaleDivided"
destfile=
"${out}/${properFilename}/dividedOutput.scar"
encoding=
"UTF-8"
/>
</target>
<!-- Validating the XML container file -->
<target
name=
"ValidateInput"
>
<trycatch
property=
"foo"
reference=
"bar"
>
<try>
<jing
file=
"${tmp}/${filename}/decompressedHdoc/META-INF/container.xml"
rngfile=
"${schema}/hdoc1-container.rng"
></jing>
</try>
<catch>
<echo>
Validation failed
</echo>
</catch>
</trycatch>
</target>
<!-- Validating the XML output -->
<target
name=
"ValidateOutput"
>
<trycatch
property=
"foo"
reference=
"bar"
>
<try>
<jing
file=
"${tmp}/${filename}/decompressedOpale/main.xml"
rngfile=
"${schema}/op_ue.rng"
></jing>
</try>
<catch>
<echo>
Validation failed
</echo>
</catch>
</trycatch>
</target>
<target
name=
"DivideOutput"
>
<mkdir
dir=
"${tmp}/${filename}/decompressedOpaleDivided"
/>
<!-- Adding IDS to the general output file -->
<xslt
in=
"${tmp}/${filename}/decompressedOpale/main.xml"
out=
"${tmp}/${filename}/outputWithCourseUcIds.xml"
style=
"${xsl}/addCourseUcIds.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
/>
<!-- Generating the root file (with refs to other files) -->
<xslt
in=
"${tmp}/${filename}/outputWithCourseUcIds.xml"
out=
"${tmp}/${filename}/decompressedOpaleDivided/main.xml"
style=
"${xsl}/addCourseUcReferences.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
/>
<!-- Generating the ANT file that will copy the files -->
<xslt
in=
"${tmp}/${filename}/outputWithCourseUcIds.xml"
out=
"${tmp}/${filename}/exportUnits.ant"
style=
"${xsl}/prepareCourseUcCopies.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
>
<param
name=
"filename"
expression=
"${filename}"
/>
</xslt>
<!-- Executing that ANT file -->
<ant
antfile=
"${tmp}/${filename}/exportUnits.ant"
/>
</target>
</project>
hdoc_to_opale/xsl/prepareCourseUcCopies.xsl
View file @
7d8f8ffb
...
...
@@ -18,7 +18,7 @@
<property
name=
"lib"
location=
"${{basedir}}/lib"
/>
<property
name=
"log"
location=
"${{basedir}}/log"
/>
<property
name=
"schema"
location=
"${{basedir}}/schema"
/>
<property
name=
"filename"
location=
"
${{tmp}}/
{$filename}"
/>
<property
name=
"filename"
location=
"{$filename}"
/>
<taskdef
name=
"jing"
classname=
"com.thaiopensource.relaxng.util.JingTask"
>
<classpath>
<pathelement
location=
"../${lib}/jing.jar"
/>
...
...
@@ -35,8 +35,8 @@
<xsl:template
match=
"sp:courseUc"
>
<xslt
in=
"${{filename}}/outputWithCourseUcIds.xml"
out=
"${{filename}}/decompressedOpaleDivided/{@data-export-file}"
in=
"${{
tmp}}/${{
filename}}/outputWithCourseUcIds.xml"
out=
"${{
tmp}}/${{
filename}}/decompressedOpaleDivided/{@data-export-file}"
style=
"${{xsl}}/copyCourseUc.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
>
...
...
@@ -45,7 +45,7 @@
<trycatch
property=
"foo"
reference=
"bar"
>
<try>
<jing
file=
"${{filename}}/decompressedOpaleDivided/{@data-export-file}"
rngfile=
"${{schema}}/op_expUc.rng"
></jing>
<jing
file=
"${{
tmp}}/${{
filename}}/decompressedOpaleDivided/{@data-export-file}"
rngfile=
"${{schema}}/op_expUc.rng"
></jing>
</try>
<catch>
<echo>
Validation failed
</echo>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment