You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

core-common.js.LICENSE.txt 28KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893
  1. /*
  2. * @copyright Copyright (c) 2022 Richard Steinmetz <richard@steinmetz.cloud>
  3. *
  4. * @author Richard Steinmetz <richard@steinmetz.cloud>
  5. *
  6. * @license GNU AGPL version 3 or any later version
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Affero General Public License as
  10. * published by the Free Software Foundation, either version 3 of the
  11. * License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. /*
  22. object-assign
  23. (c) Sindre Sorhus
  24. @license MIT
  25. */
  26. /*!
  27. * Bootstrap tooltip.js v4.6.1 (https://getbootstrap.com/)
  28. * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
  29. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  30. */
  31. /*!
  32. * Bootstrap util.js v4.6.1 (https://getbootstrap.com/)
  33. * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
  34. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  35. */
  36. /*!
  37. * vue-router v3.5.3
  38. * (c) 2021 Evan You
  39. * @license MIT
  40. */
  41. /*!
  42. * Cropper.js v1.5.12
  43. * https://fengyuanchen.github.io/cropperjs
  44. *
  45. * Copyright 2015-present Chen Fengyuan
  46. * Released under the MIT license
  47. *
  48. * Date: 2021-06-12T08:00:17.411Z
  49. */
  50. /*!
  51. * Determine if an object is a Buffer
  52. *
  53. * @author Feross Aboukhadijeh <https://feross.org>
  54. * @license MIT
  55. */
  56. /*!
  57. * Sizzle CSS Selector Engine v2.3.6
  58. * https://sizzlejs.com/
  59. *
  60. * Copyright JS Foundation and other contributors
  61. * Released under the MIT license
  62. * https://js.foundation/
  63. *
  64. * Date: 2021-02-16
  65. */
  66. /*!
  67. * The buffer module from node.js, for the browser.
  68. *
  69. * @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
  70. * @license MIT
  71. */
  72. /*!
  73. * The buffer module from node.js, for the browser.
  74. *
  75. * @author Feross Aboukhadijeh <https://feross.org>
  76. * @license MIT
  77. */
  78. /*!
  79. * Vue.js v2.7.14
  80. * (c) 2014-2022 Evan You
  81. * Released under the MIT License.
  82. */
  83. /*!
  84. * clipboard.js v2.0.11
  85. * https://clipboardjs.com/
  86. *
  87. * Licensed MIT © Zeno Rocha
  88. */
  89. /*!
  90. * escape-html
  91. * Copyright(c) 2012-2013 TJ Holowaychuk
  92. * Copyright(c) 2015 Andreas Lubbe
  93. * Copyright(c) 2015 Tiancheng "Timothy" Gu
  94. * MIT Licensed
  95. */
  96. /*!
  97. * jQuery JavaScript Library v3.6.0
  98. * https://jquery.com/
  99. *
  100. * Includes Sizzle.js
  101. * https://sizzlejs.com/
  102. *
  103. * Copyright OpenJS Foundation and other contributors
  104. * Released under the MIT license
  105. * https://jquery.org/license
  106. *
  107. * Date: 2021-03-02T17:08Z
  108. */
  109. /*!
  110. * jQuery UI :data 1.13.2
  111. * http://jqueryui.com
  112. *
  113. * Copyright jQuery Foundation and other contributors
  114. * Released under the MIT license.
  115. * http://jquery.org/license
  116. */
  117. /*!
  118. * jQuery UI Autocomplete 1.13.2
  119. * http://jqueryui.com
  120. *
  121. * Copyright jQuery Foundation and other contributors
  122. * Released under the MIT license.
  123. * http://jquery.org/license
  124. */
  125. /*!
  126. * jQuery UI Button 1.13.2
  127. * http://jqueryui.com
  128. *
  129. * Copyright jQuery Foundation and other contributors
  130. * Released under the MIT license.
  131. * http://jquery.org/license
  132. */
  133. /*!
  134. * jQuery UI Checkboxradio 1.13.2
  135. * http://jqueryui.com
  136. *
  137. * Copyright jQuery Foundation and other contributors
  138. * Released under the MIT license.
  139. * http://jquery.org/license
  140. */
  141. /*!
  142. * jQuery UI Controlgroup 1.13.2
  143. * http://jqueryui.com
  144. *
  145. * Copyright jQuery Foundation and other contributors
  146. * Released under the MIT license.
  147. * http://jquery.org/license
  148. */
  149. /*!
  150. * jQuery UI Datepicker 1.13.2
  151. * http://jqueryui.com
  152. *
  153. * Copyright jQuery Foundation and other contributors
  154. * Released under the MIT license.
  155. * http://jquery.org/license
  156. */
  157. /*!
  158. * jQuery UI Dialog 1.13.2
  159. * http://jqueryui.com
  160. *
  161. * Copyright jQuery Foundation and other contributors
  162. * Released under the MIT license.
  163. * http://jquery.org/license
  164. */
  165. /*!
  166. * jQuery UI Draggable 1.13.2
  167. * http://jqueryui.com
  168. *
  169. * Copyright jQuery Foundation and other contributors
  170. * Released under the MIT license.
  171. * http://jquery.org/license
  172. */
  173. /*!
  174. * jQuery UI Droppable 1.13.2
  175. * http://jqueryui.com
  176. *
  177. * Copyright jQuery Foundation and other contributors
  178. * Released under the MIT license.
  179. * http://jquery.org/license
  180. */
  181. /*!
  182. * jQuery UI Effects 1.13.2
  183. * http://jqueryui.com
  184. *
  185. * Copyright jQuery Foundation and other contributors
  186. * Released under the MIT license.
  187. * http://jquery.org/license
  188. */
  189. /*!
  190. * jQuery UI Focusable 1.13.2
  191. * http://jqueryui.com
  192. *
  193. * Copyright jQuery Foundation and other contributors
  194. * Released under the MIT license.
  195. * http://jquery.org/license
  196. */
  197. /*!
  198. * jQuery UI Form Reset Mixin 1.13.2
  199. * http://jqueryui.com
  200. *
  201. * Copyright jQuery Foundation and other contributors
  202. * Released under the MIT license.
  203. * http://jquery.org/license
  204. */
  205. /*!
  206. * jQuery UI Keycode 1.13.2
  207. * http://jqueryui.com
  208. *
  209. * Copyright jQuery Foundation and other contributors
  210. * Released under the MIT license.
  211. * http://jquery.org/license
  212. */
  213. /*!
  214. * jQuery UI Labels 1.13.2
  215. * http://jqueryui.com
  216. *
  217. * Copyright jQuery Foundation and other contributors
  218. * Released under the MIT license.
  219. * http://jquery.org/license
  220. */
  221. /*!
  222. * jQuery UI Position 1.13.2
  223. * http://jqueryui.com
  224. *
  225. * Copyright jQuery Foundation and other contributors
  226. * Released under the MIT license.
  227. * http://jquery.org/license
  228. *
  229. * http://api.jqueryui.com/position/
  230. */
  231. /*!
  232. * jQuery UI Resizable 1.13.2
  233. * http://jqueryui.com
  234. *
  235. * Copyright jQuery Foundation and other contributors
  236. * Released under the MIT license.
  237. * http://jquery.org/license
  238. */
  239. /*!
  240. * jQuery UI Spinner 1.13.2
  241. * http://jqueryui.com
  242. *
  243. * Copyright jQuery Foundation and other contributors
  244. * Released under the MIT license.
  245. * http://jquery.org/license
  246. */
  247. /*!
  248. * jQuery UI Support for jQuery core 1.8.x and newer 1.13.2
  249. * http://jqueryui.com
  250. *
  251. * Copyright jQuery Foundation and other contributors
  252. * Released under the MIT license.
  253. * http://jquery.org/license
  254. *
  255. */
  256. /*!
  257. * jQuery UI Tabs 1.13.2
  258. * http://jqueryui.com
  259. *
  260. * Copyright jQuery Foundation and other contributors
  261. * Released under the MIT license.
  262. * http://jquery.org/license
  263. */
  264. /*!
  265. * jQuery UI Tooltip 1.13.2
  266. * http://jqueryui.com
  267. *
  268. * Copyright jQuery Foundation and other contributors
  269. * Released under the MIT license.
  270. * http://jquery.org/license
  271. */
  272. /*!
  273. * jQuery UI Widget 1.13.2
  274. * http://jqueryui.com
  275. *
  276. * Copyright jQuery Foundation and other contributors
  277. * Released under the MIT license.
  278. * http://jquery.org/license
  279. */
  280. /*!
  281. * vue-infinite-loading v2.4.5
  282. * (c) 2016-2020 PeachScript
  283. * MIT License
  284. */
  285. /*!
  286. * vue-qrcode v1.0.2
  287. * https://fengyuanchen.github.io/vue-qrcode
  288. *
  289. * Copyright 2018-present Chen Fengyuan
  290. * Released under the MIT license
  291. *
  292. * Date: 2020-01-18T06:04:33.222Z
  293. */
  294. /*!
  295. * vuex v3.6.2
  296. * (c) 2021 Evan You
  297. * @license MIT
  298. */
  299. /*!
  300. * focus-trap 7.1.0
  301. * @license MIT, https://github.com/focus-trap/focus-trap/blob/master/LICENSE
  302. */
  303. /*!
  304. * tabbable 6.0.1
  305. * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE
  306. */
  307. /*! @license DOMPurify 2.4.3 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.4.3/LICENSE */
  308. /*! For license information please see NcActionSeparator.js.LICENSE.txt */
  309. /*! For license information please see NcActions.js.LICENSE.txt */
  310. /*! For license information please see NcAppContent.js.LICENSE.txt */
  311. /*! For license information please see NcAppNavigation.js.LICENSE.txt */
  312. /*! For license information please see NcAppNavigationCaption.js.LICENSE.txt */
  313. /*! For license information please see NcAppNavigationItem.js.LICENSE.txt */
  314. /*! For license information please see NcAppNavigationSettings.js.LICENSE.txt */
  315. /*! For license information please see NcAppNavigationSpacer.js.LICENSE.txt */
  316. /*! For license information please see NcAppSettingsDialog.js.LICENSE.txt */
  317. /*! For license information please see NcAppSidebar.js.LICENSE.txt */
  318. /*! For license information please see NcAppSidebarTab.js.LICENSE.txt */
  319. /*! For license information please see NcCheckboxRadioSwitch.js.LICENSE.txt */
  320. /*! For license information please see NcColorPicker.js.LICENSE.txt */
  321. /*! For license information please see NcContent.js.LICENSE.txt */
  322. /*! For license information please see NcCounterBubble.js.LICENSE.txt */
  323. /*! For license information please see NcEmojiPicker.js.LICENSE.txt */
  324. /*! For license information please see NcListItem.js.LICENSE.txt */
  325. /*! For license information please see NcModal.js.LICENSE.txt */
  326. /*! For license information please see NcNoteCard.js.LICENSE.txt */
  327. /*! For license information please see NcPasswordField.js.LICENSE.txt */
  328. /*! For license information please see NcRichContenteditable.js.LICENSE.txt */
  329. /*! For license information please see NcSettingsSection.js.LICENSE.txt */
  330. /*! For license information please see NcTextField.js.LICENSE.txt */
  331. /*! For license information please see index.module.js.LICENSE.txt */
  332. /*! Hammer.JS - v2.0.7 - 2016-04-22
  333. * http://hammerjs.github.io/
  334. *
  335. * Copyright (c) 2016 Jorik Tangelder;
  336. * Licensed under the MIT license */
  337. /*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */
  338. /*! https://mths.be/he v1.2.0 by @mathias | MIT license */
  339. /*! https://mths.be/punycode v1.3.2 by @mathias */
  340. /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
  341. /*! jQuery Migrate v3.4.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */
  342. /*! jQuery UI - v1.13.2 - 2022-07-14
  343. * http://jqueryui.com
  344. * Includes: widget.js, position.js, data.js, disable-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.js, effects/effect-drop.js, effects/effect-explode.js, effects/effect-fade.js, effects/effect-fold.js, effects/effect-highlight.js, effects/effect-puff.js, effects/effect-pulsate.js, effects/effect-scale.js, effects/effect-shake.js, effects/effect-size.js, effects/effect-slide.js, effects/effect-transfer.js, focusable.js, form-reset-mixin.js, jquery-patch.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/accordion.js, widgets/autocomplete.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/datepicker.js, widgets/dialog.js, widgets/draggable.js, widgets/droppable.js, widgets/menu.js, widgets/mouse.js, widgets/progressbar.js, widgets/resizable.js, widgets/selectable.js, widgets/selectmenu.js, widgets/slider.js, widgets/sortable.js, widgets/spinner.js, widgets/tabs.js, widgets/tooltip.js
  345. * Copyright jQuery Foundation and other contributors; Licensed MIT */
  346. /**
  347. *
  348. *
  349. * @author Jerry Bendy <jerry@icewingcc.com>
  350. * @licence MIT
  351. *
  352. */
  353. /**
  354. * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  355. *
  356. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  357. *
  358. * @license AGPL-3.0-or-later
  359. *
  360. * This program is free software: you can redistribute it and/or modify
  361. * it under the terms of the GNU Affero General Public License as
  362. * published by the Free Software Foundation, either version 3 of the
  363. * License, or (at your option) any later version.
  364. *
  365. * This program is distributed in the hope that it will be useful,
  366. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  367. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  368. * GNU Affero General Public License for more details.
  369. *
  370. * You should have received a copy of the GNU Affero General Public License
  371. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  372. *
  373. */
  374. /**
  375. * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  376. *
  377. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  378. * @author John Molakvoæ <skjnldsv@protonmail.com>
  379. *
  380. * @license AGPL-3.0-or-later
  381. *
  382. * This program is free software: you can redistribute it and/or modify
  383. * it under the terms of the GNU Affero General Public License as
  384. * published by the Free Software Foundation, either version 3 of the
  385. * License, or (at your option) any later version.
  386. *
  387. * This program is distributed in the hope that it will be useful,
  388. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  389. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  390. * GNU Affero General Public License for more details.
  391. *
  392. * You should have received a copy of the GNU Affero General Public License
  393. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  394. *
  395. */
  396. /**
  397. * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>
  398. *
  399. * @author John Molakvoæ <skjnldsv@protonmail.com>
  400. *
  401. * @license GNU AGPL version 3 or any later version
  402. *
  403. * This program is free software: you can redistribute it and/or modify
  404. * it under the terms of the GNU Affero General Public License as
  405. * published by the Free Software Foundation, either version 3 of the
  406. * License, or (at your option) any later version.
  407. *
  408. * This program is distributed in the hope that it will be useful,
  409. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  410. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  411. * GNU Affero General Public License for more details.
  412. *
  413. * You should have received a copy of the GNU Affero General Public License
  414. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  415. *
  416. */
  417. /**
  418. * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>
  419. *
  420. * @author John Molakvoæ <skjnldsv@protonmail.com>
  421. *
  422. * @license GNU AGPL version 3 or any later version
  423. *
  424. * This program is free software: you can redistribute it and/or modify
  425. * it under the terms of the GNU Affero General Public License as
  426. * published by the Free Software Foundation, either version 3 of the
  427. * License, or (at your option) any later version.
  428. *
  429. * This program is distributed in the hope that it will be useful,
  430. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  431. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  432. * GNU Affero General Public License for more details.
  433. *
  434. * You should have received a copy of the GNU Affero General Public License
  435. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  436. *
  437. */
  438. /**
  439. * @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>
  440. *
  441. * @author Julius Härtl <jus@bitgrid.net>
  442. *
  443. * @license GNU AGPL version 3 or any later version
  444. *
  445. * This program is free software: you can redistribute it and/or modify
  446. * it under the terms of the GNU Affero General Public License as
  447. * published by the Free Software Foundation, either version 3 of the
  448. * License, or (at your option) any later version.
  449. *
  450. * This program is distributed in the hope that it will be useful,
  451. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  452. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  453. * GNU Affero General Public License for more details.
  454. *
  455. * You should have received a copy of the GNU Affero General Public License
  456. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  457. *
  458. */
  459. /**
  460. * @copyright Copyright (c) 2019 Georg Ehrke
  461. *
  462. * @author Georg Ehrke <georg-nextcloud@ehrke.email>
  463. *
  464. * @author Richard Steinmetz <richard@steinmetz.cloud>
  465. *
  466. * @license AGPL-3.0-or-later
  467. *
  468. * This program is free software: you can redistribute it and/or modify
  469. * it under the terms of the GNU Affero General Public License as
  470. * published by the Free Software Foundation, either version 3 of the
  471. * License, or (at your option) any later version.
  472. *
  473. * This program is distributed in the hope that it will be useful,
  474. * but WITHOUT ANY WARRANTY without even the implied warranty of
  475. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  476. * GNU Affero General Public License for more details.
  477. *
  478. * You should have received a copy of the GNU Affero General Public License
  479. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  480. *
  481. */
  482. /**
  483. * @copyright Copyright (c) 2019 Georg Ehrke
  484. *
  485. * @author Georg Ehrke <georg-nextcloud@ehrke.email>
  486. *
  487. * @license AGPL-3.0-or-later
  488. *
  489. * This program is free software: you can redistribute it and/or modify
  490. * it under the terms of the GNU Affero General Public License as
  491. * published by the Free Software Foundation, either version 3 of the
  492. * License, or (at your option) any later version.
  493. *
  494. * This program is distributed in the hope that it will be useful,
  495. * but WITHOUT ANY WARRANTY without even the implied warranty of
  496. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  497. * GNU Affero General Public License for more details.
  498. *
  499. * You should have received a copy of the GNU Affero General Public License
  500. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  501. *
  502. */
  503. /**
  504. * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
  505. *
  506. * @author John Molakvoæ <skjnldsv@protonmail.com>
  507. *
  508. * @license GNU AGPL version 3 or any later version
  509. *
  510. * This program is free software: you can redistribute it and/or modify
  511. * it under the terms of the GNU Affero General Public License as
  512. * published by the Free Software Foundation, either version 3 of the
  513. * License, or (at your option) any later version.
  514. *
  515. * This program is distributed in the hope that it will be useful,
  516. * but WITHOUT ANY WARRANTY without even the implied warranty of
  517. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  518. * GNU Affero General Public License for more details.
  519. *
  520. * You should have received a copy of the GNU Affero General Public License
  521. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  522. *
  523. */
  524. /**
  525. * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
  526. *
  527. * @author John Molakvoæ <skjnldsv@protonmail.com>
  528. *
  529. * @license GNU AGPL version 3 or any later version
  530. *
  531. * This program is free software: you can redistribute it and/or modify
  532. * it under the terms of the GNU Affero General Public License as
  533. * published by the Free Software Foundation, either version 3 of the
  534. * License, or (at your option) any later version.
  535. *
  536. * This program is distributed in the hope that it will be useful,
  537. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  538. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  539. * GNU Affero General Public License for more details.
  540. *
  541. * You should have received a copy of the GNU Affero General Public License
  542. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  543. *
  544. */
  545. /**
  546. * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
  547. *
  548. * @author John Molakvoæ <skjnldsv@protonmail.com>
  549. *
  550. * @license GNU AGPL version 3 or any later version
  551. *
  552. * This program is free software: you can redistribute it and/or modify
  553. * it under the terms of the GNU Affero General Public License as
  554. * published by the Free Software Foundation, either version 3 of the
  555. * License, or (at your option) any later version.
  556. *
  557. * This program is distributed in the hope that it will be useful,
  558. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  559. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  560. * GNU Affero General Public License for more details.
  561. *
  562. * You should have received a copy of the GNU Affero General Public License
  563. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  564. *
  565. */
  566. /**
  567. * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
  568. *
  569. * @author Julius Härtl <jus@bitgrid.net>
  570. * @author John Molakvoæ <skjnldsv@protonmail.com>
  571. *
  572. * @license GNU AGPL version 3 or any later version
  573. *
  574. * This program is free software: you can redistribute it and/or modify
  575. * it under the terms of the GNU Affero General Public License as
  576. * published by the Free Software Foundation, either version 3 of the
  577. * License, or (at your option) any later version.
  578. *
  579. * This program is distributed in the hope that it will be useful,
  580. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  581. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  582. * GNU Affero General Public License for more details.
  583. *
  584. * You should have received a copy of the GNU Affero General Public License
  585. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  586. *
  587. */
  588. /**
  589. * @copyright Copyright (c) 2019 Marco Ambrosini <marcoambrosini@pm.me>
  590. *
  591. * @author Marco Ambrosini <marcoambrosini@pm.me>
  592. *
  593. * @license GNU AGPL version 3 or any later version
  594. *
  595. * This program is free software: you can redistribute it and/or modify
  596. * it under the terms of the GNU Affero General Public License as
  597. * published by the Free Software Foundation, either version 3 of the
  598. * License, or (at your option) any later version.
  599. *
  600. * This program is distributed in the hope that it will be useful,
  601. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  602. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  603. * GNU Affero General Public License for more details.
  604. *
  605. * You should have received a copy of the GNU Affero General Public License
  606. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  607. *
  608. */
  609. /**
  610. * @copyright Copyright (c) 2020 Georg Ehrke <georg-nextcloud@ehrke.email>
  611. *
  612. * @author Georg Ehrke <georg-nextcloud@ehrke.email>
  613. *
  614. * @license GNU AGPL version 3 or any later version
  615. *
  616. * This program is free software: you can redistribute it and/or modify
  617. * it under the terms of the GNU Affero General Public License as
  618. * published by the Free Software Foundation, either version 3 of the
  619. * License, or (at your option) any later version.
  620. *
  621. * This program is distributed in the hope that it will be useful,
  622. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  623. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  624. * GNU Affero General Public License for more details.
  625. *
  626. * You should have received a copy of the GNU Affero General Public License
  627. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  628. *
  629. */
  630. /**
  631. * @copyright Copyright (c) 2020 John Molakvoæ <skjnldsv@protonmail.com>
  632. *
  633. * @author John Molakvoæ <skjnldsv@protonmail.com>
  634. *
  635. * @license GNU AGPL version 3 or any later version
  636. *
  637. * This program is free software: you can redistribute it and/or modify
  638. * it under the terms of the GNU Affero General Public License as
  639. * published by the Free Software Foundation, either version 3 of the
  640. * License, or (at your option) any later version.
  641. *
  642. * This program is distributed in the hope that it will be useful,
  643. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  644. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  645. * GNU Affero General Public License for more details.
  646. *
  647. * You should have received a copy of the GNU Affero General Public License
  648. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  649. *
  650. */
  651. /**
  652. * @copyright Copyright (c) 2020 Raimund Schlüßler <raimund.schluessler@mailbox.org>
  653. *
  654. * @author Raimund Schlüßler <raimund.schluessler@mailbox.org>
  655. *
  656. * @license GNU AGPL version 3 or any later version
  657. *
  658. * This program is free software: you can redistribute it and/or modify
  659. * it under the terms of the GNU Affero General Public License as
  660. * published by the Free Software Foundation, either version 3 of the
  661. * License, or (at your option) any later version.
  662. *
  663. * This program is distributed in the hope that it will be useful,
  664. * but WITHOUT ANY WARRANTY without even the implied warranty of
  665. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  666. * GNU Affero General Public License for more details.
  667. *
  668. * You should have received a copy of the GNU Affero General Public License
  669. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  670. *
  671. */
  672. /**
  673. * @copyright Copyright (c) 2020 Raimund Schlüßler <raimund.schluessler@mailbox.org>
  674. *
  675. * @author Raimund Schlüßler <raimund.schluessler@mailbox.org>
  676. *
  677. * @license GNU AGPL version 3 or any later version
  678. *
  679. * This program is free software: you can redistribute it and/or modify
  680. * it under the terms of the GNU Affero General Public License as
  681. * published by the Free Software Foundation, either version 3 of the
  682. * License, or (at your option) any later version.
  683. *
  684. * This program is distributed in the hope that it will be useful,
  685. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  686. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  687. * GNU Affero General Public License for more details.
  688. *
  689. * You should have received a copy of the GNU Affero General Public License
  690. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  691. *
  692. */
  693. /**
  694. * @copyright Copyright (c) 2021 Christoph Wurst
  695. *
  696. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  697. *
  698. * @license AGPL-3.0-or-later
  699. *
  700. * This program is free software: you can redistribute it and/or modify
  701. * it under the terms of the GNU Affero General Public License as
  702. * published by the Free Software Foundation, either version 3 of the
  703. * License, or (at your option) any later version.
  704. *
  705. * This program is distributed in the hope that it will be useful,
  706. * but WITHOUT ANY WARRANTY without even the implied warranty of
  707. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  708. * GNU Affero General Public License for more details.
  709. *
  710. * You should have received a copy of the GNU Affero General Public License
  711. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  712. *
  713. */
  714. /**
  715. * @copyright Copyright (c) 2021 John Molakvoæ <skjnldsv@protonmail.com>
  716. *
  717. * @author John Molakvoæ <skjnldsv@protonmail.com>
  718. *
  719. * @license AGPL-3.0-or-later
  720. *
  721. * This program is free software: you can redistribute it and/or modify
  722. * it under the terms of the GNU Affero General Public License as
  723. * published by the Free Software Foundation, either version 3 of the
  724. * License, or (at your option) any later version.
  725. *
  726. * This program is distributed in the hope that it will be useful,
  727. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  728. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  729. * GNU Affero General Public License for more details.
  730. *
  731. * You should have received a copy of the GNU Affero General Public License
  732. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  733. *
  734. */
  735. /**
  736. * @license
  737. * Lodash <https://lodash.com/>
  738. * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
  739. * Released under MIT license <https://lodash.com/license>
  740. * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
  741. * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
  742. */
  743. /**
  744. * vue-local-storage v0.6.0
  745. * (c) 2017 Alexander Avakov
  746. * @license MIT
  747. */
  748. /**
  749. * @license nested-property https://github.com/cosmosio/nested-property
  750. *
  751. * The MIT License (MIT)
  752. *
  753. * Copyright (c) 2014-2020 Olivier Scherrer <pode.fr@gmail.com>
  754. */
  755. /**!
  756. * @fileOverview Kickass library to create and place poppers near their reference elements.
  757. * @version 1.16.1
  758. * @license
  759. * Copyright (c) 2016 Federico Zivolo and contributors
  760. *
  761. * Permission is hereby granted, free of charge, to any person obtaining a copy
  762. * of this software and associated documentation files (the "Software"), to deal
  763. * in the Software without restriction, including without limitation the rights
  764. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  765. * copies of the Software, and to permit persons to whom the Software is
  766. * furnished to do so, subject to the following conditions:
  767. *
  768. * The above copyright notice and this permission notice shall be included in all
  769. * copies or substantial portions of the Software.
  770. *
  771. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  772. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  773. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  774. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  775. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  776. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  777. * SOFTWARE.
  778. */
  779. /**!
  780. * Sortable 1.10.2
  781. * @author RubaXa <trash@rubaxa.org>
  782. * @author owenm <owen23355@gmail.com>
  783. * @license MIT
  784. */
  785. //! Copyright (c) JS Foundation and other contributors
  786. //! github.com/moment/moment-timezone
  787. //! license : MIT
  788. //! moment-timezone.js
  789. //! moment.js
  790. //! moment.js locale configuration
  791. //! version : 0.5.38