about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/db.rs14
-rw-r--r--src/errors.rs14
-rw-r--r--src/handlers.rs14
-rw-r--r--src/main.rs14
-rw-r--r--src/models.rs14
-rw-r--r--src/oidc.rs14
-rw-r--r--src/render.rs14
-rw-r--r--src/schema.rs14
8 files changed, 56 insertions, 56 deletions
diff --git a/src/db.rs b/src/db.rs
index 3c44172b15..e203499444 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 dd0e12c045..95b2366ce5 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 1c3d020e76..efdffb3f91 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 47bfb0b364..55d84b981b 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 eab90b30f6..96eed419d3 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 23d82e0fa7..970aeb92aa 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 c209384b71..025a369ba5 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 683aa6055d..7de6d13668 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) {