├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── .ocamlformat ├── .ocp-indent ├── CHANGES ├── CODE_OF_CONDUCT.md ├── LICENSE ├── META.in ├── Makefile ├── Makefile.options ├── README.md ├── doc ├── index.wiki ├── indexdoc.client └── indexdoc.server ├── opam ├── pull_request_template.md ├── scripts ├── 2distillery.sh ├── 2var.sh ├── install.sh └── uninstall.sh ├── src ├── os_comet.eliom ├── os_comet.eliomi ├── os_connect_phone.eliom ├── os_connect_phone.eliomi ├── os_core_db.ml ├── os_core_db.mli ├── os_current_user.eliom ├── os_current_user.eliomi ├── os_date.eliom ├── os_date.eliomi ├── os_db.ml ├── os_db.mli ├── os_db.ppx.ml ├── os_email.eliom ├── os_email.eliomi ├── os_fcm_notif.eliom ├── os_fcm_notif.eliomi ├── os_group.ml ├── os_group.mli ├── os_handlers.eliom ├── os_handlers.eliomi ├── os_icons.eliom ├── os_icons.eliomi ├── os_lib.eliom ├── os_lib.eliomi ├── os_msg.eliom ├── os_msg.eliomi ├── os_notif.eliom ├── os_notif.eliomi ├── os_page.eliom ├── os_page.eliomi ├── os_platform.eliom ├── os_platform.eliomi ├── os_request_cache.eliom ├── os_request_cache.eliomi ├── os_services.eliom ├── os_services.eliomi ├── os_session.eliom ├── os_session.eliomi ├── os_tips.eliom ├── os_tips.eliomi ├── os_types.eliom ├── os_types.eliomi ├── os_uploader.eliom ├── os_uploader.eliomi ├── os_user.eliom ├── os_user.eliomi ├── os_user_proxy.eliom ├── os_user_proxy.eliomi ├── os_user_view.eliom └── os_user_view.eliomi ├── template.distillery ├── .eliomignore ├── .eliomreserve ├── .eliomverbatim ├── .gitignore ├── .ocamlformat ├── .ocp-indent ├── LICENSE ├── Makefile ├── Makefile.db ├── Makefile.local.example ├── Makefile.mobile ├── Makefile.options ├── Makefile.os ├── Makefile.style ├── PROJECT_NAME.conf.in ├── PROJECT_NAME.eliom ├── PROJECT_NAME.opam ├── PROJECT_NAME.sql ├── PROJECT_NAME_base.eliom ├── PROJECT_NAME_config.eliom ├── PROJECT_NAME_config.eliomi ├── PROJECT_NAME_container.eliom ├── PROJECT_NAME_container.eliomi ├── PROJECT_NAME_drawer.eliom ├── PROJECT_NAME_handlers.eliom ├── PROJECT_NAME_handlers.eliomi ├── PROJECT_NAME_icons.eliom ├── PROJECT_NAME_language.eliom ├── PROJECT_NAME_language.eliomi ├── PROJECT_NAME_main.eliom ├── PROJECT_NAME_mobile.eliom ├── PROJECT_NAME_mobile.eliomi ├── PROJECT_NAME_page.eliom ├── PROJECT_NAME_page.eliomi ├── PROJECT_NAME_phone_connect.eliom ├── PROJECT_NAME_services.eliom ├── PROJECT_NAME_services.eliomi ├── PROJECT_NAME_settings.eliom ├── PROJECT_NAME_static_config.eliom.in ├── README.md ├── assets!PROJECT_NAME_Demo_i18n.tsv ├── assets!PROJECT_NAME_i18n.tsv ├── assets!images!icon.png ├── demo.eliom ├── demo_cache.eliom ├── demo_calendar.eliom ├── demo_carousel1.eliom ├── demo_carousel2.eliom ├── demo_carousel3.eliom ├── demo_i18n.eliom ├── demo_links.eliom ├── demo_notif.eliom ├── demo_pagetransition.eliom ├── demo_pgocaml.eliom ├── demo_pgocaml_db.ml ├── demo_popup.eliom ├── demo_pulltorefresh.eliom ├── demo_react.eliom ├── demo_ref.eliom ├── demo_rpc.eliom ├── demo_services.eliom ├── demo_spinner.eliom ├── demo_timepicker.eliom ├── demo_tips.eliom ├── demo_tongue.eliom ├── demo_tools.eliom ├── demo_users.eliom ├── dune ├── dune-project ├── dune.config ├── mobile!.chcpignore ├── mobile!chcp.json.in ├── mobile!config.xml.in ├── mobile!eliom.html.in ├── mobile!eliom_loader.ml ├── mobile!index.html.in ├── mobile!res!.gitignore ├── mobile!www!css!index.css ├── mobile!www!img!logo.png ├── sass!PROJECT_NAME.scss ├── sass!demo.scss ├── sass!os.scss ├── static!css!font-awesome.min.css ├── static!defaultcss!demo.css ├── static!defaultcss!os.css ├── static!fonts!FontAwesome.otf ├── static!fonts!fontawesome-webfont.eot ├── static!fonts!fontawesome-webfont.svg ├── static!fonts!fontawesome-webfont.ttf ├── static!fonts!fontawesome-webfont.woff ├── static!fonts!fontawesome-webfont.woff2 ├── static!images!ocsigen.png ├── tools!check_modules.ml ├── tools!dune ├── tools!gen_dune.ml └── tools!sort_deps.ml └── tools └── sort_deps.ml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/.ocamlformat -------------------------------------------------------------------------------- /.ocp-indent: -------------------------------------------------------------------------------- 1 | normal 2 | with=0 3 | syntax=lwt mll 4 | max_indent=2 5 | -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/CHANGES -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/LICENSE -------------------------------------------------------------------------------- /META.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/META.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/Makefile.options -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/README.md -------------------------------------------------------------------------------- /doc/index.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/doc/index.wiki -------------------------------------------------------------------------------- /doc/indexdoc.client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/doc/indexdoc.client -------------------------------------------------------------------------------- /doc/indexdoc.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/doc/indexdoc.server -------------------------------------------------------------------------------- /opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/opam -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /scripts/2distillery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/scripts/2distillery.sh -------------------------------------------------------------------------------- /scripts/2var.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/scripts/2var.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/scripts/uninstall.sh -------------------------------------------------------------------------------- /src/os_comet.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_comet.eliom -------------------------------------------------------------------------------- /src/os_comet.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_comet.eliomi -------------------------------------------------------------------------------- /src/os_connect_phone.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_connect_phone.eliom -------------------------------------------------------------------------------- /src/os_connect_phone.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_connect_phone.eliomi -------------------------------------------------------------------------------- /src/os_core_db.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_core_db.ml -------------------------------------------------------------------------------- /src/os_core_db.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_core_db.mli -------------------------------------------------------------------------------- /src/os_current_user.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_current_user.eliom -------------------------------------------------------------------------------- /src/os_current_user.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_current_user.eliomi -------------------------------------------------------------------------------- /src/os_date.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_date.eliom -------------------------------------------------------------------------------- /src/os_date.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_date.eliomi -------------------------------------------------------------------------------- /src/os_db.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_db.ml -------------------------------------------------------------------------------- /src/os_db.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_db.mli -------------------------------------------------------------------------------- /src/os_db.ppx.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_db.ppx.ml -------------------------------------------------------------------------------- /src/os_email.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_email.eliom -------------------------------------------------------------------------------- /src/os_email.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_email.eliomi -------------------------------------------------------------------------------- /src/os_fcm_notif.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_fcm_notif.eliom -------------------------------------------------------------------------------- /src/os_fcm_notif.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_fcm_notif.eliomi -------------------------------------------------------------------------------- /src/os_group.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_group.ml -------------------------------------------------------------------------------- /src/os_group.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_group.mli -------------------------------------------------------------------------------- /src/os_handlers.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_handlers.eliom -------------------------------------------------------------------------------- /src/os_handlers.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_handlers.eliomi -------------------------------------------------------------------------------- /src/os_icons.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_icons.eliom -------------------------------------------------------------------------------- /src/os_icons.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_icons.eliomi -------------------------------------------------------------------------------- /src/os_lib.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_lib.eliom -------------------------------------------------------------------------------- /src/os_lib.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_lib.eliomi -------------------------------------------------------------------------------- /src/os_msg.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_msg.eliom -------------------------------------------------------------------------------- /src/os_msg.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_msg.eliomi -------------------------------------------------------------------------------- /src/os_notif.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_notif.eliom -------------------------------------------------------------------------------- /src/os_notif.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_notif.eliomi -------------------------------------------------------------------------------- /src/os_page.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_page.eliom -------------------------------------------------------------------------------- /src/os_page.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_page.eliomi -------------------------------------------------------------------------------- /src/os_platform.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_platform.eliom -------------------------------------------------------------------------------- /src/os_platform.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_platform.eliomi -------------------------------------------------------------------------------- /src/os_request_cache.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_request_cache.eliom -------------------------------------------------------------------------------- /src/os_request_cache.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_request_cache.eliomi -------------------------------------------------------------------------------- /src/os_services.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_services.eliom -------------------------------------------------------------------------------- /src/os_services.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_services.eliomi -------------------------------------------------------------------------------- /src/os_session.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_session.eliom -------------------------------------------------------------------------------- /src/os_session.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_session.eliomi -------------------------------------------------------------------------------- /src/os_tips.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_tips.eliom -------------------------------------------------------------------------------- /src/os_tips.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_tips.eliomi -------------------------------------------------------------------------------- /src/os_types.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_types.eliom -------------------------------------------------------------------------------- /src/os_types.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_types.eliomi -------------------------------------------------------------------------------- /src/os_uploader.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_uploader.eliom -------------------------------------------------------------------------------- /src/os_uploader.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_uploader.eliomi -------------------------------------------------------------------------------- /src/os_user.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_user.eliom -------------------------------------------------------------------------------- /src/os_user.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_user.eliomi -------------------------------------------------------------------------------- /src/os_user_proxy.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_user_proxy.eliom -------------------------------------------------------------------------------- /src/os_user_proxy.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_user_proxy.eliomi -------------------------------------------------------------------------------- /src/os_user_view.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_user_view.eliom -------------------------------------------------------------------------------- /src/os_user_view.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/src/os_user_view.eliomi -------------------------------------------------------------------------------- /template.distillery/.eliomignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/.eliomignore -------------------------------------------------------------------------------- /template.distillery/.eliomreserve: -------------------------------------------------------------------------------- 1 | db 2 | local 3 | mobile 4 | options 5 | os 6 | demo 7 | style 8 | -------------------------------------------------------------------------------- /template.distillery/.eliomverbatim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/.eliomverbatim -------------------------------------------------------------------------------- /template.distillery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/.gitignore -------------------------------------------------------------------------------- /template.distillery/.ocamlformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/.ocamlformat -------------------------------------------------------------------------------- /template.distillery/.ocp-indent: -------------------------------------------------------------------------------- 1 | normal 2 | with=0 3 | syntax=lwt mll 4 | max_indent=2 5 | -------------------------------------------------------------------------------- /template.distillery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/LICENSE -------------------------------------------------------------------------------- /template.distillery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/Makefile -------------------------------------------------------------------------------- /template.distillery/Makefile.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/Makefile.db -------------------------------------------------------------------------------- /template.distillery/Makefile.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/Makefile.local.example -------------------------------------------------------------------------------- /template.distillery/Makefile.mobile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/Makefile.mobile -------------------------------------------------------------------------------- /template.distillery/Makefile.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/Makefile.options -------------------------------------------------------------------------------- /template.distillery/Makefile.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/Makefile.os -------------------------------------------------------------------------------- /template.distillery/Makefile.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/Makefile.style -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME.conf.in -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME.opam -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME.sql -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_base.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_base.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_config.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_config.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_config.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_config.eliomi -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_container.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_container.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_container.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_container.eliomi -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_drawer.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_drawer.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_handlers.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_handlers.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_handlers.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_handlers.eliomi -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_icons.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_icons.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_language.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_language.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_language.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_language.eliomi -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_main.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_main.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_mobile.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_mobile.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_mobile.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_mobile.eliomi -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_page.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_page.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_page.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_page.eliomi -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_phone_connect.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_phone_connect.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_services.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_services.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_services.eliomi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_services.eliomi -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_settings.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_settings.eliom -------------------------------------------------------------------------------- /template.distillery/PROJECT_NAME_static_config.eliom.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/PROJECT_NAME_static_config.eliom.in -------------------------------------------------------------------------------- /template.distillery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/README.md -------------------------------------------------------------------------------- /template.distillery/assets!PROJECT_NAME_Demo_i18n.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/assets!PROJECT_NAME_Demo_i18n.tsv -------------------------------------------------------------------------------- /template.distillery/assets!PROJECT_NAME_i18n.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/assets!PROJECT_NAME_i18n.tsv -------------------------------------------------------------------------------- /template.distillery/assets!images!icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/assets!images!icon.png -------------------------------------------------------------------------------- /template.distillery/demo.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo.eliom -------------------------------------------------------------------------------- /template.distillery/demo_cache.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_cache.eliom -------------------------------------------------------------------------------- /template.distillery/demo_calendar.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_calendar.eliom -------------------------------------------------------------------------------- /template.distillery/demo_carousel1.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_carousel1.eliom -------------------------------------------------------------------------------- /template.distillery/demo_carousel2.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_carousel2.eliom -------------------------------------------------------------------------------- /template.distillery/demo_carousel3.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_carousel3.eliom -------------------------------------------------------------------------------- /template.distillery/demo_i18n.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_i18n.eliom -------------------------------------------------------------------------------- /template.distillery/demo_links.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_links.eliom -------------------------------------------------------------------------------- /template.distillery/demo_notif.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_notif.eliom -------------------------------------------------------------------------------- /template.distillery/demo_pagetransition.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_pagetransition.eliom -------------------------------------------------------------------------------- /template.distillery/demo_pgocaml.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_pgocaml.eliom -------------------------------------------------------------------------------- /template.distillery/demo_pgocaml_db.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_pgocaml_db.ml -------------------------------------------------------------------------------- /template.distillery/demo_popup.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_popup.eliom -------------------------------------------------------------------------------- /template.distillery/demo_pulltorefresh.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_pulltorefresh.eliom -------------------------------------------------------------------------------- /template.distillery/demo_react.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_react.eliom -------------------------------------------------------------------------------- /template.distillery/demo_ref.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_ref.eliom -------------------------------------------------------------------------------- /template.distillery/demo_rpc.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_rpc.eliom -------------------------------------------------------------------------------- /template.distillery/demo_services.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_services.eliom -------------------------------------------------------------------------------- /template.distillery/demo_spinner.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_spinner.eliom -------------------------------------------------------------------------------- /template.distillery/demo_timepicker.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_timepicker.eliom -------------------------------------------------------------------------------- /template.distillery/demo_tips.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_tips.eliom -------------------------------------------------------------------------------- /template.distillery/demo_tongue.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_tongue.eliom -------------------------------------------------------------------------------- /template.distillery/demo_tools.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_tools.eliom -------------------------------------------------------------------------------- /template.distillery/demo_users.eliom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/demo_users.eliom -------------------------------------------------------------------------------- /template.distillery/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/dune -------------------------------------------------------------------------------- /template.distillery/dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/dune-project -------------------------------------------------------------------------------- /template.distillery/dune.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/dune.config -------------------------------------------------------------------------------- /template.distillery/mobile!.chcpignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template.distillery/mobile!chcp.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/mobile!chcp.json.in -------------------------------------------------------------------------------- /template.distillery/mobile!config.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/mobile!config.xml.in -------------------------------------------------------------------------------- /template.distillery/mobile!eliom.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/mobile!eliom.html.in -------------------------------------------------------------------------------- /template.distillery/mobile!eliom_loader.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/mobile!eliom_loader.ml -------------------------------------------------------------------------------- /template.distillery/mobile!index.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/mobile!index.html.in -------------------------------------------------------------------------------- /template.distillery/mobile!res!.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template.distillery/mobile!www!css!index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/mobile!www!css!index.css -------------------------------------------------------------------------------- /template.distillery/mobile!www!img!logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/mobile!www!img!logo.png -------------------------------------------------------------------------------- /template.distillery/sass!PROJECT_NAME.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/sass!PROJECT_NAME.scss -------------------------------------------------------------------------------- /template.distillery/sass!demo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/sass!demo.scss -------------------------------------------------------------------------------- /template.distillery/sass!os.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/sass!os.scss -------------------------------------------------------------------------------- /template.distillery/static!css!font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/static!css!font-awesome.min.css -------------------------------------------------------------------------------- /template.distillery/static!defaultcss!demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/static!defaultcss!demo.css -------------------------------------------------------------------------------- /template.distillery/static!defaultcss!os.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/static!defaultcss!os.css -------------------------------------------------------------------------------- /template.distillery/static!fonts!FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/static!fonts!FontAwesome.otf -------------------------------------------------------------------------------- /template.distillery/static!fonts!fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/static!fonts!fontawesome-webfont.eot -------------------------------------------------------------------------------- /template.distillery/static!fonts!fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/static!fonts!fontawesome-webfont.svg -------------------------------------------------------------------------------- /template.distillery/static!fonts!fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/static!fonts!fontawesome-webfont.ttf -------------------------------------------------------------------------------- /template.distillery/static!fonts!fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/static!fonts!fontawesome-webfont.woff -------------------------------------------------------------------------------- /template.distillery/static!fonts!fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/static!fonts!fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /template.distillery/static!images!ocsigen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/static!images!ocsigen.png -------------------------------------------------------------------------------- /template.distillery/tools!check_modules.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/tools!check_modules.ml -------------------------------------------------------------------------------- /template.distillery/tools!dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/tools!dune -------------------------------------------------------------------------------- /template.distillery/tools!gen_dune.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/tools!gen_dune.ml -------------------------------------------------------------------------------- /template.distillery/tools!sort_deps.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/template.distillery/tools!sort_deps.ml -------------------------------------------------------------------------------- /tools/sort_deps.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocsigen/ocsigen-start/HEAD/tools/sort_deps.ml --------------------------------------------------------------------------------