summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ogcp/templates/commands.html2
-rw-r--r--ogcp/views.py12
2 files changed, 14 insertions, 0 deletions
diff --git a/ogcp/templates/commands.html b/ogcp/templates/commands.html
index b965867..df84ab0 100644
--- a/ogcp/templates/commands.html
+++ b/ogcp/templates/commands.html
@@ -42,5 +42,7 @@
form="scopesForm" formaction="{{ url_for('action_mode') }}" formmethod="get">
<input class="btn btn-light" type="submit" value="{{ _('Log') }}"
form="scopesForm" formaction="{{ url_for('action_legacy_log') }}" formmethod="get">
+ <input class="btn btn-light" type="submit" value="{{ _('Real time log') }}"
+ form="scopesForm" formaction="{{ url_for('action_legacy_rt_log') }}" formmethod="get">
{% endblock %}
diff --git a/ogcp/views.py b/ogcp/views.py
index 0b5b934..06f28b2 100644
--- a/ogcp/views.py
+++ b/ogcp/views.py
@@ -860,3 +860,15 @@ def action_legacy_log():
else:
return redirect(url_for('commands'))
+@app.route('/action/rt-log', methods=['GET'])
+@login_required
+def action_legacy_rt_log():
+ ips = parse_elements(request.args.to_dict())
+ if not validate_elements(ips, max_len=1):
+ return redirect(url_for('commands'))
+ ip = ips.pop()
+ scheme = "http://"
+ rt_log_path = "/cgi-bin/httpd-log.sh"
+ rt_log_url = scheme + ip + rt_log_path
+ return redirect(rt_log_url)
+