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
Why3
why3
Commits
5cae7968
Commit
5cae7968
authored
Mar 30, 2014
by
MARCHE Claude
Browse files
why3session html: output file is now why3session.html
parent
ba9543a2
Changes
4
Hide whitespace changes
Inline
Side-by-side
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
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