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
04f76337
Commit
04f76337
authored
Dec 17, 2015
by
Decorde Jeffrey
Browse files
Project cleaned
parent
acf793a2
Changes
2
Hide whitespace changes
Inline
Side-by-side
hdoc_to_opale/README
0 → 100644
View file @
04f76337
Usage
-----
Put the `.hdoc` files in the input folder, run `run.bat` or `run.sh` according to your operating system and get the .scar in the output folder.
Now, the script is able to manage several files.
Todo list
---------
- Refactor the ant script
- Resolve bugs
- (Optional) Port to XSLT 2.0
Bugs
----
- Table cell size
hdoc_to_opale/hdoc_to_opale.ant
deleted
100644 → 0
View file @
acf793a2
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project
name=
"hdoc_to_opale"
basedir=
"."
default=
"convert"
>
<property
file=
"global.properties"
/>
<taskdef
name=
"jing"
classname=
"com.thaiopensource.relaxng.util.JingTask"
>
<classpath>
<pathelement
location=
"lib/jing.jar"
/>
</classpath>
</taskdef>
<target
name=
"convert"
>
<!-- This is the main target : it is called whether by the project (as the default target) or by the user/converter
website, if specified in the command line. Basically, this target consists in several targets/ant buildfiles calls. -->
<antcall
target=
"CleanDirectory"
/>
<mkdir
dir=
"${tmpdir}"
/>
<antcall
target=
"UnzipHdocFile"
/>
<antcall
target=
"ValidateInput"
/>
<antcall
target=
"FindContentFiles"
/>
<ant
antfile=
"${tmpdir}/generateContentPath.xml"
/>
<antcall
target=
"ValidateOutput"
/>
<antcall
target=
"DivideOutput"
/>
<antcall
target=
"ZipOutput"
/>
<antcall
target=
"ZipDividedOutput"
/>
<antcall
target=
"CleanDirectory"
/>
</target>
<target
name=
"CleanDirectory"
>
<delete
dir=
"${tmpdir}"
/>
</target>
<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=
"${InputPath}"
dest=
"${tmpdir}/decompressedHdoc"
/>
<chmod
dir=
"${tmpdir}/decompressedHdoc"
perm=
"777"
/>
</target>
<target
name=
"FindContentFiles"
>
<!-- Finds the absolute path of container.xml and applies transformation0.xsl on it.-->
<first
id=
"first"
>
<fileset
dir=
"${tmpdir}/decompressedHdoc/META-INF"
includes=
"**/container.xml"
/>
</first>
<xslt
in=
"${toString:first}"
out=
"${tmpdir}/generateContentPath.xml"
style=
"transformation0.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
/>
<chmod
file=
"${tmpdir}/generateContentPath.xml"
perm=
"777"
/>
</target>
<target
name=
"ZipOutput"
>
<copy
file=
".wspmeta"
todir=
"${tmpdir}/decompressedOpale"
/>
<mkdir
dir=
"${tmpdir}/decompressedOpale/res"
/>
<ant
antfile=
"${tmpdir}/moveRessourceFiles.xml"
/>
<zip
basedir=
"${tmpdir}/decompressedOpale"
destfile=
"${OutputPath}"
encoding=
"UTF-8"
/>
</target>
<target
name=
"ZipDividedOutput"
>
<copy
file=
".wspmeta"
todir=
"${tmpdir}/decompressedOpaleDivided"
/>
<copy
todir=
"${tmpdir}/decompressedOpaleDivided/res"
>
<fileset
dir=
"${tmpdir}/decompressedOpale/res"
includes=
"**"
/>
</copy>
<copy
todir=
"${tmpdir}/decompressedOpaleDivided/references"
>
<fileset
dir=
"${tmpdir}/decompressedOpale/references"
includes=
"**"
/>
</copy>
<zip
basedir=
"${tmpdir}/decompressedOpaleDivided"
destfile=
"${OutputPathDivided}"
encoding=
"UTF-8"
/>
</target>
<!-- Validating the XML container file -->
<target
name=
"ValidateInput"
>
<jing
file=
"${tmpdir}/decompressedHdoc/META-INF/container.xml"
rngfile=
"schema/hdoc1-container.rng"
></jing>
</target>
<!-- Validating the XML output -->
<target
name=
"ValidateOutput"
>
<jing
file=
"${tmpdir}/decompressedOpale/main.xml"
rngfile=
"schema/op_ue.rng"
></jing>
</target>
<target
name=
"DivideOutput"
>
<mkdir
dir=
"${tmpdir}/decompressedOpaleDivided"
/>
<!-- Adding IDS to the general output file -->
<xslt
in=
"${tmpdir}/decompressedOpale/main.xml"
out=
"${tmpdir}/outputWithCourseUcIds.xml"
style=
"addCourseUcIds.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
/>
<!-- Generating the root file (with refs to other files) -->
<xslt
in=
"${tmpdir}/outputWithCourseUcIds.xml"
out=
"${tmpdir}/decompressedOpaleDivided/main.xml"
style=
"addCourseUcReferences.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
/>
<!-- Generating the ANT file that will copy the files -->
<xslt
in=
"${tmpdir}/outputWithCourseUcIds.xml"
out=
"${tmpdir}/exportUnits.ant"
style=
"prepareCourseUcCopies.xsl"
processor=
"org.apache.tools.ant.taskdefs.optional.TraXLiaison"
/>
<!-- Executing that ANT file -->
<ant
antfile=
"${tmpdir}/exportUnits.ant"
/>
</target>
</project>
Write
Preview
Markdown
is supported
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