Switch to side-by-side view

--- a/webui-standalone.py
+++ b/webui-standalone.py
@@ -1,10 +1,19 @@
 #!/usr/bin/env python
 import os
+import argparse
+import webui
+
+# handle command-line arguments
+parser = argparse.ArgumentParser()
+parser.add_argument('-a', '--addr', default='127.0.0.1',help='address to bind to [127.0.0.1]')
+parser.add_argument('-p', '--port', default='8080', type=int, help='port to listen on [8080]')
+args = parser.parse_args()
+
 # change to webui's directory and import
 os.chdir(os.path.dirname(__file__))
-import webui
+
 # set up webui and run in own http server
 webui.bottle.debug(True)
-webui.bottle.run(host='localhost', port=8080, reloader=False)
+webui.bottle.run(host=args.addr, port=args.port, reloader=False)
 
 # vim: foldmethod=marker:filetype=python:textwidth=80:ts=4:et