From fc9ec56ee296d74fcb6e34f20f1b7fa3d7ff56a3 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sun, 27 Oct 2019 13:13:08 -0400 Subject: Add License headers. --- nfsw/__init__.py | 9 +++++++++ nfsw/auth.py | 9 +++++++++ nfsw/db.py | 9 +++++++++ nfsw/epilogue.py | 9 +++++++++ nfsw/io.py | 9 +++++++++ nfsw/redis.py | 9 +++++++++ nfsw/scenes.py | 9 +++++++++ nfsw/static/auth.css | 8 ++++++++ nfsw/static/epilogue.css | 8 ++++++++ nfsw/static/epilogue.js | 8 ++++++++ nfsw/static/io.css | 8 ++++++++ nfsw/static/io.js | 8 ++++++++ nfsw/static/root.css | 8 ++++++++ nfsw/static/sorry.css | 8 ++++++++ nfsw/static/terms.css | 8 ++++++++ nfsw/util.py | 9 +++++++++ nfsw/uwsgi.py | 9 +++++++++ setup.py | 9 +++++++++ 18 files changed, 154 insertions(+) diff --git a/nfsw/__init__.py b/nfsw/__init__.py index daa6238..669c7fc 100644 --- a/nfsw/__init__.py +++ b/nfsw/__init__.py @@ -1,3 +1,12 @@ +# -*- coding: utf-8 -*- +# +# SPDX-License-Identifier: ISC +# +# Copyright (C) 2019 rsiddharth +# +# This file is part of dingy. +# + import os from flask import Flask, render_template diff --git a/nfsw/auth.py b/nfsw/auth.py index 6be305e..9b099fd 100644 --- a/nfsw/auth.py +++ b/nfsw/auth.py @@ -1,3 +1,12 @@ +# -*- coding: utf-8 -*- +# +# SPDX-License-Identifier: ISC +# +# Copyright (C) 2019 rsiddharth +# +# This file is part of dingy. +# + import functools import os diff --git a/nfsw/db.py b/nfsw/db.py index fefc22a..aa6638c 100644 --- a/nfsw/db.py +++ b/nfsw/db.py @@ -1,3 +1,12 @@ +# -*- coding: utf-8 -*- +# +# SPDX-License-Identifier: ISC +# +# Copyright (C) 2019 rsiddharth +# +# This file is part of dingy. +# + import sqlite3 import click diff --git a/nfsw/epilogue.py b/nfsw/epilogue.py index aadce24..5c7430a 100644 --- a/nfsw/epilogue.py +++ b/nfsw/epilogue.py @@ -1,3 +1,12 @@ +# -*- coding: utf-8 -*- +# +# SPDX-License-Identifier: ISC +# +# Copyright (C) 2019 rsiddharth +# +# This file is part of dingy. +# + from nfsw.auth import login_required from nfsw.redis import redis diff --git a/nfsw/io.py b/nfsw/io.py index 80a93c1..1ecf635 100644 --- a/nfsw/io.py +++ b/nfsw/io.py @@ -1,3 +1,12 @@ +# -*- coding: utf-8 -*- +# +# SPDX-License-Identifier: ISC +# +# Copyright (C) 2019 rsiddharth +# +# This file is part of dingy. +# + import functools import nfsw.scenes as scenes diff --git a/nfsw/redis.py b/nfsw/redis.py index b460180..7231e48 100644 --- a/nfsw/redis.py +++ b/nfsw/redis.py @@ -1,3 +1,12 @@ +# -*- coding: utf-8 -*- +# +# SPDX-License-Identifier: ISC +# +# Copyright (C) 2019 rsiddharth +# +# This file is part of dingy. +# + from redis import Redis from flask import current_app, g, session diff --git a/nfsw/scenes.py b/nfsw/scenes.py index e9ede86..6091ad7 100644 --- a/nfsw/scenes.py +++ b/nfsw/scenes.py @@ -1,3 +1,12 @@ +# -*- coding: utf-8 -*- +# +# SPDX-License-Identifier: ISC +# +# Copyright (C) 2019 rsiddharth +# +# This file is part of dingy. +# + import os.path import subprocess diff --git a/nfsw/static/auth.css b/nfsw/static/auth.css index f5366e5..ce3ae1b 100644 --- a/nfsw/static/auth.css +++ b/nfsw/static/auth.css @@ -1,3 +1,11 @@ +/** + * SPDX-License-Identifier: ISC + * + * Copyright (C) 2019 rsiddharth + * + * This file is part of dingy. + */ + @font-face { font-family: roboto-black; src: url('./fonts/roboto-black.ttf'); diff --git a/nfsw/static/epilogue.css b/nfsw/static/epilogue.css index 4997cc4..8694d26 100644 --- a/nfsw/static/epilogue.css +++ b/nfsw/static/epilogue.css @@ -1,3 +1,11 @@ +/** + * SPDX-License-Identifier: ISC + * + * Copyright (C) 2019 rsiddharth + * + * This file is part of dingy. + */ + @font-face { font-family: roboto-black; src: url('/static/fonts/roboto-black.ttf'); diff --git a/nfsw/static/epilogue.js b/nfsw/static/epilogue.js index 9ba9d17..15111a7 100644 --- a/nfsw/static/epilogue.js +++ b/nfsw/static/epilogue.js @@ -1,3 +1,11 @@ +/** + * SPDX-License-Identifier: ISC + * + * Copyright (C) 2019 rsiddharth + * + * This file is part of dingy. + */ + document.addEventListener('DOMContentLoaded', function() { var ep_wrapper = document.getElementsByClassName('epilogue-wrapper')[0]; ep_wrapper.style = 'display:block'; diff --git a/nfsw/static/io.css b/nfsw/static/io.css index 34f28e9..0958311 100644 --- a/nfsw/static/io.css +++ b/nfsw/static/io.css @@ -1,3 +1,11 @@ +/** + * SPDX-License-Identifier: ISC + * + * Copyright (C) 2019 rsiddharth + * + * This file is part of dingy. + */ + @font-face { font-family: noto-mono; src: url('/static/fonts/noto-mono.ttf'); diff --git a/nfsw/static/io.js b/nfsw/static/io.js index aee1438..379d9da 100644 --- a/nfsw/static/io.js +++ b/nfsw/static/io.js @@ -1,3 +1,11 @@ +/** + * SPDX-License-Identifier: ISC + * + * Copyright (C) 2019 rsiddharth + * + * This file is part of dingy. + */ + document.addEventListener('DOMContentLoaded', function() { /** * Handling for sending commands to server. diff --git a/nfsw/static/root.css b/nfsw/static/root.css index ec906b5..eaa28d5 100644 --- a/nfsw/static/root.css +++ b/nfsw/static/root.css @@ -1,3 +1,11 @@ +/** + * SPDX-License-Identifier: ISC + * + * Copyright (C) 2019 rsiddharth + * + * This file is part of dingy. + */ + @font-face { font-family: roboto-black; src: url('/static/fonts/roboto-black.ttf'); diff --git a/nfsw/static/sorry.css b/nfsw/static/sorry.css index d9c8abd..f596d64 100644 --- a/nfsw/static/sorry.css +++ b/nfsw/static/sorry.css @@ -1,3 +1,11 @@ +/** + * SPDX-License-Identifier: ISC + * + * Copyright (C) 2019 rsiddharth + * + * This file is part of dingy. + */ + @font-face { font-family: roboto-black; src: url('/static/fonts/roboto-black.ttf'); diff --git a/nfsw/static/terms.css b/nfsw/static/terms.css index 6236141..6ec8aa7 100644 --- a/nfsw/static/terms.css +++ b/nfsw/static/terms.css @@ -1,3 +1,11 @@ +/** + * SPDX-License-Identifier: ISC + * + * Copyright (C) 2019 rsiddharth + * + * This file is part of dingy. + */ + @font-face { font-family: roboto-black; src: url('/static/fonts/roboto-black.ttf'); diff --git a/nfsw/util.py b/nfsw/util.py index 3536dfc..73f0015 100644 --- a/nfsw/util.py +++ b/nfsw/util.py @@ -1,3 +1,12 @@ +# -*- coding: utf-8 -*- +# +# SPDX-License-Identifier: ISC +# +# Copyright (C) 2019 rsiddharth +# +# This file is part of dingy. +# + import os from flask import current_app diff --git a/nfsw/uwsgi.py b/nfsw/uwsgi.py index 0b17cc9..dc87e58 100644 --- a/nfsw/uwsgi.py +++ b/nfsw/uwsgi.py @@ -1,3 +1,12 @@ +# -*- coding: utf-8 -*- +# +# SPDX-License-Identifier: ISC +# +# Copyright (C) 2019 rsiddharth +# +# This file is part of dingy. +# + from nfsw import create_app app = create_app() diff --git a/setup.py b/setup.py index 2679c3f..4a02cf4 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,12 @@ +# -*- coding: utf-8 -*- +# +# SPDX-License-Identifier: ISC +# +# Copyright (C) 2019 rsiddharth +# +# This file is part of dingy. +# + from setuptools import find_packages, setup -- cgit v1.2.3