about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/db.rs18
-rw-r--r--src/errors.rs18
-rw-r--r--src/handlers.rs18
-rw-r--r--src/main.rs18
-rw-r--r--src/models.rs18
-rw-r--r--src/oidc.rs18
-rw-r--r--src/render.rs18
-rw-r--r--src/schema.rs18
8 files changed, 88 insertions, 56 deletions
diff --git a/src/db.rs b/src/db.rs
index e085533028..cde4642d4b 100644
--- a/src/db.rs
+++ b/src/db.rs
@@ -1,17 +1,19 @@
 // Copyright (C) 2018  Vincent Ambo <mail@tazj.in>
 //
+// This file is part of Converse.
+//
 // Converse 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.
-
+// under the terms of the GNU Affero 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
-// General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see
+// Affero 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/>.
 
 //! This module implements the database connection actor.
diff --git a/src/errors.rs b/src/errors.rs
index 8345a9382f..c4c2be198e 100644
--- a/src/errors.rs
+++ b/src/errors.rs
@@ -1,17 +1,19 @@
 // Copyright (C) 2018  Vincent Ambo <mail@tazj.in>
 //
+// This file is part of Converse.
+//
 // Converse 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.
-
+// under the terms of the GNU Affero 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
-// General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see
+// Affero 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/>.
 
 //! This module defines custom error types using the `failure`-crate.
diff --git a/src/handlers.rs b/src/handlers.rs
index feac6b864f..fa41ca3546 100644
--- a/src/handlers.rs
+++ b/src/handlers.rs
@@ -1,17 +1,19 @@
 // Copyright (C) 2018  Vincent Ambo <mail@tazj.in>
 //
+// This file is part of Converse.
+//
 // Converse 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.
-
+// under the terms of the GNU Affero 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
-// General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see
+// Affero 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/>.
 
 //! This module contains the implementation of converse's actix-web
diff --git a/src/main.rs b/src/main.rs
index 9b5f2f7428..bc9fca6810 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,17 +1,19 @@
 // Copyright (C) 2018  Vincent Ambo <mail@tazj.in>
 //
+// This file is part of Converse.
+//
 // Converse 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.
-
+// under the terms of the GNU Affero 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
-// General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see
+// Affero 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/>.
 
 #[macro_use]
diff --git a/src/models.rs b/src/models.rs
index dfadd53fd3..26985394cb 100644
--- a/src/models.rs
+++ b/src/models.rs
@@ -1,17 +1,19 @@
 // Copyright (C) 2018  Vincent Ambo <mail@tazj.in>
 //
+// This file is part of Converse.
+//
 // Converse 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.
-
+// under the terms of the GNU Affero 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
-// General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see
+// Affero 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/>.
 
 use chrono::prelude::{DateTime, Utc};
diff --git a/src/oidc.rs b/src/oidc.rs
index 8e0f666960..23d82e0fa7 100644
--- a/src/oidc.rs
+++ b/src/oidc.rs
@@ -1,17 +1,19 @@
 // Copyright (C) 2018  Vincent Ambo <mail@tazj.in>
 //
+// This file is part of Converse.
+//
 // Converse 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.
-
+// under the terms of the GNU Affero 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
-// General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see
+// Affero 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/>.
 
 //! This module provides authentication via OIDC compliant
diff --git a/src/render.rs b/src/render.rs
index 91f4d3f3f9..9a81d2c4cc 100644
--- a/src/render.rs
+++ b/src/render.rs
@@ -1,17 +1,19 @@
 // Copyright (C) 2018  Vincent Ambo <mail@tazj.in>
 //
+// This file is part of Converse.
+//
 // Converse 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.
-
+// under the terms of the GNU Affero 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
-// General Public License for more details.
-
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see
+// Affero 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/>.
 
 //! This module defines a rendering actor used for processing Converse
diff --git a/src/schema.rs b/src/schema.rs
index 6f73af69ce..b5a8fab7fa 100644
--- a/src/schema.rs
+++ b/src/schema.rs
@@ -1,3 +1,21 @@
+// Copyright (C) 2018  Vincent Ambo <mail@tazj.in>
+//
+// 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
+// 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.
+//
+// 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/>.
+
 table! {
     posts (id) {
         id -> Int4,