summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--README.md10
-rw-r--r--nfsw/__init__.py2
-rw-r--r--nfsw/auth.py2
-rw-r--r--nfsw/db.py2
-rw-r--r--nfsw/epilogue.py2
-rw-r--r--nfsw/io.py2
-rw-r--r--nfsw/junk/colophon/ohno2
-rw-r--r--nfsw/redis.py2
-rw-r--r--nfsw/scenes.py2
-rw-r--r--nfsw/static/auth.css2
-rw-r--r--nfsw/static/epilogue.css2
-rw-r--r--nfsw/static/epilogue.js2
-rw-r--r--nfsw/static/io.css2
-rw-r--r--nfsw/static/io.js2
-rw-r--r--nfsw/static/root.css2
-rw-r--r--nfsw/static/sorry.css2
-rw-r--r--nfsw/static/terms.css2
-rw-r--r--nfsw/util.py2
-rw-r--r--nfsw/uwsgi.py2
-rw-r--r--setup.py2
21 files changed, 24 insertions, 28 deletions
diff --git a/Makefile b/Makefile
index e49451f..11689e7 100644
--- a/Makefile
+++ b/Makefile
@@ -4,10 +4,10 @@
#
# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
-# This file is part of dingy.
+# This file is part of nfsw.
#
-VENV_DIR=/usr/local/virtualenv/.dingy
+VENV_DIR=/usr/local/virtualenv/.nfsw
VENV_CMD=virtualenv-3
JSHINT=~/.npm-packages/bin/jshint
diff --git a/README.md b/README.md
index 1cc17f1..f654bf8 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,4 @@
-# dingy
-
-An umbrella project for unpalatable experiments.
-
-## nfsw
+# nfsw
A text based adventure for friends as a christmas gag gift.
@@ -19,5 +15,5 @@ GNU/Linux VM though.
# license
-Everything under the dingy project, unless otherwise stated, is
-licensed under the ISC license.
+Everything, unless otherwise stated, is licensed under the ISC
+license.
diff --git a/nfsw/__init__.py b/nfsw/__init__.py
index 669c7fc..a47e1bf 100644
--- a/nfsw/__init__.py
+++ b/nfsw/__init__.py
@@ -4,7 +4,7 @@
#
# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
-# This file is part of dingy.
+# This file is part of nfsw.
#
import os
diff --git a/nfsw/auth.py b/nfsw/auth.py
index 9b099fd..3c28eeb 100644
--- a/nfsw/auth.py
+++ b/nfsw/auth.py
@@ -4,7 +4,7 @@
#
# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
-# This file is part of dingy.
+# This file is part of nfsw.
#
import functools
diff --git a/nfsw/db.py b/nfsw/db.py
index aa6638c..7d4656d 100644
--- a/nfsw/db.py
+++ b/nfsw/db.py
@@ -4,7 +4,7 @@
#
# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
-# This file is part of dingy.
+# This file is part of nfsw.
#
import sqlite3
diff --git a/nfsw/epilogue.py b/nfsw/epilogue.py
index 5c7430a..2c70b18 100644
--- a/nfsw/epilogue.py
+++ b/nfsw/epilogue.py
@@ -4,7 +4,7 @@
#
# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
-# This file is part of dingy.
+# This file is part of nfsw.
#
from nfsw.auth import login_required
diff --git a/nfsw/io.py b/nfsw/io.py
index 6cc04f9..2716151 100644
--- a/nfsw/io.py
+++ b/nfsw/io.py
@@ -4,7 +4,7 @@
#
# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
-# This file is part of dingy.
+# This file is part of nfsw.
#
import functools
diff --git a/nfsw/junk/colophon/ohno b/nfsw/junk/colophon/ohno
index 566d118..cd86ca5 100644
--- a/nfsw/junk/colophon/ohno
+++ b/nfsw/junk/colophon/ohno
@@ -23,4 +23,4 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
Source code for this game may be downloaded from
-https://ricketyspace.net/file/dingy_nfsw-v0.1.0.tar.gz
+https://ricketyspace.net/nfsw
diff --git a/nfsw/redis.py b/nfsw/redis.py
index 7231e48..d05ce52 100644
--- a/nfsw/redis.py
+++ b/nfsw/redis.py
@@ -4,7 +4,7 @@
#
# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
-# This file is part of dingy.
+# This file is part of nfsw.
#
from redis import Redis
diff --git a/nfsw/scenes.py b/nfsw/scenes.py
index 6091ad7..cf6b310 100644
--- a/nfsw/scenes.py
+++ b/nfsw/scenes.py
@@ -4,7 +4,7 @@
#
# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
-# This file is part of dingy.
+# This file is part of nfsw.
#
import os.path
diff --git a/nfsw/static/auth.css b/nfsw/static/auth.css
index ce3ae1b..c2c1750 100644
--- a/nfsw/static/auth.css
+++ b/nfsw/static/auth.css
@@ -3,7 +3,7 @@
*
* Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
*
- * This file is part of dingy.
+ * This file is part of nfsw.
*/
@font-face {
diff --git a/nfsw/static/epilogue.css b/nfsw/static/epilogue.css
index 8694d26..9ea46dd 100644
--- a/nfsw/static/epilogue.css
+++ b/nfsw/static/epilogue.css
@@ -3,7 +3,7 @@
*
* Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
*
- * This file is part of dingy.
+ * This file is part of nfsw.
*/
@font-face {
diff --git a/nfsw/static/epilogue.js b/nfsw/static/epilogue.js
index 15111a7..e7c3006 100644
--- a/nfsw/static/epilogue.js
+++ b/nfsw/static/epilogue.js
@@ -3,7 +3,7 @@
*
* Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
*
- * This file is part of dingy.
+ * This file is part of nfsw.
*/
document.addEventListener('DOMContentLoaded', function() {
diff --git a/nfsw/static/io.css b/nfsw/static/io.css
index 0958311..84d7187 100644
--- a/nfsw/static/io.css
+++ b/nfsw/static/io.css
@@ -3,7 +3,7 @@
*
* Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
*
- * This file is part of dingy.
+ * This file is part of nfsw.
*/
@font-face {
diff --git a/nfsw/static/io.js b/nfsw/static/io.js
index addafb4..f95b5f2 100644
--- a/nfsw/static/io.js
+++ b/nfsw/static/io.js
@@ -3,7 +3,7 @@
*
* Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
*
- * This file is part of dingy.
+ * This file is part of nfsw.
*/
document.addEventListener('DOMContentLoaded', function() {
diff --git a/nfsw/static/root.css b/nfsw/static/root.css
index eaa28d5..aac50a5 100644
--- a/nfsw/static/root.css
+++ b/nfsw/static/root.css
@@ -3,7 +3,7 @@
*
* Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
*
- * This file is part of dingy.
+ * This file is part of nfsw.
*/
@font-face {
diff --git a/nfsw/static/sorry.css b/nfsw/static/sorry.css
index f596d64..3319797 100644
--- a/nfsw/static/sorry.css
+++ b/nfsw/static/sorry.css
@@ -3,7 +3,7 @@
*
* Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
*
- * This file is part of dingy.
+ * This file is part of nfsw.
*/
@font-face {
diff --git a/nfsw/static/terms.css b/nfsw/static/terms.css
index 6ec8aa7..5adaadf 100644
--- a/nfsw/static/terms.css
+++ b/nfsw/static/terms.css
@@ -3,7 +3,7 @@
*
* Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
*
- * This file is part of dingy.
+ * This file is part of nfsw.
*/
@font-face {
diff --git a/nfsw/util.py b/nfsw/util.py
index 73f0015..d41b7aa 100644
--- a/nfsw/util.py
+++ b/nfsw/util.py
@@ -4,7 +4,7 @@
#
# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
-# This file is part of dingy.
+# This file is part of nfsw.
#
import os
diff --git a/nfsw/uwsgi.py b/nfsw/uwsgi.py
index dc87e58..c8587b3 100644
--- a/nfsw/uwsgi.py
+++ b/nfsw/uwsgi.py
@@ -4,7 +4,7 @@
#
# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
-# This file is part of dingy.
+# This file is part of nfsw.
#
from nfsw import create_app
diff --git a/setup.py b/setup.py
index 4a02cf4..d6af624 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@
#
# Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
-# This file is part of dingy.
+# This file is part of nfsw.
#
from setuptools import find_packages, setup