source: client/shared/lib/httpd/httpd-history-log.sh @ 38788bf

webconsole3
Last change on this file since 38788bf was 6240405, checked in by jm.bardallo <juanmanuel.bardallo@…>, 7 years ago

Version inicial de la consola web 3.0, de momento funcionará paralelamente a la consola web antigua

  • Property mode set to 100644
File size: 409 bytes
Line 
1#!/bin/bash
2
3echo "Content-type: text/html"
4echo ""
5echo "<html><head><title>OpenGnsys Client</title>"
6echo "   <meta charset='utf-8'>"
7echo "<script>function scrollDown(){ setTimeout(function() {window.scrollTo(0,document.body.scrollHeight);}, 100);}</script>"
8echo "</head><body onload=\"scrollDown()\">"
9
10IP=$HTTP_HOST
11LOG=$(cat /opt/opengnsys/log/$IP.log)
12echo "<div><pre>$LOG</pre></div>"
13echo "</body>"
Note: See TracBrowser for help on using the repository browser.