From 0e375aaee0128e7fae34afff2ce66b3fb9bc7d39 Mon Sep 17 00:00:00 2001 From: MeowcaTheoRange Date: Tue, 28 May 2024 22:33:37 -0500 Subject: [PATCH] Get everything in place --- .gitignore | 1 + assets/scripts/script.js | 0 assets/styles/styles.css | 0 modules/extern/ical_moz.js | 9534 ++++++++++++++++++++++++++++++++++++ modules/index.js | 21 + nodemon.json | 3 + package-lock.json | 1040 ++++ package.json | 17 + pages/index.html | 26 + scripts/server.js | 0 10 files changed, 10642 insertions(+) create mode 100644 .gitignore create mode 100644 assets/scripts/script.js create mode 100644 assets/styles/styles.css create mode 100644 modules/extern/ical_moz.js create mode 100644 modules/index.js create mode 100644 nodemon.json create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 pages/index.html create mode 100644 scripts/server.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/assets/scripts/script.js b/assets/scripts/script.js new file mode 100644 index 0000000..e69de29 diff --git a/assets/styles/styles.css b/assets/styles/styles.css new file mode 100644 index 0000000..e69de29 diff --git a/modules/extern/ical_moz.js b/modules/extern/ical_moz.js new file mode 100644 index 0000000..c75ed9b --- /dev/null +++ b/modules/extern/ical_moz.js @@ -0,0 +1,9534 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * Portions Copyright (C) Philipp Kewisch, 2021 */ + +/* jshint ignore:start */ +export var ICAL; +(function () { + /* istanbul ignore next */ + if (typeof module === 'object') { + // CommonJS, where exports may be different each time. + ICAL = module.exports; + } else if (typeof HTMLScriptElement !== 'undefined' && 'noModule' in HTMLScriptElement.prototype) { + // Until we use ES6 exports, using + + + diff --git a/scripts/server.js b/scripts/server.js new file mode 100644 index 0000000..e69de29