Skip to content
GitLab
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
ec26e07a
Commit
ec26e07a
authored
Dec 21, 2015
by
Antoine
Browse files
input and output files now automaticaly created and updated
parent
f00cf78f
Changes
3
Hide whitespace changes
Inline
Side-by-side
lexique_to_opale/README.md
View file @
ec26e07a
# Converter lexique_to_opale
In order to use this converter, follow those steps :
0.
Create an input and an output directory
1.
Copy your Lexique file(s) (.scar or .zip) into the input directory.
2.
Execute the run that correspond to your OS.
3.
You will find the result into the output directory. The names of the output are linked to the hour it was processed.
lexique_to_opale/input/sample.scar
0 → 100644
View file @
ec26e07a
File added
lexique_to_opale/lexique_to_opale.ant
View file @
ec26e07a
...
...
@@ -15,13 +15,22 @@
</classpath>
</taskdef>
<target
name=
"rmOutputDir"
>
<if>
<available
file=
"${OutputPath}"
type=
"dir"
/>
<then>
<delete
dir=
"${OutputPath}"
/>
</then>
</if>
</target>
<target
name=
"init"
>
<target
name=
"init"
depends=
"rmOutputDir"
>
<mkdir
dir=
"${outdir}"
/>
<chmod
perm=
"777"
dir=
"${outdir}"
></chmod>
<mkdir
dir=
"${srcdir}"
/>
<chmod
perm=
"777"
dir=
"${srcdir}"
></chmod>
<mkdir
dir=
"${OutputPath}"
/>
<chmod
perm=
"777"
dir=
"${OutputPath}"
></chmod>
</target>
<target
name=
"unzipSource"
depends=
"init"
>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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