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
ec26e07a
Commit
ec26e07a
authored
Dec 21, 2015
by
Antoine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input and output files now automaticaly created and updated
parent
f00cf78f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
lexique_to_opale/README.md
lexique_to_opale/README.md
+0
-1
lexique_to_opale/input/sample.scar
lexique_to_opale/input/sample.scar
+0
-0
lexique_to_opale/lexique_to_opale.ant
lexique_to_opale/lexique_to_opale.ant
+11
-2
No files found.
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
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