From 8c7e2c4e3d1b88447c6357757b7e980d6fe1e201 Mon Sep 17 00:00:00 2001 From: DanyLE Date: Fri, 27 Jan 2023 15:46:06 +0100 Subject: [PATCH] add mimes.json --- Jenkinsfile | 2 +- mimes.json | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 mimes.json diff --git a/Jenkinsfile b/Jenkinsfile index 837b0bb..8ccbe40 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ pipeline{ [ -d build ] && rm -rf build mkdir -p build/opt/www/htdocs/os export BUILDDIR="$WORKSPACE/build/opt/www/htdocs/os" - cp router.lua "$BUILDDIR" + cp router.lua mimes.json "$BUILDDIR" cp -rf controllers "$BUILDDIR" cp -rf libs "$BUILDDIR" ''' diff --git a/mimes.json b/mimes.json new file mode 100644 index 0000000..ba584b1 --- /dev/null +++ b/mimes.json @@ -0,0 +1,78 @@ +{ + "odt": { + "mime": "application/vnd.oasis.opendocument.text", + "binary": true + }, + "docx": { + "mime": "application/vnd.openxmlformats-officedocument.wordprocessingml.document", + "binary": true + }, + "doc": { + "mime": "application/msword", + "binary": true + }, + "xls": { + "mime": "application/vnd.ms-excel", + "binary": true + }, + "xlsx": { + "mime": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + "binary": true + }, + "ppt": { + "mime": "application/vnd.ms-powerpoint", + "binary": true + }, + "pptx": { + "mime": "application/vnd.openxmlformats-officedocument.presentationml.presentation", + "binary": true + }, + "epub": { + "mime": "application/epub+zip", + "binary": true + }, + "csv": { + "mime": "text/csv", + "binary": false + }, + "ods": { + "mime": "application/vnd.oasis.opendocument.spreadsheet", + "binary": true + }, + "odp": { + "mime": "application/vnd.oasis.opendocument.presentation", + "binary": true + }, + "viz": { + "mime": "text/vnd.graphviz", + "binary": false + }, + "py": { + "mime": "text/x-python", + "binary": false + }, + "coffee": { + "mime": "text/vnd.coffeescript", + "binary": false + }, + "apj": { + "mime": "text/antos-project", + "binary": false + }, + "wasm": { + "mime": "application/wasm", + "binary": true + }, + "glb": { + "mime": "model/gltf-binary", + "binary": true + }, + "ts":{ + "mime": "text/x.typescript", + "binary": false + }, + "map":{ + "mime": "application/json", + "binary": false + } +} \ No newline at end of file