Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ jobs:

- run: opam install . --deps-only

- run: opam exec -- make
- run: opam exec -- dune build @install
9 changes: 1 addition & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
.depend
_client
_deps
_server
lib
_opam
doc/client
doc/server
_build
19 changes: 0 additions & 19 deletions META.in

This file was deleted.

228 changes: 0 additions & 228 deletions Makefile

This file was deleted.

62 changes: 0 additions & 62 deletions Makefile.options

This file was deleted.

1 change: 1 addition & 0 deletions dune
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(vendored_dirs ocsigen-dune-rules)
42 changes: 42 additions & 0 deletions dune-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
(lang dune 3.18)

(name ocsigen-toolkit)

(generate_opam_files true)

(source
(github ocsigen/ocsigen-toolkit))

(homepage "http://www.ocsigen.org")

(authors "[email protected]")

(maintainers "[email protected]")

(license "LGPL-2.1-only WITH OCaml-LGPL-linking-exception")

(maintenance_intent "(latest)")

(dialect
(name "eliom-server")
(implementation
(extension "eliom"))
(interface
(extension "eliomi")))

(package
(name ocsigen-toolkit)
(synopsis
"Reusable UI components for Eliom applications (client only, or client-server)")
(description
"The Ocsigen Toolkit is a set of user interface widgets that facilitate the development of Eliom applications.")
(depends
(ocaml
(>= "4.08.0"))
(js_of_ocaml
(>= "6.0.0"))
(eliom
(>= "11.0.0"))
(calendar
(>= "2.0.0"))
cmdliner))
1 change: 1 addition & 0 deletions ocsigen-dune-rules/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_build
1 change: 1 addition & 0 deletions ocsigen-dune-rules/.ocamlformat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version = 0.28.1
21 changes: 21 additions & 0 deletions ocsigen-dune-rules/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# MIT License

Copyright (c) 2026 Tarides, Jules Aguillon

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading
Loading