diff options
author | Vincent Ambo <mail@tazj.in> | 2021-04-05T14·50+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2021-04-05T14·50+0200 |
commit | 09168021e7405f6b83798d0b43aa6e69e744ae87 (patch) | |
tree | 80cda70e8e2a7ac46a3afaf98037cda7f0759bae /src | |
parent | 8901d5d73a50ce2d426aece1f8ab0ff0216278ef (diff) |
chore: Relicense under GPL-3.0
Diffstat (limited to 'src')
-rw-r--r-- | src/db.rs | 14 | ||||
-rw-r--r-- | src/errors.rs | 14 | ||||
-rw-r--r-- | src/handlers.rs | 14 | ||||
-rw-r--r-- | src/main.rs | 14 | ||||
-rw-r--r-- | src/models.rs | 14 | ||||
-rw-r--r-- | src/oidc.rs | 14 | ||||
-rw-r--r-- | src/render.rs | 14 | ||||
-rw-r--r-- | src/schema.rs | 14 |
8 files changed, 56 insertions, 56 deletions
diff --git a/src/db.rs b/src/db.rs index 3c44172b15c2..e20349944402 100644 --- a/src/db.rs +++ b/src/db.rs @@ -1,20 +1,20 @@ -// Copyright (C) 2018 Vincent Ambo <mail@tazj.in> +// Copyright (C) 2018-2021 Vincent Ambo <tazjin@tvl.su> // // This file is part of Converse. // -// Converse is free software: you can redistribute it and/or modify it -// under the terms of the GNU Affero General Public License as +// This program is free software: you can redistribute it and/or +// modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Affero General Public License for more details. +// General Public License for more details. // -// You should have received a copy of the GNU Affero General Public -// License along with this program. If not, see -// <http://www.gnu.org/licenses/>. +// You should have received a copy of the GNU General Public License +// along with this program. If not, see +// <https://www.gnu.org/licenses/>. //! This module implements the database connection actor. diff --git a/src/errors.rs b/src/errors.rs index dd0e12c0450e..95b2366ce509 100644 --- a/src/errors.rs +++ b/src/errors.rs @@ -1,20 +1,20 @@ -// Copyright (C) 2018 Vincent Ambo <mail@tazj.in> +// Copyright (C) 2018-2021 Vincent Ambo <tazjin@tvl.su> // // This file is part of Converse. // -// Converse is free software: you can redistribute it and/or modify it -// under the terms of the GNU Affero General Public License as +// This program is free software: you can redistribute it and/or +// modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Affero General Public License for more details. +// General Public License for more details. // -// You should have received a copy of the GNU Affero General Public -// License along with this program. If not, see -// <http://www.gnu.org/licenses/>. +// You should have received a copy of the GNU General Public License +// along with this program. If not, see +// <https://www.gnu.org/licenses/>. //! This module defines custom error types using the `failure`-crate. //! Links to foreign error types (such as database connection errors) diff --git a/src/handlers.rs b/src/handlers.rs index 1c3d020e766e..efdffb3f9102 100644 --- a/src/handlers.rs +++ b/src/handlers.rs @@ -1,20 +1,20 @@ -// Copyright (C) 2018 Vincent Ambo <mail@tazj.in> +// Copyright (C) 2018-2021 Vincent Ambo <tazjin@tvl.su> // // This file is part of Converse. // -// Converse is free software: you can redistribute it and/or modify it -// under the terms of the GNU Affero General Public License as +// This program is free software: you can redistribute it and/or +// modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Affero General Public License for more details. +// General Public License for more details. // -// You should have received a copy of the GNU Affero General Public -// License along with this program. If not, see -// <http://www.gnu.org/licenses/>. +// You should have received a copy of the GNU General Public License +// along with this program. If not, see +// <https://www.gnu.org/licenses/>. //! This module contains the implementation of converse's actix-web //! HTTP handlers. diff --git a/src/main.rs b/src/main.rs index 47bfb0b3645f..55d84b981b64 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,20 +1,20 @@ -// Copyright (C) 2018 Vincent Ambo <mail@tazj.in> +// Copyright (C) 2018-2021 Vincent Ambo <tazjin@tvl.su> // // This file is part of Converse. // -// Converse is free software: you can redistribute it and/or modify it -// under the terms of the GNU Affero General Public License as +// This program is free software: you can redistribute it and/or +// modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Affero General Public License for more details. +// General Public License for more details. // -// You should have received a copy of the GNU Affero General Public -// License along with this program. If not, see -// <http://www.gnu.org/licenses/>. +// You should have received a copy of the GNU General Public License +// along with this program. If not, see +// <https://www.gnu.org/licenses/>. #[macro_use] extern crate askama; diff --git a/src/models.rs b/src/models.rs index eab90b30f601..96eed419d359 100644 --- a/src/models.rs +++ b/src/models.rs @@ -1,20 +1,20 @@ -// Copyright (C) 2018 Vincent Ambo <mail@tazj.in> +// Copyright (C) 2018-2021 Vincent Ambo <tazjin@tvl.su> // // This file is part of Converse. // -// Converse is free software: you can redistribute it and/or modify it -// under the terms of the GNU Affero General Public License as +// This program is free software: you can redistribute it and/or +// modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Affero General Public License for more details. +// General Public License for more details. // -// You should have received a copy of the GNU Affero General Public -// License along with this program. If not, see -// <http://www.gnu.org/licenses/>. +// You should have received a copy of the GNU General Public License +// along with this program. If not, see +// <https://www.gnu.org/licenses/>. use chrono::prelude::{DateTime, Utc}; use schema::{users, threads, posts, simple_posts}; diff --git a/src/oidc.rs b/src/oidc.rs index 23d82e0fa7e7..970aeb92aa47 100644 --- a/src/oidc.rs +++ b/src/oidc.rs @@ -1,20 +1,20 @@ -// Copyright (C) 2018 Vincent Ambo <mail@tazj.in> +// Copyright (C) 2018-2021 Vincent Ambo <tazjin@tvl.su> // // This file is part of Converse. // -// Converse is free software: you can redistribute it and/or modify it -// under the terms of the GNU Affero General Public License as +// This program is free software: you can redistribute it and/or +// modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Affero General Public License for more details. +// General Public License for more details. // -// You should have received a copy of the GNU Affero General Public -// License along with this program. If not, see -// <http://www.gnu.org/licenses/>. +// You should have received a copy of the GNU General Public License +// along with this program. If not, see +// <https://www.gnu.org/licenses/>. //! This module provides authentication via OIDC compliant //! authentication sources. diff --git a/src/render.rs b/src/render.rs index c209384b719e..025a369ba5b5 100644 --- a/src/render.rs +++ b/src/render.rs @@ -1,20 +1,20 @@ -// Copyright (C) 2018 Vincent Ambo <mail@tazj.in> +// Copyright (C) 2018-2021 Vincent Ambo <tazjin@tvl.su> // // This file is part of Converse. // -// Converse is free software: you can redistribute it and/or modify it -// under the terms of the GNU Affero General Public License as +// This program is free software: you can redistribute it and/or +// modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Affero General Public License for more details. +// General Public License for more details. // -// You should have received a copy of the GNU Affero General Public -// License along with this program. If not, see -// <http://www.gnu.org/licenses/>. +// You should have received a copy of the GNU General Public License +// along with this program. If not, see +// <https://www.gnu.org/licenses/>. //! This module defines a rendering actor used for processing Converse //! data into whatever format is needed by the templates and rendering diff --git a/src/schema.rs b/src/schema.rs index 683aa6055d9e..7de6d13668c2 100644 --- a/src/schema.rs +++ b/src/schema.rs @@ -1,20 +1,20 @@ -// Copyright (C) 2018 Vincent Ambo <mail@tazj.in> +// Copyright (C) 2018-2021 Vincent Ambo <tazjin@tvl.su> // // This file is part of Converse. // -// Converse is free software: you can redistribute it and/or modify it -// under the terms of the GNU Affero General Public License as +// This program is free software: you can redistribute it and/or +// modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Affero General Public License for more details. +// General Public License for more details. // -// You should have received a copy of the GNU Affero General Public -// License along with this program. If not, see -// <http://www.gnu.org/licenses/>. +// You should have received a copy of the GNU General Public License +// along with this program. If not, see +// <https://www.gnu.org/licenses/>. table! { posts (id) { |