-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (44 loc) · 1.48 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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Family News Analyzer</title>
<meta name="description" lang="de" content="A tool to sum up and analyse the famnews.">
<meta name="keywords"
content="imperial conflict,family,news,analyzer,summary,php,MMOG,massive,multiplayer,online,game">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link REL=STYLESHEET HREF="ic.css" TYPE="text/css">
<script type="text/javascript">
function printFullReport() {
document.write(analyse()[0])
}
function printRetakeList() {
document.getElementById('news').value = analyse()[1];
//document.write(analyse()[1])
}
</script>
</head>
<BODY>
<h3>Tools based on silenz.org - online tools for <a href="https://imperialconflict.com/">Imperial Conflict</a>
</h3>
<hr>
<hr>
<a href="index.html">Family News Analyzer</a> -
<a href="reports.html">Recent Reports Summarizer</a> -
<a href="format.html">Format Planet Lists</a> -
<hr>
<h3>family news analyzer</h3>
Open the family news page, hit CTRL+A on it, CTRL+C and paste it into the field below.<br>
<br>
<TEXTAREA id="news" name="news" cols=40 rows=5></TEXTAREA>
<br>
<button onclick="printFullReport()">Format!</button>
<button onclick="printRetakeList()">Retake List</button>
<button onclick="copyToClipboard('news')">Copy</button>
<div align=center>
<div align=center>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
<script src="app.js" type="text/javascript"></script>
</BODY>
</html>