aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/webui/handlers/base.py
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2016-11-22 13:06:47 +0800
committerAaron LI <aaronly.me@outlook.com>2016-11-22 13:06:47 +0800
commitcab5aab88515c15cae3d2ed8b268f7dd37d21f87 (patch)
tree5c09871ee96fe48ab3d8fc39c099b3b5a09d68f0 /fg21sim/webui/handlers/base.py
parent53fb84ea01cc0de4f50806cd252273f435b41442 (diff)
downloadfg21sim-cab5aab88515c15cae3d2ed8b268f7dd37d21f87.tar.bz2
webui: Add "/debug" handler when in debug mode.
Diffstat (limited to 'fg21sim/webui/handlers/base.py')
-rw-r--r--fg21sim/webui/handlers/base.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/fg21sim/webui/handlers/base.py b/fg21sim/webui/handlers/base.py
index 868ae48..0f93415 100644
--- a/fg21sim/webui/handlers/base.py
+++ b/fg21sim/webui/handlers/base.py
@@ -14,6 +14,13 @@ class BaseRequestHandler(tornado.web.RequestHandler):
"""
Base web request handler with user authentication support.
"""
+ def get(self):
+ """
+ Show the original HTTP request. DEBUG use.
+
+ Credit: https://stackoverflow.com/a/3111656/4856091
+ """
+ self.write(repr(self.request))
def get_current_user(self):
"""