-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (22 loc) · 1.16 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
<!-- Default "homepage" for Rocky Incoming - should be copied with the html/ contents to the webroot serving this content
If you produce HTML files called "incoming_8.html" and "incoming_9.html" in this folder as well, you can easily flip between them to see 8 + 9 content
You can produce the HTML files like:
python3 ${PROJECT_PATH}/incoming_get.py ${PROJECT_PATH}/mqtt_data/*.txt > ${PROJECT_PATH}/html/incoming_8.html
python3 ${PROJECT_PATH_9}/incoming_get.py ${PROJECT_PATH}/mqtt_data/*.txt > ${PROJECT_PATH}/html/incoming_9.html
-->
<head>
<title>Rocky Linux Incoming</title>
</head>
<center><h1>Rocky Linux "INCOMING" Updates Tracker</h1></center>
<table border="1" cellpadding="20" align="center">
<tr>
<td><b><a href="javascript:void(0);" onClick="document.getElementById('IncomingContent').src = 'incoming_8.html'">Display Rocky Linux 8</a></b></td>
<td><b><a href="javascript:void(0);" onClick="document.getElementById('IncomingContent').src = 'incoming_9.html'">Display Rocky Linux 9</a></b></td>
</tr>
</table>
<p><br />
<hr />
<iframe id="IncomingContent" width="97%" height="80%" src="incoming_8.html" frameBorder="0">
</iframe>
</html>