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
da862184
Commit
da862184
authored
Dec 21, 2015
by
Antoine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input and output folders now automaticaly created
parent
0cc270f4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
optim_to_lexique/README.md
optim_to_lexique/README.md
+0
-1
optim_to_lexique/input/sample.scar
optim_to_lexique/input/sample.scar
+0
-0
optim_to_lexique/optim_to_lexique.ant
optim_to_lexique/optim_to_lexique.ant
+9
-1
No files found.
optim_to_lexique/README.md
View file @
da862184
# Converter optim_to_lexique
In order to use this converter, follow those steps :
0.
Create input and output dir
1.
Copy your Optim files (.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 name of the output files depends of the hour it was processed.
optim_to_lexique/input/sample.scar
0 → 100644
View file @
da862184
File added
optim_to_lexique/optim_to_lexique.ant
View file @
da862184
...
...
@@ -16,8 +16,16 @@
</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}"
/>
...
...
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