From 11862f74d1b88f5e4862dbc04a6c3a58c4b57fbc Mon Sep 17 00:00:00 2001 From: Jithendra Palepu Date: Fri, 28 Jul 2023 14:19:40 +0200 Subject: [PATCH 1/3] Adding SPDX license and copyright comment headers --- .gitignore | 4 ++++ cli/src/commit.rs | 4 ++++ cli/src/main.rs | 4 ++++ cli/src/new.rs | 4 ++++ cli/src/path.rs | 4 ++++ cli/src/print.rs | 4 ++++ cli/tests/tests.rs | 4 ++++ lib/src/agents.rs | 4 ++++ lib/src/atoms.rs | 4 ++++ lib/src/authentication.rs | 4 ++++ lib/src/client.rs | 4 ++++ lib/src/collections.rs | 4 ++++ lib/src/commit.rs | 4 ++++ lib/src/config.rs | 4 ++++ lib/src/datatype.rs | 4 ++++ lib/src/db.rs | 4 ++++ lib/src/db/migrations.rs | 4 ++++ lib/src/db/prop_val_sub_index.rs | 4 ++++ lib/src/db/query_index.rs | 4 ++++ lib/src/db/test.rs | 4 ++++ lib/src/db/val_prop_sub_index.rs | 4 ++++ lib/src/endpoints.rs | 4 ++++ lib/src/errors.rs | 4 ++++ lib/src/hierarchy.rs | 4 ++++ lib/src/lib.rs | 4 ++++ lib/src/mapping.rs | 4 ++++ lib/src/parse.rs | 4 ++++ lib/src/plugins/bookmark.rs | 4 ++++ lib/src/plugins/chatroom.rs | 4 ++++ lib/src/plugins/files.rs | 4 ++++ lib/src/plugins/importer.rs | 4 ++++ lib/src/plugins/invite.rs | 4 ++++ lib/src/plugins/mod.rs | 4 ++++ lib/src/plugins/path.rs | 4 ++++ lib/src/plugins/query.rs | 4 ++++ lib/src/plugins/search.rs | 4 ++++ lib/src/plugins/versioning.rs | 4 ++++ lib/src/populate.rs | 4 ++++ lib/src/resources.rs | 4 ++++ lib/src/schema.rs | 4 ++++ lib/src/serialize.rs | 4 ++++ lib/src/store.rs | 4 ++++ lib/src/storelike.rs | 4 ++++ lib/src/test_utils.rs | 4 ++++ lib/src/urls.rs | 4 ++++ lib/src/utils.rs | 4 ++++ lib/src/validate.rs | 4 ++++ lib/src/values.rs | 4 ++++ 48 files changed, 192 insertions(+) diff --git a/.gitignore b/.gitignore index 694342365..f196fc523 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2023 Joep Meindertsma +# +# SPDX-License-Identifier: CC0-1.0 + /target .env trace-*.json diff --git a/cli/src/commit.rs b/cli/src/commit.rs index 8431a9910..aec915c3b 100644 --- a/cli/src/commit.rs +++ b/cli/src/commit.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + use crate::Context; use atomic_lib::{errors::AtomicResult, Storelike}; diff --git a/cli/src/main.rs b/cli/src/main.rs index 36e8cfea5..45e540ab8 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + use atomic_lib::{agents::generate_public_key, mapping::Mapping}; use atomic_lib::{agents::Agent, config::Config}; use atomic_lib::{errors::AtomicResult, Storelike}; diff --git a/cli/src/new.rs b/cli/src/new.rs index 38e5000a6..dc520f687 100644 --- a/cli/src/new.rs +++ b/cli/src/new.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Creating a new resource. Provides prompting logic use crate::{CLIResult, Context}; use atomic_lib::mapping; diff --git a/cli/src/path.rs b/cli/src/path.rs index bdeed931f..5c2d37029 100644 --- a/cli/src/path.rs +++ b/cli/src/path.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + use crate::{ print::{get_serialization, print_resource}, Context, diff --git a/cli/src/print.rs b/cli/src/print.rs index 5aa148060..9bd619a04 100644 --- a/cli/src/print.rs +++ b/cli/src/print.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + use atomic_lib::{ errors::AtomicResult, serialize::{self, Format}, diff --git a/cli/tests/tests.rs b/cli/tests/tests.rs index 3e574fcb9..48f7de5b4 100644 --- a/cli/tests/tests.rs +++ b/cli/tests/tests.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + #[cfg(test)] mod test { use assert_cmd::Command; diff --git a/lib/src/agents.rs b/lib/src/agents.rs index 618126843..64597d519 100644 --- a/lib/src/agents.rs +++ b/lib/src/agents.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Logic for Agents //! Agents are actors (such as users) that can edit content. //! https://docs.atomicdata.dev/commits/concepts.html diff --git a/lib/src/atoms.rs b/lib/src/atoms.rs index 6dfca320a..4e2d747b6 100644 --- a/lib/src/atoms.rs +++ b/lib/src/atoms.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! The smallest units of data, consisting of a Subject, a Property and a Value use crate::{ diff --git a/lib/src/authentication.rs b/lib/src/authentication.rs index 5c1572f96..513199305 100644 --- a/lib/src/authentication.rs +++ b/lib/src/authentication.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Check signatures in authentication headers, find the correct agent. Authorization is done in Hierarchies use crate::{ diff --git a/lib/src/client.rs b/lib/src/client.rs index 650493914..48bcd00b3 100644 --- a/lib/src/client.rs +++ b/lib/src/client.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Functions for interacting with an Atomic Server use crate::{ agents::Agent, diff --git a/lib/src/collections.rs b/lib/src/collections.rs index 7efa569da..27f771fd0 100644 --- a/lib/src/collections.rs +++ b/lib/src/collections.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Collections are dynamic resources that refer to multiple resources. //! They are constructed using a [Query] use crate::{ diff --git a/lib/src/commit.rs b/lib/src/commit.rs index 38107349c..9f609badc 100644 --- a/lib/src/commit.rs +++ b/lib/src/commit.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Describe changes / mutations to data use serde::{Deserialize, Serialize}; diff --git a/lib/src/config.rs b/lib/src/config.rs index 5c54ffd48..51da3a22b 100644 --- a/lib/src/config.rs +++ b/lib/src/config.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Configuration logic which can be used in both CLI and Server contexts //! For serializaing, storing, and parsing the `~/.config/atomic/config.toml` file diff --git a/lib/src/datatype.rs b/lib/src/datatype.rs index ca8450428..526bfef9d 100644 --- a/lib/src/datatype.rs +++ b/lib/src/datatype.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! [DataType]s constrain values of Atoms use crate::urls; diff --git a/lib/src/db.rs b/lib/src/db.rs index 07be1a43e..acb270c80 100644 --- a/lib/src/db.rs +++ b/lib/src/db.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Persistent, ACID compliant, threadsafe to-disk store. //! Powered by Sled - an embedded database. diff --git a/lib/src/db/migrations.rs b/lib/src/db/migrations.rs index aa4b74939..b0a303460 100644 --- a/lib/src/db/migrations.rs +++ b/lib/src/db/migrations.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + /*! # Migrations diff --git a/lib/src/db/prop_val_sub_index.rs b/lib/src/db/prop_val_sub_index.rs index 2a3fc318b..46781d840 100644 --- a/lib/src/db/prop_val_sub_index.rs +++ b/lib/src/db/prop_val_sub_index.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Index sorted by {Property}-{Value}-{Subject}. use tracing::instrument; diff --git a/lib/src/db/query_index.rs b/lib/src/db/query_index.rs index 3ce9dc480..7e03ef32c 100644 --- a/lib/src/db/query_index.rs +++ b/lib/src/db/query_index.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! The QueryIndex is used to speed up queries by persisting filtered, sorted collections. //! It relies on lexicographic ordering of keys, which Sled utilizes using `scan_prefix` queries. diff --git a/lib/src/db/test.rs b/lib/src/db/test.rs index b331a16f6..efe2f7d7e 100644 --- a/lib/src/db/test.rs +++ b/lib/src/db/test.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + use crate::{agents::ForAgent, urls, Value}; use super::*; diff --git a/lib/src/db/val_prop_sub_index.rs b/lib/src/db/val_prop_sub_index.rs index 2b46d50d1..0da412d96 100644 --- a/lib/src/db/val_prop_sub_index.rs +++ b/lib/src/db/val_prop_sub_index.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Index sorted by {Value}-{Property}-{Subject}. use crate::{atoms::IndexAtom, errors::AtomicResult, Db, Value}; use tracing::instrument; diff --git a/lib/src/endpoints.rs b/lib/src/endpoints.rs index 40735fbed..95e427833 100644 --- a/lib/src/endpoints.rs +++ b/lib/src/endpoints.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Endpoints are experimental plugin-like objects, that allow for dynamic resources. //! An endpoint is a resource that accepts one or more query parameters, and returns a resource that is probably calculated at runtime. //! Examples of endpoints are versions for resources, or (pages for) collections. diff --git a/lib/src/errors.rs b/lib/src/errors.rs index e49bb0332..bcbbcbd71 100644 --- a/lib/src/errors.rs +++ b/lib/src/errors.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + /*! Mostly contains implementations for Error types. diff --git a/lib/src/hierarchy.rs b/lib/src/hierarchy.rs index 21d621ae7..4b88c92ba 100644 --- a/lib/src/hierarchy.rs +++ b/lib/src/hierarchy.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! The Hierarchy model describes how Resources are structured in a tree-like shape. //! It deals with authorization (read / write permissions, rights, grants) //! See diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 0fd1bd63b..4695c0da9 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + /*! `atomic_lib` helps you to get, store, serialize, parse and validate Atomic Data. diff --git a/lib/src/mapping.rs b/lib/src/mapping.rs index b2c2b65ad..9427ec956 100644 --- a/lib/src/mapping.rs +++ b/lib/src/mapping.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Because writing full URLs is error prone and time consuming, we map URLs to shortnames. //! These are often user-specific. //! This section provides tools to store, share and resolve these Mappings. diff --git a/lib/src/parse.rs b/lib/src/parse.rs index d845f4683..a05a9d49a 100644 --- a/lib/src/parse.rs +++ b/lib/src/parse.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Parsing / deserialization / decoding use crate::{ diff --git a/lib/src/plugins/bookmark.rs b/lib/src/plugins/bookmark.rs index 2efabc9b9..20366e0e1 100644 --- a/lib/src/plugins/bookmark.rs +++ b/lib/src/plugins/bookmark.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + /** Parse HTML documents and extract metadata. Convert articles to Markdown strings. diff --git a/lib/src/plugins/chatroom.rs b/lib/src/plugins/chatroom.rs index 7901df220..23480ee77 100644 --- a/lib/src/plugins/chatroom.rs +++ b/lib/src/plugins/chatroom.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + /*! # ChatRoom These are similar to Channels in Slack or Discord. diff --git a/lib/src/plugins/files.rs b/lib/src/plugins/files.rs index a33d2f5e1..6d46f5cde 100644 --- a/lib/src/plugins/files.rs +++ b/lib/src/plugins/files.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + use crate::{endpoints::Endpoint, urls}; pub fn upload_endpoint() -> Endpoint { diff --git a/lib/src/plugins/importer.rs b/lib/src/plugins/importer.rs index f72e6e053..6dbc8ee0a 100644 --- a/lib/src/plugins/importer.rs +++ b/lib/src/plugins/importer.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + /*! Importers allow users to (periodically) import JSON-AD files from a remote source. */ diff --git a/lib/src/plugins/invite.rs b/lib/src/plugins/invite.rs index ab68fd647..1686eab4f 100644 --- a/lib/src/plugins/invite.rs +++ b/lib/src/plugins/invite.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + use crate::{ agents::{Agent, ForAgent}, errors::AtomicResult, diff --git a/lib/src/plugins/mod.rs b/lib/src/plugins/mod.rs index a02b34634..e755788a3 100644 --- a/lib/src/plugins/mod.rs +++ b/lib/src/plugins/mod.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + /*! # Plugins diff --git a/lib/src/plugins/path.rs b/lib/src/plugins/path.rs index a112ea845..21344d2eb 100644 --- a/lib/src/plugins/path.rs +++ b/lib/src/plugins/path.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + use crate::{ endpoints::{Endpoint, HandleGetContext}, errors::AtomicResult, diff --git a/lib/src/plugins/query.rs b/lib/src/plugins/query.rs index 0481a3ca7..7b6b3379e 100644 --- a/lib/src/plugins/query.rs +++ b/lib/src/plugins/query.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + use crate::{ endpoints::{Endpoint, HandleGetContext}, errors::AtomicResult, diff --git a/lib/src/plugins/search.rs b/lib/src/plugins/search.rs index 00ca4b65b..199e2a96e 100644 --- a/lib/src/plugins/search.rs +++ b/lib/src/plugins/search.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + use crate::{endpoints::Endpoint, urls}; // Note that the actual logic of this endpoint resides in `atomic-server`, as it depends on the Actix runtime. diff --git a/lib/src/plugins/versioning.rs b/lib/src/plugins/versioning.rs index ba17724eb..0816ba794 100644 --- a/lib/src/plugins/versioning.rs +++ b/lib/src/plugins/versioning.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + use tracing::warn; use crate::{ diff --git a/lib/src/populate.rs b/lib/src/populate.rs index 4102918bf..682005421 100644 --- a/lib/src/populate.rs +++ b/lib/src/populate.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Populating a Store means adding resources to it. //! Some of these are the core Atomic Data resources, such as the Property class. //! These base models are required for having a functioning store. diff --git a/lib/src/resources.rs b/lib/src/resources.rs index 033c893a7..7537ccc97 100644 --- a/lib/src/resources.rs +++ b/lib/src/resources.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! A [Resource] is a set of [Atom]s that share a URL. //! Has methods for saving resources and getting properties inside them. diff --git a/lib/src/schema.rs b/lib/src/schema.rs index 6ca28e546..6cef4dc3d 100644 --- a/lib/src/schema.rs +++ b/lib/src/schema.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Structs and models at the core of Atomic Schema (Class, Property, Datatype). use crate::{datatype::DataType, errors::AtomicResult, urls, Resource, Value}; diff --git a/lib/src/serialize.rs b/lib/src/serialize.rs index a171482f0..34bd168a8 100644 --- a/lib/src/serialize.rs +++ b/lib/src/serialize.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Serialization / formatting / encoding (JSON, RDF, N-Triples) use serde_json::Map; diff --git a/lib/src/store.rs b/lib/src/store.rs index ffaface22..75ec11b5a 100644 --- a/lib/src/store.rs +++ b/lib/src/store.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! In-memory store of Atomic data. //! This provides many methods for finding, changing, serializing and parsing Atomic Data. diff --git a/lib/src/storelike.rs b/lib/src/storelike.rs index edbc89552..d18343a21 100644 --- a/lib/src/storelike.rs +++ b/lib/src/storelike.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! The Storelike Trait contains many useful methods for maniupulting / retrieving data. use crate::{ diff --git a/lib/src/test_utils.rs b/lib/src/test_utils.rs index 3ff592ac2..0ee4c3f78 100644 --- a/lib/src/test_utils.rs +++ b/lib/src/test_utils.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + /// Creates a populated Store with an agent (testman) and one test resource (_:test) #[cfg(test)] pub fn init_store() -> crate::Store { diff --git a/lib/src/urls.rs b/lib/src/urls.rs index a35e57574..b3734ad50 100644 --- a/lib/src/urls.rs +++ b/lib/src/urls.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Contains some of the most important Atomic Data URLs. // Classes diff --git a/lib/src/utils.rs b/lib/src/utils.rs index 55df89fbc..535da1af9 100644 --- a/lib/src/utils.rs +++ b/lib/src/utils.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Helper functions for dealing with URLs use crate::errors::AtomicResult; diff --git a/lib/src/validate.rs b/lib/src/validate.rs index 6d224d4da..7815cc5f6 100644 --- a/lib/src/validate.rs +++ b/lib/src/validate.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! Validate the Store and create a ValidationReport. //! Might be deprecated soon, as Validation hasn't been necessary since parsing has built-in data validation. diff --git a/lib/src/values.rs b/lib/src/values.rs index 0beb32704..e8aa3f9f2 100644 --- a/lib/src/values.rs +++ b/lib/src/values.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2023 Joep Meindertsma +// +// SPDX-License-Identifier: MIT + //! A value is the part of an Atom that contains the actual information. use crate::{ From 41ac9deef4b80f245e82058cb5dde15312c69bc8 Mon Sep 17 00:00:00 2001 From: Jithendra Palepu Date: Fri, 28 Jul 2023 14:20:52 +0200 Subject: [PATCH 2/3] Downloading license texts into licenses folder --- LICENSES/CC0-1.0.txt | 121 +++++++++++++++++++++++++++++++++++++++++++ LICENSES/MIT.txt | 9 ++++ 2 files changed, 130 insertions(+) create mode 100644 LICENSES/CC0-1.0.txt create mode 100644 LICENSES/MIT.txt diff --git a/LICENSES/CC0-1.0.txt b/LICENSES/CC0-1.0.txt new file mode 100644 index 000000000..0e259d42c --- /dev/null +++ b/LICENSES/CC0-1.0.txt @@ -0,0 +1,121 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. diff --git a/LICENSES/MIT.txt b/LICENSES/MIT.txt new file mode 100644 index 000000000..2071b23b0 --- /dev/null +++ b/LICENSES/MIT.txt @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. From 8819eba0d342eaf2f46cdd44f1a4582e7971f04b Mon Sep 17 00:00:00 2001 From: Jithendra Palepu Date: Fri, 28 Jul 2023 14:23:54 +0200 Subject: [PATCH 3/3] Adding copyright information to the image files --- desktop/icons/128x128.png.license | 1 + desktop/icons/128x128@2x.png.license | 1 + desktop/icons/32x32.png.license | 1 + desktop/icons/Square107x107Logo.png.license | 1 + desktop/icons/Square142x142Logo.png.license | 1 + desktop/icons/Square150x150Logo.png.license | 1 + desktop/icons/Square284x284Logo.png.license | 1 + desktop/icons/Square30x30Logo.png.license | 1 + desktop/icons/Square310x310Logo.png.license | 1 + desktop/icons/Square44x44Logo.png.license | 1 + desktop/icons/Square71x71Logo.png.license | 1 + desktop/icons/Square89x89Logo.png.license | 1 + desktop/icons/StoreLogo.png.license | 1 + desktop/icons/atomic-icon.png.license | 1 + desktop/icons/icon.icns.license | 1 + desktop/icons/icon.ico.license | 1 + desktop/icons/icon.png.license | 1 + logo.svg.license | 1 + 18 files changed, 18 insertions(+) create mode 100644 desktop/icons/128x128.png.license create mode 100644 desktop/icons/128x128@2x.png.license create mode 100644 desktop/icons/32x32.png.license create mode 100644 desktop/icons/Square107x107Logo.png.license create mode 100644 desktop/icons/Square142x142Logo.png.license create mode 100644 desktop/icons/Square150x150Logo.png.license create mode 100644 desktop/icons/Square284x284Logo.png.license create mode 100644 desktop/icons/Square30x30Logo.png.license create mode 100644 desktop/icons/Square310x310Logo.png.license create mode 100644 desktop/icons/Square44x44Logo.png.license create mode 100644 desktop/icons/Square71x71Logo.png.license create mode 100644 desktop/icons/Square89x89Logo.png.license create mode 100644 desktop/icons/StoreLogo.png.license create mode 100644 desktop/icons/atomic-icon.png.license create mode 100644 desktop/icons/icon.icns.license create mode 100644 desktop/icons/icon.ico.license create mode 100644 desktop/icons/icon.png.license create mode 100644 logo.svg.license diff --git a/desktop/icons/128x128.png.license b/desktop/icons/128x128.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/128x128.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/128x128@2x.png.license b/desktop/icons/128x128@2x.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/128x128@2x.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/32x32.png.license b/desktop/icons/32x32.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/32x32.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/Square107x107Logo.png.license b/desktop/icons/Square107x107Logo.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/Square107x107Logo.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/Square142x142Logo.png.license b/desktop/icons/Square142x142Logo.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/Square142x142Logo.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/Square150x150Logo.png.license b/desktop/icons/Square150x150Logo.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/Square150x150Logo.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/Square284x284Logo.png.license b/desktop/icons/Square284x284Logo.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/Square284x284Logo.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/Square30x30Logo.png.license b/desktop/icons/Square30x30Logo.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/Square30x30Logo.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/Square310x310Logo.png.license b/desktop/icons/Square310x310Logo.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/Square310x310Logo.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/Square44x44Logo.png.license b/desktop/icons/Square44x44Logo.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/Square44x44Logo.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/Square71x71Logo.png.license b/desktop/icons/Square71x71Logo.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/Square71x71Logo.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/Square89x89Logo.png.license b/desktop/icons/Square89x89Logo.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/Square89x89Logo.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/StoreLogo.png.license b/desktop/icons/StoreLogo.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/StoreLogo.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/atomic-icon.png.license b/desktop/icons/atomic-icon.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/atomic-icon.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/icon.icns.license b/desktop/icons/icon.icns.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/icon.icns.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/icon.ico.license b/desktop/icons/icon.ico.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/icon.ico.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/desktop/icons/icon.png.license b/desktop/icons/icon.png.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/desktop/icons/icon.png.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma diff --git a/logo.svg.license b/logo.svg.license new file mode 100644 index 000000000..9b1eea2d0 --- /dev/null +++ b/logo.svg.license @@ -0,0 +1 @@ +SPDX-FileCopyrightText: 2023 Joep Meindertsma