From e88f5f74cebed92c42543ce0682a8a49075d859b Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Sat, 27 Jul 2013 09:39:14 +0200 Subject: also move the static directory into the dedup package --- dedup/static/favicon.ico | Bin 0 -> 4286 bytes dedup/static/style.css | 12 ++++++++++++ static/favicon.ico | Bin 4286 -> 0 bytes static/style.css | 12 ------------ webapp.py | 4 +--- 5 files changed, 13 insertions(+), 15 deletions(-) create mode 100644 dedup/static/favicon.ico create mode 100644 dedup/static/style.css delete mode 100644 static/favicon.ico delete mode 100644 static/style.css diff --git a/dedup/static/favicon.ico b/dedup/static/favicon.ico new file mode 100644 index 0000000..5039835 Binary files /dev/null and b/dedup/static/favicon.ico differ diff --git a/dedup/static/style.css b/dedup/static/style.css new file mode 100644 index 0000000..531ef9d --- /dev/null +++ b/dedup/static/style.css @@ -0,0 +1,12 @@ +.dependency { + background-color: yellow; +} +td { + vertical-align: top; +} +.filename { + display: block; +} +.filename:hover { + background-color: #eee; +} diff --git a/static/favicon.ico b/static/favicon.ico deleted file mode 100644 index 5039835..0000000 Binary files a/static/favicon.ico and /dev/null differ diff --git a/static/style.css b/static/style.css deleted file mode 100644 index 531ef9d..0000000 --- a/static/style.css +++ /dev/null @@ -1,12 +0,0 @@ -.dependency { - background-color: yellow; -} -td { - vertical-align: top; -} -.filename { - display: block; -} -.filename:hover { - background-color: #eee; -} diff --git a/webapp.py b/webapp.py index e180087..6c6f5b4 100755 --- a/webapp.py +++ b/webapp.py @@ -1,7 +1,6 @@ #!/usr/bin/python import datetime -import os.path import sqlite3 from wsgiref.simple_server import make_server @@ -244,8 +243,7 @@ class Application(object): def main(): app = Application(sqlite3.connect("test.sqlite3")) - staticdir = os.path.join(os.path.dirname(__file__), "static") - app = SharedDataMiddleware(app, {"/": staticdir}) + app = SharedDataMiddleware(app, {"/": ("dedup", "static")}) make_server("0.0.0.0", 8800, app).serve_forever() if __name__ == "__main__": -- cgit v1.2.3