├── .github ├── dependabot.yml └── workflows │ ├── build_dependabot_bundler_pr.yml │ └── update_dependabot_bundler_pr.yml ├── .gitignore ├── .licensed.yml ├── .licenses └── bundler │ ├── addressable.dep.yml │ ├── dotenv.dep.yml │ ├── excon.dep.yml │ ├── faraday-net_http.dep.yml │ ├── faraday.dep.yml │ ├── json.dep.yml │ ├── licensed.dep.yml │ ├── licensee.dep.yml │ ├── nokogiri.dep.yml │ ├── octokit.dep.yml │ ├── parallel.dep.yml │ ├── pathname-common_prefix.dep.yml │ ├── public_suffix.dep.yml │ ├── racc.dep.yml │ ├── reverse_markdown.dep.yml │ ├── ruby-xxHash.dep.yml │ ├── ruby2_keywords.dep.yml │ ├── rugged.dep.yml │ ├── sawyer.dep.yml │ ├── thor.dep.yml │ └── tomlrb.dep.yml ├── CODEOWNERS ├── Gemfile ├── Gemfile.lock └── README.md /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "bundler" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | - package-ecosystem: "github-actions" 8 | directory: "/" 9 | schedule: 10 | interval: "weekly" 11 | -------------------------------------------------------------------------------- /.github/workflows/build_dependabot_bundler_pr.yml: -------------------------------------------------------------------------------- 1 | # This workflow runs with a READ-ONLY GITHUB_TOKEN 2 | # https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/ 3 | 4 | # This action will run a `bundle install` without write access to the repository 5 | # as this can execute potentially unsafe third-party ruby code when installing 6 | # git dependencies. 7 | 8 | # The completion of this workflow triggers the `Update Dependabot Bundler PR` 9 | # workflow which has a read-write GITHUB_TOKEN, extracting the changes to 10 | # license files and pushing these to back to the Dependabot PR branch. 11 | 12 | name: Build Dependabot Bundler PR 13 | on: 14 | push: 15 | branches: 16 | - "dependabot/bundler**" 17 | 18 | jobs: 19 | build: 20 | runs-on: ubuntu-latest 21 | steps: 22 | - uses: actions/checkout@v3 23 | - name: Set up Ruby 24 | uses: ruby/setup-ruby@d2b39ad0b52eca07d23f3aa14fdf2a3fcc1f411c # v1.148.0 25 | with: 26 | ruby-version: ruby 27 | - run: bundle install 28 | - run: mkdir ./dependabot-pr 29 | - name: Save branch ref 30 | run: echo ${{ github.ref }} | sed 's/refs\/heads\///' > ./dependabot-pr/BRANCH_REF 31 | - name: Configure git 32 | run: | 33 | git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" 34 | git config --local user.name "github-actions[bot]" 35 | - run: licensed cache 36 | # NOTE: Prefixing/appending commit messages with `[dependabot skip]` allows 37 | # dependabot to rebase/update the pull request, force-pushing over any changes 38 | - name: Commit and copy license changes 39 | run: | 40 | if [[ $(git status | grep '.licenses/') ]]; then 41 | git add .licenses/ 42 | git commit -m "[dependabot skip] Update licenses" 43 | git format-patch -n HEAD^ --binary --stdout > ./dependabot-pr/changes.patch 44 | else 45 | echo "Licenses were not changed" 46 | fi 47 | # NOTE: Use actions/upload-artifact instead of actions/cache as the 48 | # workflow triggered on the default branch doesn't have access to caches 49 | # created on feature branches 50 | - uses: actions/upload-artifact@v3 51 | with: 52 | name: dependabot-pr 53 | path: dependabot-pr/ 54 | -------------------------------------------------------------------------------- /.github/workflows/update_dependabot_bundler_pr.yml: -------------------------------------------------------------------------------- 1 | # This workflow runs after `Build Dependabot Bundler PR` completes with a 2 | # READ-WRITE GITHUB_TOKEN from the default branch and pushes updated license 3 | # file changes back to the Dependabot PR branch. 4 | 5 | # We run this as a separate workflow to isolate potentially unsafe `bundle 6 | # install`s. 7 | 8 | name: Update Dependabot Bundler PR 9 | on: 10 | workflow_run: 11 | workflows: ["Build Dependabot Bundler PR"] 12 | types: 13 | - completed 14 | 15 | jobs: 16 | update: 17 | runs-on: ubuntu-latest 18 | if: > 19 | ${{ github.event.workflow_run.event == 'push' && 20 | github.event.workflow_run.conclusion == 'success' }} 21 | permissions: 22 | contents: write 23 | steps: 24 | - name: Download pr changes 25 | uses: actions/github-script@v3.1.0 26 | with: 27 | script: | 28 | var artifacts = await github.actions.listWorkflowRunArtifacts({ 29 | owner: context.repo.owner, 30 | repo: context.repo.repo, 31 | run_id: ${{github.event.workflow_run.id }}, 32 | }); 33 | var matchArtifact = artifacts.data.artifacts.filter((artifact) => { 34 | return artifact.name == "dependabot-pr" 35 | })[0]; 36 | var download = await github.actions.downloadArtifact({ 37 | owner: context.repo.owner, 38 | repo: context.repo.repo, 39 | artifact_id: matchArtifact.id, 40 | archive_format: 'zip', 41 | }); 42 | var fs = require('fs'); 43 | fs.writeFileSync('/home/runner/work/dependabot-pr.zip', Buffer.from(download.data)); 44 | - run: mkdir -p /home/runner/work/dependabot-pr 45 | # NOTE: actions/checkout will delete the contents of the current workspace 46 | # so we unpack the changes outside the current workspace 47 | - name: Unpack dependabot pr changes 48 | run: unzip -o /home/runner/work/dependabot-pr.zip -d /home/runner/work/dependabot-pr 49 | - name: Set BRANCH_REF env var 50 | run: printf "BRANCH_REF=%q" "$(head -1 '/home/runner/work/dependabot-pr/BRANCH_REF')" >> $GITHUB_ENV 51 | - name: Checkout the branch that triggered 'Build Dependabot Bundler PR' 52 | uses: actions/checkout@v3 53 | with: 54 | ref: ${{ env.BRANCH_REF }} 55 | - name: Configure git 56 | run: | 57 | git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" 58 | git config --local user.name "github-actions[bot]" 59 | - name: Commit license changes 60 | run: | 61 | CHANGES_PATH=/home/runner/work/dependabot-pr/changes.patch 62 | if [ -f "$CHANGES_PATH" ]; then 63 | git am --keep-non-patch $CHANGES_PATH 64 | else 65 | echo "No changes where committed" 66 | fi 67 | - name: Push changes back to dependabot/bundler branch 68 | run: | 69 | if [[ "$BRANCH_REF" =~ ^dependabot/bundler* ]]; then 70 | git push origin $BRANCH_REF 71 | else 72 | echo "Branch ref doesn't look like a dependabot/bundler branch: $BRANCH_REF" 73 | exit 1 74 | fi 75 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | -------------------------------------------------------------------------------- /.licensed.yml: -------------------------------------------------------------------------------- 1 | # Sources of metadata 2 | sources: 3 | bundler: true 4 | -------------------------------------------------------------------------------- /.licenses/bundler/addressable.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: addressable 3 | version: 2.8.1 4 | type: bundler 5 | summary: URI Implementation 6 | homepage: https://github.com/sporkmonger/addressable 7 | license: apache-2.0 8 | licenses: 9 | - sources: LICENSE.txt 10 | text: |2 11 | 12 | Apache License 13 | Version 2.0, January 2004 14 | http://www.apache.org/licenses/ 15 | 16 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 17 | 18 | 1. Definitions. 19 | 20 | "License" shall mean the terms and conditions for use, reproduction, 21 | and distribution as defined by Sections 1 through 9 of this document. 22 | 23 | "Licensor" shall mean the copyright owner or entity authorized by 24 | the copyright owner that is granting the License. 25 | 26 | "Legal Entity" shall mean the union of the acting entity and all 27 | other entities that control, are controlled by, or are under common 28 | control with that entity. For the purposes of this definition, 29 | "control" means (i) the power, direct or indirect, to cause the 30 | direction or management of such entity, whether by contract or 31 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 32 | outstanding shares, or (iii) beneficial ownership of such entity. 33 | 34 | "You" (or "Your") shall mean an individual or Legal Entity 35 | exercising permissions granted by this License. 36 | 37 | "Source" form shall mean the preferred form for making modifications, 38 | including but not limited to software source code, documentation 39 | source, and configuration files. 40 | 41 | "Object" form shall mean any form resulting from mechanical 42 | transformation or translation of a Source form, including but 43 | not limited to compiled object code, generated documentation, 44 | and conversions to other media types. 45 | 46 | "Work" shall mean the work of authorship, whether in Source or 47 | Object form, made available under the License, as indicated by a 48 | copyright notice that is included in or attached to the work 49 | (an example is provided in the Appendix below). 50 | 51 | "Derivative Works" shall mean any work, whether in Source or Object 52 | form, that is based on (or derived from) the Work and for which the 53 | editorial revisions, annotations, elaborations, or other modifications 54 | represent, as a whole, an original work of authorship. For the purposes 55 | of this License, Derivative Works shall not include works that remain 56 | separable from, or merely link (or bind by name) to the interfaces of, 57 | the Work and Derivative Works thereof. 58 | 59 | "Contribution" shall mean any work of authorship, including 60 | the original version of the Work and any modifications or additions 61 | to that Work or Derivative Works thereof, that is intentionally 62 | submitted to Licensor for inclusion in the Work by the copyright owner 63 | or by an individual or Legal Entity authorized to submit on behalf of 64 | the copyright owner. For the purposes of this definition, "submitted" 65 | means any form of electronic, verbal, or written communication sent 66 | to the Licensor or its representatives, including but not limited to 67 | communication on electronic mailing lists, source code control systems, 68 | and issue tracking systems that are managed by, or on behalf of, the 69 | Licensor for the purpose of discussing and improving the Work, but 70 | excluding communication that is conspicuously marked or otherwise 71 | designated in writing by the copyright owner as "Not a Contribution." 72 | 73 | "Contributor" shall mean Licensor and any individual or Legal Entity 74 | on behalf of whom a Contribution has been received by Licensor and 75 | subsequently incorporated within the Work. 76 | 77 | 2. Grant of Copyright License. Subject to the terms and conditions of 78 | this License, each Contributor hereby grants to You a perpetual, 79 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 80 | copyright license to reproduce, prepare Derivative Works of, 81 | publicly display, publicly perform, sublicense, and distribute the 82 | Work and such Derivative Works in Source or Object form. 83 | 84 | 3. Grant of Patent License. Subject to the terms and conditions of 85 | this License, each Contributor hereby grants to You a perpetual, 86 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 87 | (except as stated in this section) patent license to make, have made, 88 | use, offer to sell, sell, import, and otherwise transfer the Work, 89 | where such license applies only to those patent claims licensable 90 | by such Contributor that are necessarily infringed by their 91 | Contribution(s) alone or by combination of their Contribution(s) 92 | with the Work to which such Contribution(s) was submitted. If You 93 | institute patent litigation against any entity (including a 94 | cross-claim or counterclaim in a lawsuit) alleging that the Work 95 | or a Contribution incorporated within the Work constitutes direct 96 | or contributory patent infringement, then any patent licenses 97 | granted to You under this License for that Work shall terminate 98 | as of the date such litigation is filed. 99 | 100 | 4. Redistribution. You may reproduce and distribute copies of the 101 | Work or Derivative Works thereof in any medium, with or without 102 | modifications, and in Source or Object form, provided that You 103 | meet the following conditions: 104 | 105 | (a) You must give any other recipients of the Work or 106 | Derivative Works a copy of this License; and 107 | 108 | (b) You must cause any modified files to carry prominent notices 109 | stating that You changed the files; and 110 | 111 | (c) You must retain, in the Source form of any Derivative Works 112 | that You distribute, all copyright, patent, trademark, and 113 | attribution notices from the Source form of the Work, 114 | excluding those notices that do not pertain to any part of 115 | the Derivative Works; and 116 | 117 | (d) If the Work includes a "NOTICE" text file as part of its 118 | distribution, then any Derivative Works that You distribute must 119 | include a readable copy of the attribution notices contained 120 | within such NOTICE file, excluding those notices that do not 121 | pertain to any part of the Derivative Works, in at least one 122 | of the following places: within a NOTICE text file distributed 123 | as part of the Derivative Works; within the Source form or 124 | documentation, if provided along with the Derivative Works; or, 125 | within a display generated by the Derivative Works, if and 126 | wherever such third-party notices normally appear. The contents 127 | of the NOTICE file are for informational purposes only and 128 | do not modify the License. You may add Your own attribution 129 | notices within Derivative Works that You distribute, alongside 130 | or as an addendum to the NOTICE text from the Work, provided 131 | that such additional attribution notices cannot be construed 132 | as modifying the License. 133 | 134 | You may add Your own copyright statement to Your modifications and 135 | may provide additional or different license terms and conditions 136 | for use, reproduction, or distribution of Your modifications, or 137 | for any such Derivative Works as a whole, provided Your use, 138 | reproduction, and distribution of the Work otherwise complies with 139 | the conditions stated in this License. 140 | 141 | 5. Submission of Contributions. Unless You explicitly state otherwise, 142 | any Contribution intentionally submitted for inclusion in the Work 143 | by You to the Licensor shall be under the terms and conditions of 144 | this License, without any additional terms or conditions. 145 | Notwithstanding the above, nothing herein shall supersede or modify 146 | the terms of any separate license agreement you may have executed 147 | with Licensor regarding such Contributions. 148 | 149 | 6. Trademarks. This License does not grant permission to use the trade 150 | names, trademarks, service marks, or product names of the Licensor, 151 | except as required for reasonable and customary use in describing the 152 | origin of the Work and reproducing the content of the NOTICE file. 153 | 154 | 7. Disclaimer of Warranty. Unless required by applicable law or 155 | agreed to in writing, Licensor provides the Work (and each 156 | Contributor provides its Contributions) on an "AS IS" BASIS, 157 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 158 | implied, including, without limitation, any warranties or conditions 159 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 160 | PARTICULAR PURPOSE. You are solely responsible for determining the 161 | appropriateness of using or redistributing the Work and assume any 162 | risks associated with Your exercise of permissions under this License. 163 | 164 | 8. Limitation of Liability. In no event and under no legal theory, 165 | whether in tort (including negligence), contract, or otherwise, 166 | unless required by applicable law (such as deliberate and grossly 167 | negligent acts) or agreed to in writing, shall any Contributor be 168 | liable to You for damages, including any direct, indirect, special, 169 | incidental, or consequential damages of any character arising as a 170 | result of this License or out of the use or inability to use the 171 | Work (including but not limited to damages for loss of goodwill, 172 | work stoppage, computer failure or malfunction, or any and all 173 | other commercial damages or losses), even if such Contributor 174 | has been advised of the possibility of such damages. 175 | 176 | 9. Accepting Warranty or Additional Liability. While redistributing 177 | the Work or Derivative Works thereof, You may choose to offer, 178 | and charge a fee for, acceptance of support, warranty, indemnity, 179 | or other liability obligations and/or rights consistent with this 180 | License. However, in accepting such obligations, You may act only 181 | on Your own behalf and on Your sole responsibility, not on behalf 182 | of any other Contributor, and only if You agree to indemnify, 183 | defend, and hold each Contributor harmless for any liability 184 | incurred by, or claims asserted against, such Contributor by reason 185 | of your accepting any such warranty or additional liability. 186 | 187 | END OF TERMS AND CONDITIONS 188 | 189 | APPENDIX: How to apply the Apache License to your work. 190 | 191 | To apply the Apache License to your work, attach the following 192 | boilerplate notice, with the fields enclosed by brackets "[]" 193 | replaced with your own identifying information. (Don't include 194 | the brackets!) The text should be enclosed in the appropriate 195 | comment syntax for the file format. We also recommend that a 196 | file or class name and description of purpose be included on the 197 | same "printed page" as the copyright notice for easier 198 | identification within third-party archives. 199 | 200 | Copyright [yyyy] [name of copyright owner] 201 | 202 | Licensed under the Apache License, Version 2.0 (the "License"); 203 | you may not use this file except in compliance with the License. 204 | You may obtain a copy of the License at 205 | 206 | http://www.apache.org/licenses/LICENSE-2.0 207 | 208 | Unless required by applicable law or agreed to in writing, software 209 | distributed under the License is distributed on an "AS IS" BASIS, 210 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 211 | See the License for the specific language governing permissions and 212 | limitations under the License. 213 | notices: [] 214 | -------------------------------------------------------------------------------- /.licenses/bundler/dotenv.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: dotenv 3 | version: 2.8.1 4 | type: bundler 5 | summary: Loads environment variables from `.env`. 6 | homepage: https://github.com/bkeepers/dotenv 7 | license: mit 8 | licenses: 9 | - sources: LICENSE 10 | text: |- 11 | Copyright (c) 2012 Brandon Keepers 12 | 13 | MIT License 14 | 15 | Permission is hereby granted, free of charge, to any person obtaining 16 | a copy of this software and associated documentation files (the 17 | "Software"), to deal in the Software without restriction, including 18 | without limitation the rights to use, copy, modify, merge, publish, 19 | distribute, sublicense, and/or sell copies of the Software, and to 20 | permit persons to whom the Software is furnished to do so, subject to 21 | the following conditions: 22 | 23 | The above copyright notice and this permission notice shall be 24 | included in all copies or substantial portions of the Software. 25 | 26 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 27 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 28 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 29 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 30 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 31 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 32 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 33 | notices: [] 34 | -------------------------------------------------------------------------------- /.licenses/bundler/excon.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: excon 3 | version: 0.99.0 4 | type: bundler 5 | summary: speed, persistence, http(s) 6 | homepage: https://github.com/excon/excon 7 | license: other 8 | licenses: 9 | - sources: LICENSE.md 10 | text: | 11 | The MIT License (MIT) 12 | 13 | Copyright (c) 2009-2019 [CONTRIBUTORS.md](https://github.com/excon/excon/blob/master/CONTRIBUTORS.md) 14 | 15 | Permission is hereby granted, free of charge, to any person obtaining a copy of 16 | this software and associated documentation files (the "Software"), to deal in 17 | the Software without restriction, including without limitation the rights to 18 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 19 | the Software, and to permit persons to whom the Software is furnished to do so, 20 | subject to the following conditions: 21 | 22 | The above copyright notice and this permission notice shall be included in all 23 | copies or substantial portions of the Software. 24 | 25 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 26 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 27 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 28 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 29 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 30 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 | - sources: README.md 32 | text: |- 33 | Please refer to [LICENSE.md](https://github.com/excon/excon/blob/master/LICENSE.md). 34 | 35 | [middleware]: lib/excon/middlewares/base.rb 36 | [hypermedia]: https://en.wikipedia.org/wiki/HATEOAS 37 | [templating]: https://www.rfc-editor.org/rfc/rfc6570.txt 38 | notices: [] 39 | -------------------------------------------------------------------------------- /.licenses/bundler/faraday-net_http.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: faraday-net_http 3 | version: 3.0.2 4 | type: bundler 5 | summary: Faraday adapter for Net::HTTP 6 | homepage: https://github.com/lostisland/faraday-net_http 7 | license: other 8 | licenses: 9 | - sources: LICENSE.md 10 | text: | 11 | The MIT License (MIT) 12 | 13 | Copyright (c) 2020 Jan van der Pas 14 | 15 | Permission is hereby granted, free of charge, to any person obtaining a copy 16 | of this software and associated documentation files (the "Software"), to deal 17 | in the Software without restriction, including without limitation the rights 18 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 19 | copies of the Software, and to permit persons to whom the Software is 20 | furnished to do so, subject to the following conditions: 21 | 22 | The above copyright notice and this permission notice shall be included in 23 | all copies or substantial portions of the Software. 24 | 25 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 26 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 27 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 28 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 29 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 30 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 31 | THE SOFTWARE. 32 | - sources: README.md 33 | text: The gem is available as open source under the terms of the [license][license]. 34 | notices: [] 35 | -------------------------------------------------------------------------------- /.licenses/bundler/faraday.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: faraday 3 | version: 2.7.4 4 | type: bundler 5 | summary: HTTP/REST API client library. 6 | homepage: https://lostisland.github.io/faraday 7 | license: mit 8 | licenses: 9 | - sources: LICENSE.md 10 | text: | 11 | Copyright (c) 2009-2023 Rick Olson, Zack Hobson 12 | 13 | Permission is hereby granted, free of charge, to any person obtaining 14 | a copy of this software and associated documentation files (the 15 | "Software"), to deal in the Software without restriction, including 16 | without limitation the rights to use, copy, modify, merge, publish, 17 | distribute, sublicense, and/or sell copies of the Software, and to 18 | permit persons to whom the Software is furnished to do so, subject to 19 | the following conditions: 20 | 21 | The above copyright notice and this permission notice shall be 22 | included in all copies or substantial portions of the Software. 23 | 24 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 25 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 26 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 27 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 28 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 29 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 30 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 | notices: [] 32 | -------------------------------------------------------------------------------- /.licenses/bundler/json.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: json 3 | version: 2.6.3 4 | type: bundler 5 | summary: JSON Implementation for Ruby 6 | homepage: http://flori.github.com/json 7 | license: other 8 | licenses: 9 | - sources: LICENSE 10 | text: "Ruby is copyrighted free software by Yukihiro Matsumoto .\nYou 11 | can redistribute it and/or modify it under either the terms of the\n2-clause BSDL 12 | (see the file BSDL), or the conditions below:\n\n 1. You may make and give away 13 | verbatim copies of the source form of the\n software without restriction, 14 | provided that you duplicate all of the\n original copyright notices and associated 15 | disclaimers.\n\n 2. You may modify your copy of the software in any way, provided 16 | that\n you do at least ONE of the following:\n\n a) place your modifications 17 | in the Public Domain or otherwise\n make them Freely Available, such 18 | as by posting said\n\t modifications to Usenet or an equivalent medium, or by 19 | allowing\n\t the author to include your modifications in the software.\n\n b) 20 | use the modified software only within your corporation or\n organization.\n\n 21 | \ c) give non-standard binaries non-standard names, with\n instructions 22 | on where to get the original software distribution.\n\n d) make other distribution 23 | arrangements with the author.\n\n 3. You may distribute the software in object 24 | code or binary form,\n provided that you do at least ONE of the following:\n\n 25 | \ a) distribute the binaries and library files of the software,\n\t together 26 | with instructions (in the manual page or equivalent)\n\t on where to get the 27 | original distribution.\n\n b) accompany the distribution with the machine-readable 28 | source of\n\t the software.\n\n c) give non-standard binaries non-standard 29 | names, with\n instructions on where to get the original software distribution.\n\n 30 | \ d) make other distribution arrangements with the author.\n\n 4. You may 31 | modify and include the part of the software into any other\n software (possibly 32 | commercial). But some files in the distribution\n are not written by the 33 | author, so that they are not under these terms.\n\n For the list of those 34 | files and their copying conditions, see the\n file LEGAL.\n\n 5. The scripts 35 | and library files supplied as input to or produced as\n output from the software 36 | do not automatically fall under the\n copyright of the software, but belong 37 | to whomever generated them,\n and may be sold commercially, and may be aggregated 38 | with this\n software.\n\n 6. THIS SOFTWARE IS PROVIDED \"AS IS\" AND WITHOUT 39 | ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n 40 | \ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE.\n" 41 | - sources: README.md 42 | text: Ruby License, see https://www.ruby-lang.org/en/about/license.txt. 43 | notices: [] 44 | -------------------------------------------------------------------------------- /.licenses/bundler/licensed.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: licensed 3 | version: 4.3.0 4 | type: bundler 5 | summary: Extract and validate the licenses of dependencies. 6 | homepage: https://github.com/github/licensed 7 | license: mit 8 | licenses: 9 | - sources: LICENSE 10 | text: | 11 | The MIT License (MIT) 12 | 13 | Copyright (c) 2015-2019 GitHub, Inc. and contributors 14 | 15 | Permission is hereby granted, free of charge, to any person obtaining a copy 16 | of this software and associated documentation files (the "Software"), to deal 17 | in the Software without restriction, including without limitation the rights 18 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 19 | copies of the Software, and to permit persons to whom the Software is 20 | furnished to do so, subject to the following conditions: 21 | 22 | The above copyright notice and this permission notice shall be included in 23 | all copies or substantial portions of the Software. 24 | 25 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 26 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 27 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 28 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 29 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 30 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 31 | THE SOFTWARE. 32 | - sources: README.md 33 | text: The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT). 34 | notices: [] 35 | -------------------------------------------------------------------------------- /.licenses/bundler/licensee.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: licensee 3 | version: 9.16.0 4 | type: bundler 5 | summary: A Ruby Gem to detect open source project licenses 6 | homepage: https://github.com/benbalter/licensee 7 | license: mit 8 | licenses: 9 | - sources: LICENSE.md 10 | text: | 11 | MIT License 12 | 13 | Copyright (c) 2014-2021 Ben Balter and Licensee contributors 14 | 15 | Permission is hereby granted, free of charge, to any person obtaining a copy 16 | of this software and associated documentation files (the "Software"), to deal 17 | in the Software without restriction, including without limitation the rights 18 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 19 | copies of the Software, and to permit persons to whom the Software is 20 | furnished to do so, subject to the following conditions: 21 | 22 | The above copyright notice and this permission notice shall be included in all 23 | copies or substantial portions of the Software. 24 | 25 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 26 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 27 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 28 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 29 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 30 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 31 | SOFTWARE. 32 | notices: [] 33 | -------------------------------------------------------------------------------- /.licenses/bundler/nokogiri.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: nokogiri 3 | version: 1.14.2 4 | type: bundler 5 | summary: Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby. 6 | homepage: https://nokogiri.org 7 | license: other 8 | licenses: 9 | - sources: LICENSE.md 10 | text: | 11 | The MIT License 12 | 13 | Copyright 2008 -- 2023 by Mike Dalessio, Aaron Patterson, Yoko Harada, Akinori MUSHA, John Shahid, Karol Bucek, Sam Ruby, Craig Barnes, Stephen Checkoway, Lars Kanis, Sergio Arbeo, Timothy Elliott, Nobuyoshi Nakada, Charles Nutter, Patrick Mahoney. 14 | 15 | 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: 16 | 17 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 18 | 19 | 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. 20 | - sources: LICENSE-DEPENDENCIES.md 21 | text: "# Vendored Dependency Licenses\n\nNokogiri ships with some third party dependencies, 22 | which are listed here along with their licenses.\n\nNote that this document is 23 | broken into multiple sections, each of which describes the dependencies of a different 24 | \"platform release\" of Nokogiri.\n\n\n\n\n\n- [Platform Releases](#platform-releases)\n * [Default 26 | platform release (\"ruby\")](#default-platform-release-ruby)\n * [Native LinuxⓇ 27 | platform releases (\"x86_64-linux\", \"arm64-linux\", \"aarch64-linux\", and \"arm-linux\")](#native-linux%E2%93%A1-platform-releases-x86_64-linux-arm64-linux-aarch64-linux-and-arm-linux)\n 28 | \ * [Native Darwin (macOSⓇ) platform releases (\"x86_64-darwin\" and \"arm64-darwin\")](#native-darwin-macos%E2%93%A1-platform-releases-x86_64-darwin-and-arm64-darwin)\n 29 | \ * [Native WindowsⓇ platform releases (\"x86-mingw32\" and \"x64-mingw32\")](#native-windows%E2%93%A1-platform-releases-x86-mingw32-and-x64-mingw32)\n 30 | \ * [JavaⓇ (JRuby) platform release (\"java\")](#java%E2%93%A1-jruby-platform-release-java)\n- 31 | [Appendix: Dependencies' License Texts](#appendix-dependencies-license-texts)\n 32 | \ * [libgumbo](#libgumbo)\n * [libxml2](#libxml2)\n * [libxslt](#libxslt)\n 33 | \ * [zlib](#zlib)\n * [libiconv](#libiconv)\n * [isorelax:isorelax](#isorelaxisorelax)\n 34 | \ * [net.sf.saxon:Saxon-HE](#netsfsaxonsaxon-he)\n * [net.sourceforge.htmlunit:neko-htmlunit](#netsourceforgehtmlunitneko-htmlunit)\n 35 | \ * [nu.validator:jing](#nuvalidatorjing)\n * [org.nokogiri:nekodtd](#orgnokogirinekodtd)\n 36 | \ * [xalan:serializer and xalan:xalan](#xalanserializer-and-xalanxalan)\n * [xerces:xercesImpl](#xercesxercesimpl)\n 37 | \ * [xml-apis:xml-apis](#xml-apisxml-apis)\n\n\n\nAnyone consuming 38 | this file via license-tracking software should endeavor to understand which gem 39 | file you're downloading and using, so as not to misinterpret the contents of this 40 | file and the licenses of the software being distributed.\n\nYou can double-check 41 | the dependencies in your gem file by examining the output of `nokogiri -v` after 42 | installation, which will emit the complete set of libraries in use (for versions 43 | `>= 1.11.0.rc4`).\n\nIn particular, I'm sure somebody's lawyer, somewhere, is 44 | going to freak out that the LGPL appears in this file; and so I'd like to take 45 | special note that the dependency covered by LGPL, `libiconv`, is only being redistributed 46 | in the native Windows and native Darwin platform releases. It's not present in 47 | default, JavaⓇ, or native LinuxⓇ releases.\n\n\n## Platform Releases\n\n### Default 48 | platform release (\"ruby\")\n\nThe default platform release distributes the following 49 | dependencies in source form:\n\n* [libxml2](#libxml2)\n* [libxslt](#libxslt)\n* 50 | [libgumbo](#libgumbo)\n\nThis distribution can be identified by inspecting the 51 | included Gem::Specification, which will have the value \"ruby\" for its \"platform\" 52 | attribute.\n\n\n### Native LinuxⓇ platform releases (\"x86_64-linux\", \"arm64-linux\", 53 | \"aarch64-linux\", and \"arm-linux\")\n\nThe native LinuxⓇ platform release distributes 54 | the following dependencies in source form:\n\n* [libxml2](#libxml2)\n* [libxslt](#libxslt)\n* 55 | [libgumbo](#libgumbo)\n* [zlib](#zlib)\n\nThis distribution can be identified 56 | by inspecting the included Gem::Specification, which will have a value similar 57 | to \"x86_64-linux\" or \"arm64-linux\" for its \"platform.cpu\" attribute.\n\n\n### 58 | Native Darwin (macOSⓇ) platform releases (\"x86_64-darwin\" and \"arm64-darwin\")\n\nThe 59 | native Darwin platform release distributes the following dependencies in source 60 | form:\n\n* [libxml2](#libxml2)\n* [libxslt](#libxslt)\n* [libgumbo](#libgumbo)\n* 61 | [zlib](#zlib)\n* [libiconv](#libiconv)\n\nThis distribution can be identified 62 | by inspecting the included Gem::Specification, which will have a value similar 63 | to \"x86_64-darwin\" or \"arm64-darwin\" for its \"platform.cpu\" attribute. Darwin 64 | is also known more familiarly as \"OSX\" or \"macOSⓇ\" and is the operating system 65 | for many AppleⓇ computers.\n\n\n### Native WindowsⓇ platform releases (\"x86-mingw32\" 66 | and \"x64-mingw32\")\n\nThe native WindowsⓇ platform release distributes the following 67 | dependencies in source form:\n\n* [libxml2](#libxml2)\n* [libxslt](#libxslt)\n* 68 | [libgumbo](#libgumbo)\n* [zlib](#zlib)\n* [libiconv](#libiconv)\n\nThis distribution 69 | can be identified by inspecting the included Gem::Specification, which will have 70 | a value similar to \"x64-mingw32\" or \"x86-mingw32\" for its \"platform.cpu\" 71 | attribute.\n\n\n### JavaⓇ (JRuby) platform release (\"java\")\n\nThe Java platform 72 | release distributes the following dependencies as compiled jar files:\n\n* [isorelax:isorelax](#isorelaxisorelax)\n* 73 | [net.sf.saxon:Saxon-HE](#netsfsaxonsaxon-he)\n* [net.sourceforge.htmlunit:neko-htmlunit](#netsourceforgehtmlunitneko-htmlunit)\n* 74 | [nu.validator:jing](#nuvalidatorjing)\n* [org.nokogiri:nekodtd](#orgnokogirinekodtd)\n* 75 | [xalan:serializer and xalan:xalan](#xalanserializer-and-xalanxalan)\n* [xerces:xercesImpl](#xercesxercesimpl)\n* 76 | [xml-apis:xml-apis](#xml-apisxml-apis)\n\nThis distribution can be identified 77 | by inspecting the included Gem::Specification, which will have the value \"java\" 78 | for its \"platform.os\" attribute.\n\n\n## Appendix: Dependencies' License Texts\n\nThis 79 | section contains a subsection for each potentially-distributed dependency, which 80 | includes the name of the license and the license text.\n\nPlease see previous 81 | sections to understand which of these potential dependencies is actually distributed 82 | in the gem file you're downloading and using.\n\n\n### libgumbo\n\nApache 2.0\n\nhttps://github.com/sparklemotion/nokogiri/blob/main/gumbo-parser/src/README.md\n\n\n 83 | \ Apache License\n Version 84 | 2.0, January 2004\n http://www.apache.org/licenses/\n\n 85 | \ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. 86 | Definitions.\n\n \"License\" shall mean the terms and conditions for 87 | use, reproduction,\n and distribution as defined by Sections 1 through 88 | 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or 89 | entity authorized by\n the copyright owner that is granting the License.\n\n 90 | \ \"Legal Entity\" shall mean the union of the acting entity and all\n 91 | \ other entities that control, are controlled by, or are under common\n 92 | \ control with that entity. For the purposes of this definition,\n \"control\" 93 | means (i) the power, direct or indirect, to cause the\n direction or 94 | management of such entity, whether by contract or\n otherwise, or (ii) 95 | ownership of fifty percent (50%) or more of the\n outstanding shares, 96 | or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") 97 | shall mean an individual or Legal Entity\n exercising permissions granted 98 | by this License.\n\n \"Source\" form shall mean the preferred form for 99 | making modifications,\n including but not limited to software source 100 | code, documentation\n source, and configuration files.\n\n \"Object\" 101 | form shall mean any form resulting from mechanical\n transformation or 102 | translation of a Source form, including but\n not limited to compiled 103 | object code, generated documentation,\n and conversions to other media 104 | types.\n\n \"Work\" shall mean the work of authorship, whether in Source 105 | or\n Object form, made available under the License, as indicated by a\n 106 | \ copyright notice that is included in or attached to the work\n (an 107 | example is provided in the Appendix below).\n\n \"Derivative Works\" 108 | shall mean any work, whether in Source or Object\n form, that is based 109 | on (or derived from) the Work and for which the\n editorial revisions, 110 | annotations, elaborations, or other modifications\n represent, as a whole, 111 | an original work of authorship. For the purposes\n of this License, Derivative 112 | Works shall not include works that remain\n separable from, or merely 113 | link (or bind by name) to the interfaces of,\n the Work and Derivative 114 | Works thereof.\n\n \"Contribution\" shall mean any work of authorship, 115 | including\n the original version of the Work and any modifications or 116 | additions\n to that Work or Derivative Works thereof, that is intentionally\n 117 | \ submitted to Licensor for inclusion in the Work by the copyright owner\n 118 | \ or by an individual or Legal Entity authorized to submit on behalf of\n 119 | \ the copyright owner. For the purposes of this definition, \"submitted\"\n 120 | \ means any form of electronic, verbal, or written communication sent\n 121 | \ to the Licensor or its representatives, including but not limited to\n 122 | \ communication on electronic mailing lists, source code control systems,\n 123 | \ and issue tracking systems that are managed by, or on behalf of, the\n 124 | \ Licensor for the purpose of discussing and improving the Work, but\n 125 | \ excluding communication that is conspicuously marked or otherwise\n 126 | \ designated in writing by the copyright owner as \"Not a Contribution.\"\n\n 127 | \ \"Contributor\" shall mean Licensor and any individual or Legal Entity\n 128 | \ on behalf of whom a Contribution has been received by Licensor and\n 129 | \ subsequently incorporated within the Work.\n\n 2. Grant of Copyright 130 | License. Subject to the terms and conditions of\n this License, each 131 | Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, 132 | no-charge, royalty-free, irrevocable\n copyright license to reproduce, 133 | prepare Derivative Works of,\n publicly display, publicly perform, sublicense, 134 | and distribute the\n Work and such Derivative Works in Source or Object 135 | form.\n\n 3. Grant of Patent License. Subject to the terms and conditions 136 | of\n this License, each Contributor hereby grants to You a perpetual,\n 137 | \ worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except 138 | as stated in this section) patent license to make, have made,\n use, 139 | offer to sell, sell, import, and otherwise transfer the Work,\n where 140 | such license applies only to those patent claims licensable\n by such 141 | Contributor that are necessarily infringed by their\n Contribution(s) 142 | alone or by combination of their Contribution(s)\n with the Work to which 143 | such Contribution(s) was submitted. If You\n institute patent litigation 144 | against any entity (including a\n cross-claim or counterclaim in a lawsuit) 145 | alleging that the Work\n or a Contribution incorporated within the Work 146 | constitutes direct\n or contributory patent infringement, then any patent 147 | licenses\n granted to You under this License for that Work shall terminate\n 148 | \ as of the date such litigation is filed.\n\n 4. Redistribution. 149 | You may reproduce and distribute copies of the\n Work or Derivative Works 150 | thereof in any medium, with or without\n modifications, and in Source 151 | or Object form, provided that You\n meet the following conditions:\n\n 152 | \ (a) You must give any other recipients of the Work or\n Derivative 153 | Works a copy of this License; and\n\n (b) You must cause any modified 154 | files to carry prominent notices\n stating that You changed the files; 155 | and\n\n (c) You must retain, in the Source form of any Derivative Works\n 156 | \ that You distribute, all copyright, patent, trademark, and\n attribution 157 | notices from the Source form of the Work,\n excluding those notices 158 | that do not pertain to any part of\n the Derivative Works; and\n\n 159 | \ (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, 160 | then any Derivative Works that You distribute must\n include a readable 161 | copy of the attribution notices contained\n within such NOTICE file, 162 | excluding those notices that do not\n pertain to any part of the 163 | Derivative Works, in at least one\n of the following places: within 164 | a NOTICE text file distributed\n as part of the Derivative Works; 165 | within the Source form or\n documentation, if provided along with 166 | the Derivative Works; or,\n within a display generated by the Derivative 167 | Works, if and\n wherever such third-party notices normally appear. 168 | The contents\n of the NOTICE file are for informational purposes 169 | only and\n do not modify the License. You may add Your own attribution\n 170 | \ notices within Derivative Works that You distribute, alongside\n 171 | \ or as an addendum to the NOTICE text from the Work, provided\n that 172 | such additional attribution notices cannot be construed\n as modifying 173 | the License.\n\n You may add Your own copyright statement to Your modifications 174 | and\n may provide additional or different license terms and conditions\n 175 | \ for use, reproduction, or distribution of Your modifications, or\n for 176 | any such Derivative Works as a whole, provided Your use,\n reproduction, 177 | and distribution of the Work otherwise complies with\n the conditions 178 | stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly 179 | state otherwise,\n any Contribution intentionally submitted for inclusion 180 | in the Work\n by You to the Licensor shall be under the terms and conditions 181 | of\n this License, without any additional terms or conditions.\n Notwithstanding 182 | the above, nothing herein shall supersede or modify\n the terms of any 183 | separate license agreement you may have executed\n with Licensor regarding 184 | such Contributions.\n\n 6. Trademarks. This License does not grant permission 185 | to use the trade\n names, trademarks, service marks, or product names 186 | of the Licensor,\n except as required for reasonable and customary use 187 | in describing the\n origin of the Work and reproducing the content of 188 | the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable 189 | law or\n agreed to in writing, Licensor provides the Work (and each\n 190 | \ Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT 191 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, 192 | without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, 193 | MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely 194 | responsible for determining the\n appropriateness of using or redistributing 195 | the Work and assume any\n risks associated with Your exercise of permissions 196 | under this License.\n\n 8. Limitation of Liability. In no event and under 197 | no legal theory,\n whether in tort (including negligence), contract, 198 | or otherwise,\n unless required by applicable law (such as deliberate 199 | and grossly\n negligent acts) or agreed to in writing, shall any Contributor 200 | be\n liable to You for damages, including any direct, indirect, special,\n 201 | \ incidental, or consequential damages of any character arising as a\n 202 | \ result of this License or out of the use or inability to use the\n Work 203 | (including but not limited to damages for loss of goodwill,\n work stoppage, 204 | computer failure or malfunction, or any and all\n other commercial damages 205 | or losses), even if such Contributor\n has been advised of the possibility 206 | of such damages.\n\n 9. Accepting Warranty or Additional Liability. While 207 | redistributing\n the Work or Derivative Works thereof, You may choose 208 | to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n 209 | \ or other liability obligations and/or rights consistent with this\n 210 | \ License. However, in accepting such obligations, You may act only\n 211 | \ on Your own behalf and on Your sole responsibility, not on behalf\n 212 | \ of any other Contributor, and only if You agree to indemnify,\n defend, 213 | and hold each Contributor harmless for any liability\n incurred by, or 214 | claims asserted against, such Contributor by reason\n of your accepting 215 | any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n\n### 216 | libxml2\n\nMIT\n\nhttp://xmlsoft.org/\n\n Except where otherwise noted in the 217 | source code (e.g. the files hash.c,\n list.c and the trio files, which are 218 | covered by a similar licence but\n with different Copyright notices) all the 219 | files are:\n\n Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved.\n\n 220 | \ Permission is hereby granted, free of charge, to any person obtaining a copy\n 221 | \ of this software and associated documentation files (the \"Software\"), to 222 | deal\n in the Software without restriction, including without limitation the 223 | rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or 224 | sell\n copies of the Software, and to permit persons to whom the Software is 225 | fur-\n nished to do so, subject to the following conditions:\n\n The above 226 | copyright notice and this permission notice shall be included in\n all copies 227 | or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS 228 | IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT 229 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-\n NESS FOR A PARTICULAR 230 | PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT 231 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN 232 | ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION 233 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n\n\n### 234 | libxslt\n\nMIT\n\nhttp://xmlsoft.org/libxslt/\n\n Licence for libxslt except 235 | libexslt\n ----------------------------------------------------------------------\n 236 | \ Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved.\n\n Permission 237 | is hereby granted, free of charge, to any person obtaining a copy\n of this 238 | software and associated documentation files (the \"Software\"), to deal\n in 239 | the Software without restriction, including without limitation the rights\n to 240 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies 241 | of the Software, and to permit persons to whom the Software is fur-\n nished 242 | to do so, subject to the following conditions:\n\n The above copyright notice 243 | and this permission notice shall be included in\n all copies or substantial 244 | portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY 245 | OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 246 | OF MERCHANTABILITY, FIT-\n NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 247 | \ IN NO EVENT SHALL THE\n DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES 248 | OR OTHER LIABILITY, WHETHER\n IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 249 | ARISING FROM, OUT OF OR IN CON-\n NECTION WITH THE SOFTWARE OR THE USE OR OTHER 250 | DEALINGS IN THE SOFTWARE.\n\n Except as contained in this notice, the name 251 | of Daniel Veillard shall not\n be used in advertising or otherwise to promote 252 | the sale, use or other deal-\n ings in this Software without prior written 253 | authorization from him.\n\n ----------------------------------------------------------------------\n\n 254 | \ Licence for libexslt\n ----------------------------------------------------------------------\n 255 | \ Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard.\n 256 | \ All Rights Reserved.\n\n Permission is hereby granted, free of charge, 257 | to any person obtaining a copy\n of this software and associated documentation 258 | files (the \"Software\"), to deal\n in the Software without restriction, including 259 | without limitation the rights\n to use, copy, modify, merge, publish, distribute, 260 | sublicense, and/or sell\n copies of the Software, and to permit persons to 261 | whom the Software is fur-\n nished to do so, subject to the following conditions:\n\n 262 | \ The above copyright notice and this permission notice shall be included in\n 263 | \ all copies or substantial portions of the Software.\n\n THE SOFTWARE IS 264 | PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING 265 | BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-\n NESS FOR A PARTICULAR 266 | PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS BE LIABLE FOR 267 | ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\n IN AN ACTION OF CONTRACT, 268 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-\n NECTION WITH THE SOFTWARE 269 | OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n Except as contained in this 270 | notice, the name of the authors shall not\n be used in advertising or otherwise 271 | to promote the sale, use or other deal-\n ings in this Software without prior 272 | written authorization from him.\n ----------------------------------------------------------------------\n\n\n### 273 | zlib\n\nzlib license\n\nhttp://www.zlib.net/zlib_license.html\n\n Copyright 274 | (C) 1995-2017 Jean-loup Gailly and Mark Adler\n\n This software is provided 275 | 'as-is', without any express or implied\n warranty. In no event will the 276 | authors be held liable for any damages\n arising from the use of this software.\n\n 277 | \ Permission is granted to anyone to use this software for any purpose,\n 278 | \ including commercial applications, and to alter it and redistribute it\n 279 | \ freely, subject to the following restrictions:\n\n 1. The origin of 280 | this software must not be misrepresented; you must not\n claim that you 281 | wrote the original software. If you use this software\n in a product, 282 | an acknowledgment in the product documentation would be\n appreciated 283 | but is not required.\n 2. Altered source versions must be plainly marked 284 | as such, and must not be\n misrepresented as being the original software.\n 285 | \ 3. This notice may not be removed or altered from any source distribution.\n\n 286 | \ Jean-loup Gailly Mark Adler\n jloup@gzip.org madler@alumni.caltech.edu\n\n\n### 287 | libiconv\n\nLGPL\n\nhttps://www.gnu.org/software/libiconv/\n\n GNU 288 | LIBRARY GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright 289 | (C) 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, 290 | Boston, MA 02110-1301, USA\n Everyone is permitted to copy and distribute 291 | verbatim copies\n of this license document, but changing it is not allowed.\n\n 292 | \ [This is the first released version of the library GPL. It is\n numbered 293 | 2 because it goes with version 2 of the ordinary GPL.]\n\n Preamble\n\n 294 | \ The licenses for most software are designed to take away your\n freedom 295 | to share and change it. By contrast, the GNU General Public\n Licenses are 296 | intended to guarantee your freedom to share and change\n free software--to 297 | make sure the software is free for all its users.\n\n This license, the Library 298 | General Public License, applies to some\n specially designated Free Software 299 | Foundation software, and to any\n other libraries whose authors decide to use 300 | it. You can use it for\n your libraries, too.\n\n When we speak of free 301 | software, we are referring to freedom, not\n price. Our General Public Licenses 302 | are designed to make sure that you\n have the freedom to distribute copies 303 | of free software (and charge for\n this service if you wish), that you receive 304 | source code or can get it\n if you want it, that you can change the software 305 | or use pieces of it\n in new free programs; and that you know you can do these 306 | things.\n\n To protect your rights, we need to make restrictions that forbid\n 307 | \ anyone to deny you these rights or to ask you to surrender the rights.\n These 308 | restrictions translate to certain responsibilities for you if\n you distribute 309 | copies of the library, or if you modify it.\n\n For example, if you distribute 310 | copies of the library, whether gratis\n or for a fee, you must give the recipients 311 | all the rights that we gave\n you. You must make sure that they, too, receive 312 | or can get the source\n code. If you link a program with the library, you 313 | must provide\n complete object files to the recipients so that they can relink 314 | them\n with the library, after making changes to the library and recompiling\n 315 | \ it. And you must show them these terms so they know their rights.\n\n Our 316 | method of protecting your rights has two steps: (1) copyright\n the library, 317 | and (2) offer you this license which gives you legal\n permission to copy, 318 | distribute and/or modify the library.\n\n Also, for each distributor's protection, 319 | we want to make certain\n that everyone understands that there is no warranty 320 | for this free\n library. If the library is modified by someone else and passed 321 | on, we\n want its recipients to know that what they have is not the original\n 322 | \ version, so that any problems introduced by others will not reflect on\n the 323 | original authors' reputations.\n \f\n Finally, any free program is threatened 324 | constantly by software\n patents. We wish to avoid the danger that companies 325 | distributing free\n software will individually obtain patent licenses, thus 326 | in effect\n transforming the program into proprietary software. To prevent 327 | this,\n we have made it clear that any patent must be licensed for everyone's\n 328 | \ free use or not licensed at all.\n\n Most GNU software, including some 329 | libraries, is covered by the ordinary\n GNU General Public License, which was 330 | designed for utility programs. This\n license, the GNU Library General Public 331 | License, applies to certain\n designated libraries. This license is quite 332 | different from the ordinary\n one; be sure to read it in full, and don't assume 333 | that anything in it is\n the same as in the ordinary license.\n\n The 334 | reason we have a separate public license for some libraries is that\n they 335 | blur the distinction we usually make between modifying or adding to a\n program 336 | and simply using it. Linking a program with a library, without\n changing 337 | the library, is in some sense simply using the library, and is\n analogous 338 | to running a utility program or application program. However, in\n a textual 339 | and legal sense, the linked executable is a combined work, a\n derivative of 340 | the original library, and the ordinary General Public License\n treats it as 341 | such.\n\n Because of this blurred distinction, using the ordinary General\n 342 | \ Public License for libraries did not effectively promote software\n sharing, 343 | because most developers did not use the libraries. We\n concluded that weaker 344 | conditions might promote sharing better.\n\n However, unrestricted linking 345 | of non-free programs would deprive the\n users of those programs of all benefit 346 | from the free status of the\n libraries themselves. This Library General Public 347 | License is intended to\n permit developers of non-free programs to use free 348 | libraries, while\n preserving your freedom as a user of such programs to change 349 | the free\n libraries that are incorporated in them. (We have not seen how 350 | to achieve\n this as regards changes in header files, but we have achieved 351 | it as regards\n changes in the actual functions of the Library.) The hope 352 | is that this\n will lead to faster development of free libraries.\n\n The 353 | precise terms and conditions for copying, distribution and\n modification follow. 354 | \ Pay close attention to the difference between a\n \"work based on the library\" 355 | and a \"work that uses the library\". The\n former contains code derived from 356 | the library, while the latter only\n works together with the library.\n\n Note 357 | that it is possible for a library to be covered by the ordinary\n General Public 358 | License rather than by this special one.\n \f\n GNU LIBRARY GENERAL 359 | PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 360 | \ 0. This License Agreement applies to any software library which\n contains 361 | a notice placed by the copyright holder or other authorized\n party saying 362 | it may be distributed under the terms of this Library\n General Public License 363 | (also called \"this License\"). Each licensee is\n addressed as \"you\".\n\n 364 | \ A \"library\" means a collection of software functions and/or data\n prepared 365 | so as to be conveniently linked with application programs\n (which use some 366 | of those functions and data) to form executables.\n\n The \"Library\", below, 367 | refers to any such software library or work\n which has been distributed under 368 | these terms. A \"work based on the\n Library\" means either the Library or 369 | any derivative work under\n copyright law: that is to say, a work containing 370 | the Library or a\n portion of it, either verbatim or with modifications and/or 371 | translated\n straightforwardly into another language. (Hereinafter, translation 372 | is\n included without limitation in the term \"modification\".)\n\n \"Source 373 | code\" for a work means the preferred form of the work for\n making modifications 374 | to it. For a library, complete source code means\n all the source code for 375 | all modules it contains, plus any associated\n interface definition files, 376 | plus the scripts used to control compilation\n and installation of the library.\n\n 377 | \ Activities other than copying, distribution and modification are not\n covered 378 | by this License; they are outside its scope. The act of\n running a program 379 | using the Library is not restricted, and output from\n such a program is covered 380 | only if its contents constitute a work based\n on the Library (independent 381 | of the use of the Library in a tool for\n writing it). Whether that is true 382 | depends on what the Library does\n and what the program that uses the Library 383 | does.\n\n 1. You may copy and distribute verbatim copies of the Library's\n 384 | \ complete source code as you receive it, in any medium, provided that\n you 385 | conspicuously and appropriately publish on each copy an\n appropriate copyright 386 | notice and disclaimer of warranty; keep intact\n all the notices that refer 387 | to this License and to the absence of any\n warranty; and distribute a copy 388 | of this License along with the\n Library.\n\n You may charge a fee for 389 | the physical act of transferring a copy,\n and you may at your option offer 390 | warranty protection in exchange for a\n fee.\n \f\n 2. You may modify 391 | your copy or copies of the Library or any portion\n of it, thus forming a work 392 | based on the Library, and copy and\n distribute such modifications or work 393 | under the terms of Section 1\n above, provided that you also meet all of these 394 | conditions:\n\n a) The modified work must itself be a software library.\n\n 395 | \ b) You must cause the files modified to carry prominent notices\n stating 396 | that you changed the files and the date of any change.\n\n c) You must 397 | cause the whole of the work to be licensed at no\n charge to all third 398 | parties under the terms of this License.\n\n d) If a facility in the modified 399 | Library refers to a function or a\n table of data to be supplied by an 400 | application program that uses\n the facility, other than as an argument 401 | passed when the facility\n is invoked, then you must make a good faith 402 | effort to ensure that,\n in the event an application does not supply such 403 | function or\n table, the facility still operates, and performs whatever 404 | part of\n its purpose remains meaningful.\n\n (For example, a function 405 | in a library to compute square roots has\n a purpose that is entirely well-defined 406 | independent of the\n application. Therefore, Subsection 2d requires that 407 | any\n application-supplied function or table used by this function must\n 408 | \ be optional: if the application does not supply it, the square\n root 409 | function must still compute square roots.)\n\n These requirements apply to 410 | the modified work as a whole. If\n identifiable sections of that work are 411 | not derived from the Library,\n and can be reasonably considered independent 412 | and separate works in\n themselves, then this License, and its terms, do not 413 | apply to those\n sections when you distribute them as separate works. But 414 | when you\n distribute the same sections as part of a whole which is a work 415 | based\n on the Library, the distribution of the whole must be on the terms 416 | of\n this License, whose permissions for other licensees extend to the\n entire 417 | whole, and thus to each and every part regardless of who wrote\n it.\n\n Thus, 418 | it is not the intent of this section to claim rights or contest\n your rights 419 | to work written entirely by you; rather, the intent is to\n exercise the right 420 | to control the distribution of derivative or\n collective works based on the 421 | Library.\n\n In addition, mere aggregation of another work not based on the 422 | Library\n with the Library (or with a work based on the Library) on a volume 423 | of\n a storage or distribution medium does not bring the other work under\n 424 | \ the scope of this License.\n\n 3. You may opt to apply the terms of the 425 | ordinary GNU General Public\n License instead of this License to a given copy 426 | of the Library. To do\n this, you must alter all the notices that refer to 427 | this License, so\n that they refer to the ordinary GNU General Public License, 428 | version 2,\n instead of to this License. (If a newer version than version 429 | 2 of the\n ordinary GNU General Public License has appeared, then you can specify\n 430 | \ that version instead if you wish.) Do not make any other change in\n these 431 | notices.\n \f\n Once this change is made in a given copy, it is irreversible 432 | for\n that copy, so the ordinary GNU General Public License applies to all\n 433 | \ subsequent copies and derivative works made from that copy.\n\n This 434 | option is useful when you wish to copy part of the code of\n the Library into 435 | a program that is not a library.\n\n 4. You may copy and distribute the Library 436 | (or a portion or\n derivative of it, under Section 2) in object code or executable 437 | form\n under the terms of Sections 1 and 2 above provided that you accompany\n 438 | \ it with the complete corresponding machine-readable source code, which\n must 439 | be distributed under the terms of Sections 1 and 2 above on a\n medium customarily 440 | used for software interchange.\n\n If distribution of object code is made 441 | by offering access to copy\n from a designated place, then offering equivalent 442 | access to copy the\n source code from the same place satisfies the requirement 443 | to\n distribute the source code, even though third parties are not\n compelled 444 | to copy the source along with the object code.\n\n 5. A program that contains 445 | no derivative of any portion of the\n Library, but is designed to work with 446 | the Library by being compiled or\n linked with it, is called a \"work that 447 | uses the Library\". Such a\n work, in isolation, is not a derivative work 448 | of the Library, and\n therefore falls outside the scope of this License.\n\n 449 | \ However, linking a \"work that uses the Library\" with the Library\n creates 450 | an executable that is a derivative of the Library (because it\n contains portions 451 | of the Library), rather than a \"work that uses the\n library\". The executable 452 | is therefore covered by this License.\n Section 6 states terms for distribution 453 | of such executables.\n\n When a \"work that uses the Library\" uses material 454 | from a header file\n that is part of the Library, the object code for the work 455 | may be a\n derivative work of the Library even though the source code is not.\n 456 | \ Whether this is true is especially significant if the work can be\n linked 457 | without the Library, or if the work is itself a library. The\n threshold for 458 | this to be true is not precisely defined by law.\n\n If such an object file 459 | uses only numerical parameters, data\n structure layouts and accessors, and 460 | small macros and small inline\n functions (ten lines or less in length), then 461 | the use of the object\n file is unrestricted, regardless of whether it is legally 462 | a derivative\n work. (Executables containing this object code plus portions 463 | of the\n Library will still fall under Section 6.)\n\n Otherwise, if the 464 | work is a derivative of the Library, you may\n distribute the object code for 465 | the work under the terms of Section 6.\n Any executables containing that work 466 | also fall under Section 6,\n whether or not they are linked directly with the 467 | Library itself.\n \f\n 6. As an exception to the Sections above, you may 468 | also compile or\n link a \"work that uses the Library\" with the Library to 469 | produce a\n work containing portions of the Library, and distribute that work\n 470 | \ under terms of your choice, provided that the terms permit\n modification 471 | of the work for the customer's own use and reverse\n engineering for debugging 472 | such modifications.\n\n You must give prominent notice with each copy of 473 | the work that the\n Library is used in it and that the Library and its use 474 | are covered by\n this License. You must supply a copy of this License. If 475 | the work\n during execution displays copyright notices, you must include the\n 476 | \ copyright notice for the Library among them, as well as a reference\n directing 477 | the user to the copy of this License. Also, you must do one\n of these things:\n\n 478 | \ a) Accompany the work with the complete corresponding\n machine-readable 479 | source code for the Library including whatever\n changes were used in the 480 | work (which must be distributed under\n Sections 1 and 2 above); and, if 481 | the work is an executable linked\n with the Library, with the complete 482 | machine-readable \"work that\n uses the Library\", as object code and/or 483 | source code, so that the\n user can modify the Library and then relink 484 | to produce a modified\n executable containing the modified Library. (It 485 | is understood\n that the user who changes the contents of definitions files 486 | in the\n Library will not necessarily be able to recompile the application\n 487 | \ to use the modified definitions.)\n\n b) Accompany the work with 488 | a written offer, valid for at\n least three years, to give the same user 489 | the materials\n specified in Subsection 6a, above, for a charge no more\n 490 | \ than the cost of performing this distribution.\n\n c) If distribution 491 | of the work is made by offering access to copy\n from a designated place, 492 | offer equivalent access to copy the above\n specified materials from the 493 | same place.\n\n d) Verify that the user has already received a copy of 494 | these\n materials or that you have already sent this user a copy.\n\n For 495 | an executable, the required form of the \"work that uses the\n Library\" must 496 | include any data and utility programs needed for\n reproducing the executable 497 | from it. However, as a special exception,\n the source code distributed need 498 | not include anything that is normally\n distributed (in either source or binary 499 | form) with the major\n components (compiler, kernel, and so on) of the operating 500 | system on\n which the executable runs, unless that component itself accompanies\n 501 | \ the executable.\n\n It may happen that this requirement contradicts the 502 | license\n restrictions of other proprietary libraries that do not normally\n 503 | \ accompany the operating system. Such a contradiction means you cannot\n use 504 | both them and the Library together in an executable that you\n distribute.\n 505 | \ \f\n 7. You may place library facilities that are a work based on the\n 506 | \ Library side-by-side in a single library together with other library\n facilities 507 | not covered by this License, and distribute such a combined\n library, provided 508 | that the separate distribution of the work based on\n the Library and of the 509 | other library facilities is otherwise\n permitted, and provided that you do 510 | these two things:\n\n a) Accompany the combined library with a copy of 511 | the same work\n based on the Library, uncombined with any other library\n 512 | \ facilities. This must be distributed under the terms of the\n Sections 513 | above.\n\n b) Give prominent notice with the combined library of the fact\n 514 | \ that part of it is a work based on the Library, and explaining\n where 515 | to find the accompanying uncombined form of the same work.\n\n 8. You may 516 | not copy, modify, sublicense, link with, or distribute\n the Library except 517 | as expressly provided under this License. Any\n attempt otherwise to copy, 518 | modify, sublicense, link with, or\n distribute the Library is void, and will 519 | automatically terminate your\n rights under this License. However, parties 520 | who have received copies,\n or rights, from you under this License will not 521 | have their licenses\n terminated so long as such parties remain in full compliance.\n\n 522 | \ 9. You are not required to accept this License, since you have not\n signed 523 | it. However, nothing else grants you permission to modify or\n distribute 524 | the Library or its derivative works. These actions are\n prohibited by law 525 | if you do not accept this License. Therefore, by\n modifying or distributing 526 | the Library (or any work based on the\n Library), you indicate your acceptance 527 | of this License to do so, and\n all its terms and conditions for copying, distributing 528 | or modifying\n the Library or works based on it.\n\n 10. Each time you 529 | redistribute the Library (or any work based on the\n Library), the recipient 530 | automatically receives a license from the\n original licensor to copy, distribute, 531 | link with or modify the Library\n subject to these terms and conditions. You 532 | may not impose any further\n restrictions on the recipients' exercise of the 533 | rights granted herein.\n You are not responsible for enforcing compliance by 534 | third parties to\n this License.\n \f\n 11. If, as a consequence of 535 | a court judgment or allegation of patent\n infringement or for any other reason 536 | (not limited to patent issues),\n conditions are imposed on you (whether by 537 | court order, agreement or\n otherwise) that contradict the conditions of this 538 | License, they do not\n excuse you from the conditions of this License. If 539 | you cannot\n distribute so as to satisfy simultaneously your obligations under 540 | this\n License and any other pertinent obligations, then as a consequence you\n 541 | \ may not distribute the Library at all. For example, if a patent\n license 542 | would not permit royalty-free redistribution of the Library by\n all those 543 | who receive copies directly or indirectly through you, then\n the only way 544 | you could satisfy both it and this License would be to\n refrain entirely from 545 | distribution of the Library.\n\n If any portion of this section is held invalid 546 | or unenforceable under any\n particular circumstance, the balance of the section 547 | is intended to apply,\n and the section as a whole is intended to apply in 548 | other circumstances.\n\n It is not the purpose of this section to induce you 549 | to infringe any\n patents or other property right claims or to contest validity 550 | of any\n such claims; this section has the sole purpose of protecting the\n 551 | \ integrity of the free software distribution system which is\n implemented 552 | by public license practices. Many people have made\n generous contributions 553 | to the wide range of software distributed\n through that system in reliance 554 | on consistent application of that\n system; it is up to the author/donor to 555 | decide if he or she is willing\n to distribute software through any other system 556 | and a licensee cannot\n impose that choice.\n\n This section is intended 557 | to make thoroughly clear what is believed to\n be a consequence of the rest 558 | of this License.\n\n 12. If the distribution and/or use of the Library is 559 | restricted in\n certain countries either by patents or by copyrighted interfaces, 560 | the\n original copyright holder who places the Library under this License may 561 | add\n an explicit geographical distribution limitation excluding those countries,\n 562 | \ so that distribution is permitted only in or among countries not thus\n excluded. 563 | \ In such case, this License incorporates the limitation as if\n written in 564 | the body of this License.\n\n 13. The Free Software Foundation may publish 565 | revised and/or new\n versions of the Library General Public License from time 566 | to time.\n Such new versions will be similar in spirit to the present version,\n 567 | \ but may differ in detail to address new problems or concerns.\n\n Each 568 | version is given a distinguishing version number. If the Library\n specifies 569 | a version number of this License which applies to it and\n \"any later version\", 570 | you have the option of following the terms and\n conditions either of that 571 | version or of any later version published by\n the Free Software Foundation. 572 | \ If the Library does not specify a\n license version number, you may choose 573 | any version ever published by\n the Free Software Foundation.\n \f\n 14. 574 | If you wish to incorporate parts of the Library into other free\n programs 575 | whose distribution conditions are incompatible with these,\n write to the author 576 | to ask for permission. For software which is\n copyrighted by the Free Software 577 | Foundation, write to the Free\n Software Foundation; we sometimes make exceptions 578 | for this. Our\n decision will be guided by the two goals of preserving the 579 | free status\n of all derivatives of our free software and of promoting the 580 | sharing\n and reuse of software generally.\n\n NO WARRANTY\n\n 581 | \ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\n WARRANTY 582 | FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\n EXCEPT WHEN OTHERWISE 583 | STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\n OTHER PARTIES PROVIDE THE 584 | LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\n KIND, EITHER EXPRESSED OR IMPLIED, 585 | INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY 586 | AND FITNESS FOR A PARTICULAR\n PURPOSE. THE ENTIRE RISK AS TO THE QUALITY 587 | AND PERFORMANCE OF THE\n LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, 588 | YOU ASSUME\n THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 589 | \ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\n WRITING 590 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\n AND/OR REDISTRIBUTE 591 | THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\n FOR DAMAGES, INCLUDING ANY 592 | GENERAL, SPECIAL, INCIDENTAL OR\n CONSEQUENTIAL DAMAGES ARISING OUT OF THE 593 | USE OR INABILITY TO USE THE\n LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF 594 | DATA OR DATA BEING\n RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 595 | PARTIES OR A\n FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), 596 | EVEN IF\n SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 597 | SUCH\n DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n\n### isorelax:isorelax\n\nMIT\n\nhttp://iso-relax.sourceforge.net/\n\n 598 | \ Copyright (c) 2001-2002, SourceForge ISO-RELAX Project (ASAMI\n Tomoharu, 599 | Daisuke Okajima, Kohsuke Kawaguchi, and MURATA Makoto)\n\n Permission is hereby 600 | granted, free of charge, to any person obtaining\n a copy of this software 601 | and associated documentation files (the\n \"Software\"), to deal in the Software 602 | without restriction, including\n without limitation the rights to use, copy, 603 | modify, merge, publish,\n distribute, sublicense, and/or sell copies of the 604 | Software, and to\n permit persons to whom the Software is furnished to do so, 605 | subject to\n the following conditions:\n\n The above copyright notice and 606 | this permission notice shall be\n included in all copies or substantial portions 607 | of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF 608 | ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 609 | OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. 610 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n LIABLE FOR ANY CLAIM, 611 | DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n OF CONTRACT, TORT OR OTHERWISE, 612 | ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER 613 | DEALINGS IN THE SOFTWARE.\n\n\n### net.sf.saxon:Saxon-HE\n\nMPL 2.0\n\nhttp://www.saxonica.com/\n\n 614 | \ Mozilla Public License Version 2.0\n ==================================\n\n 615 | \ 1. Definitions\n --------------\n\n 1.1. \"Contributor\"\n means 616 | each individual or legal entity that creates, contributes to\n the creation 617 | of, or owns Covered Software.\n\n 1.2. \"Contributor Version\"\n means 618 | the combination of the Contributions of others (if any) used\n by a Contributor 619 | and that particular Contributor's Contribution.\n\n 1.3. \"Contribution\"\n 620 | \ means Covered Software of a particular Contributor.\n\n 1.4. \"Covered 621 | Software\"\n means Source Code Form to which the initial Contributor has 622 | attached\n the notice in Exhibit A, the Executable Form of such Source 623 | Code\n Form, and Modifications of such Source Code Form, in each case\n 624 | \ including portions thereof.\n\n 1.5. \"Incompatible With Secondary 625 | Licenses\"\n means\n\n (a) that the initial Contributor has attached 626 | the notice described\n in Exhibit B to the Covered Software; or\n\n 627 | \ (b) that the Covered Software was made available under the terms of\n 628 | \ version 1.1 or earlier of the License, but not also under the\n terms 629 | of a Secondary License.\n\n 1.6. \"Executable Form\"\n means any form 630 | of the work other than Source Code Form.\n\n 1.7. \"Larger Work\"\n means 631 | a work that combines Covered Software with other material, in\n a separate 632 | file or files, that is not Covered Software.\n\n 1.8. \"License\"\n means 633 | this document.\n\n 1.9. \"Licensable\"\n means having the right to grant, 634 | to the maximum extent possible,\n whether at the time of the initial grant 635 | or subsequently, any and\n all of the rights conveyed by this License.\n\n 636 | \ 1.10. \"Modifications\"\n means any of the following:\n\n (a) 637 | any file in Source Code Form that results from an addition to,\n deletion 638 | from, or modification of the contents of Covered\n Software; or\n\n 639 | \ (b) any new file in Source Code Form that contains any Covered\n Software.\n\n 640 | \ 1.11. \"Patent Claims\" of a Contributor\n means any patent claim(s), 641 | including without limitation, method,\n process, and apparatus claims, 642 | in any patent Licensable by such\n Contributor that would be infringed, 643 | but for the grant of the\n License, by the making, using, selling, offering 644 | for sale, having\n made, import, or transfer of either its Contributions 645 | or its\n Contributor Version.\n\n 1.12. \"Secondary License\"\n means 646 | either the GNU General Public License, Version 2.0, the GNU\n Lesser General 647 | Public License, Version 2.1, the GNU Affero General\n Public License, Version 648 | 3.0, or any later versions of those\n licenses.\n\n 1.13. \"Source Code 649 | Form\"\n means the form of the work preferred for making modifications.\n\n 650 | \ 1.14. \"You\" (or \"Your\")\n means an individual or a legal entity 651 | exercising rights under this\n License. For legal entities, \"You\" includes 652 | any entity that\n controls, is controlled by, or is under common control 653 | with You. For\n purposes of this definition, \"control\" means (a) the 654 | power, direct\n or indirect, to cause the direction or management of such 655 | entity,\n whether by contract or otherwise, or (b) ownership of more than\n 656 | \ fifty percent (50%) of the outstanding shares or beneficial\n ownership 657 | of such entity.\n\n 2. License Grants and Conditions\n --------------------------------\n\n 658 | \ 2.1. Grants\n\n Each Contributor hereby grants You a world-wide, royalty-free,\n 659 | \ non-exclusive license:\n\n (a) under intellectual property rights (other 660 | than patent or trademark)\n Licensable by such Contributor to use, reproduce, 661 | make available,\n modify, display, perform, distribute, and otherwise exploit 662 | its\n Contributions, either on an unmodified basis, with Modifications, 663 | or\n as part of a Larger Work; and\n\n (b) under Patent Claims of such 664 | Contributor to make, use, sell, offer\n for sale, have made, import, and 665 | otherwise transfer either its\n Contributions or its Contributor Version.\n\n 666 | \ 2.2. Effective Date\n\n The licenses granted in Section 2.1 with respect 667 | to any Contribution\n become effective for each Contribution on the date the 668 | Contributor first\n distributes such Contribution.\n\n 2.3. Limitations 669 | on Grant Scope\n\n The licenses granted in this Section 2 are the only rights 670 | granted under\n this License. No additional rights or licenses will be implied 671 | from the\n distribution or licensing of Covered Software under this License.\n 672 | \ Notwithstanding Section 2.1(b) above, no patent license is granted by a\n 673 | \ Contributor:\n\n (a) for any code that a Contributor has removed from Covered 674 | Software;\n or\n\n (b) for infringements caused by: (i) Your and any 675 | other third party's\n modifications of Covered Software, or (ii) the combination 676 | of its\n Contributions with other software (except as part of its Contributor\n 677 | \ Version); or\n\n (c) under Patent Claims infringed by Covered Software 678 | in the absence of\n its Contributions.\n\n This License does not grant 679 | any rights in the trademarks, service marks,\n or logos of any Contributor 680 | (except as may be necessary to comply with\n the notice requirements in Section 681 | 3.4).\n\n 2.4. Subsequent Licenses\n\n No Contributor makes additional grants 682 | as a result of Your choice to\n distribute the Covered Software under a subsequent 683 | version of this\n License (see Section 10.2) or under the terms of a Secondary 684 | License (if\n permitted under the terms of Section 3.3).\n\n 2.5. Representation\n\n 685 | \ Each Contributor represents that the Contributor believes its\n Contributions 686 | are its original creation(s) or it has sufficient rights\n to grant the rights 687 | to its Contributions conveyed by this License.\n\n 2.6. Fair Use\n\n This 688 | License is not intended to limit any rights You have under\n applicable copyright 689 | doctrines of fair use, fair dealing, or other\n equivalents.\n\n 2.7. Conditions\n\n 690 | \ Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted\n in 691 | Section 2.1.\n\n 3. Responsibilities\n -------------------\n\n 3.1. Distribution 692 | of Source Form\n\n All distribution of Covered Software in Source Code Form, 693 | including any\n Modifications that You create or to which You contribute, must 694 | be under\n the terms of this License. You must inform recipients that the Source\n 695 | \ Code Form of the Covered Software is governed by the terms of this\n License, 696 | and how they can obtain a copy of this License. You may not\n attempt to alter 697 | or restrict the recipients' rights in the Source Code\n Form.\n\n 3.2. Distribution 698 | of Executable Form\n\n If You distribute Covered Software in Executable Form 699 | then:\n\n (a) such Covered Software must also be made available in Source Code\n 700 | \ Form, as described in Section 3.1, and You must inform recipients of\n 701 | \ the Executable Form how they can obtain a copy of such Source Code\n Form 702 | by reasonable means in a timely manner, at a charge no more\n than the 703 | cost of distribution to the recipient; and\n\n (b) You may distribute such 704 | Executable Form under the terms of this\n License, or sublicense it under 705 | different terms, provided that the\n license for the Executable Form does 706 | not attempt to limit or alter\n the recipients' rights in the Source Code 707 | Form under this License.\n\n 3.3. Distribution of a Larger Work\n\n You 708 | may create and distribute a Larger Work under terms of Your choice,\n provided 709 | that You also comply with the requirements of this License for\n the Covered 710 | Software. If the Larger Work is a combination of Covered\n Software with a 711 | work governed by one or more Secondary Licenses, and the\n Covered Software 712 | is not Incompatible With Secondary Licenses, this\n License permits You to 713 | additionally distribute such Covered Software\n under the terms of such Secondary 714 | License(s), so that the recipient of\n the Larger Work may, at their option, 715 | further distribute the Covered\n Software under the terms of either this License 716 | or such Secondary\n License(s).\n\n 3.4. Notices\n\n You may not remove 717 | or alter the substance of any license notices\n (including copyright notices, 718 | patent notices, disclaimers of warranty,\n or limitations of liability) contained 719 | within the Source Code Form of\n the Covered Software, except that You may 720 | alter any license notices to\n the extent required to remedy known factual 721 | inaccuracies.\n\n 3.5. Application of Additional Terms\n\n You may choose 722 | to offer, and to charge a fee for, warranty, support,\n indemnity or liability 723 | obligations to one or more recipients of Covered\n Software. However, You may 724 | do so only on Your own behalf, and not on\n behalf of any Contributor. You 725 | must make it absolutely clear that any\n such warranty, support, indemnity, 726 | or liability obligation is offered by\n You alone, and You hereby agree to 727 | indemnify every Contributor for any\n liability incurred by such Contributor 728 | as a result of warranty, support,\n indemnity or liability terms You offer. 729 | You may include additional\n disclaimers of warranty and limitations of liability 730 | specific to any\n jurisdiction.\n\n 4. Inability to Comply Due to Statute 731 | or Regulation\n ---------------------------------------------------\n\n If 732 | it is impossible for You to comply with any of the terms of this\n License 733 | with respect to some or all of the Covered Software due to\n statute, judicial 734 | order, or regulation then You must: (a) comply with\n the terms of this License 735 | to the maximum extent possible; and (b)\n describe the limitations and the 736 | code they affect. Such description must\n be placed in a text file included 737 | with all distributions of the Covered\n Software under this License. Except 738 | to the extent prohibited by statute\n or regulation, such description must 739 | be sufficiently detailed for a\n recipient of ordinary skill to be able to 740 | understand it.\n\n 5. Termination\n --------------\n\n 5.1. The rights 741 | granted under this License will terminate automatically\n if You fail to comply 742 | with any of its terms. However, if You become\n compliant, then the rights 743 | granted under this License from a particular\n Contributor are reinstated (a) 744 | provisionally, unless and until such\n Contributor explicitly and finally terminates 745 | Your grants, and (b) on an\n ongoing basis, if such Contributor fails to notify 746 | You of the\n non-compliance by some reasonable means prior to 60 days after 747 | You have\n come back into compliance. Moreover, Your grants from a particular\n 748 | \ Contributor are reinstated on an ongoing basis if such Contributor\n notifies 749 | You of the non-compliance by some reasonable means, this is the\n first time 750 | You have received notice of non-compliance with this License\n from such Contributor, 751 | and You become compliant prior to 30 days after\n Your receipt of the notice.\n\n 752 | \ 5.2. If You initiate litigation against any entity by asserting a patent\n 753 | \ infringement claim (excluding declaratory judgment actions,\n counter-claims, 754 | and cross-claims) alleging that a Contributor Version\n directly or indirectly 755 | infringes any patent, then the rights granted to\n You by any and all Contributors 756 | for the Covered Software under Section\n 2.1 of this License shall terminate.\n\n 757 | \ 5.3. In the event of termination under Sections 5.1 or 5.2 above, all\n end 758 | user license agreements (excluding distributors and resellers) which\n have 759 | been validly granted by You or Your distributors under this License\n prior 760 | to termination shall survive termination.\n\n ************************************************************************\n 761 | \ * *\n 762 | \ * 6. Disclaimer of Warranty *\n 763 | \ * ------------------------- *\n 764 | \ * *\n 765 | \ * Covered Software is provided under this License on an \"as is\" *\n 766 | \ * basis, without warranty of any kind, either expressed, implied, or *\n 767 | \ * statutory, including, without limitation, warranties that the *\n 768 | \ * Covered Software is free of defects, merchantable, fit for a *\n 769 | \ * particular purpose or non-infringing. The entire risk as to the *\n 770 | \ * quality and performance of the Covered Software is with You. *\n 771 | \ * Should any Covered Software prove defective in any respect, You *\n 772 | \ * (not any Contributor) assume the cost of any necessary servicing, *\n 773 | \ * repair, or correction. This disclaimer of warranty constitutes an *\n 774 | \ * essential part of this License. No use of any Covered Software is *\n 775 | \ * authorized under this License except under this disclaimer. *\n 776 | \ * *\n 777 | \ ************************************************************************\n\n 778 | \ ************************************************************************\n 779 | \ * *\n 780 | \ * 7. Limitation of Liability *\n 781 | \ * -------------------------- *\n 782 | \ * *\n 783 | \ * Under no circumstances and under no legal theory, whether tort *\n 784 | \ * (including negligence), contract, or otherwise, shall any *\n 785 | \ * Contributor, or anyone who distributes Covered Software as *\n 786 | \ * permitted above, be liable to You for any direct, indirect, *\n 787 | \ * special, incidental, or consequential damages of any character *\n 788 | \ * including, without limitation, damages for lost profits, loss of *\n 789 | \ * goodwill, work stoppage, computer failure or malfunction, or any *\n 790 | \ * and all other commercial damages or losses, even if such party *\n 791 | \ * shall have been informed of the possibility of such damages. This *\n 792 | \ * limitation of liability shall not apply to liability for death or *\n 793 | \ * personal injury resulting from such party's negligence to the *\n 794 | \ * extent applicable law prohibits such limitation. Some *\n 795 | \ * jurisdictions do not allow the exclusion or limitation of *\n 796 | \ * incidental or consequential damages, so this exclusion and *\n 797 | \ * limitation may not apply to You. *\n 798 | \ * *\n 799 | \ ************************************************************************\n\n 800 | \ 8. Litigation\n -------------\n\n Any litigation relating to this License 801 | may be brought only in the\n courts of a jurisdiction where the defendant maintains 802 | its principal\n place of business and such litigation shall be governed by 803 | laws of that\n jurisdiction, without reference to its conflict-of-law provisions.\n 804 | \ Nothing in this Section shall prevent a party's ability to bring\n cross-claims 805 | or counter-claims.\n\n 9. Miscellaneous\n ----------------\n\n This License 806 | represents the complete agreement concerning the subject\n matter hereof. If 807 | any provision of this License is held to be\n unenforceable, such provision 808 | shall be reformed only to the extent\n necessary to make it enforceable. Any 809 | law or regulation which provides\n that the language of a contract shall be 810 | construed against the drafter\n shall not be used to construe this License 811 | against a Contributor.\n\n 10. Versions of the License\n ---------------------------\n\n 812 | \ 10.1. New Versions\n\n Mozilla Foundation is the license steward. Except 813 | as provided in Section\n 10.3, no one other than the license steward has the 814 | right to modify or\n publish new versions of this License. Each version will 815 | be given a\n distinguishing version number.\n\n 10.2. Effect of New Versions\n\n 816 | \ You may distribute the Covered Software under the terms of the version\n of 817 | the License under which You originally received the Covered Software,\n or 818 | under the terms of any subsequent version published by the license\n steward.\n\n 819 | \ 10.3. Modified Versions\n\n If you create software not governed by this 820 | License, and you want to\n create a new license for such software, you may 821 | create and use a\n modified version of this License if you rename the license 822 | and remove\n any references to the name of the license steward (except to note 823 | that\n such modified license differs from this License).\n\n 10.4. Distributing 824 | Source Code Form that is Incompatible With Secondary\n Licenses\n\n If You 825 | choose to distribute Source Code Form that is Incompatible With\n Secondary 826 | Licenses under the terms of this version of the License, the\n notice described 827 | in Exhibit B of this License must be attached.\n\n\n### net.sourceforge.htmlunit:neko-htmlunit\n\nApache 828 | 2.0\n\nhttps://github.com/HtmlUnit/htmlunit-neko\n\n Apache 829 | License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n 830 | \ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. 831 | Definitions.\n\n \"License\" shall mean the terms and conditions for 832 | use, reproduction,\n and distribution as defined by Sections 1 through 833 | 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or 834 | entity authorized by\n the copyright owner that is granting the License.\n\n 835 | \ \"Legal Entity\" shall mean the union of the acting entity and all\n 836 | \ other entities that control, are controlled by, or are under common\n 837 | \ control with that entity. For the purposes of this definition,\n \"control\" 838 | means (i) the power, direct or indirect, to cause the\n direction or 839 | management of such entity, whether by contract or\n otherwise, or (ii) 840 | ownership of fifty percent (50%) or more of the\n outstanding shares, 841 | or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") 842 | shall mean an individual or Legal Entity\n exercising permissions granted 843 | by this License.\n\n \"Source\" form shall mean the preferred form for 844 | making modifications,\n including but not limited to software source 845 | code, documentation\n source, and configuration files.\n\n \"Object\" 846 | form shall mean any form resulting from mechanical\n transformation or 847 | translation of a Source form, including but\n not limited to compiled 848 | object code, generated documentation,\n and conversions to other media 849 | types.\n\n \"Work\" shall mean the work of authorship, whether in Source 850 | or\n Object form, made available under the License, as indicated by a\n 851 | \ copyright notice that is included in or attached to the work\n (an 852 | example is provided in the Appendix below).\n\n \"Derivative Works\" 853 | shall mean any work, whether in Source or Object\n form, that is based 854 | on (or derived from) the Work and for which the\n editorial revisions, 855 | annotations, elaborations, or other modifications\n represent, as a whole, 856 | an original work of authorship. For the purposes\n of this License, Derivative 857 | Works shall not include works that remain\n separable from, or merely 858 | link (or bind by name) to the interfaces of,\n the Work and Derivative 859 | Works thereof.\n\n \"Contribution\" shall mean any work of authorship, 860 | including\n the original version of the Work and any modifications or 861 | additions\n to that Work or Derivative Works thereof, that is intentionally\n 862 | \ submitted to Licensor for inclusion in the Work by the copyright owner\n 863 | \ or by an individual or Legal Entity authorized to submit on behalf of\n 864 | \ the copyright owner. For the purposes of this definition, \"submitted\"\n 865 | \ means any form of electronic, verbal, or written communication sent\n 866 | \ to the Licensor or its representatives, including but not limited to\n 867 | \ communication on electronic mailing lists, source code control systems,\n 868 | \ and issue tracking systems that are managed by, or on behalf of, the\n 869 | \ Licensor for the purpose of discussing and improving the Work, but\n 870 | \ excluding communication that is conspicuously marked or otherwise\n 871 | \ designated in writing by the copyright owner as \"Not a Contribution.\"\n\n 872 | \ \"Contributor\" shall mean Licensor and any individual or Legal Entity\n 873 | \ on behalf of whom a Contribution has been received by Licensor and\n 874 | \ subsequently incorporated within the Work.\n\n 2. Grant of Copyright 875 | License. Subject to the terms and conditions of\n this License, each 876 | Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, 877 | no-charge, royalty-free, irrevocable\n copyright license to reproduce, 878 | prepare Derivative Works of,\n publicly display, publicly perform, sublicense, 879 | and distribute the\n Work and such Derivative Works in Source or Object 880 | form.\n\n 3. Grant of Patent License. Subject to the terms and conditions 881 | of\n this License, each Contributor hereby grants to You a perpetual,\n 882 | \ worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except 883 | as stated in this section) patent license to make, have made,\n use, 884 | offer to sell, sell, import, and otherwise transfer the Work,\n where 885 | such license applies only to those patent claims licensable\n by such 886 | Contributor that are necessarily infringed by their\n Contribution(s) 887 | alone or by combination of their Contribution(s)\n with the Work to which 888 | such Contribution(s) was submitted. If You\n institute patent litigation 889 | against any entity (including a\n cross-claim or counterclaim in a lawsuit) 890 | alleging that the Work\n or a Contribution incorporated within the Work 891 | constitutes direct\n or contributory patent infringement, then any patent 892 | licenses\n granted to You under this License for that Work shall terminate\n 893 | \ as of the date such litigation is filed.\n\n 4. Redistribution. 894 | You may reproduce and distribute copies of the\n Work or Derivative Works 895 | thereof in any medium, with or without\n modifications, and in Source 896 | or Object form, provided that You\n meet the following conditions:\n\n 897 | \ (a) You must give any other recipients of the Work or\n Derivative 898 | Works a copy of this License; and\n\n (b) You must cause any modified 899 | files to carry prominent notices\n stating that You changed the files; 900 | and\n\n (c) You must retain, in the Source form of any Derivative Works\n 901 | \ that You distribute, all copyright, patent, trademark, and\n attribution 902 | notices from the Source form of the Work,\n excluding those notices 903 | that do not pertain to any part of\n the Derivative Works; and\n\n 904 | \ (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, 905 | then any Derivative Works that You distribute must\n include a readable 906 | copy of the attribution notices contained\n within such NOTICE file, 907 | excluding those notices that do not\n pertain to any part of the 908 | Derivative Works, in at least one\n of the following places: within 909 | a NOTICE text file distributed\n as part of the Derivative Works; 910 | within the Source form or\n documentation, if provided along with 911 | the Derivative Works; or,\n within a display generated by the Derivative 912 | Works, if and\n wherever such third-party notices normally appear. 913 | The contents\n of the NOTICE file are for informational purposes 914 | only and\n do not modify the License. You may add Your own attribution\n 915 | \ notices within Derivative Works that You distribute, alongside\n 916 | \ or as an addendum to the NOTICE text from the Work, provided\n that 917 | such additional attribution notices cannot be construed\n as modifying 918 | the License.\n\n You may add Your own copyright statement to Your modifications 919 | and\n may provide additional or different license terms and conditions\n 920 | \ for use, reproduction, or distribution of Your modifications, or\n for 921 | any such Derivative Works as a whole, provided Your use,\n reproduction, 922 | and distribution of the Work otherwise complies with\n the conditions 923 | stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly 924 | state otherwise,\n any Contribution intentionally submitted for inclusion 925 | in the Work\n by You to the Licensor shall be under the terms and conditions 926 | of\n this License, without any additional terms or conditions.\n Notwithstanding 927 | the above, nothing herein shall supersede or modify\n the terms of any 928 | separate license agreement you may have executed\n with Licensor regarding 929 | such Contributions.\n\n 6. Trademarks. This License does not grant permission 930 | to use the trade\n names, trademarks, service marks, or product names 931 | of the Licensor,\n except as required for reasonable and customary use 932 | in describing the\n origin of the Work and reproducing the content of 933 | the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable 934 | law or\n agreed to in writing, Licensor provides the Work (and each\n 935 | \ Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT 936 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, 937 | without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, 938 | MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely 939 | responsible for determining the\n appropriateness of using or redistributing 940 | the Work and assume any\n risks associated with Your exercise of permissions 941 | under this License.\n\n 8. Limitation of Liability. In no event and under 942 | no legal theory,\n whether in tort (including negligence), contract, 943 | or otherwise,\n unless required by applicable law (such as deliberate 944 | and grossly\n negligent acts) or agreed to in writing, shall any Contributor 945 | be\n liable to You for damages, including any direct, indirect, special,\n 946 | \ incidental, or consequential damages of any character arising as a\n 947 | \ result of this License or out of the use or inability to use the\n Work 948 | (including but not limited to damages for loss of goodwill,\n work stoppage, 949 | computer failure or malfunction, or any and all\n other commercial damages 950 | or losses), even if such Contributor\n has been advised of the possibility 951 | of such damages.\n\n 9. Accepting Warranty or Additional Liability. While 952 | redistributing\n the Work or Derivative Works thereof, You may choose 953 | to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n 954 | \ or other liability obligations and/or rights consistent with this\n 955 | \ License. However, in accepting such obligations, You may act only\n 956 | \ on Your own behalf and on Your sole responsibility, not on behalf\n 957 | \ of any other Contributor, and only if You agree to indemnify,\n defend, 958 | and hold each Contributor harmless for any liability\n incurred by, or 959 | claims asserted against, such Contributor by reason\n of your accepting 960 | any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n\n### 961 | nu.validator:jing\n\nBSD-3-Clause\n\nhttp://www.thaiopensource.com/relaxng/jing.html\n\n 962 | \ Copyright (c) 2001-2003 Thai Open Source Software Center Ltd\n All rights 963 | reserved.\n\n Redistribution and use in source and binary forms, with or without\n 964 | \ modification, are permitted provided that the following conditions\n are 965 | met:\n\n * Redistributions of source code must retain the above copyright\n 966 | \ notice, this list of conditions and the following disclaimer.\n\n * Redistributions 967 | in binary form must reproduce the above\n copyright notice, this list of 968 | conditions and the following\n disclaimer in the documentation and/or other 969 | materials provided\n with the distribution.\n\n * Neither the name of 970 | the Thai Open Source Software Center Ltd nor\n the names of its contributors 971 | may be used to endorse or promote\n products derived from this software without 972 | specific prior\n written permission.\n\n THIS SOFTWARE IS PROVIDED BY 973 | THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED 974 | WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY 975 | AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE 976 | REGENTS OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 977 | EXEMPLARY,\n OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT 978 | OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS 979 | INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, 980 | STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 981 | ANY WAY OUT OF\n THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 982 | OF\n SUCH DAMAGE.\n\n\n### org.nokogiri:nekodtd\n\nApache 2.0\n\nhttps://github.com/sparklemotion/nekodtd\n\n 983 | \ Apache License\n Version 984 | 2.0, January 2004\n http://www.apache.org/licenses/\n\n 985 | \ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. 986 | Definitions.\n\n \"License\" shall mean the terms and conditions for 987 | use, reproduction,\n and distribution as defined by Sections 1 through 988 | 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or 989 | entity authorized by\n the copyright owner that is granting the License.\n\n 990 | \ \"Legal Entity\" shall mean the union of the acting entity and all\n 991 | \ other entities that control, are controlled by, or are under common\n 992 | \ control with that entity. For the purposes of this definition,\n \"control\" 993 | means (i) the power, direct or indirect, to cause the\n direction or 994 | management of such entity, whether by contract or\n otherwise, or (ii) 995 | ownership of fifty percent (50%) or more of the\n outstanding shares, 996 | or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") 997 | shall mean an individual or Legal Entity\n exercising permissions granted 998 | by this License.\n\n \"Source\" form shall mean the preferred form for 999 | making modifications,\n including but not limited to software source 1000 | code, documentation\n source, and configuration files.\n\n \"Object\" 1001 | form shall mean any form resulting from mechanical\n transformation or 1002 | translation of a Source form, including but\n not limited to compiled 1003 | object code, generated documentation,\n and conversions to other media 1004 | types.\n\n \"Work\" shall mean the work of authorship, whether in Source 1005 | or\n Object form, made available under the License, as indicated by a\n 1006 | \ copyright notice that is included in or attached to the work\n (an 1007 | example is provided in the Appendix below).\n\n \"Derivative Works\" 1008 | shall mean any work, whether in Source or Object\n form, that is based 1009 | on (or derived from) the Work and for which the\n editorial revisions, 1010 | annotations, elaborations, or other modifications\n represent, as a whole, 1011 | an original work of authorship. For the purposes\n of this License, Derivative 1012 | Works shall not include works that remain\n separable from, or merely 1013 | link (or bind by name) to the interfaces of,\n the Work and Derivative 1014 | Works thereof.\n\n \"Contribution\" shall mean any work of authorship, 1015 | including\n the original version of the Work and any modifications or 1016 | additions\n to that Work or Derivative Works thereof, that is intentionally\n 1017 | \ submitted to Licensor for inclusion in the Work by the copyright owner\n 1018 | \ or by an individual or Legal Entity authorized to submit on behalf of\n 1019 | \ the copyright owner. For the purposes of this definition, \"submitted\"\n 1020 | \ means any form of electronic, verbal, or written communication sent\n 1021 | \ to the Licensor or its representatives, including but not limited to\n 1022 | \ communication on electronic mailing lists, source code control systems,\n 1023 | \ and issue tracking systems that are managed by, or on behalf of, the\n 1024 | \ Licensor for the purpose of discussing and improving the Work, but\n 1025 | \ excluding communication that is conspicuously marked or otherwise\n 1026 | \ designated in writing by the copyright owner as \"Not a Contribution.\"\n\n 1027 | \ \"Contributor\" shall mean Licensor and any individual or Legal Entity\n 1028 | \ on behalf of whom a Contribution has been received by Licensor and\n 1029 | \ subsequently incorporated within the Work.\n\n 2. Grant of Copyright 1030 | License. Subject to the terms and conditions of\n this License, each 1031 | Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, 1032 | no-charge, royalty-free, irrevocable\n copyright license to reproduce, 1033 | prepare Derivative Works of,\n publicly display, publicly perform, sublicense, 1034 | and distribute the\n Work and such Derivative Works in Source or Object 1035 | form.\n\n 3. Grant of Patent License. Subject to the terms and conditions 1036 | of\n this License, each Contributor hereby grants to You a perpetual,\n 1037 | \ worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except 1038 | as stated in this section) patent license to make, have made,\n use, 1039 | offer to sell, sell, import, and otherwise transfer the Work,\n where 1040 | such license applies only to those patent claims licensable\n by such 1041 | Contributor that are necessarily infringed by their\n Contribution(s) 1042 | alone or by combination of their Contribution(s)\n with the Work to which 1043 | such Contribution(s) was submitted. If You\n institute patent litigation 1044 | against any entity (including a\n cross-claim or counterclaim in a lawsuit) 1045 | alleging that the Work\n or a Contribution incorporated within the Work 1046 | constitutes direct\n or contributory patent infringement, then any patent 1047 | licenses\n granted to You under this License for that Work shall terminate\n 1048 | \ as of the date such litigation is filed.\n\n 4. Redistribution. 1049 | You may reproduce and distribute copies of the\n Work or Derivative Works 1050 | thereof in any medium, with or without\n modifications, and in Source 1051 | or Object form, provided that You\n meet the following conditions:\n\n 1052 | \ (a) You must give any other recipients of the Work or\n Derivative 1053 | Works a copy of this License; and\n\n (b) You must cause any modified 1054 | files to carry prominent notices\n stating that You changed the files; 1055 | and\n\n (c) You must retain, in the Source form of any Derivative Works\n 1056 | \ that You distribute, all copyright, patent, trademark, and\n attribution 1057 | notices from the Source form of the Work,\n excluding those notices 1058 | that do not pertain to any part of\n the Derivative Works; and\n\n 1059 | \ (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, 1060 | then any Derivative Works that You distribute must\n include a readable 1061 | copy of the attribution notices contained\n within such NOTICE file, 1062 | excluding those notices that do not\n pertain to any part of the 1063 | Derivative Works, in at least one\n of the following places: within 1064 | a NOTICE text file distributed\n as part of the Derivative Works; 1065 | within the Source form or\n documentation, if provided along with 1066 | the Derivative Works; or,\n within a display generated by the Derivative 1067 | Works, if and\n wherever such third-party notices normally appear. 1068 | The contents\n of the NOTICE file are for informational purposes 1069 | only and\n do not modify the License. You may add Your own attribution\n 1070 | \ notices within Derivative Works that You distribute, alongside\n 1071 | \ or as an addendum to the NOTICE text from the Work, provided\n that 1072 | such additional attribution notices cannot be construed\n as modifying 1073 | the License.\n\n You may add Your own copyright statement to Your modifications 1074 | and\n may provide additional or different license terms and conditions\n 1075 | \ for use, reproduction, or distribution of Your modifications, or\n for 1076 | any such Derivative Works as a whole, provided Your use,\n reproduction, 1077 | and distribution of the Work otherwise complies with\n the conditions 1078 | stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly 1079 | state otherwise,\n any Contribution intentionally submitted for inclusion 1080 | in the Work\n by You to the Licensor shall be under the terms and conditions 1081 | of\n this License, without any additional terms or conditions.\n Notwithstanding 1082 | the above, nothing herein shall supersede or modify\n the terms of any 1083 | separate license agreement you may have executed\n with Licensor regarding 1084 | such Contributions.\n\n 6. Trademarks. This License does not grant permission 1085 | to use the trade\n names, trademarks, service marks, or product names 1086 | of the Licensor,\n except as required for reasonable and customary use 1087 | in describing the\n origin of the Work and reproducing the content of 1088 | the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable 1089 | law or\n agreed to in writing, Licensor provides the Work (and each\n 1090 | \ Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT 1091 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, 1092 | without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, 1093 | MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely 1094 | responsible for determining the\n appropriateness of using or redistributing 1095 | the Work and assume any\n risks associated with Your exercise of permissions 1096 | under this License.\n\n 8. Limitation of Liability. In no event and under 1097 | no legal theory,\n whether in tort (including negligence), contract, 1098 | or otherwise,\n unless required by applicable law (such as deliberate 1099 | and grossly\n negligent acts) or agreed to in writing, shall any Contributor 1100 | be\n liable to You for damages, including any direct, indirect, special,\n 1101 | \ incidental, or consequential damages of any character arising as a\n 1102 | \ result of this License or out of the use or inability to use the\n Work 1103 | (including but not limited to damages for loss of goodwill,\n work stoppage, 1104 | computer failure or malfunction, or any and all\n other commercial damages 1105 | or losses), even if such Contributor\n has been advised of the possibility 1106 | of such damages.\n\n 9. Accepting Warranty or Additional Liability. While 1107 | redistributing\n the Work or Derivative Works thereof, You may choose 1108 | to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n 1109 | \ or other liability obligations and/or rights consistent with this\n 1110 | \ License. However, in accepting such obligations, You may act only\n 1111 | \ on Your own behalf and on Your sole responsibility, not on behalf\n 1112 | \ of any other Contributor, and only if You agree to indemnify,\n defend, 1113 | and hold each Contributor harmless for any liability\n incurred by, or 1114 | claims asserted against, such Contributor by reason\n of your accepting 1115 | any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n\n### 1116 | xalan:serializer and xalan:xalan\n\nApache 2.0\n\nhttps://xml.apache.org/xalan-j/\n\n 1117 | \ Apache License\n Version 1118 | 2.0, January 2004\n http://www.apache.org/licenses/\n\n 1119 | \ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. 1120 | Definitions.\n\n \"License\" shall mean the terms and conditions for 1121 | use, reproduction,\n and distribution as defined by Sections 1 through 1122 | 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or 1123 | entity authorized by\n the copyright owner that is granting the License.\n\n 1124 | \ \"Legal Entity\" shall mean the union of the acting entity and all\n 1125 | \ other entities that control, are controlled by, or are under common\n 1126 | \ control with that entity. For the purposes of this definition,\n \"control\" 1127 | means (i) the power, direct or indirect, to cause the\n direction or 1128 | management of such entity, whether by contract or\n otherwise, or (ii) 1129 | ownership of fifty percent (50%) or more of the\n outstanding shares, 1130 | or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") 1131 | shall mean an individual or Legal Entity\n exercising permissions granted 1132 | by this License.\n\n \"Source\" form shall mean the preferred form for 1133 | making modifications,\n including but not limited to software source 1134 | code, documentation\n source, and configuration files.\n\n \"Object\" 1135 | form shall mean any form resulting from mechanical\n transformation or 1136 | translation of a Source form, including but\n not limited to compiled 1137 | object code, generated documentation,\n and conversions to other media 1138 | types.\n\n \"Work\" shall mean the work of authorship, whether in Source 1139 | or\n Object form, made available under the License, as indicated by a\n 1140 | \ copyright notice that is included in or attached to the work\n (an 1141 | example is provided in the Appendix below).\n\n \"Derivative Works\" 1142 | shall mean any work, whether in Source or Object\n form, that is based 1143 | on (or derived from) the Work and for which the\n editorial revisions, 1144 | annotations, elaborations, or other modifications\n represent, as a whole, 1145 | an original work of authorship. For the purposes\n of this License, Derivative 1146 | Works shall not include works that remain\n separable from, or merely 1147 | link (or bind by name) to the interfaces of,\n the Work and Derivative 1148 | Works thereof.\n\n \"Contribution\" shall mean any work of authorship, 1149 | including\n the original version of the Work and any modifications or 1150 | additions\n to that Work or Derivative Works thereof, that is intentionally\n 1151 | \ submitted to Licensor for inclusion in the Work by the copyright owner\n 1152 | \ or by an individual or Legal Entity authorized to submit on behalf of\n 1153 | \ the copyright owner. For the purposes of this definition, \"submitted\"\n 1154 | \ means any form of electronic, verbal, or written communication sent\n 1155 | \ to the Licensor or its representatives, including but not limited to\n 1156 | \ communication on electronic mailing lists, source code control systems,\n 1157 | \ and issue tracking systems that are managed by, or on behalf of, the\n 1158 | \ Licensor for the purpose of discussing and improving the Work, but\n 1159 | \ excluding communication that is conspicuously marked or otherwise\n 1160 | \ designated in writing by the copyright owner as \"Not a Contribution.\"\n\n 1161 | \ \"Contributor\" shall mean Licensor and any individual or Legal Entity\n 1162 | \ on behalf of whom a Contribution has been received by Licensor and\n 1163 | \ subsequently incorporated within the Work.\n\n 2. Grant of Copyright 1164 | License. Subject to the terms and conditions of\n this License, each 1165 | Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, 1166 | no-charge, royalty-free, irrevocable\n copyright license to reproduce, 1167 | prepare Derivative Works of,\n publicly display, publicly perform, sublicense, 1168 | and distribute the\n Work and such Derivative Works in Source or Object 1169 | form.\n\n 3. Grant of Patent License. Subject to the terms and conditions 1170 | of\n this License, each Contributor hereby grants to You a perpetual,\n 1171 | \ worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except 1172 | as stated in this section) patent license to make, have made,\n use, 1173 | offer to sell, sell, import, and otherwise transfer the Work,\n where 1174 | such license applies only to those patent claims licensable\n by such 1175 | Contributor that are necessarily infringed by their\n Contribution(s) 1176 | alone or by combination of their Contribution(s)\n with the Work to which 1177 | such Contribution(s) was submitted. If You\n institute patent litigation 1178 | against any entity (including a\n cross-claim or counterclaim in a lawsuit) 1179 | alleging that the Work\n or a Contribution incorporated within the Work 1180 | constitutes direct\n or contributory patent infringement, then any patent 1181 | licenses\n granted to You under this License for that Work shall terminate\n 1182 | \ as of the date such litigation is filed.\n\n 4. Redistribution. 1183 | You may reproduce and distribute copies of the\n Work or Derivative Works 1184 | thereof in any medium, with or without\n modifications, and in Source 1185 | or Object form, provided that You\n meet the following conditions:\n\n 1186 | \ (a) You must give any other recipients of the Work or\n Derivative 1187 | Works a copy of this License; and\n\n (b) You must cause any modified 1188 | files to carry prominent notices\n stating that You changed the files; 1189 | and\n\n (c) You must retain, in the Source form of any Derivative Works\n 1190 | \ that You distribute, all copyright, patent, trademark, and\n attribution 1191 | notices from the Source form of the Work,\n excluding those notices 1192 | that do not pertain to any part of\n the Derivative Works; and\n\n 1193 | \ (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, 1194 | then any Derivative Works that You distribute must\n include a readable 1195 | copy of the attribution notices contained\n within such NOTICE file, 1196 | excluding those notices that do not\n pertain to any part of the 1197 | Derivative Works, in at least one\n of the following places: within 1198 | a NOTICE text file distributed\n as part of the Derivative Works; 1199 | within the Source form or\n documentation, if provided along with 1200 | the Derivative Works; or,\n within a display generated by the Derivative 1201 | Works, if and\n wherever such third-party notices normally appear. 1202 | The contents\n of the NOTICE file are for informational purposes 1203 | only and\n do not modify the License. You may add Your own attribution\n 1204 | \ notices within Derivative Works that You distribute, alongside\n 1205 | \ or as an addendum to the NOTICE text from the Work, provided\n that 1206 | such additional attribution notices cannot be construed\n as modifying 1207 | the License.\n\n You may add Your own copyright statement to Your modifications 1208 | and\n may provide additional or different license terms and conditions\n 1209 | \ for use, reproduction, or distribution of Your modifications, or\n for 1210 | any such Derivative Works as a whole, provided Your use,\n reproduction, 1211 | and distribution of the Work otherwise complies with\n the conditions 1212 | stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly 1213 | state otherwise,\n any Contribution intentionally submitted for inclusion 1214 | in the Work\n by You to the Licensor shall be under the terms and conditions 1215 | of\n this License, without any additional terms or conditions.\n Notwithstanding 1216 | the above, nothing herein shall supersede or modify\n the terms of any 1217 | separate license agreement you may have executed\n with Licensor regarding 1218 | such Contributions.\n\n 6. Trademarks. This License does not grant permission 1219 | to use the trade\n names, trademarks, service marks, or product names 1220 | of the Licensor,\n except as required for reasonable and customary use 1221 | in describing the\n origin of the Work and reproducing the content of 1222 | the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable 1223 | law or\n agreed to in writing, Licensor provides the Work (and each\n 1224 | \ Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT 1225 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, 1226 | without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, 1227 | MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely 1228 | responsible for determining the\n appropriateness of using or redistributing 1229 | the Work and assume any\n risks associated with Your exercise of permissions 1230 | under this License.\n\n 8. Limitation of Liability. In no event and under 1231 | no legal theory,\n whether in tort (including negligence), contract, 1232 | or otherwise,\n unless required by applicable law (such as deliberate 1233 | and grossly\n negligent acts) or agreed to in writing, shall any Contributor 1234 | be\n liable to You for damages, including any direct, indirect, special,\n 1235 | \ incidental, or consequential damages of any character arising as a\n 1236 | \ result of this License or out of the use or inability to use the\n Work 1237 | (including but not limited to damages for loss of goodwill,\n work stoppage, 1238 | computer failure or malfunction, or any and all\n other commercial damages 1239 | or losses), even if such Contributor\n has been advised of the possibility 1240 | of such damages.\n\n 9. Accepting Warranty or Additional Liability. While 1241 | redistributing\n the Work or Derivative Works thereof, You may choose 1242 | to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n 1243 | \ or other liability obligations and/or rights consistent with this\n 1244 | \ License. However, in accepting such obligations, You may act only\n 1245 | \ on Your own behalf and on Your sole responsibility, not on behalf\n 1246 | \ of any other Contributor, and only if You agree to indemnify,\n defend, 1247 | and hold each Contributor harmless for any liability\n incurred by, or 1248 | claims asserted against, such Contributor by reason\n of your accepting 1249 | any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n\n### 1250 | xerces:xercesImpl\n\nApache 2.0\n\nhttps://xerces.apache.org/xerces2-j/\n\n Apache 1251 | License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n 1252 | \ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. 1253 | Definitions.\n\n \"License\" shall mean the terms and conditions for 1254 | use, reproduction,\n and distribution as defined by Sections 1 through 1255 | 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or 1256 | entity authorized by\n the copyright owner that is granting the License.\n\n 1257 | \ \"Legal Entity\" shall mean the union of the acting entity and all\n 1258 | \ other entities that control, are controlled by, or are under common\n 1259 | \ control with that entity. For the purposes of this definition,\n \"control\" 1260 | means (i) the power, direct or indirect, to cause the\n direction or 1261 | management of such entity, whether by contract or\n otherwise, or (ii) 1262 | ownership of fifty percent (50%) or more of the\n outstanding shares, 1263 | or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") 1264 | shall mean an individual or Legal Entity\n exercising permissions granted 1265 | by this License.\n\n \"Source\" form shall mean the preferred form for 1266 | making modifications,\n including but not limited to software source 1267 | code, documentation\n source, and configuration files.\n\n \"Object\" 1268 | form shall mean any form resulting from mechanical\n transformation or 1269 | translation of a Source form, including but\n not limited to compiled 1270 | object code, generated documentation,\n and conversions to other media 1271 | types.\n\n \"Work\" shall mean the work of authorship, whether in Source 1272 | or\n Object form, made available under the License, as indicated by a\n 1273 | \ copyright notice that is included in or attached to the work\n (an 1274 | example is provided in the Appendix below).\n\n \"Derivative Works\" 1275 | shall mean any work, whether in Source or Object\n form, that is based 1276 | on (or derived from) the Work and for which the\n editorial revisions, 1277 | annotations, elaborations, or other modifications\n represent, as a whole, 1278 | an original work of authorship. For the purposes\n of this License, Derivative 1279 | Works shall not include works that remain\n separable from, or merely 1280 | link (or bind by name) to the interfaces of,\n the Work and Derivative 1281 | Works thereof.\n\n \"Contribution\" shall mean any work of authorship, 1282 | including\n the original version of the Work and any modifications or 1283 | additions\n to that Work or Derivative Works thereof, that is intentionally\n 1284 | \ submitted to Licensor for inclusion in the Work by the copyright owner\n 1285 | \ or by an individual or Legal Entity authorized to submit on behalf of\n 1286 | \ the copyright owner. For the purposes of this definition, \"submitted\"\n 1287 | \ means any form of electronic, verbal, or written communication sent\n 1288 | \ to the Licensor or its representatives, including but not limited to\n 1289 | \ communication on electronic mailing lists, source code control systems,\n 1290 | \ and issue tracking systems that are managed by, or on behalf of, the\n 1291 | \ Licensor for the purpose of discussing and improving the Work, but\n 1292 | \ excluding communication that is conspicuously marked or otherwise\n 1293 | \ designated in writing by the copyright owner as \"Not a Contribution.\"\n\n 1294 | \ \"Contributor\" shall mean Licensor and any individual or Legal Entity\n 1295 | \ on behalf of whom a Contribution has been received by Licensor and\n 1296 | \ subsequently incorporated within the Work.\n\n 2. Grant of Copyright 1297 | License. Subject to the terms and conditions of\n this License, each 1298 | Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, 1299 | no-charge, royalty-free, irrevocable\n copyright license to reproduce, 1300 | prepare Derivative Works of,\n publicly display, publicly perform, sublicense, 1301 | and distribute the\n Work and such Derivative Works in Source or Object 1302 | form.\n\n 3. Grant of Patent License. Subject to the terms and conditions 1303 | of\n this License, each Contributor hereby grants to You a perpetual,\n 1304 | \ worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except 1305 | as stated in this section) patent license to make, have made,\n use, 1306 | offer to sell, sell, import, and otherwise transfer the Work,\n where 1307 | such license applies only to those patent claims licensable\n by such 1308 | Contributor that are necessarily infringed by their\n Contribution(s) 1309 | alone or by combination of their Contribution(s)\n with the Work to which 1310 | such Contribution(s) was submitted. If You\n institute patent litigation 1311 | against any entity (including a\n cross-claim or counterclaim in a lawsuit) 1312 | alleging that the Work\n or a Contribution incorporated within the Work 1313 | constitutes direct\n or contributory patent infringement, then any patent 1314 | licenses\n granted to You under this License for that Work shall terminate\n 1315 | \ as of the date such litigation is filed.\n\n 4. Redistribution. 1316 | You may reproduce and distribute copies of the\n Work or Derivative Works 1317 | thereof in any medium, with or without\n modifications, and in Source 1318 | or Object form, provided that You\n meet the following conditions:\n\n 1319 | \ (a) You must give any other recipients of the Work or\n Derivative 1320 | Works a copy of this License; and\n\n (b) You must cause any modified 1321 | files to carry prominent notices\n stating that You changed the files; 1322 | and\n\n (c) You must retain, in the Source form of any Derivative Works\n 1323 | \ that You distribute, all copyright, patent, trademark, and\n attribution 1324 | notices from the Source form of the Work,\n excluding those notices 1325 | that do not pertain to any part of\n the Derivative Works; and\n\n 1326 | \ (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, 1327 | then any Derivative Works that You distribute must\n include a readable 1328 | copy of the attribution notices contained\n within such NOTICE file, 1329 | excluding those notices that do not\n pertain to any part of the 1330 | Derivative Works, in at least one\n of the following places: within 1331 | a NOTICE text file distributed\n as part of the Derivative Works; 1332 | within the Source form or\n documentation, if provided along with 1333 | the Derivative Works; or,\n within a display generated by the Derivative 1334 | Works, if and\n wherever such third-party notices normally appear. 1335 | The contents\n of the NOTICE file are for informational purposes 1336 | only and\n do not modify the License. You may add Your own attribution\n 1337 | \ notices within Derivative Works that You distribute, alongside\n 1338 | \ or as an addendum to the NOTICE text from the Work, provided\n that 1339 | such additional attribution notices cannot be construed\n as modifying 1340 | the License.\n\n You may add Your own copyright statement to Your modifications 1341 | and\n may provide additional or different license terms and conditions\n 1342 | \ for use, reproduction, or distribution of Your modifications, or\n for 1343 | any such Derivative Works as a whole, provided Your use,\n reproduction, 1344 | and distribution of the Work otherwise complies with\n the conditions 1345 | stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly 1346 | state otherwise,\n any Contribution intentionally submitted for inclusion 1347 | in the Work\n by You to the Licensor shall be under the terms and conditions 1348 | of\n this License, without any additional terms or conditions.\n Notwithstanding 1349 | the above, nothing herein shall supersede or modify\n the terms of any 1350 | separate license agreement you may have executed\n with Licensor regarding 1351 | such Contributions.\n\n 6. Trademarks. This License does not grant permission 1352 | to use the trade\n names, trademarks, service marks, or product names 1353 | of the Licensor,\n except as required for reasonable and customary use 1354 | in describing the\n origin of the Work and reproducing the content of 1355 | the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable 1356 | law or\n agreed to in writing, Licensor provides the Work (and each\n 1357 | \ Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT 1358 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, 1359 | without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, 1360 | MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely 1361 | responsible for determining the\n appropriateness of using or redistributing 1362 | the Work and assume any\n risks associated with Your exercise of permissions 1363 | under this License.\n\n 8. Limitation of Liability. In no event and under 1364 | no legal theory,\n whether in tort (including negligence), contract, 1365 | or otherwise,\n unless required by applicable law (such as deliberate 1366 | and grossly\n negligent acts) or agreed to in writing, shall any Contributor 1367 | be\n liable to You for damages, including any direct, indirect, special,\n 1368 | \ incidental, or consequential damages of any character arising as a\n 1369 | \ result of this License or out of the use or inability to use the\n Work 1370 | (including but not limited to damages for loss of goodwill,\n work stoppage, 1371 | computer failure or malfunction, or any and all\n other commercial damages 1372 | or losses), even if such Contributor\n has been advised of the possibility 1373 | of such damages.\n\n 9. Accepting Warranty or Additional Liability. While 1374 | redistributing\n the Work or Derivative Works thereof, You may choose 1375 | to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n 1376 | \ or other liability obligations and/or rights consistent with this\n 1377 | \ License. However, in accepting such obligations, You may act only\n 1378 | \ on Your own behalf and on Your sole responsibility, not on behalf\n 1379 | \ of any other Contributor, and only if You agree to indemnify,\n defend, 1380 | and hold each Contributor harmless for any liability\n incurred by, or 1381 | claims asserted against, such Contributor by reason\n of your accepting 1382 | any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n\n### 1383 | xml-apis:xml-apis\n\nApache 2.0\n\nhttps://xerces.apache.org/xml-commons/\n\n 1384 | \ Unless otherwise noted all files in XML Commons are covered under the\n Apache 1385 | License Version 2.0. Please read the LICENSE and NOTICE files.\n\n XML Commons 1386 | contains some software and documentation that is covered\n under a number of 1387 | different licenses. This applies particularly to the\n xml-commons/java/external/ 1388 | directory. Most files under\n xml-commons/java/external/ are covered under 1389 | their respective\n LICENSE.*.txt files; see the matching README.*.txt files 1390 | for\n descriptions.\n\n\n Apache License\n 1391 | \ Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n 1392 | \ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. 1393 | Definitions.\n\n \"License\" shall mean the terms and conditions for 1394 | use, reproduction,\n and distribution as defined by Sections 1 through 1395 | 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or 1396 | entity authorized by\n the copyright owner that is granting the License.\n\n 1397 | \ \"Legal Entity\" shall mean the union of the acting entity and all\n 1398 | \ other entities that control, are controlled by, or are under common\n 1399 | \ control with that entity. For the purposes of this definition,\n \"control\" 1400 | means (i) the power, direct or indirect, to cause the\n direction or 1401 | management of such entity, whether by contract or\n otherwise, or (ii) 1402 | ownership of fifty percent (50%) or more of the\n outstanding shares, 1403 | or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") 1404 | shall mean an individual or Legal Entity\n exercising permissions granted 1405 | by this License.\n\n \"Source\" form shall mean the preferred form for 1406 | making modifications,\n including but not limited to software source 1407 | code, documentation\n source, and configuration files.\n\n \"Object\" 1408 | form shall mean any form resulting from mechanical\n transformation or 1409 | translation of a Source form, including but\n not limited to compiled 1410 | object code, generated documentation,\n and conversions to other media 1411 | types.\n\n \"Work\" shall mean the work of authorship, whether in Source 1412 | or\n Object form, made available under the License, as indicated by a\n 1413 | \ copyright notice that is included in or attached to the work\n (an 1414 | example is provided in the Appendix below).\n\n \"Derivative Works\" 1415 | shall mean any work, whether in Source or Object\n form, that is based 1416 | on (or derived from) the Work and for which the\n editorial revisions, 1417 | annotations, elaborations, or other modifications\n represent, as a whole, 1418 | an original work of authorship. For the purposes\n of this License, Derivative 1419 | Works shall not include works that remain\n separable from, or merely 1420 | link (or bind by name) to the interfaces of,\n the Work and Derivative 1421 | Works thereof.\n\n \"Contribution\" shall mean any work of authorship, 1422 | including\n the original version of the Work and any modifications or 1423 | additions\n to that Work or Derivative Works thereof, that is intentionally\n 1424 | \ submitted to Licensor for inclusion in the Work by the copyright owner\n 1425 | \ or by an individual or Legal Entity authorized to submit on behalf of\n 1426 | \ the copyright owner. For the purposes of this definition, \"submitted\"\n 1427 | \ means any form of electronic, verbal, or written communication sent\n 1428 | \ to the Licensor or its representatives, including but not limited to\n 1429 | \ communication on electronic mailing lists, source code control systems,\n 1430 | \ and issue tracking systems that are managed by, or on behalf of, the\n 1431 | \ Licensor for the purpose of discussing and improving the Work, but\n 1432 | \ excluding communication that is conspicuously marked or otherwise\n 1433 | \ designated in writing by the copyright owner as \"Not a Contribution.\"\n\n 1434 | \ \"Contributor\" shall mean Licensor and any individual or Legal Entity\n 1435 | \ on behalf of whom a Contribution has been received by Licensor and\n 1436 | \ subsequently incorporated within the Work.\n\n 2. Grant of Copyright 1437 | License. Subject to the terms and conditions of\n this License, each 1438 | Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, 1439 | no-charge, royalty-free, irrevocable\n copyright license to reproduce, 1440 | prepare Derivative Works of,\n publicly display, publicly perform, sublicense, 1441 | and distribute the\n Work and such Derivative Works in Source or Object 1442 | form.\n\n 3. Grant of Patent License. Subject to the terms and conditions 1443 | of\n this License, each Contributor hereby grants to You a perpetual,\n 1444 | \ worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except 1445 | as stated in this section) patent license to make, have made,\n use, 1446 | offer to sell, sell, import, and otherwise transfer the Work,\n where 1447 | such license applies only to those patent claims licensable\n by such 1448 | Contributor that are necessarily infringed by their\n Contribution(s) 1449 | alone or by combination of their Contribution(s)\n with the Work to which 1450 | such Contribution(s) was submitted. If You\n institute patent litigation 1451 | against any entity (including a\n cross-claim or counterclaim in a lawsuit) 1452 | alleging that the Work\n or a Contribution incorporated within the Work 1453 | constitutes direct\n or contributory patent infringement, then any patent 1454 | licenses\n granted to You under this License for that Work shall terminate\n 1455 | \ as of the date such litigation is filed.\n\n 4. Redistribution. 1456 | You may reproduce and distribute copies of the\n Work or Derivative Works 1457 | thereof in any medium, with or without\n modifications, and in Source 1458 | or Object form, provided that You\n meet the following conditions:\n\n 1459 | \ (a) You must give any other recipients of the Work or\n Derivative 1460 | Works a copy of this License; and\n\n (b) You must cause any modified 1461 | files to carry prominent notices\n stating that You changed the files; 1462 | and\n\n (c) You must retain, in the Source form of any Derivative Works\n 1463 | \ that You distribute, all copyright, patent, trademark, and\n attribution 1464 | notices from the Source form of the Work,\n excluding those notices 1465 | that do not pertain to any part of\n the Derivative Works; and\n\n 1466 | \ (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, 1467 | then any Derivative Works that You distribute must\n include a readable 1468 | copy of the attribution notices contained\n within such NOTICE file, 1469 | excluding those notices that do not\n pertain to any part of the 1470 | Derivative Works, in at least one\n of the following places: within 1471 | a NOTICE text file distributed\n as part of the Derivative Works; 1472 | within the Source form or\n documentation, if provided along with 1473 | the Derivative Works; or,\n within a display generated by the Derivative 1474 | Works, if and\n wherever such third-party notices normally appear. 1475 | The contents\n of the NOTICE file are for informational purposes 1476 | only and\n do not modify the License. You may add Your own attribution\n 1477 | \ notices within Derivative Works that You distribute, alongside\n 1478 | \ or as an addendum to the NOTICE text from the Work, provided\n that 1479 | such additional attribution notices cannot be construed\n as modifying 1480 | the License.\n\n You may add Your own copyright statement to Your modifications 1481 | and\n may provide additional or different license terms and conditions\n 1482 | \ for use, reproduction, or distribution of Your modifications, or\n for 1483 | any such Derivative Works as a whole, provided Your use,\n reproduction, 1484 | and distribution of the Work otherwise complies with\n the conditions 1485 | stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly 1486 | state otherwise,\n any Contribution intentionally submitted for inclusion 1487 | in the Work\n by You to the Licensor shall be under the terms and conditions 1488 | of\n this License, without any additional terms or conditions.\n Notwithstanding 1489 | the above, nothing herein shall supersede or modify\n the terms of any 1490 | separate license agreement you may have executed\n with Licensor regarding 1491 | such Contributions.\n\n 6. Trademarks. This License does not grant permission 1492 | to use the trade\n names, trademarks, service marks, or product names 1493 | of the Licensor,\n except as required for reasonable and customary use 1494 | in describing the\n origin of the Work and reproducing the content of 1495 | the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable 1496 | law or\n agreed to in writing, Licensor provides the Work (and each\n 1497 | \ Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT 1498 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, 1499 | without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, 1500 | MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely 1501 | responsible for determining the\n appropriateness of using or redistributing 1502 | the Work and assume any\n risks associated with Your exercise of permissions 1503 | under this License.\n\n 8. Limitation of Liability. In no event and under 1504 | no legal theory,\n whether in tort (including negligence), contract, 1505 | or otherwise,\n unless required by applicable law (such as deliberate 1506 | and grossly\n negligent acts) or agreed to in writing, shall any Contributor 1507 | be\n liable to You for damages, including any direct, indirect, special,\n 1508 | \ incidental, or consequential damages of any character arising as a\n 1509 | \ result of this License or out of the use or inability to use the\n Work 1510 | (including but not limited to damages for loss of goodwill,\n work stoppage, 1511 | computer failure or malfunction, or any and all\n other commercial damages 1512 | or losses), even if such Contributor\n has been advised of the possibility 1513 | of such damages.\n\n 9. Accepting Warranty or Additional Liability. While 1514 | redistributing\n the Work or Derivative Works thereof, You may choose 1515 | to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n 1516 | \ or other liability obligations and/or rights consistent with this\n 1517 | \ License. However, in accepting such obligations, You may act only\n 1518 | \ on Your own behalf and on Your sole responsibility, not on behalf\n 1519 | \ of any other Contributor, and only if You agree to indemnify,\n defend, 1520 | and hold each Contributor harmless for any liability\n incurred by, or 1521 | claims asserted against, such Contributor by reason\n of your accepting 1522 | any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n" 1523 | - sources: README.md 1524 | text: |- 1525 | This project is licensed under the terms of the MIT license. 1526 | 1527 | See this license at [`LICENSE.md`](LICENSE.md). 1528 | notices: [] 1529 | -------------------------------------------------------------------------------- /.licenses/bundler/octokit.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: octokit 3 | version: 6.1.0 4 | type: bundler 5 | summary: Ruby toolkit for working with the GitHub API 6 | homepage: https://github.com/octokit/octokit.rb 7 | license: mit 8 | licenses: 9 | - sources: LICENSE.md 10 | text: | 11 | Copyright (c) 2009-2017 Wynn Netherland, Adam Stacoviak, Erik Michaels-Ober 12 | 13 | Permission is hereby granted, free of charge, to any person obtaining 14 | a copy of this software and associated documentation files (the 15 | "Software"), to deal in the Software without restriction, including 16 | without limitation the rights to use, copy, modify, merge, publish, 17 | distribute, sublicense, and/or sell copies of the Software, and to 18 | permit persons to whom the Software is furnished to do so, subject to 19 | the following conditions: 20 | 21 | The above copyright notice and this permission notice shall be 22 | included in all copies or substantial portions of the Software. 23 | 24 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 25 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 26 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 27 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 28 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 29 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 30 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 | - sources: README.md 32 | text: |- 33 | Copyright (c) 2009-2014 Wynn Netherland, Adam Stacoviak, Erik Michaels-Ober 34 | 35 | Permission is hereby granted, free of charge, to any person obtaining 36 | a copy of this software and associated documentation files (the 37 | "Software"), to deal in the Software without restriction, including 38 | without limitation the rights to use, copy, modify, merge, publish, 39 | distribute, sublicense, and/or sell copies of the Software, and to 40 | permit persons to whom the Software is furnished to do so, subject to 41 | the following conditions: 42 | 43 | The above copyright notice and this permission notice shall be 44 | included in all copies or substantial portions of the Software. 45 | 46 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 47 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 48 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 49 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 50 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 51 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 52 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 53 | notices: [] 54 | -------------------------------------------------------------------------------- /.licenses/bundler/parallel.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: parallel 3 | version: 1.22.1 4 | type: bundler 5 | summary: Run any kind of code in parallel processes 6 | homepage: https://github.com/grosser/parallel 7 | license: mit 8 | licenses: 9 | - sources: MIT-LICENSE.txt 10 | text: | 11 | Copyright (C) 2013 Michael Grosser 12 | 13 | Permission is hereby granted, free of charge, to any person obtaining 14 | a copy of this software and associated documentation files (the 15 | "Software"), to deal in the Software without restriction, including 16 | without limitation the rights to use, copy, modify, merge, publish, 17 | distribute, sublicense, and/or sell copies of the Software, and to 18 | permit persons to whom the Software is furnished to do so, subject to 19 | the following conditions: 20 | 21 | The above copyright notice and this permission notice shall be 22 | included in all copies or substantial portions of the Software. 23 | 24 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 25 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 26 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 27 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 28 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 29 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 30 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 | notices: [] 32 | -------------------------------------------------------------------------------- /.licenses/bundler/pathname-common_prefix.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: pathname-common_prefix 3 | version: 0.0.1 4 | type: bundler 5 | summary: Calcurate prefix commont to some pathnames 6 | homepage: https://github.com/KitaitiMakoto/pathname-common_prefix 7 | license: other 8 | licenses: 9 | - sources: README.markdown 10 | text: |- 11 | This program is distributed under the Ruby's license. 12 | But `setup.rb` is distributed under the GNU LGPS license. See the file for more information. 13 | notices: [] 14 | -------------------------------------------------------------------------------- /.licenses/bundler/public_suffix.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: public_suffix 3 | version: 5.0.1 4 | type: bundler 5 | summary: Domain name parser based on the Public Suffix List. 6 | homepage: https://simonecarletti.com/code/publicsuffix-ruby 7 | license: mit 8 | licenses: 9 | - sources: LICENSE.txt 10 | text: | 11 | Copyright (c) 2009-2022 Simone Carletti 12 | 13 | MIT License 14 | 15 | Permission is hereby granted, free of charge, to any person obtaining 16 | a copy of this software and associated documentation files (the 17 | "Software"), to deal in the Software without restriction, including 18 | without limitation the rights to use, copy, modify, merge, publish, 19 | distribute, sublicense, and/or sell copies of the Software, and to 20 | permit persons to whom the Software is furnished to do so, subject to 21 | the following conditions: 22 | 23 | The above copyright notice and this permission notice shall be 24 | included in all copies or substantial portions of the Software. 25 | 26 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 27 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 28 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 29 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 30 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 31 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 32 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 33 | - sources: README.md 34 | text: |- 35 | Copyright (c) 2009-2022 Simone Carletti. This is Free Software distributed under the MIT license. 36 | 37 | The [Public Suffix List source](https://publicsuffix.org/list/) is subject to the terms of the Mozilla Public License, v. 2.0. 38 | notices: [] 39 | -------------------------------------------------------------------------------- /.licenses/bundler/racc.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: racc 3 | version: 1.6.2 4 | type: bundler 5 | summary: Racc is a LALR(1) parser generator 6 | homepage: https://github.com/ruby/racc 7 | license: other 8 | licenses: 9 | - sources: COPYING 10 | text: | 11 | Copyright (C) 2019 Yukihiro Matsumoto. All rights reserved. 12 | 13 | Redistribution and use in source and binary forms, with or without 14 | modification, are permitted provided that the following conditions 15 | are met: 16 | 1. Redistributions of source code must retain the above copyright 17 | notice, this list of conditions and the following disclaimer. 18 | 2. Redistributions in binary form must reproduce the above copyright 19 | notice, this list of conditions and the following disclaimer in the 20 | documentation and/or other materials provided with the distribution. 21 | 22 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 23 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 24 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 26 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 | SUCH DAMAGE. 33 | - sources: README.rdoc 34 | text: |- 35 | Racc is distributed under the same terms of ruby. 36 | (see the file COPYING). Note that you do NOT need to follow 37 | ruby license for your own parser (racc outputs). 38 | You can distribute those files under any licenses you want. 39 | notices: [] 40 | -------------------------------------------------------------------------------- /.licenses/bundler/reverse_markdown.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: reverse_markdown 3 | version: 2.1.1 4 | type: bundler 5 | summary: Convert html code into markdown. 6 | homepage: http://github.com/xijo/reverse_markdown 7 | license: wtfpl 8 | licenses: 9 | - sources: LICENSE 10 | text: |2 11 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 12 | Version 2, December 2004 13 | 14 | Copyright (C) 2014 Johannes Opper 15 | 16 | Everyone is permitted to copy and distribute verbatim or modified 17 | copies of this license document, and changing it is allowed as long 18 | as the name is changed. 19 | 20 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 21 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 22 | 23 | 0. You just DO WHAT THE FUCK YOU WANT TO. 24 | notices: [] 25 | -------------------------------------------------------------------------------- /.licenses/bundler/ruby-xxHash.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: ruby-xxHash 3 | version: 0.4.0.2 4 | type: bundler 5 | summary: A pure Ruby implementation of xxhash. 6 | homepage: https://github.com/justinwsmith/ruby-xxhash 7 | license: mit 8 | licenses: 9 | - sources: LICENSE.txt 10 | text: | 11 | Copyright (c) 2014 Justin W Smith 12 | 13 | MIT License 14 | 15 | Permission is hereby granted, free of charge, to any person obtaining 16 | a copy of this software and associated documentation files (the 17 | "Software"), to deal in the Software without restriction, including 18 | without limitation the rights to use, copy, modify, merge, publish, 19 | distribute, sublicense, and/or sell copies of the Software, and to 20 | permit persons to whom the Software is furnished to do so, subject to 21 | the following conditions: 22 | 23 | The above copyright notice and this permission notice shall be 24 | included in all copies or substantial portions of the Software. 25 | 26 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 27 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 28 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 29 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 30 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 31 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 32 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 33 | notices: [] 34 | -------------------------------------------------------------------------------- /.licenses/bundler/ruby2_keywords.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: ruby2_keywords 3 | version: 0.0.5 4 | type: bundler 5 | summary: Shim library for Module#ruby2_keywords 6 | homepage: https://github.com/ruby/ruby2_keywords 7 | license: other 8 | licenses: 9 | - sources: LICENSE 10 | text: | 11 | Copyright 2019-2020 Nobuyoshi Nakada, Yusuke Endoh 12 | 13 | Redistribution and use in source and binary forms, with or without 14 | modification, are permitted provided that the following conditions are met: 15 | 16 | 1. Redistributions of source code must retain the above copyright notice, this 17 | list of conditions and the following disclaimer. 18 | 19 | 2. Redistributions in binary form must reproduce the above copyright notice, 20 | this list of conditions and the following disclaimer in the documentation 21 | and/or other materials provided with the distribution. 22 | 23 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 24 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 25 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 26 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 27 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 28 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 29 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 30 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 31 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 32 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 | - sources: README.md 34 | text: |- 35 | The gem is available as open source under the terms of the 36 | [Ruby License] or the [2-Clause BSD License]. 37 | 38 | [GitHub]: https://github.com/ruby/ruby2_keywords/ 39 | [Ruby Issue Tracking System]: https://bugs.ruby-lang.org 40 | [Ruby License]: https://www.ruby-lang.org/en/about/license.txt 41 | [2-Clause BSD License]: https://opensource.org/licenses/BSD-2-Clause 42 | notices: [] 43 | -------------------------------------------------------------------------------- /.licenses/bundler/rugged.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: rugged 3 | version: 1.6.2 4 | type: bundler 5 | summary: Rugged is a Ruby binding to the libgit2 linkable library 6 | homepage: https://github.com/libgit2/rugged 7 | license: mit 8 | licenses: 9 | - sources: LICENSE 10 | text: | 11 | The MIT License 12 | 13 | Copyright (c) 2016 GitHub, Inc 14 | Copyright (c) Rugged Contributors 15 | 16 | Permission is hereby granted, free of charge, to any person obtaining a copy 17 | of this software and associated documentation files (the "Software"), to deal 18 | in the Software without restriction, including without limitation the rights 19 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 20 | copies of the Software, and to permit persons to whom the Software is 21 | furnished to do so, subject to the following conditions: 22 | 23 | The above copyright notice and this permission notice shall be included in 24 | all copies or substantial portions of the Software. 25 | 26 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 27 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 28 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 29 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 30 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 31 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 32 | THE SOFTWARE. 33 | - sources: README.md 34 | text: MIT. See LICENSE file. 35 | notices: [] 36 | -------------------------------------------------------------------------------- /.licenses/bundler/sawyer.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: sawyer 3 | version: 0.9.2 4 | type: bundler 5 | summary: Secret User Agent of HTTP 6 | homepage: https://github.com/lostisland/sawyer 7 | license: mit 8 | licenses: 9 | - sources: LICENSE.md 10 | text: | 11 | Copyright (c) 2011 rick olson 12 | 13 | Permission is hereby granted, free of charge, to any person obtaining 14 | a copy of this software and associated documentation files (the 15 | "Software"), to deal in the Software without restriction, including 16 | without limitation the rights to use, copy, modify, merge, publish, 17 | distribute, sublicense, and/or sell copies of the Software, and to 18 | permit persons to whom the Software is furnished to do so, subject to 19 | the following conditions: 20 | 21 | The above copyright notice and this permission notice shall be 22 | included in all copies or substantial portions of the Software. 23 | 24 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 25 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 26 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 27 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 28 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 29 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 30 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 | - sources: README.md 32 | text: The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT). 33 | notices: [] 34 | -------------------------------------------------------------------------------- /.licenses/bundler/thor.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: thor 3 | version: 1.2.1 4 | type: bundler 5 | summary: Thor is a toolkit for building powerful command-line interfaces. 6 | homepage: http://whatisthor.com/ 7 | license: mit 8 | licenses: 9 | - sources: LICENSE.md 10 | text: | 11 | Copyright (c) 2008 Yehuda Katz, Eric Hodel, et al. 12 | 13 | Permission is hereby granted, free of charge, to any person obtaining 14 | a copy of this software and associated documentation files (the 15 | "Software"), to deal in the Software without restriction, including 16 | without limitation the rights to use, copy, modify, merge, publish, 17 | distribute, sublicense, and/or sell copies of the Software, and to 18 | permit persons to whom the Software is furnished to do so, subject to 19 | the following conditions: 20 | 21 | The above copyright notice and this permission notice shall be 22 | included in all copies or substantial portions of the Software. 23 | 24 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 25 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 26 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 27 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 28 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 29 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 30 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 | - sources: README.md 32 | text: |- 33 | Released under the MIT License. See the [LICENSE][] file for further details. 34 | 35 | [license]: LICENSE.md 36 | notices: [] 37 | -------------------------------------------------------------------------------- /.licenses/bundler/tomlrb.dep.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: tomlrb 3 | version: 2.0.3 4 | type: bundler 5 | summary: A racc based toml parser 6 | homepage: https://github.com/fbernier/tomlrb 7 | license: mit 8 | licenses: 9 | - sources: LICENSE.txt 10 | text: | 11 | The MIT License (MIT) 12 | 13 | Copyright (c) 2015 Francois Bernier 14 | 15 | Permission is hereby granted, free of charge, to any person obtaining a copy 16 | of this software and associated documentation files (the "Software"), to deal 17 | in the Software without restriction, including without limitation the rights 18 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 19 | copies of the Software, and to permit persons to whom the Software is 20 | furnished to do so, subject to the following conditions: 21 | 22 | The above copyright notice and this permission notice shall be included in 23 | all copies or substantial portions of the Software. 24 | 25 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 26 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 27 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 28 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 29 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 30 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 31 | THE SOFTWARE. 32 | notices: [] 33 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @dependabot/maintainers 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | 5 | gem "excon", "0.99.0" 6 | gem "licensed", "4.3.1" 7 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | addressable (2.8.4) 5 | public_suffix (>= 2.0.2, < 6.0) 6 | dotenv (2.8.1) 7 | excon (0.99.0) 8 | faraday (2.7.4) 9 | faraday-net_http (>= 2.0, < 3.1) 10 | ruby2_keywords (>= 0.0.4) 11 | faraday-net_http (3.0.2) 12 | json (2.6.3) 13 | licensed (4.3.1) 14 | json (~> 2.6) 15 | licensee (~> 9.16) 16 | parallel (~> 1.22) 17 | pathname-common_prefix (~> 0.0.1) 18 | reverse_markdown (~> 2.1) 19 | ruby-xxHash (~> 0.4.0) 20 | thor (~> 1.2) 21 | tomlrb (~> 2.0) 22 | licensee (9.16.0) 23 | dotenv (~> 2.0) 24 | octokit (>= 4.20, < 7.0) 25 | reverse_markdown (>= 1, < 3) 26 | rugged (>= 0.24, < 2.0) 27 | thor (>= 0.19, < 2.0) 28 | mini_portile2 (2.8.2) 29 | nokogiri (1.14.4) 30 | mini_portile2 (~> 2.8.0) 31 | racc (~> 1.4) 32 | nokogiri (1.14.4-x86_64-linux) 33 | racc (~> 1.4) 34 | octokit (6.1.1) 35 | faraday (>= 1, < 3) 36 | sawyer (~> 0.9) 37 | parallel (1.23.0) 38 | pathname-common_prefix (0.0.1) 39 | public_suffix (5.0.1) 40 | racc (1.6.2) 41 | reverse_markdown (2.1.1) 42 | nokogiri 43 | ruby-xxHash (0.4.0.2) 44 | ruby2_keywords (0.0.5) 45 | rugged (1.6.3) 46 | sawyer (0.9.2) 47 | addressable (>= 2.3.5) 48 | faraday (>= 0.17.3, < 3) 49 | thor (1.2.2) 50 | tomlrb (2.0.3) 51 | 52 | PLATFORMS 53 | ruby 54 | x86_64-linux 55 | 56 | DEPENDENCIES 57 | excon (= 0.99.0) 58 | licensed (= 4.3.1) 59 | 60 | BUNDLED WITH 61 | 2.4.13 62 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Archived / Deprecated 2 | Dependabot PR's used to run with [read-only permissions](https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/), so this example repository demonstrated how to update Dependabot pull requests without direct read-write/secrets access. 3 | 4 | However, GitHub Actions now allow direct writes on Dependabot PR's, so this complicated workaround is no longer necessary. Instead, see the docs for [simpler solutions to updating your Dependabot PR's](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions). 5 | 6 | This repo is kept around in archived form in case folks linked to it from other places. 7 | 8 | ---- 9 | 10 | ## Workflows 11 | 12 | The `Build Dependabot Bundler PR` workflow runs on all pushes to `dependabot/bundler**` branches with a read-only `GITHUB_TOKEN`. This action gets triggered when Dependabot opens new pull requests or force-pushes updates to existing pull requests. 13 | 14 | This action will run a `bundle install` without write access to the repository as this can execute potentially unsafe third-party ruby code when installing 15 | git dependencies. 16 | 17 | The completion of this workflow triggers the `Update Dependabot Bundler PR` workflow which has a read-write `GITHUB_TOKEN`, extracting the changes to license files and pushing these to back to the Dependabot PR branch. 18 | 19 | Read more about [keeping your GitHub Actions and workflows secure](https://securitylab.github.com/research/github-actions-preventing-pwn-requests). 20 | --------------------------------------------------------------------------------