From f294617e7f3c321ac3e96e2c6bb76312bce74834 Mon Sep 17 00:00:00 2001 From: Ralf Ramsauer Date: Tue, 9 Oct 2018 01:42:16 +0200 Subject: [PATCH] pydoorlock: Add license headers Signed-off-by: Ralf Ramsauer --- pydoorlock/Door.py | 17 +++++++++++++++++ pydoorlock/Doorlock.py | 17 +++++++++++++++++ pydoorlock/WebApp.py | 17 +++++++++++++++++ 3 files changed, 51 insertions(+) diff --git a/pydoorlock/Door.py b/pydoorlock/Door.py index 845e9ab..f2e0849 100644 --- a/pydoorlock/Door.py +++ b/pydoorlock/Door.py @@ -1,3 +1,20 @@ +""" +Doorlockd -- Binary Kitchen's smart door opener + +Copyright (c) Binary Kitchen e.V., 2018 + +Author: + Ralf Ramsauer + +This work is licensed under the terms of the GNU GPL, version 2. See +the LICENSE file in the top-level directory. + +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. +""" + from enum import Enum diff --git a/pydoorlock/Doorlock.py b/pydoorlock/Doorlock.py index d75f1c7..cbe2ea5 100644 --- a/pydoorlock/Doorlock.py +++ b/pydoorlock/Doorlock.py @@ -1,3 +1,20 @@ +""" +Doorlockd -- Binary Kitchen's smart door opener + +Copyright (c) Binary Kitchen e.V., 2018 + +Author: + Ralf Ramsauer + +This work is licensed under the terms of the GNU GPL, version 2. See +the LICENSE file in the top-level directory. + +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. +""" + import logging from enum import Enum diff --git a/pydoorlock/WebApp.py b/pydoorlock/WebApp.py index 18eaaff..5c65e27 100644 --- a/pydoorlock/WebApp.py +++ b/pydoorlock/WebApp.py @@ -1,3 +1,20 @@ +""" +Doorlockd -- Binary Kitchen's smart door opener + +Copyright (c) Binary Kitchen e.V., 2018 + +Author: + Ralf Ramsauer + +This work is licensed under the terms of the GNU GPL, version 2. See +the LICENSE file in the top-level directory. + +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. +""" + import logging from flask import abort, Flask, jsonify, render_template, request