Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Why3
why3
Commits
5cae7968
Commit
5cae7968
authored
Mar 30, 2014
by
MARCHE Claude
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
why3session html: output file is now why3session.html
parent
ba9543a2
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
5 deletions
+13
-5
CHANGES
CHANGES
+4
-0
Makefile.in
Makefile.in
+4
-4
doc/manpages.tex
doc/manpages.tex
+4
-0
src/why3session/why3session_html.ml
src/why3session/why3session_html.ml
+1
-1
No files found.
CHANGES
View file @
5cae7968
* marks an incompatible change
tools
* file generated by "why3session html f.mlw" is now
"f/why3session.html" and not "f/f.html"
library
* renamed array.ArraySorted -> array.IntArraySorted
array.ArraySorted is now generic, with type and order relation parameters
...
...
Makefile.in
View file @
5cae7968
...
...
@@ -458,10 +458,10 @@ gallery::
why3session html
$$
x
;
\
echo
"exporting
$$
f"
;
\
mkdir
-p
$(GALLERYDIR)
/
$$
f
;
\
cp
examples/
$$
f.mlw examples/
$$
f/
$$
f
.html
$(GALLERYDIR)
/
$$
f/
;
\
cp
examples/
$$
f.mlw examples/
$$
f/
why3session
.html
$(GALLERYDIR)
/
$$
f/
;
\
rm
-f
$(GALLERYDIR)
/
$$
f/
$$
f.zip
;
\
cd
examples/
;
\
zip
-r
$(GALLERYDIR)
/
$$
f/
$$
f.zip
$$
f.mlw
$$
f/
$$
f.html
$$
f
;
\
zip
-r
$(GALLERYDIR)
/
$$
f/
$$
f.zip
$$
f.mlw
$$
f
;
\
cd
..
;
\
done
...
...
@@ -475,10 +475,10 @@ gallery::
mkdir
-p
$(GALLERYDIR)
/
$$
f
;
\
if
test
-f
examples/
$$
f.mlw
;
then
cp
examples/
$$
f.mlw
$(GALLERYDIR)
/
$$
f/
;
fi
;
\
if
test
-f
examples/
$$
f.why
;
then
cp
examples/
$$
f.why
$(GALLERYDIR)
/
$$
f/
;
fi
;
\
cp
examples/
$$
f/
$$
f
.html
$(GALLERYDIR)
/
$$
f/
;
\
cp
examples/
$$
f/
why3session
.html
$(GALLERYDIR)
/
$$
f/
;
\
rm
-f
$(GALLERYDIR)
/
$$
f/
$$
f.zip
;
\
cd
examples/
;
\
zip
-r
$(GALLERYDIR)
/
$$
f/
$$
f.zip
$$
f.mlw
$$
f
/
$$
f.html
$$
f
zip
-r
$(GALLERYDIR)
/
$$
f/
$$
f.zip
$$
f.mlw
$$
f
########
# XML DTD validation
...
...
doc/manpages.tex
View file @
5cae7968
...
...
@@ -844,6 +844,10 @@ This command produces a summary of the proof session in HTML syntax.
There are three styles of output: `table', `simpletree', and
`jstree'. The default is `table'.
The file generated is named
\texttt
{
why3session.html
}
and is written
in the session directory by default (see option
\texttt
{
-o
}
to
override this default).
\begin{figure}
[t]
%BEGIN LATEX
\begin{center}
...
...
src/why3session/why3session_html.ml
View file @
5cae7968
...
...
@@ -78,7 +78,7 @@ let run_file (context : context) print_session fname =
let
basename
=
Filename
.
basename
project_dir
in
let
cout
=
if
output_dir
=
"-"
then
stdout
else
open_out
(
Filename
.
concat
output_dir
(
basename
^
"
.html"
))
open_out
(
Filename
.
concat
output_dir
(
"why3session
.html"
))
in
let
fmt
=
formatter_of_out_channel
cout
in
if
!
opt_context
...
...
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