[Pkg-ocaml-maint-commits] [js-of-ocaml] branch upstream updated (e03f7be -> a5a12c6)

Stéphane Glondu glondu at moszumanska.debian.org
Tue Jun 17 10:35:12 UTC 2014


This is an automated email from the git hooks/post-receive script.

glondu pushed a change to branch upstream
in repository js-of-ocaml.

      from  e03f7be   Imported Upstream version 1.4
       new  0e2fdb5   Imported Upstream version 2.00
       new  d7c7529   Imported Upstream version 2.1
       new  a5a12c6   Imported Upstream version 2.2

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |    18 +
 .ocp-indent                                        |     2 +
 CHANGES                                            |    93 +-
 Makefile                                           |    40 +-
 Makefile.conf                                      |    19 +-
 Makefile.filelist                                  |    36 +-
 Makefile.toplevel                                  |    30 +
 README                                             |    81 -
 README.md                                          |   104 +
 TODO.txt                                           |    77 +-
 VERSION                                            |     2 +-
 benchmarks/Makefile                                |   202 +
 benchmarks/lib/common.ml                           |   183 +
 benchmarks/lib/remove_comments.pl                  |     5 +
 benchmarks/report-compiletime.config               |     7 +
 benchmarks/report-js.config                        |     2 +
 benchmarks/report-nativejs.config                  |     2 +
 benchmarks/report-size-ocamljs.config              |     2 +
 benchmarks/report-size-optim.config                |     8 +
 benchmarks/report-size.config                      |    17 +
 benchmarks/report-time-ocamljs.config              |     2 +
 benchmarks/report-time-optim.config                |     3 +
 benchmarks/report-time.config                      |     6 +
 benchmarks/report.config.sample                    |     6 +
 benchmarks/report.ml                               |   480 +
 benchmarks/run.config                              |     4 +
 benchmarks/run.config.sample                       |     3 +
 benchmarks/run.ml                                  |   265 +
 benchmarks/sources/js/bdd.js                       |   280 +
 benchmarks/sources/js/bdd_lists.js                 |   287 +
 benchmarks/sources/js/binary_trees.js              |    51 +
 benchmarks/sources/js/fannkuch_redux.js            |    51 +
 benchmarks/sources/js/fft.js                       |   178 +
 benchmarks/sources/js/fib.js                       |     7 +
 benchmarks/sources/js/loop.js                      |     5 +
 benchmarks/sources/js/raytrace.js                  |   908 +
 benchmarks/sources/js/splay.js                     |   393 +
 benchmarks/sources/ml/almabench.ml                 |   324 +
 benchmarks/sources/ml/bdd.ml                       |   235 +
 benchmarks/sources/ml/binary_trees.ml              |    50 +
 benchmarks/sources/ml/boyer.ml                     |   914 +
 benchmarks/sources/ml/boyer_no_exc.ml              |   921 +
 benchmarks/sources/ml/fannkuch_redux.ml            |    67 +
 benchmarks/sources/ml/fannkuch_redux_2.ml          |    74 +
 benchmarks/sources/ml/fft.ml                       |   192 +
 benchmarks/sources/ml/fib.ml                       |    25 +
 benchmarks/sources/ml/hamming.ml                   |   107 +
 benchmarks/sources/ml/kb.ml                        |   590 +
 benchmarks/sources/ml/kb_no_exc.ml                 |   632 +
 benchmarks/sources/ml/loop.ml                      |     1 +
 benchmarks/sources/ml/nucleic.ml                   |  3241 ++
 benchmarks/sources/ml/quicksort.ml                 |    92 +
 benchmarks/sources/ml/raytrace.ml                  |   498 +
 benchmarks/sources/ml/soli.ml                      |   116 +
 benchmarks/sources/ml/splay.ml                     |   255 +
 benchmarks/sources/ml/takc.ml                      |    26 +
 benchmarks/sources/ml/taku.ml                      |    22 +
 compiler/.depend                                   |   199 +-
 compiler/Makefile                                  |    85 +-
 compiler/{tailcall.mli => annot_lexer.mli}         |     5 +-
 compiler/{deadcode.mli => annot_lexer.mll}         |    37 +-
 compiler/annot_parser.mly                          |    67 +
 compiler/code.ml                                   |   212 +-
 compiler/code.mli                                  |    42 +-
 compiler/compile.ml                                |   211 +
 compiler/{tailcall.mli => compiler_version.mli}    |     5 +-
 compiler/deadcode.ml                               |     8 +-
 compiler/deadcode.mli                              |     2 -
 compiler/driver.ml                                 |   372 +-
 compiler/driver.mli                                |    11 +-
 compiler/eval.ml                                   |   237 +
 compiler/{tailcall.mli => eval.mli}                |     5 +-
 compiler/flow.ml                                   |   290 +-
 compiler/flow.mli                                  |    22 +-
 compiler/freevars.ml                               |     2 +-
 compiler/generate.ml                               |  1284 +-
 compiler/generate.mli                              |     5 +-
 compiler/inline.ml                                 |    53 +-
 compiler/instr.ml                                  |    50 +-
 compiler/instr.mli                                 |     7 +-
 compiler/javascript.ml                             |   164 +-
 compiler/javascript.mli                            |   111 +-
 compiler/js_assign.ml                              |   303 +
 compiler/{tailcall.mli => js_assign.mli}           |     4 +-
 compiler/js_lexer.mli                              |    24 +
 compiler/js_lexer.mll                              |   345 +
 compiler/js_output.ml                              |  1820 +-
 compiler/js_output.mli                             |     9 +-
 compiler/js_parser.mly                             |   796 +
 compiler/js_rename.ml                              |   175 -
 compiler/js_simpl.ml                               |   181 +-
 compiler/js_simpl.mli                              |    11 +-
 compiler/js_tailcall.ml                            |   187 +
 compiler/{pure_fun.mli => js_tailcall.mli}         |    15 +-
 compiler/js_token.ml                               |   294 +
 compiler/js_token.mli                              |    96 +
 compiler/js_traverse.ml                            |   791 +
 compiler/js_traverse.mli                           |    80 +
 compiler/linker.ml                                 |   407 +-
 compiler/linker.mli                                |    17 +-
 compiler/main.ml                                   |    99 -
 compiler/minify.ml                                 |   138 +
 compiler/option.ml                                 |   123 +
 compiler/option.mli                                |    64 +
 compiler/parse_bytecode.ml                         |  1820 +-
 compiler/parse_bytecode.mli                        |    10 +-
 compiler/parse_info.ml                             |   139 +
 compiler/{parse_bytecode.mli => parse_info.mli}    |    21 +-
 compiler/parse_js.ml                               |   170 +
 compiler/{flow.mli => parse_js.mli}                |    30 +-
 compiler/phisimpl.ml                               |     2 +-
 compiler/pretty_print.ml                           |    96 +-
 compiler/pretty_print.mli                          |    12 +-
 compiler/primitive.ml                              |    40 +-
 compiler/primitive.mli                             |    19 +-
 compiler/pseudoFs.ml                               |   123 +
 compiler/{deadcode.mli => pseudoFs.mli}            |     8 +-
 compiler/pure_fun.ml                               |     8 +-
 compiler/reserved.ml                               |   104 +
 compiler/{tailcall.mli => reserved.mli}            |     6 +-
 compiler/source_map.ml                             |   101 +
 compiler/{flow.mli => source_map.mli}              |    45 +-
 compiler/specialize.ml                             |    87 +
 compiler/{tailcall.mli => specialize.mli}          |     2 +-
 compiler/specialize_js.ml                          |   182 +
 compiler/{tailcall.mli => specialize_js.mli}       |     2 +-
 compiler/tailcall.ml                               |    21 +-
 compiler/util.ml                                   |   271 +-
 compiler/util.mli                                  |    45 +-
 compiler/varPrinter.ml                             |   141 +
 compiler/{js_output.mli => varPrinter.mli}         |    18 +-
 compiler/vlq64.ml                                  |   100 +
 compiler/{tailcall.mli => vlq64.mli}               |     5 +-
 doc/Makefile                                       |    35 +-
 doc/api-index                                      |    21 +-
 doc/api.odocl                                      |    26 +
 doc/manual-aux/boulderdash/boulderdash.js          |  2126 +-
 doc/manual-aux/boulderdash/index.html              |    18 +-
 doc/manual-aux/boulderdash/maps.txt                |     5 -
 doc/manual-aux/boulderdash/maps/level0.map         |     5 -
 doc/manual-aux/boulderdash/maps/level1.map         |     8 -
 doc/manual-aux/boulderdash/maps/level2.map         |     8 -
 doc/manual-aux/boulderdash/maps/level3.map         |     9 -
 doc/manual-aux/boulderdash/maps/level4.map         |    22 -
 doc/manual-aux/cubes/cubes.js                      |   989 +
 {examples => doc/manual-aux}/cubes/index.html      |     0
 doc/manual-aux/graph/jsviewer.js                   |   747 -
 doc/manual-aux/graph/scene.json                    | 10467 -------
 doc/manual-aux/{graph => graph_viewer}/index.html  |     0
 doc/manual-aux/graph_viewer/jsviewer.js            |  1532 +
 doc/manual-aux/hyperbolic/hypertree.js             |  1718 +
 .../manual-aux}/hyperbolic/icons/commons-38.png    |   Bin
 .../manual-aux}/hyperbolic/icons/favicon.png       |   Bin
 .../manual-aux}/hyperbolic/icons/globe-38.png      |   Bin
 .../manual-aux}/hyperbolic/icons/info-38.png       |   Bin
 .../hyperbolic/icons/meeting-point-38.png          |   Bin
 .../manual-aux}/hyperbolic/icons/wikipedia-38.png  |   Bin
 {examples => doc/manual-aux}/hyperbolic/index.html |     2 +-
 .../manual-aux}/minesweeper/index.html             |     0
 doc/manual-aux/minesweeper/minesweeper.js          |   437 +
 .../manual-aux}/minesweeper/sprites/1.png          |   Bin
 .../manual-aux}/minesweeper/sprites/2.png          |   Bin
 .../manual-aux}/minesweeper/sprites/3.png          |   Bin
 .../manual-aux}/minesweeper/sprites/4.png          |   Bin
 .../manual-aux}/minesweeper/sprites/5.png          |   Bin
 .../manual-aux}/minesweeper/sprites/6.png          |   Bin
 .../manual-aux}/minesweeper/sprites/7.png          |   Bin
 .../manual-aux}/minesweeper/sprites/8.png          |   Bin
 .../manual-aux}/minesweeper/sprites/bomb.png       |   Bin
 .../manual-aux}/minesweeper/sprites/empty.png      |   Bin
 .../manual-aux}/minesweeper/sprites/flag.png       |   Bin
 .../manual-aux}/minesweeper/sprites/normal.png     |   Bin
 .../manual-aux}/minesweeper/sprites/scalable.svg   |     0
 doc/manual-aux/planet/planet.js                    |  3875 +--
 doc/manual-aux/toplevel/index.html                 |   169 +-
 doc/manual-aux/toplevel/toplevel.js                | 31224 +++++++++++++++++--
 doc/manual-aux/webgl/index.html                    |     2 +-
 doc/manual-aux/webgl/monkey.model                  |  1978 --
 doc/manual-aux/webgl/webgl.js                      |  3603 ---
 doc/manual-aux/webgl/webgldemo.js                  |  1337 +
 doc/manual-aux/wiki/index.html                     |    19 +-
 doc/manual-aux/wiki/wiki.js                        |  4771 +--
 {examples => doc/manual-aux}/wysiwyg/index.html    |     0
 doc/manual-aux/wysiwyg/wiki.js                     |   949 +
 doc/manual-wiki/bindings.wiki                      |    28 +-
 doc/manual-wiki/boulderdash.wiki                   |     1 -
 doc/manual-wiki/library.wiki                       |    51 +-
 doc/manual-wiki/linker.wiki                        |    48 +
 doc/manual-wiki/menu.wiki                          |     8 +-
 doc/manual-wiki/ocamlbuild.wiki                    |    37 +
 doc/manual-wiki/options.wiki                       |    48 +
 doc/manual-wiki/overview.wiki                      |    58 +-
 doc/manual-wiki/wiki.wiki                          |     3 -
 examples/boulderdash/Makefile                      |     2 +-
 examples/boulderdash/boulderdash.ml                |    11 +-
 examples/cubes/cubes.ml                            |     2 +-
 examples/graph_viewer/Makefile                     |     3 +-
 examples/graph_viewer/viewer_js.ml                 |    10 +-
 examples/hyperbolic/Makefile                       |     2 +-
 examples/hyperbolic/hypertree.ml                   |    31 +-
 examples/hyperbolic/index.html                     |     2 +-
 examples/hyperbolic/index2.html                    |     4 +-
 examples/index.html                                |     5 +
 examples/planet/Makefile                           |     2 -
 examples/planet/planet.ml                          |     8 +-
 examples/webgl/Makefile                            |     2 +-
 examples/webgl/webgldemo.ml                        |    45 +-
 examples/wiki/Makefile                             |     7 +-
 examples/wiki/main.ml                              |     7 +-
 examples/wiki/test.ml                              |    30 +
 examples/wiki/wiki_syntax.ml                       |    13 +-
 examples/wiki/wikicreole.mll                       |    15 +-
 examples/wysiwyg/Makefile                          |     4 +-
 js_of_ocaml.install                                |     4 +
 lib/.depend                                        |    28 +-
 lib/META                                           |    39 +-
 lib/Makefile                                       |    55 +-
 lib/{CSS.ml => cSS.ml}                             |     0
 lib/{CSS.mli => cSS.mli}                           |     0
 lib/deriving_json/deriving_Json.ml                 |    31 +-
 lib/deriving_json/deriving_Json.mli                |    61 +-
 lib/deriving_json/deriving_Json_lexer.mli          |     2 +
 lib/deriving_json/deriving_Json_lexer.mll          |    81 +-
 lib/dom.ml                                         |    15 +-
 lib/dom.mli                                        |    14 +-
 lib/dom_html.ml                                    |   155 +-
 lib/dom_html.mli                                   |   114 +-
 lib/file.ml                                        |     3 +-
 lib/file.mli                                       |     4 +-
 lib/form.ml                                        |     5 +-
 lib/form.mli                                       |     1 +
 lib/graphics/graphics_js.ml                        |   129 +
 lib/graphics/graphics_js.mli                       |    62 +
 lib/js.ml                                          |   128 +-
 lib/js.mli                                         |   140 +-
 lib/json.mli                                       |     5 +-
 lib/lwt_js_events.ml                               |    39 +
 lib/lwt_js_events.mli                              |    45 +
 lib/regexp.ml                                      |    20 +-
 lib/regexp.mli                                     |    15 +-
 lib/syntax/pa_deriving_Json.ml                     |    21 +-
 lib/syntax/pa_deriving_Json.mli                    |    49 +
 lib/syntax/pa_js.ml                                |    97 +-
 lib/sys_js.mli                                     |    55 +
 lib/sys_js.mlp                                     |    44 +
 lib/typed_array.ml                                 |    70 +-
 lib/typed_array.mli                                |    61 +-
 lib/url.ml                                         |    15 +-
 lib/url.mli                                        |     5 +-
 lib/webGL.ml                                       |   145 +-
 lib/webGL.mli                                      |   133 +-
 lib/webSockets.ml                                  |     4 +-
 lib/webSockets.mli                                 |     4 +-
 lib/xmlHttpRequest.ml                              |    62 +-
 lib/xmlHttpRequest.mli                             |    11 +-
 ocamlbuild/.merlin                                 |     3 +
 ocamlbuild/Makefile                                |    10 +
 ocamlbuild/_tags                                   |     1 +
 ocamlbuild/ocamlbuild_js_of_ocaml.ml               |    92 +
 ocamlbuild/ocamlbuild_js_of_ocaml.mli              |    57 +
 opam/descr                                         |     1 +
 opam/opam                                          |    21 +
 opam/url                                           |     1 +
 runtime/Makefile                                   |    13 +-
 runtime/bigarray.js                                |   561 +
 runtime/bigarray.ts                                |   521 +
 runtime/classlist.js                               |   176 +
 runtime/fs.js                                      |   246 +
 runtime/gc.js                                      |    10 +
 runtime/graphics.js                                |   457 +
 runtime/ieee_754.js                                |     2 +-
 runtime/int64.js                                   |     2 +-
 runtime/internalMod.js                             |    47 +
 runtime/io.js                                      |   353 +
 runtime/jslib.js                                   |    49 +-
 runtime/jslib_js_of_ocaml.js                       |    30 +-
 runtime/json.js                                    |    11 +-
 runtime/{marshall.js => marshal.js}                |    56 +-
 runtime/md5.js                                     |    17 +-
 runtime/mlString.js                                |    51 +-
 runtime/parsing.js                                 |     8 +-
 runtime/stdlib.js                                  |   264 +-
 runtime/toplevel.js                                |    70 +
 runtime/unix.js                                    |    44 +
 tests/.gitignore                                   |     2 +
 tests/Makefile                                     |    28 +
 tests/Makefile.common                              |    17 +
 tests/common.ml                                    |    55 +
 .../graph_viewer/main.ml => tests/dir/closure1.ml  |    34 +-
 .../dot_file.ml => tests/dir/css_angle.ml          |    53 +-
 tests/dir/css_color.ml                             |    57 +
 tests/dir/css_length.ml                            |    63 +
 tests/dir/json_convert.ml                          |    84 +
 tests/dir/regexp1.ml                               |    69 +
 .../graph_viewer/main.ml => tests/dir/tailcall.ml  |    25 +-
 tests/dir/time_PDT_minus8.ml                       |    62 +
 .../graph_viewer/dot_file.ml => tests/dir/url1.ml  |    41 +-
 tests/file/unix.js                                 |     6 +
 {examples/cubes => tests}/index.html               |     4 +-
 tools/emacs-format-js.el                           |    30 +
 tools/emacs-format-ocaml.el                        |    24 +
 tools/format-js.sh                                 |     9 +
 tools/format-ocaml.sh                              |    12 +
 tools/linguist.rb                                  |     4 +
 toplevel/.depend                                   |    11 +-
 toplevel/Makefile                                  |    58 +-
 toplevel/errors.mli                                |     5 -
 toplevel/examples.ml                               |    80 +
 toplevel/index.html                                |   170 +-
 toplevel/server.ml                                 |    52 +
 toplevel/toplevel.ml                               |   628 +-
 toplevel/toplevel_runtime.js                       |   148 -
 312 files changed, 67938 insertions(+), 30961 deletions(-)
 create mode 100644 .ocp-indent
 create mode 100644 Makefile.toplevel
 delete mode 100644 README
 create mode 100644 README.md
 create mode 100644 benchmarks/Makefile
 create mode 100644 benchmarks/lib/common.ml
 create mode 100755 benchmarks/lib/remove_comments.pl
 create mode 100644 benchmarks/report-compiletime.config
 create mode 100644 benchmarks/report-js.config
 create mode 100644 benchmarks/report-nativejs.config
 create mode 100644 benchmarks/report-size-ocamljs.config
 create mode 100644 benchmarks/report-size-optim.config
 create mode 100644 benchmarks/report-size.config
 create mode 100644 benchmarks/report-time-ocamljs.config
 create mode 100644 benchmarks/report-time-optim.config
 create mode 100644 benchmarks/report-time.config
 create mode 100644 benchmarks/report.config.sample
 create mode 100755 benchmarks/report.ml
 create mode 100644 benchmarks/run.config
 create mode 100644 benchmarks/run.config.sample
 create mode 100755 benchmarks/run.ml
 create mode 100644 benchmarks/sources/js/bdd.js
 create mode 100644 benchmarks/sources/js/bdd_lists.js
 create mode 100644 benchmarks/sources/js/binary_trees.js
 create mode 100644 benchmarks/sources/js/fannkuch_redux.js
 create mode 100644 benchmarks/sources/js/fft.js
 create mode 100644 benchmarks/sources/js/fib.js
 create mode 100644 benchmarks/sources/js/loop.js
 create mode 100644 benchmarks/sources/js/raytrace.js
 create mode 100644 benchmarks/sources/js/splay.js
 create mode 100644 benchmarks/sources/ml/almabench.ml
 create mode 100644 benchmarks/sources/ml/bdd.ml
 create mode 100644 benchmarks/sources/ml/binary_trees.ml
 create mode 100644 benchmarks/sources/ml/boyer.ml
 create mode 100644 benchmarks/sources/ml/boyer_no_exc.ml
 create mode 100644 benchmarks/sources/ml/fannkuch_redux.ml
 create mode 100644 benchmarks/sources/ml/fannkuch_redux_2.ml
 create mode 100644 benchmarks/sources/ml/fft.ml
 create mode 100644 benchmarks/sources/ml/fib.ml
 create mode 100644 benchmarks/sources/ml/hamming.ml
 create mode 100644 benchmarks/sources/ml/kb.ml
 create mode 100644 benchmarks/sources/ml/kb_no_exc.ml
 create mode 100644 benchmarks/sources/ml/loop.ml
 create mode 100644 benchmarks/sources/ml/nucleic.ml
 create mode 100644 benchmarks/sources/ml/quicksort.ml
 create mode 100644 benchmarks/sources/ml/raytrace.ml
 create mode 100644 benchmarks/sources/ml/soli.ml
 create mode 100644 benchmarks/sources/ml/splay.ml
 create mode 100644 benchmarks/sources/ml/takc.ml
 create mode 100644 benchmarks/sources/ml/taku.ml
 copy compiler/{tailcall.mli => annot_lexer.mli} (86%)
 copy compiler/{deadcode.mli => annot_lexer.mll} (51%)
 create mode 100644 compiler/annot_parser.mly
 create mode 100644 compiler/compile.ml
 copy compiler/{tailcall.mli => compiler_version.mli} (91%)
 create mode 100644 compiler/eval.ml
 copy compiler/{tailcall.mli => eval.mli} (86%)
 create mode 100644 compiler/js_assign.ml
 copy compiler/{tailcall.mli => js_assign.mli} (86%)
 create mode 100644 compiler/js_lexer.mli
 create mode 100644 compiler/js_lexer.mll
 create mode 100644 compiler/js_parser.mly
 delete mode 100644 compiler/js_rename.ml
 create mode 100644 compiler/js_tailcall.ml
 copy compiler/{pure_fun.mli => js_tailcall.mli} (73%)
 create mode 100644 compiler/js_token.ml
 create mode 100644 compiler/js_token.mli
 create mode 100644 compiler/js_traverse.ml
 create mode 100644 compiler/js_traverse.mli
 delete mode 100644 compiler/main.ml
 create mode 100644 compiler/minify.ml
 create mode 100644 compiler/option.ml
 create mode 100644 compiler/option.mli
 create mode 100644 compiler/parse_info.ml
 copy compiler/{parse_bytecode.mli => parse_info.mli} (69%)
 create mode 100644 compiler/parse_js.ml
 copy compiler/{flow.mli => parse_js.mli} (56%)
 create mode 100644 compiler/pseudoFs.ml
 copy compiler/{deadcode.mli => pseudoFs.mli} (80%)
 create mode 100644 compiler/reserved.ml
 copy compiler/{tailcall.mli => reserved.mli} (86%)
 create mode 100644 compiler/source_map.ml
 copy compiler/{flow.mli => source_map.mli} (64%)
 create mode 100644 compiler/specialize.ml
 copy compiler/{tailcall.mli => specialize.mli} (94%)
 create mode 100644 compiler/specialize_js.ml
 copy compiler/{tailcall.mli => specialize_js.mli} (94%)
 create mode 100644 compiler/varPrinter.ml
 copy compiler/{js_output.mli => varPrinter.mli} (70%)
 create mode 100644 compiler/vlq64.ml
 copy compiler/{tailcall.mli => vlq64.mli} (86%)
 create mode 100644 doc/api.odocl
 delete mode 100644 doc/manual-aux/boulderdash/maps.txt
 delete mode 100644 doc/manual-aux/boulderdash/maps/level0.map
 delete mode 100644 doc/manual-aux/boulderdash/maps/level1.map
 delete mode 100644 doc/manual-aux/boulderdash/maps/level2.map
 delete mode 100644 doc/manual-aux/boulderdash/maps/level3.map
 delete mode 100644 doc/manual-aux/boulderdash/maps/level4.map
 create mode 100644 doc/manual-aux/cubes/cubes.js
 copy {examples => doc/manual-aux}/cubes/index.html (100%)
 delete mode 100644 doc/manual-aux/graph/jsviewer.js
 delete mode 100644 doc/manual-aux/graph/scene.json
 rename doc/manual-aux/{graph => graph_viewer}/index.html (100%)
 create mode 100644 doc/manual-aux/graph_viewer/jsviewer.js
 create mode 100644 doc/manual-aux/hyperbolic/hypertree.js
 copy {examples => doc/manual-aux}/hyperbolic/icons/commons-38.png (100%)
 copy {examples => doc/manual-aux}/hyperbolic/icons/favicon.png (100%)
 copy {examples => doc/manual-aux}/hyperbolic/icons/globe-38.png (100%)
 copy {examples => doc/manual-aux}/hyperbolic/icons/info-38.png (100%)
 copy {examples => doc/manual-aux}/hyperbolic/icons/meeting-point-38.png (100%)
 copy {examples => doc/manual-aux}/hyperbolic/icons/wikipedia-38.png (100%)
 copy {examples => doc/manual-aux}/hyperbolic/index.html (100%)
 copy {examples => doc/manual-aux}/minesweeper/index.html (100%)
 create mode 100644 doc/manual-aux/minesweeper/minesweeper.js
 copy {examples => doc/manual-aux}/minesweeper/sprites/1.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/2.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/3.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/4.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/5.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/6.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/7.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/8.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/bomb.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/empty.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/flag.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/normal.png (100%)
 copy {examples => doc/manual-aux}/minesweeper/sprites/scalable.svg (100%)
 delete mode 100644 doc/manual-aux/webgl/monkey.model
 delete mode 100644 doc/manual-aux/webgl/webgl.js
 create mode 100644 doc/manual-aux/webgl/webgldemo.js
 copy {examples => doc/manual-aux}/wysiwyg/index.html (100%)
 create mode 100644 doc/manual-aux/wysiwyg/wiki.js
 delete mode 100644 doc/manual-wiki/boulderdash.wiki
 create mode 100644 doc/manual-wiki/linker.wiki
 create mode 100644 doc/manual-wiki/ocamlbuild.wiki
 create mode 100644 doc/manual-wiki/options.wiki
 delete mode 100644 doc/manual-wiki/wiki.wiki
 create mode 100644 examples/wiki/test.ml
 create mode 100644 js_of_ocaml.install
 rename lib/{CSS.ml => cSS.ml} (100%)
 rename lib/{CSS.mli => cSS.mli} (100%)
 create mode 100644 lib/graphics/graphics_js.ml
 create mode 100644 lib/graphics/graphics_js.mli
 create mode 100644 lib/syntax/pa_deriving_Json.mli
 create mode 100644 lib/sys_js.mli
 create mode 100644 lib/sys_js.mlp
 create mode 100644 ocamlbuild/.merlin
 create mode 100644 ocamlbuild/Makefile
 create mode 100644 ocamlbuild/_tags
 create mode 100644 ocamlbuild/ocamlbuild_js_of_ocaml.ml
 create mode 100644 ocamlbuild/ocamlbuild_js_of_ocaml.mli
 create mode 100644 opam/descr
 create mode 100644 opam/opam
 create mode 100644 opam/url
 create mode 100644 runtime/bigarray.js
 create mode 100644 runtime/bigarray.ts
 create mode 100644 runtime/classlist.js
 create mode 100644 runtime/fs.js
 create mode 100644 runtime/gc.js
 create mode 100644 runtime/graphics.js
 create mode 100644 runtime/internalMod.js
 create mode 100644 runtime/io.js
 rename runtime/{marshall.js => marshal.js} (88%)
 create mode 100644 runtime/toplevel.js
 create mode 100644 runtime/unix.js
 create mode 100644 tests/.gitignore
 create mode 100644 tests/Makefile
 create mode 100644 tests/Makefile.common
 create mode 100644 tests/common.ml
 copy examples/graph_viewer/main.ml => tests/dir/closure1.ml (55%)
 copy examples/graph_viewer/dot_file.ml => tests/dir/css_angle.ml (51%)
 create mode 100644 tests/dir/css_color.ml
 create mode 100644 tests/dir/css_length.ml
 create mode 100644 tests/dir/json_convert.ml
 create mode 100644 tests/dir/regexp1.ml
 copy examples/graph_viewer/main.ml => tests/dir/tailcall.ml (65%)
 create mode 100644 tests/dir/time_PDT_minus8.ml
 copy examples/graph_viewer/dot_file.ml => tests/dir/url1.ml (52%)
 create mode 100644 tests/file/unix.js
 copy {examples/cubes => tests}/index.html (73%)
 create mode 100644 tools/emacs-format-js.el
 create mode 100644 tools/emacs-format-ocaml.el
 create mode 100755 tools/format-js.sh
 create mode 100755 tools/format-ocaml.sh
 create mode 100644 tools/linguist.rb
 delete mode 100644 toplevel/errors.mli
 create mode 100644 toplevel/examples.ml
 create mode 100644 toplevel/server.ml
 delete mode 100644 toplevel/toplevel_runtime.js

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ocaml-maint/packages/js-of-ocaml.git



More information about the Pkg-ocaml-maint-commits mailing list