aboutsummaryrefslogtreecommitdiffstats
path: root/packages/torouter-web/tui/controllers/tor.py
diff options
context:
space:
mode:
Diffstat (limited to 'packages/torouter-web/tui/controllers/tor.py')
-rw-r--r--packages/torouter-web/tui/controllers/tor.py35
1 files changed, 0 insertions, 35 deletions
diff --git a/packages/torouter-web/tui/controllers/tor.py b/packages/torouter-web/tui/controllers/tor.py
deleted file mode 100644
index af8678c..0000000
--- a/packages/torouter-web/tui/controllers/tor.py
+++ /dev/null
@@ -1,35 +0,0 @@
-import web
-import view, config
-from view import render
-from tui.utils import session, parsing
-
-"""
-The main Tor status page
-"""
-class status:
- def GET(self):
- trc = parsing.torrc(config.torrc_file)
- trc.parse()
- output = trc.html_output()
- return render.base(render.torstatus(output,config.torrc_file))
-
- def POST(self):
- trc = parsing.torrc(config.torrc_file)
- trc.parse()
- output = trc.html_output()
- return render.base(render.torstatus(output,config.torrc_file))
-
-"""
-Tor configuration page
-"""
-class torrc:
- def update_config(self, data):
- return True
-
- def GET(self):
- return render.base(render.torconfig())
-
- def POST(self):
- self.update_config(web.input())
- return render.base(render.torconfig())
-