Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
hdoc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Stephane Crozat
hdoc
Commits
9a148cb4
Commit
9a148cb4
authored
Dec 17, 2015
by
Antoine
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://gitlab.utc.fr/crozatst/hdoc
parents
a9ca354d
89f9f767
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
260 additions
and
383 deletions
+260
-383
.gitignore
.gitignore
+4
-15
hdoc_to_opale/README
hdoc_to_opale/README
+18
-0
hdoc_to_opale/hdoc_to_opale.ant
hdoc_to_opale/hdoc_to_opale.ant
+206
-118
hdoc_to_opale/myantce.ant
hdoc_to_opale/myantce.ant
+0
-206
hdoc_to_opale/run.bat
hdoc_to_opale/run.bat
+1
-1
hdoc_to_opale/run.sh
hdoc_to_opale/run.sh
+1
-1
mindmapping_to_hdoc/xslt/sect.xsl
mindmapping_to_hdoc/xslt/sect.xsl
+11
-40
mindmapping_to_opale/mindmapping_to_opale.ant
mindmapping_to_opale/mindmapping_to_opale.ant
+2
-2
mindmapping_to_opale/samples/MindMapping.mm
mindmapping_to_opale/samples/MindMapping.mm
+1
-0
optim_to_hdoc/input/sample.scar
optim_to_hdoc/input/sample.scar
+0
-0
optim_to_hdoc/optim_to_hdoc.ant
optim_to_hdoc/optim_to_hdoc.ant
+16
-0
No files found.
.gitignore
View file @
9a148cb4
*/input/
*/tmp/
*/output/
wikipedia_to_hdoc/result/*
wikipedia_to_hdoc/tmp/*
wikipedia_to_hdoc/hdoc_to_opale/tmp/*
wikipedia_to_hdoc/output/*
mindmapping_to_opale/result/*
mindmapping_to_opale/tmp/*
mindmapping_to_lexique/result/*
mindmapping_to_lexique/tmp/*
mindmapping_to_optim/result/*
mindmapping_to_optim/tmp/*
mindmapping_to_hdoc/result/*
mindmapping_to_hdoc/tmp/*
\ No newline at end of file
*/input/*
*/tmp/*
*/output/*
!*/input/sample.*
\ No newline at end of file
hdoc_to_opale/README
0 → 100644
View file @
9a148cb4
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
View file @
9a148cb4
<?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>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project
name=
"hdoc_to_opale"
basedir=
"."
default=
"convert"
>
<property
name=
"in"
location=
"${basedir}/input"
/>
<property
name=
"out"
location=
"${basedir}/output"
/>
<property
name=
"tmp"
location=
"${basedir}/tmp"
/>
<property
name=
"xsl"
location=
"${basedir}/xsl"
/>
<property
name=
"lib"
location=
"${basedir}/lib"
/>
<property
name=
"log"
location=
"${basedir}/log"
/>
<property
name=
"schema"
location=
"${basedir}/schema"
/>
<property
name=
"bibtex"
location=
"${basedir}/bibtex_to_opale"
/>
<property
file=
"global.properties"
/>
<taskdef
resource=
"net/sf/antcontrib/antlib.xml"
/>
<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"
/>
<antcall
target=
"UnzipHdocFile"
/>
<antcall
target=
"ValidateInput"
/>
<antcall
target=
"FindContentFiles"
/>
<for
param=
"inputFile"
>
<path>
<fileset
dir=
"${in}"
includes=
"**/*.hdoc"
/>
</path>
<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=
"ZipOutput"
/>
<antcall
target=
"ZipDividedOutput"
/>
</target>
<target
name=
"CleanDirectory"
>
<delete>
<fileset
dir=
"${tmp}"
>
<include
name=
"*"
/>
</fileset>
</delete>
</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. -->
<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>
<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}"
/>
</xslt>
<chmod
file=
"${tmp}/${filename}/generateContentPath.xml"
perm=
"777"
/>
</sequential>
</for>
</target>
<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"
/>
<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>
<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}"
/>
<jing
file=
"${tmp}/${filename}/decompressedHdoc/META-INF/container.xml"
rngfile=
"${schema}/hdoc1-container.rng"
></jing>
</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}"
/>
<jing
file=
"${tmp}/${filename}/decompressedOpale/main.xml"
rngfile=
"${schema}/op_ue.rng"
></jing>
</sequential>
</for>
</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>
</project>
hdoc_to_opale/myantce.ant
deleted
100644 → 0
View file @
a9ca354d
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project
name=
"hdoc_to_opale"
basedir=
"."
default=
"convert"
>
<property
name=
"in"
location=
"${basedir}/input"
/>
<property
name=
"out"
location=
"${basedir}/output"
/>
<property
name=
"tmp"
location=
"${basedir}/tmp"
/>
<property
name=
"xsl"
location=
"${basedir}/xsl"
/>
<property
name=
"lib"
location=
"${basedir}/lib"
/>
<property
name=
"log"
location=
"${basedir}/log"
/>
<property
name=
"schema"
location=
"${basedir}/schema"
/>
<property
name=
"bibtex"
location=
"${basedir}/bibtex_to_opale"
/>
<property
file=
"global.properties"
/>
<taskdef
resource=
"net/sf/antcontrib/antlib.xml"
/>
<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"
/>
<antcall
target=
"UnzipHdocFile"
/>
<antcall
target=
"ValidateInput"
/>
<antcall
target=
"FindContentFiles"
/>
<for
param=
"inputFile"
>
<path>
<fileset
dir=
"${in}"
includes=
"**/*.hdoc"
/>
</path>
<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=
"ZipOutput"
/>
<antcall
target=
"ZipDividedOutput"
/>
</target>
<target
name=
"CleanDirectory"
>
<delete>
<fileset
dir=
"${tmp}"
>
<include
name=
"*"
/>
</fileset>
</delete>
</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. -->
<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>
<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}"
/>
</xslt>
<chmod
file=
"${tmp}/${filename}/generateContentPath.xml"
perm=
"777"
/>
</sequential>
</for>
</target>
<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"
/>
<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>
<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}"
/>
<jing
file=
"${tmp}/${filename}/decompressedHdoc/META-INF/container.xml"
rngfile=
"${schema}/hdoc1-container.rng"
></jing>
</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}"
/>
<jing
file=
"${tmp}/${filename}/decompressedOpale/main.xml"
rngfile=
"${schema}/op_ue.rng"
></jing>
</sequential>
</for>
</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>
</project>
hdoc_to_opale/run.bat
View file @
9a148cb4
@echo
off
set
lib
=
lib
set
ant
=
myantc
e
.ant
set
ant
=
hdoc_to_opal
e
.ant
set
antparam
=
-Dprogram
.param
=
%
1
set
scJarList
=
%lib%
\
*
...
...
hdoc_to_opale/run.sh
View file @
9a148cb4
#!/bin/sh
lib
=
"lib"
ant
=
"
myantc
e.ant"
ant
=
"
hdoc_to_opal
e.ant"
antparam
=
"-Dprogram.param=
$1
"
#Recherche de java et controle que se soit une version SUN
...
...
mindmapping_to_hdoc/xslt/sect.xsl
View file @
9a148cb4
...
...
@@ -27,7 +27,7 @@
<!-- Header in hdoc -->
<xsl:template
match=
"node[1]"
mode=
"header"
>
<title>
<xsl:value-of
select=
"utc:
string-remove-order
(@TEXT)"
/>
<xsl:value-of
select=
"utc:
remove-language
(@TEXT)"
/>
<xsl:value-of
select=
"richcontent"
/>
</title>
<meta
charset=
"utf-8"
/>
...
...
@@ -39,7 +39,7 @@
<xsl:element
name=
"section"
>
<header>
<h1>
<xsl:value-of
select=
"utc:
string-remove-order
(@TEXT)"
/>
<xsl:value-of
select=
"utc:
remove-language
(@TEXT)"
/>
<xsl:value-of
select=
"richcontent"
/>
</h1>
</header>
...
...
@@ -49,7 +49,7 @@
<header><h1>
Introduction
</h1>
<xsl:element
name=
"div"
>
<xsl:attribute
name=
"data-hdoc-type"
>
introduction
</xsl:attribute>
<xsl:value-of
select=
"utc:
string-remove-order(utc:string-remove-all(child::*[contains(@TEXT, '#intro')][1]/@TEXT, '#intro ')
)"
/>
<xsl:value-of
select=
"utc:
remove-language(child::*[contains(@TEXT, '#intro')][1]/@TEXT
)"
/>
</xsl:element>
</header>
</xsl:element>
...
...
@@ -63,7 +63,7 @@
<footer>
<xsl:element
name=
"div"
>
<xsl:attribute
name=
"data-hdoc-type"
>
conclusion
</xsl:attribute>
<xsl:value-of
select=
"utc:
string-remove-order(utc:string-remove-all(child::*[contains(@TEXT, '#conclu')][1]/@TEXT, '#conclu ')
)"
/>
<xsl:value-of
select=
"utc:
remove-language(child::*[contains(@TEXT, '#conclu')][1]/@TEXT
)"
/>
</xsl:element>
</footer>
</xsl:element>
...
...
@@ -84,7 +84,7 @@
</xsl:if>
<header>
<h1>
<xsl:value-of
select=
"utc:
string-remove-order
(@TEXT)"
/>
<xsl:value-of
select=
"utc:
remove-language
(@TEXT)"
/>
<xsl:value-of
select=
"richcontent"
/>
</h1>
</header>
...
...
@@ -95,7 +95,7 @@
<!-- Paragraph -->
<xsl:template
match=
"node[contains(@TEXT, '#p')]"
priority=
"2"
>
<xsl:element
name=
"p"
>
<xsl:value-of
select=
"utc:
string-remove-order(utc:string-remove-all(@TEXT, '#p ')
)"
/>
<xsl:value-of
select=
"utc:
remove-language(@TEXT
)"
/>
</xsl:element>
</xsl:template>
...
...
@@ -104,9 +104,9 @@
<xsl:element
name=
"a"
>
<xsl:attribute
name=
"href"
>
<xsl:text>
#
</xsl:text>
<xsl:value-of
select=
"utc:
string-remove-order(utc:string-remove-all(@TEXT, '#a ')
)"
/>
<xsl:value-of
select=
"utc:
remove-language(@TEXT
)"
/>
</xsl:attribute>
<xsl:value-of
select=
"utc:
string-remove-order(utc:string-remove-all(@TEXT, '#a ')
)"
/>
<xsl:value-of
select=
"utc:
remove-language(@TEXT
)"
/>
</xsl:element>
</xsl:template>
...
...
@@ -114,43 +114,14 @@
<xsl:template
match=
"node[contains(@TEXT, '#intro')] | node[contains(@TEXT, '#conclu')]"
priority=
"3"
/>