diff --git a/doc/README_FOR_APP b/doc/README_FOR_APP index 5c9c0b6bc..0f858cca3 100644 --- a/doc/README_FOR_APP +++ b/doc/README_FOR_APP @@ -28,3 +28,23 @@ Icons and styles credits: * Yusuke Kamiyamane (Fugue Icons https://p.yusukekamiyamane.com/) licensed under a Creative Commons Attribution 3.0 License (https://creativecommons.org/licenses/by/3.0). * Paweł Kuna (Tabler Icons https://tabler.io/icons) licensed under MIT License (https://github.com/tabler/tabler-icons/blob/master/LICENSE). * heeyeun (Open Color https://yeun.github.io/open-color/) licensed under MIT License (https://github.com/yeun/open-color/blob/master/LICENSE). + += Licenses for bundled third-party components + +The license text for each bundled third-party component is available +under doc/licenses/. + +* Chart.js by Chart.js Contributors (https://www.chartjs.org/) + licensed under the MIT License; see doc/licenses/chartjs.txt +* jQuery by OpenJS Foundation and other contributors (https://jquery.com/) + licensed under the MIT License; see doc/licenses/jquery.txt +* jQuery UI by OpenJS Foundation and other contributors (https://jqueryui.com/) + licensed under the MIT License; see doc/licenses/jquery-ui.txt +* Noto Sans by The Noto Project Authors (https://github.com/notofonts/latin-greek-cyrillic) + licensed under the SIL Open Font License 1.1; see doc/licenses/notosans.txt +* Tablesort by Tristen Brown (https://github.com/tristen/tablesort) + licensed under the MIT License; see doc/licenses/tablesort.txt +* Tribute by ZURB, Inc., Jeff Collins, and Matt York (https://github.com/zurb/tribute) + licensed under the MIT License; see doc/licenses/tribute.txt +* Turndown by Dom Christie (https://github.com/mixmark-io/turndown) + licensed under the MIT License; see doc/licenses/turndown.txt diff --git a/doc/licenses/chartjs.txt b/doc/licenses/chartjs.txt new file mode 100644 index 000000000..9182b8e81 --- /dev/null +++ b/doc/licenses/chartjs.txt @@ -0,0 +1,9 @@ +The MIT License (MIT) + +Copyright (c) 2014-2022 Chart.js Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/doc/licenses/jquery-ui.txt b/doc/licenses/jquery-ui.txt new file mode 100644 index 000000000..78108290c --- /dev/null +++ b/doc/licenses/jquery-ui.txt @@ -0,0 +1,43 @@ +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. diff --git a/doc/licenses/jquery.txt b/doc/licenses/jquery.txt new file mode 100644 index 000000000..f642c3f7a --- /dev/null +++ b/doc/licenses/jquery.txt @@ -0,0 +1,20 @@ +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/app/assets/fonts/OFL.txt b/doc/licenses/notosans.txt similarity index 100% rename from app/assets/fonts/OFL.txt rename to doc/licenses/notosans.txt diff --git a/doc/licenses/tablesort.txt b/doc/licenses/tablesort.txt new file mode 100644 index 000000000..c90775d14 --- /dev/null +++ b/doc/licenses/tablesort.txt @@ -0,0 +1,20 @@ +Copyright (c) Tristen Brown + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/doc/licenses/tribute.txt b/doc/licenses/tribute.txt new file mode 100644 index 000000000..a324412fc --- /dev/null +++ b/doc/licenses/tribute.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) 2017-2020 ZURB, Inc. +Copyright (c) 2014 Jeff Collins +Copyright (c) 2012 Matt York + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/doc/licenses/turndown.txt b/doc/licenses/turndown.txt new file mode 100644 index 000000000..02b58935f --- /dev/null +++ b/doc/licenses/turndown.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 Dom Christie + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.