core-login.js.LICENSE.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. /**
  2. * @copyright 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
  3. *
  4. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  5. * @author John Molakvoæ <skjnldsv@protonmail.com>
  6. * @author Roeland Jago Douma <roeland@famdouma.nl>
  7. *
  8. * @license AGPL-3.0-or-later
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. /**
  25. * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  26. *
  27. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  28. *
  29. * @license AGPL-3.0-or-later
  30. *
  31. * This program is free software: you can redistribute it and/or modify
  32. * it under the terms of the GNU Affero General Public License as
  33. * published by the Free Software Foundation, either version 3 of the
  34. * License, or (at your option) any later version.
  35. *
  36. * This program is distributed in the hope that it will be useful,
  37. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  38. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  39. * GNU Affero General Public License for more details.
  40. *
  41. * You should have received a copy of the GNU Affero General Public License
  42. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  43. *
  44. */
  45. /**
  46. * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  47. *
  48. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  49. * @author Daniel Calviño Sánchez <danxuliu@gmail.com>
  50. * @author Joas Schilling <coding@schilljs.com>
  51. * @author John Molakvoæ <skjnldsv@protonmail.com>
  52. * @author Julius Härtl <jus@bitgrid.net>
  53. * @author npmbuildbot[bot] "npmbuildbot[bot]@users.noreply.github.com"
  54. *
  55. * @license AGPL-3.0-or-later
  56. *
  57. * This program is free software: you can redistribute it and/or modify
  58. * it under the terms of the GNU Affero General Public License as
  59. * published by the Free Software Foundation, either version 3 of the
  60. * License, or (at your option) any later version.
  61. *
  62. * This program is distributed in the hope that it will be useful,
  63. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  64. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  65. * GNU Affero General Public License for more details.
  66. *
  67. * You should have received a copy of the GNU Affero General Public License
  68. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  69. *
  70. */
  71. /**
  72. * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  73. *
  74. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  75. * @author Daniel Calviño Sánchez <danxuliu@gmail.com>
  76. * @author John Molakvoæ <skjnldsv@protonmail.com>
  77. *
  78. * @license AGPL-3.0-or-later
  79. *
  80. * This program is free software: you can redistribute it and/or modify
  81. * it under the terms of the GNU Affero General Public License as
  82. * published by the Free Software Foundation, either version 3 of the
  83. * License, or (at your option) any later version.
  84. *
  85. * This program is distributed in the hope that it will be useful,
  86. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  87. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  88. * GNU Affero General Public License for more details.
  89. *
  90. * You should have received a copy of the GNU Affero General Public License
  91. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  92. *
  93. */
  94. /**
  95. * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  96. *
  97. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  98. * @author John Molakvoæ <skjnldsv@protonmail.com>
  99. *
  100. * @license AGPL-3.0-or-later
  101. *
  102. * This program is free software: you can redistribute it and/or modify
  103. * it under the terms of the GNU Affero General Public License as
  104. * published by the Free Software Foundation, either version 3 of the
  105. * License, or (at your option) any later version.
  106. *
  107. * This program is distributed in the hope that it will be useful,
  108. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  109. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  110. * GNU Affero General Public License for more details.
  111. *
  112. * You should have received a copy of the GNU Affero General Public License
  113. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  114. *
  115. */
  116. /**
  117. * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  118. *
  119. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  120. * @author John Molakvoæ <skjnldsv@protonmail.com>
  121. * @author Julius Härtl <jus@bitgrid.net>
  122. * @author Roeland Jago Douma <roeland@famdouma.nl>
  123. *
  124. * @license AGPL-3.0-or-later
  125. *
  126. * This program is free software: you can redistribute it and/or modify
  127. * it under the terms of the GNU Affero General Public License as
  128. * published by the Free Software Foundation, either version 3 of the
  129. * License, or (at your option) any later version.
  130. *
  131. * This program is distributed in the hope that it will be useful,
  132. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  133. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  134. * GNU Affero General Public License for more details.
  135. *
  136. * You should have received a copy of the GNU Affero General Public License
  137. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  138. *
  139. */
  140. /**
  141. * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  142. *
  143. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  144. * @author John Molakvoæ <skjnldsv@protonmail.com>
  145. * @author Roeland Jago Douma <roeland@famdouma.nl>
  146. *
  147. * @license AGPL-3.0-or-later
  148. *
  149. * This program is free software: you can redistribute it and/or modify
  150. * it under the terms of the GNU Affero General Public License as
  151. * published by the Free Software Foundation, either version 3 of the
  152. * License, or (at your option) any later version.
  153. *
  154. * This program is distributed in the hope that it will be useful,
  155. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  156. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  157. * GNU Affero General Public License for more details.
  158. *
  159. * You should have received a copy of the GNU Affero General Public License
  160. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  161. *
  162. */
  163. /**
  164. * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  165. *
  166. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  167. * @author John Molakvoæ <skjnldsv@protonmail.com>
  168. * @author rakekniven <mark.ziegler@rakekniven.de>
  169. *
  170. * @license AGPL-3.0-or-later
  171. *
  172. * This program is free software: you can redistribute it and/or modify
  173. * it under the terms of the GNU Affero General Public License as
  174. * published by the Free Software Foundation, either version 3 of the
  175. * License, or (at your option) any later version.
  176. *
  177. * This program is distributed in the hope that it will be useful,
  178. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  179. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  180. * GNU Affero General Public License for more details.
  181. *
  182. * You should have received a copy of the GNU Affero General Public License
  183. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  184. *
  185. */
  186. /**
  187. * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  188. * @copyright Copyright (c) 2019 Gary Kim <gary@garykim.dev>
  189. *
  190. * @author Bartek Przybylski <bart.p.pl@gmail.com>
  191. * @author Christopher Schäpers <kondou@ts.unde.re>
  192. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  193. * @author Daniel Calviño Sánchez <danxuliu@gmail.com>
  194. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  195. * @author Florian Schunk <florian.schunk@rwth-aachen.de>
  196. * @author Gary Kim <gary@garykim.dev>
  197. * @author Hendrik Leppelsack <hendrik@leppelsack.de>
  198. * @author Jan-Christoph Borchardt <hey@jancborchardt.net>
  199. * @author Joas Schilling <coding@schilljs.com>
  200. * @author John Molakvoæ <skjnldsv@protonmail.com>
  201. * @author Jörn Friedrich Dreyer <jfd@butonic.de>
  202. * @author Julius Härtl <jus@bitgrid.net>
  203. * @author Loïc Hermann <loic.hermann@sciam.fr>
  204. * @author Morris Jobke <hey@morrisjobke.de>
  205. * @author Olivier Paroz <github@oparoz.com>
  206. * @author Robin Appelman <robin@icewind.nl>
  207. * @author Roeland Jago Douma <roeland@famdouma.nl>
  208. * @author Sujith Haridasan <Sujith_Haridasan@mentor.com>
  209. * @author Thomas Citharel <nextcloud@tcit.fr>
  210. * @author Thomas Müller <thomas.mueller@tmit.eu>
  211. * @author Thomas Tanghus <thomas@tanghus.net>
  212. * @author Vincent Petry <vincent@nextcloud.com>
  213. *
  214. * @license AGPL-3.0-or-later
  215. *
  216. * This program is free software: you can redistribute it and/or modify
  217. * it under the terms of the GNU Affero General Public License as
  218. * published by the Free Software Foundation, either version 3 of the
  219. * License, or (at your option) any later version.
  220. *
  221. * This program is distributed in the hope that it will be useful,
  222. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  223. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  224. * GNU Affero General Public License for more details.
  225. *
  226. * You should have received a copy of the GNU Affero General Public License
  227. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  228. *
  229. */
  230. /**
  231. * @copyright 2020 Christoph Wurst <christoph@winzerhof-wurst.at>
  232. *
  233. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  234. *
  235. * @license AGPL-3.0-or-later
  236. *
  237. * This program is free software: you can redistribute it and/or modify
  238. * it under the terms of the GNU Affero General Public License as
  239. * published by the Free Software Foundation, either version 3 of the
  240. * License, or (at your option) any later version.
  241. *
  242. * This program is distributed in the hope that it will be useful,
  243. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  244. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  245. * GNU Affero General Public License for more details.
  246. *
  247. * You should have received a copy of the GNU Affero General Public License
  248. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  249. *
  250. */
  251. /**
  252. * @copyright 2020, Roeland Jago Douma <roeland@famdouma.nl>
  253. *
  254. * @author Roeland Jago Douma <roeland@famdouma.nl>
  255. *
  256. * @license AGPL-3.0-or-later
  257. *
  258. * This program is free software: you can redistribute it and/or modify
  259. * it under the terms of the GNU Affero General Public License as
  260. * published by the Free Software Foundation, either version 3 of the
  261. * License, or (at your option) any later version.
  262. *
  263. * This program is distributed in the hope that it will be useful,
  264. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  265. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  266. * GNU Affero General Public License for more details.
  267. *
  268. * You should have received a copy of the GNU Affero General Public License
  269. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  270. *
  271. */
  272. /**
  273. * @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com>
  274. *
  275. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  276. * @author Joas Schilling <coding@schilljs.com>
  277. * @author John Molakvoæ <skjnldsv@protonmail.com>
  278. * @author Jörn Friedrich Dreyer <jfd@butonic.de>
  279. * @author Robin Appelman <robin@icewind.nl>
  280. * @author Vincent Petry <vincent@nextcloud.com>
  281. *
  282. * @license AGPL-3.0-or-later
  283. *
  284. * This program is free software: you can redistribute it and/or modify
  285. * it under the terms of the GNU Affero General Public License as
  286. * published by the Free Software Foundation, either version 3 of the
  287. * License, or (at your option) any later version.
  288. *
  289. * This program is distributed in the hope that it will be useful,
  290. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  291. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  292. * GNU Affero General Public License for more details.
  293. *
  294. * You should have received a copy of the GNU Affero General Public License
  295. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  296. *
  297. */
  298. /**
  299. * @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com>
  300. *
  301. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  302. * @author John Molakvoæ <skjnldsv@protonmail.com>
  303. *
  304. * @license AGPL-3.0-or-later
  305. *
  306. * This program is free software: you can redistribute it and/or modify
  307. * it under the terms of the GNU Affero General Public License as
  308. * published by the Free Software Foundation, either version 3 of the
  309. * License, or (at your option) any later version.
  310. *
  311. * This program is distributed in the hope that it will be useful,
  312. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  313. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  314. * GNU Affero General Public License for more details.
  315. *
  316. * You should have received a copy of the GNU Affero General Public License
  317. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  318. *
  319. */
  320. /**
  321. * Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com>
  322. * Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  323. *
  324. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  325. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  326. * @author Joas Schilling <coding@schilljs.com>
  327. * @author John Molakvoæ <skjnldsv@protonmail.com>
  328. * @author Morris Jobke <hey@morrisjobke.de>
  329. * @author Roeland Jago Douma <roeland@famdouma.nl>
  330. * @author Vincent Petry <vincent@nextcloud.com>
  331. *
  332. * @license AGPL-3.0-or-later
  333. *
  334. * This program is free software: you can redistribute it and/or modify
  335. * it under the terms of the GNU Affero General Public License as
  336. * published by the Free Software Foundation, either version 3 of the
  337. * License, or (at your option) any later version.
  338. *
  339. * This program is distributed in the hope that it will be useful,
  340. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  341. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  342. * GNU Affero General Public License for more details.
  343. *
  344. * You should have received a copy of the GNU Affero General Public License
  345. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  346. *
  347. */
  348. /**
  349. * Copyright (c) 2015
  350. *
  351. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  352. * @author John Molakvoæ <skjnldsv@protonmail.com>
  353. * @author Julius Härtl <jus@bitgrid.net>
  354. *
  355. * @license AGPL-3.0-or-later
  356. *
  357. * This program is free software: you can redistribute it and/or modify
  358. * it under the terms of the GNU Affero General Public License as
  359. * published by the Free Software Foundation, either version 3 of the
  360. * License, or (at your option) any later version.
  361. *
  362. * This program is distributed in the hope that it will be useful,
  363. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  364. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  365. * GNU Affero General Public License for more details.
  366. *
  367. * You should have received a copy of the GNU Affero General Public License
  368. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  369. *
  370. */