diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-11 01:26:12 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-11 01:26:12 +0200 |
commit | 609fea008b0091715bcdba1239b8126069c3473e (patch) | |
tree | 9c3825d03eec7032b052e4cf64818dc69bbcd54a /src | |
parent | index.html: use Bootstrap utilities (diff) | |
download | linux-status-609fea008b0091715bcdba1239b8126069c3473e.tar.gz linux-status-609fea008b0091715bcdba1239b8126069c3473e.zip |
put things into proper directories
Diffstat (limited to '')
-rwxr-xr-x | src/app.py (renamed from app.py) | 0 | ||||
l--------- | src/html | 1 | ||||
-rwxr-xr-x | src/server.py (renamed from server.py) | 16 |
3 files changed, 13 insertions, 4 deletions
diff --git a/src/html b/src/html new file mode 120000 index 0000000..5eb7cf0 --- /dev/null +++ b/src/html @@ -0,0 +1 @@ +../html/
\ No newline at end of file diff --git a/server.py b/src/server.py index 914765d..75723bd 100755 --- a/server.py +++ b/src/server.py @@ -24,6 +24,10 @@ def script_dir(): return os.path.dirname(os.path.realpath(__file__)) +def default_html_dir(): + return os.path.join(script_dir(), 'html') + + class RequestHandler(http.server.SimpleHTTPRequestHandler): def do_GET(self): try: @@ -55,15 +59,19 @@ def parse_args(args=None): parser.add_argument('-p', '--port', metavar='PORT', type=int, default=DEFAULT_PORT, help='set port number') + parser.add_argument('-d', '--dir', metavar='DIR', + default=default_html_dir(), + help='HTML directory path') return parser.parse_args(args) def main(args=None): - # It's a failsafe; this script is only allowed to serve the directory it - # resides in. - os.chdir(script_dir()) - args = parse_args(args) + + # It's a failsafe; the script is not allowed to serve a random current + # working directory. + os.chdir(args.dir) + httpd = make_server(args.port) try: httpd.serve_forever() |