migrate therinaldos.com data
Build & Deploy to DigitalOcean Space / build (push) Failing after 2m38s

This commit is contained in:
2024-05-05 15:50:45 -04:00
commit ef1ff240d4
23182 changed files with 3801898 additions and 0 deletions
@@ -0,0 +1,2 @@
/*! third party licenses: js/vendor.LICENSE.txt */
import{g as d}from"./logreader-main.mjs";function h(r,o){for(var s=0;s<o.length;s++){const t=o[s];if(typeof t!="string"&&!Array.isArray(t)){for(const a in t)if(a!=="default"&&!(a in r)){const e=Object.getOwnPropertyDescriptor(t,a);e&&Object.defineProperty(r,a,e.get?e:{enumerable:!0,get:()=>t[a]})}}}return Object.freeze(Object.defineProperty(r,Symbol.toStringTag,{value:"Module"}))}var g=function(r){for(var o=0,s=1,t=2,a=3,e=o,c=0,b=null,i=[],n=0;n<r.length;++n)switch(e){case o:switch(r[n]){case"{":++c,e=s,b=n;break}break;case s:switch(r[n]){case"{":++c;break;case"}":--c,c===0&&(e=o,i.push({start:b,end:n+1}));break;case'"':e=t;break}break;case t:switch(r[n]){case'"':e=s;break;case"\\":e=a;break}break;case a:e=t;break}var f={jsons:[],remainder:r.substring(i[i.length-1].end)};return i.forEach(function(u){f.jsons.push(r.substring(u.start,u.end))}),f};const k=d(g),p=h({__proto__:null,default:k},[g]);export{p as S};
@@ -0,0 +1 @@
{"version":3,"file":"Splitter-9140b094.mjs","sources":["../node_modules/json-string-splitter/Splitter.js"],"sourcesContent":["/**\n * Split concatenated JSON strings\n * \n * @module json-string-splitter\n */\n\n/**\n * Accepts a string consisting of one or more valid JSON substrings and splits it. Any remaining string after the end of the last complete JSON substring is returned in the 'remainder' field.\n * \n * Passing in invalid JSON can result in garbage output\n * \n * @alias splitter\n * @since 1.0.0\n * @param {string} string The string to look for JSON in\n * @returns {{ jsons: string[], remainder: '' }} \n * \n * @example\n * var splitter = require('json-string-splitter');\n * \n * var pieces = splitter('{\"foo\":\"bar\"}{\"more\":\"json\"}{\"partial\":\"json\"');\n * \n * console.log(pieces.jsons[0]); // '{\"foo\":\"bar\"}'\n * console.log(pieces.jsons[1]); // '{\"more\":\"json\"}'\n * console.log(pieces.remainder); // '{\"partial\":\"json\"'\n */\nmodule.exports = function(string) {\n var START = 0, JSON = 1, STRING = 2, ESCAPE = 3;\n \n var state = START;\n var nesting_level = 0;\n var json_start = null;\n var bounds = [];\n \n for(var i = 0 || 0; i < string.length; ++i) {\n switch(state) {\n case START:\n switch(string[i]) {\n case '{':\n ++nesting_level;\n state = JSON;\n json_start = i;\n break;\n }\n break;\n case JSON:\n switch(string[i]) {\n case '{': ++nesting_level; break;\n case '}':\n --nesting_level;\n if(nesting_level === 0) {\n state = START;\n bounds.push({ start: json_start, end: i + 1 });\n }\n break;\n case '\"': state = STRING; break;\n }\n break;\n case STRING:\n switch(string[i]) {\n case '\"': state = JSON; break;\n case '\\\\': state = ESCAPE; break;\n }\n break;\n case ESCAPE:\n state = STRING;\n break;\n }\n }\n \n var result = {\n jsons: [],\n remainder: string.substring(bounds[bounds.length - 1].end),\n }\n \n bounds.forEach(function(v) {\n result.jsons.push(string.substring(v.start, v.end));\n });\n \n return result;\n}\n"],"names":["Splitter","string","START","JSON","STRING","ESCAPE","state","nesting_level","json_start","bounds","i","result","v"],"mappings":";mYAyBAA,EAAiB,SAASC,EAAQ,CAQhC,QAPIC,EAAQ,EAAGC,EAAO,EAAGC,EAAS,EAAGC,EAAS,EAE1CC,EAAQJ,EACRK,EAAgB,EAChBC,EAAa,KACbC,EAAS,CAAA,EAELC,EAAS,EAAGA,EAAIT,EAAO,OAAQ,EAAES,EACvC,OAAOJ,EAAK,CACV,KAAKJ,EACH,OAAOD,EAAOS,CAAC,EAAC,CACd,IAAK,IACH,EAAEH,EACFD,EAAQH,EACRK,EAAaE,EACb,KACH,CACD,MACF,KAAKP,EACH,OAAOF,EAAOS,CAAC,EAAC,CACd,IAAK,IAAK,EAAEH,EAAe,MAC3B,IAAK,IACH,EAAEA,EACCA,IAAkB,IACnBD,EAAQJ,EACRO,EAAO,KAAK,CAAE,MAAOD,EAAY,IAAKE,EAAI,CAAC,CAAE,GAE/C,MACF,IAAK,IAAKJ,EAAQF,EAAQ,KAC3B,CACD,MACF,KAAKA,EACH,OAAOH,EAAOS,CAAC,EAAC,CACd,IAAK,IAAKJ,EAAQH,EAAM,MACxB,IAAK,KAAMG,EAAQD,EAAQ,KAC5B,CACD,MACF,KAAKA,EACHC,EAAQF,EACR,KACH,CAGH,IAAIO,EAAS,CACX,MAAO,CAAE,EACT,UAAWV,EAAO,UAAUQ,EAAOA,EAAO,OAAS,CAAC,EAAE,GAAG,CAC1D,EAED,OAAAA,EAAO,QAAQ,SAASG,EAAG,CACzBD,EAAO,MAAM,KAAKV,EAAO,UAAUW,EAAE,MAAOA,EAAE,GAAG,CAAC,CACtD,CAAG,EAEMD,CACT","x_google_ignoreList":[0]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,217 @@
Included dependencies:
@floating-ui/core
version: 0.3.1
license: MIT
@floating-ui/dom
version: 0.1.10
license: MIT
@nextcloud/auth
version: 2.2.1
license: GPL-3.0-or-later
@nextcloud/axios
version: 2.4.0
license: GPL-3.0
@nextcloud/browser-storage
version: 0.3.0
license: GPL-3.0-or-later
@nextcloud/calendar-js
version: 6.0.1
license: AGPL-3.0-or-later
@nextcloud/capabilities
version: 1.1.0
license: GPL-3.0-or-later
@nextcloud/dialogs
version: 5.0.3
license: GPL-3.0-or-later
@nextcloud/event-bus
version: 3.1.0
license: GPL-3.0-or-later
@nextcloud/initial-state
version: 2.1.0
license: GPL-3.0-or-later
@nextcloud/l10n
version: 2.2.0
license: GPL-3.0-or-later
@nextcloud/logger
version: 2.7.0
license: GPL-3.0-or-later
@nextcloud/router
version: 2.2.0
license: GPL-3.0-or-later
@nextcloud/vue
version: 8.3.0
license: AGPL-3.0
@nextcloud/vue-select
version: 3.24.0
license: MIT
@vue/devtools-api
version: 6.5.0
license: MIT
@vueuse/components
version: 10.2.1
license: MIT
@vueuse/core
version: 10.2.1
license: MIT
@vueuse/shared
version: 10.2.1
license: MIT
axios
version: 1.6.2
license: MIT
base64-js
version: 1.5.1
license: MIT
buffer
version: 6.0.3
license: MIT
charenc
version: 0.0.2
license: BSD-3-Clause
core-js
version: 3.33.0
license: MIT
crypt
version: 0.0.2
license: BSD-3-Clause
date-format-parse
version: 0.2.7
license: MIT
debounce
version: 2.0.0
license: MIT
dompurify
version: 3.0.5
license: (MPL-2.0 OR Apache-2.0)
escape-html
version: 1.0.3
license: MIT
floating-vue
version: 1.0.0-beta.19
license: MIT
focus-trap
version: 7.5.2
license: MIT
highlight.js
version: 11.9.0
license: BSD-3-Clause
ical.js
version: 1.5.0
license: MPL-2.0
ieee754
version: 1.2.1
license: BSD-3-Clause
is-buffer
version: 1.1.6
license: MIT
json-string-splitter
version: 1.0.0
license: LGPL-2.1+
linkify-string
version: 4.1.1
license: MIT
linkifyjs
version: 4.1.1
license: MIT
lodash.get
version: 4.4.2
license: MIT
md5
version: 2.3.0
license: BSD-3-Clause
node-gettext
version: 3.0.0
license: (MIT)
path-browserify
version: 1.0.1
license: MIT
pinia
version: 2.1.7
license: MIT
process
version: 0.11.10
license: MIT
semver
version: 7.5.4
license: ISC
striptags
version: 3.2.0
license: MIT
tabbable
version: 6.2.0
license: MIT
toastify-js
version: 1.12.0
license: MIT
uuid
version: 9.0.0
license: MIT
vite-plugin-node-polyfills
version: 0.15.0
license: MIT
vue
version: 2.7.15
license: MIT
vue-demi
version: 0.14.5
license: MIT
vue-material-design-icons
version: 5.2.0
license: MIT
vue2-datepicker
version: 3.11.1
license: MIT