From 4ddf22eae165109081632e5a1ba8a376487d5234 Mon Sep 17 00:00:00 2001 From: Mathijs de Bruin Date: Wed, 6 Jul 2022 08:47:33 +0100 Subject: [PATCH 1/4] REUSE compliance (#210). https://reuse.software/ Thanks to FOSS love from the FSFE and Niharika ! --- .codeclimate.yml | 6 +++ .dockerignore | 4 ++ .editorconfig | 4 ++ .eslintrc.js | 4 ++ .fleek.json.license | 3 ++ .gitignore | 4 ++ .gitlab-ci.yml | 6 +++ .reuse/dep5 | 8 +++ Dockerfile | 4 ++ LICENSE => LICENSES/AGPL-3.0-only.txt | 0 LICENSES/Apache-2.0.txt | 53 +++++++++++++++++++ README.md | 12 ++++- REUSE.md | 19 +++++++ babel.config.js | 4 ++ jest.config.js | 4 ++ package-lock.json.license | 3 ++ package.json.license | 3 ++ .../fonts/heebo-v17-latin-700.woff.license | 4 ++ .../fonts/heebo-v17-latin-700.woff2.license | 4 ++ .../fonts/roboto-v29-latin-100.woff.license | 3 ++ .../fonts/roboto-v29-latin-100.woff2.license | 3 ++ .../fonts/roboto-v29-latin-300.woff.license | 3 ++ .../fonts/roboto-v29-latin-300.woff2.license | 3 ++ .../fonts/roboto-v29-latin-500.woff.license | 3 ++ .../fonts/roboto-v29-latin-500.woff2.license | 3 ++ .../fonts/roboto-v29-latin-700.woff.license | 3 ++ .../fonts/roboto-v29-latin-700.woff2.license | 3 ++ .../fonts/roboto-v29-latin-900.woff.license | 3 ++ .../fonts/roboto-v29-latin-900.woff2.license | 3 ++ .../roboto-v29-latin-regular.woff.license | 3 ++ .../roboto-v29-latin-regular.woff2.license | 3 ++ public/assets/images/favicon.png.license | 3 ++ public/assets/images/favicon.svg.license | 3 ++ public/assets/styles/fonts.css | 6 +++ public/index.html | 10 ++++ public/opensearch.xml | 10 ++++ src/App.vue | 9 ++++ src/VueComposition.js | 4 ++ src/assets/mockup-data/audio.json.license | 3 ++ .../mockup-data/directories.json.license | 3 ++ .../mockup-data/document-types.json.license | 3 ++ src/assets/mockup-data/images.json.license | 3 ++ src/assets/mockup-data/sample.json.license | 3 ++ src/assets/mockup-data/texts.json.license | 3 ++ src/assets/mockup-data/video.json.license | 3 ++ src/components/AppFooter.vue | 9 ++++ src/components/AudioPlayer.vue | 9 ++++ src/components/SearchBar.vue | 9 ++++ src/components/SearchFilters.vue | 9 ++++ src/components/SettingsMenu.vue | 9 ++++ src/components/VideoPlayer.vue | 9 ++++ src/components/helpers/AudioDetailButton.vue | 9 ++++ src/components/helpers/CopyHashButton.vue | 9 ++++ src/components/helpers/DownloadButton.vue | 9 ++++ src/components/helpers/SelectFilter.vue | 9 ++++ src/components/results/detail/AudioDetail.vue | 9 ++++ .../results/detail/DirectoryDetail.vue | 9 ++++ .../results/detail/DocumentDetail.vue | 9 ++++ src/components/results/detail/ImageDetail.vue | 9 ++++ src/components/results/detail/OtherDetail.vue | 9 ++++ src/components/results/detail/VideoDetail.vue | 9 ++++ .../results/detail/helpers/DocumentViewer.vue | 9 ++++ .../results/detail/helpers/MediaHeader.vue | 9 ++++ .../results/detail/helpers/MetaDataPanel.vue | 9 ++++ .../results/detail/mixins/DetailMixin.js | 4 ++ src/components/results/list/AudioList.vue | 9 ++++ src/components/results/list/DirectoryList.vue | 9 ++++ src/components/results/list/DocumentList.vue | 9 ++++ src/components/results/list/ImageList.vue | 9 ++++ src/components/results/list/ListBase.vue | 9 ++++ src/components/results/list/OtherList.vue | 9 ++++ src/components/results/list/VideoList.vue | 9 ++++ .../results/list/mixins/FileListMixin.js | 4 ++ .../list/mixins/InfiniteScrollingMixin.js | 4 ++ src/filters/durationToColor.js | 4 ++ src/filters/stripTagsFromString.js | 4 ++ src/helpers/ApiHelper.js | 4 ++ src/helpers/FetchDoggy.js | 4 ++ src/helpers/constants/nsfwThresholds.js | 4 ++ src/helpers/fileHelper.js | 4 ++ src/helpers/nsfwClassifier.js | 4 ++ src/helpers/resourceURL.js | 4 ++ src/helpers/routerHelper.js | 4 ++ src/helpers/typeHelper.js | 4 ++ src/main.js | 4 ++ src/mixins/AudioControlsModule.js | 4 ++ src/mixins/BlurExplicitImagesModule.js | 4 ++ src/plugins/audioPlugin.js | 4 ++ src/plugins/vuetify/index.js | 4 ++ src/plugins/vuetify/theme.js | 4 ++ src/router/index.js | 4 ++ src/scss/blurExplicitImages.scss | 6 +++ src/scss/variables.scss | 6 +++ src/store/index.js | 4 ++ src/store/modules/SearchResults.js | 4 ++ src/store/modules/localStorage.js | 4 ++ src/store/modules/query.js | 4 ++ .../modules/queryFilters/filterDefinitions.js | 4 ++ .../modules/queryFilters/filterSubModule.js | 4 ++ .../filterVuexModuleGenerators.js | 4 ++ src/views/Detail.vue | 9 ++++ src/views/Home.vue | 9 ++++ src/views/Search.vue | 9 ++++ tests/jest-helpers.js | 4 ++ tests/jest-setup-after-env.js | 4 ++ tests/jest-setup.js | 4 ++ tests/mock-data.js | 4 ++ tests/unit/components/SearchBar.spec.js | 4 ++ tests/unit/components/SelectFilter.spec.js | 4 ++ tests/unit/store/query.spec.js | 4 ++ tests/unit/store/query.toApi.spec.js | 4 ++ vue.config.js | 4 ++ 112 files changed, 667 insertions(+), 1 deletion(-) create mode 100644 .fleek.json.license create mode 100644 .reuse/dep5 rename LICENSE => LICENSES/AGPL-3.0-only.txt (100%) create mode 100644 LICENSES/Apache-2.0.txt create mode 100644 REUSE.md create mode 100644 package-lock.json.license create mode 100644 package.json.license create mode 100644 public/assets/fonts/heebo-v17-latin-700.woff.license create mode 100644 public/assets/fonts/heebo-v17-latin-700.woff2.license create mode 100644 public/assets/fonts/roboto-v29-latin-100.woff.license create mode 100644 public/assets/fonts/roboto-v29-latin-100.woff2.license create mode 100644 public/assets/fonts/roboto-v29-latin-300.woff.license create mode 100644 public/assets/fonts/roboto-v29-latin-300.woff2.license create mode 100644 public/assets/fonts/roboto-v29-latin-500.woff.license create mode 100644 public/assets/fonts/roboto-v29-latin-500.woff2.license create mode 100644 public/assets/fonts/roboto-v29-latin-700.woff.license create mode 100644 public/assets/fonts/roboto-v29-latin-700.woff2.license create mode 100644 public/assets/fonts/roboto-v29-latin-900.woff.license create mode 100644 public/assets/fonts/roboto-v29-latin-900.woff2.license create mode 100644 public/assets/fonts/roboto-v29-latin-regular.woff.license create mode 100644 public/assets/fonts/roboto-v29-latin-regular.woff2.license create mode 100644 public/assets/images/favicon.png.license create mode 100644 public/assets/images/favicon.svg.license create mode 100644 src/assets/mockup-data/audio.json.license create mode 100644 src/assets/mockup-data/directories.json.license create mode 100644 src/assets/mockup-data/document-types.json.license create mode 100644 src/assets/mockup-data/images.json.license create mode 100644 src/assets/mockup-data/sample.json.license create mode 100644 src/assets/mockup-data/texts.json.license create mode 100644 src/assets/mockup-data/video.json.license diff --git a/.codeclimate.yml b/.codeclimate.yml index d04e05f9..f35e5eed 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,3 +1,9 @@ +# SPDX-FileCopyrightText: 2022 Mathijs de Bruin +# SPDX-FileCopyrightText: 2022 Dweb-search-frontend +# +# SPDX-License-Identifier: AGPL-3.0-only + + plugins: eslint: enabled: true diff --git a/.dockerignore b/.dockerignore index 6b3405c3..cce2fcd4 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. +# +# SPDX-License-Identifier: AGPL-3.0-only + dist node_modules *.log diff --git a/.editorconfig b/.editorconfig index 93eda85b..dd91c85d 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. +# +# SPDX-License-Identifier: AGPL-3.0-only + # https://editorconfig.org root = true diff --git a/.eslintrc.js b/.eslintrc.js index 12a04005..dbd53fa4 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 Mathijs de Bruin, et al. +// +// SPDX-License-Identifier: AGPL-3.0-only + module.exports = { root: true, env: { diff --git a/.fleek.json.license b/.fleek.json.license new file mode 100644 index 00000000..0f92b96d --- /dev/null +++ b/.fleek.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. + +SPDX-License-Identifier: AGPL-3.0-only \ No newline at end of file diff --git a/.gitignore b/.gitignore index 11f5d714..cb72affb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. +# +# SPDX-License-Identifier: AGPL-3.0-only + .DS_Store node_modules /dist diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 88fa4922..58a8f9de 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,9 @@ +# SPDX-FileCopyrightText: 2022 Mathijs de Bruin +# SPDX-FileCopyrightText: 2022 Dweb-search-frontend +# +# SPDX-License-Identifier: AGPL-3.0-only + + include: - template: Auto-DevOps.gitlab-ci.yml # https://gitlab.com/gitlab-org/gitlab/blob/master/lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml diff --git a/.reuse/dep5 b/.reuse/dep5 new file mode 100644 index 00000000..aff6ee76 --- /dev/null +++ b/.reuse/dep5 @@ -0,0 +1,8 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: Dweb-search-frontend +Upstream-Contact: Mathijs de Bruin +Source: https://github.com/ipfs-search/dweb-search-frontend.git + +Files: src/assets/* +Copyright: 2022 Dweb-search-frontend +License: AGPL-3.0-only diff --git a/Dockerfile b/Dockerfile index a86da2e9..cc08e3db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. +# +# SPDX-License-Identifier: AGPL-3.0-only + FROM node:lts-alpine AS build WORKDIR /src diff --git a/LICENSE b/LICENSES/AGPL-3.0-only.txt similarity index 100% rename from LICENSE rename to LICENSES/AGPL-3.0-only.txt diff --git a/LICENSES/Apache-2.0.txt b/LICENSES/Apache-2.0.txt new file mode 100644 index 00000000..c8e5e9c4 --- /dev/null +++ b/LICENSES/Apache-2.0.txt @@ -0,0 +1,53 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + a. You must give any other recipients of the Work or Derivative Works a copy of this License; and + b. You must cause any modified files to carry prominent notices stating that You changed the files; and + c. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + d. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + diff --git a/README.md b/README.md index 55f0dc8d..742f8be6 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ + + + # dweb-search-frontend [![Pipeline Status](https://gitlab.com/ipfs-search.com/dweb-search-frontend/badges/master/pipeline.svg)](https://gitlab.com/ipfs-search.com/dweb-search-frontend/-/commits/master) [![Maintainability](https://api.codeclimate.com/v1/badges/1373bd46347115e764d2/maintainability)](https://codeclimate.com/github/ipfs-search/dweb-search-frontend/maintainability) @@ -43,4 +53,4 @@ The default API endpoint to is: https://api.ipfs-search.com/nsfw/ The API call should be: ``, so e.g. `https://api.ipfs-search.com/nsfw/QmSZzv7ux1LGwpehVcCMQ9ec945X6qE4qyjKDhCVwY25iw` -https://api.ipfs-search.com/v1/nsfw/classify/ \ No newline at end of file +https://api.ipfs-search.com/v1/nsfw/classify/ diff --git a/REUSE.md b/REUSE.md new file mode 100644 index 00000000..258ea7ed --- /dev/null +++ b/REUSE.md @@ -0,0 +1,19 @@ + + + + REUSE SOFTWARE + +This project adheres to the REUSE principles developed by the Free Software Foundation Europe (www.fsfe.org). For more information, please refer to the links mentioned below: + +The basic content by FSFE on the REUSE Software which gives a good overview of it for those who want to get acquainted with the same: https://reuse.software/ + +This page highlights all the specifications of the REUSE Software. For instance, what is the SPDX License Identifier or what is a Dep5 file and why it is useful to have the same in your project. In short, this document guides you on what steps are to be taken to make your project legally compliant with the necessary licensing and copyright information.: https://reuse.software/spec/ + +And finally, this page solves all your technical problems.:https://reuse.readthedocs.io/en/stable/readme.html diff --git a/babel.config.js b/babel.config.js index d97bc1ad..e2b0a5e0 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 Mathijs de Bruin, et al. +// +// SPDX-License-Identifier: AGPL-3.0-only + module.exports = { presets: [ '@babel/preset-env', diff --git a/jest.config.js b/jest.config.js index aa66d63e..c725d982 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 Mathijs de Bruin, et al. +// +// SPDX-License-Identifier: AGPL-3.0-only + module.exports = { verbose: true, resetMocks: true, diff --git a/package-lock.json.license b/package-lock.json.license new file mode 100644 index 00000000..0f92b96d --- /dev/null +++ b/package-lock.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. + +SPDX-License-Identifier: AGPL-3.0-only \ No newline at end of file diff --git a/package.json.license b/package.json.license new file mode 100644 index 00000000..0f92b96d --- /dev/null +++ b/package.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. + +SPDX-License-Identifier: AGPL-3.0-only \ No newline at end of file diff --git a/public/assets/fonts/heebo-v17-latin-700.woff.license b/public/assets/fonts/heebo-v17-latin-700.woff.license new file mode 100644 index 00000000..41abaf14 --- /dev/null +++ b/public/assets/fonts/heebo-v17-latin-700.woff.license @@ -0,0 +1,4 @@ +SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. + +SPDX-License-Identifier: AGPL-3.0-only + diff --git a/public/assets/fonts/heebo-v17-latin-700.woff2.license b/public/assets/fonts/heebo-v17-latin-700.woff2.license new file mode 100644 index 00000000..41abaf14 --- /dev/null +++ b/public/assets/fonts/heebo-v17-latin-700.woff2.license @@ -0,0 +1,4 @@ +SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. + +SPDX-License-Identifier: AGPL-3.0-only + diff --git a/public/assets/fonts/roboto-v29-latin-100.woff.license b/public/assets/fonts/roboto-v29-latin-100.woff.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-100.woff.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/fonts/roboto-v29-latin-100.woff2.license b/public/assets/fonts/roboto-v29-latin-100.woff2.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-100.woff2.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/fonts/roboto-v29-latin-300.woff.license b/public/assets/fonts/roboto-v29-latin-300.woff.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-300.woff.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/fonts/roboto-v29-latin-300.woff2.license b/public/assets/fonts/roboto-v29-latin-300.woff2.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-300.woff2.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/fonts/roboto-v29-latin-500.woff.license b/public/assets/fonts/roboto-v29-latin-500.woff.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-500.woff.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/fonts/roboto-v29-latin-500.woff2.license b/public/assets/fonts/roboto-v29-latin-500.woff2.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-500.woff2.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/fonts/roboto-v29-latin-700.woff.license b/public/assets/fonts/roboto-v29-latin-700.woff.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-700.woff.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/fonts/roboto-v29-latin-700.woff2.license b/public/assets/fonts/roboto-v29-latin-700.woff2.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-700.woff2.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/fonts/roboto-v29-latin-900.woff.license b/public/assets/fonts/roboto-v29-latin-900.woff.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-900.woff.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/fonts/roboto-v29-latin-900.woff2.license b/public/assets/fonts/roboto-v29-latin-900.woff2.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-900.woff2.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/fonts/roboto-v29-latin-regular.woff.license b/public/assets/fonts/roboto-v29-latin-regular.woff.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-regular.woff.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/fonts/roboto-v29-latin-regular.woff2.license b/public/assets/fonts/roboto-v29-latin-regular.woff2.license new file mode 100644 index 00000000..ef0fe111 --- /dev/null +++ b/public/assets/fonts/roboto-v29-latin-regular.woff2.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Christian Robertson, et al. + +SPDX-License-Identifier: Apache-2.0 diff --git a/public/assets/images/favicon.png.license b/public/assets/images/favicon.png.license new file mode 100644 index 00000000..0f92b96d --- /dev/null +++ b/public/assets/images/favicon.png.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. + +SPDX-License-Identifier: AGPL-3.0-only \ No newline at end of file diff --git a/public/assets/images/favicon.svg.license b/public/assets/images/favicon.svg.license new file mode 100644 index 00000000..0f92b96d --- /dev/null +++ b/public/assets/images/favicon.svg.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. + +SPDX-License-Identifier: AGPL-3.0-only \ No newline at end of file diff --git a/public/assets/styles/fonts.css b/public/assets/styles/fonts.css index d4182427..04061033 100644 --- a/public/assets/styles/fonts.css +++ b/public/assets/styles/fonts.css @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2022 2022 Mathijs de Bruin, et al. + * + * SPDX-License-Identifier: AGPL-3.0-only + */ + /* Thanks to https://google-webfonts-helper.herokuapp.com/ */ /* heebo-700 - latin */ diff --git a/public/index.html b/public/index.html index c2db6134..bb50f058 100644 --- a/public/index.html +++ b/public/index.html @@ -1,3 +1,13 @@ + + + diff --git a/public/opensearch.xml b/public/opensearch.xml index 99f060df..817bd1c7 100644 --- a/public/opensearch.xml +++ b/public/opensearch.xml @@ -1,3 +1,13 @@ + + + ipfs-search.com Search the Distributed Web. diff --git a/src/App.vue b/src/App.vue index 1b8f60e7..7a78ecba 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,3 +1,12 @@ + +