aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2016-11-17 16:42:38 +0800
committerAaron LI <aaronly.me@outlook.com>2016-11-17 16:42:38 +0800
commitf1bd912c85710bee5aae7a3112bdcfacd062c466 (patch)
treeff039a8fb3284f0d454966e8650c8e96a302722a /bin
parenta8ca7e38d78abf58ebe432aa261a1e0d3cd6b7fc (diff)
downloadfg21sim-f1bd912c85710bee5aae7a3112bdcfacd062c466.tar.bz2
webui: Move "password" option definition to "login.py"
NOTE: By using the "tornado.options", each module can defines its own options, which are added to the global namespace. And the defined options can also be used by other modules.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/fg21sim-webui7
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/fg21sim-webui b/bin/fg21sim-webui
index e2ecff5..20d1a36 100755
--- a/bin/fg21sim-webui
+++ b/bin/fg21sim-webui
@@ -29,8 +29,8 @@ from fg21sim.utils import setup_logging
from fg21sim.webui import Application
-# Define options in the global namespace
-# These options can also be used in other modules
+# Each module can defines its own options, which are added to the global
+# namespace. Therefore the defined options can also be used by other modules.
define("host", default="localhost", type=str,
help=("IP address or hostname the server will listen on. "
"Specify '0.0.0.0' or '' (empty string) to listen on "
@@ -45,9 +45,6 @@ define("hosts_allowed", default="any", type=str,
"'192.168.0.0/24'. "
"Specify 'any' to allow any hosts. "
"Note that the localhost/127.0.0.1 is always allowed."))
-define("password", type=str,
- help=("Password authentication to access the Web UI. "
- "If not specified, then all accesses are allowed."))
def main():