-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (62 loc) · 2.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, target-densityDpi=medium-dpi">
<meta content='True' name='HandheldFriendly'>
<title>IRClogger 2.0</title>
<script type="text/javascript">
/* redirect _rewrite to _rewrite/ */
/* to normalize access to relative urls through the rewriter */
if (/\/_rewrite$/.test(window.location.pathname))
window.location.pathname = window.location.pathname + "/";
</script>
<link type="text/css" rel="stylesheet" href="style/style.css" />
<link rel="apple-touch-icon" href="images/favicon.png" />
<link rel="shortcut icon" type="image/png" href="images/favicon.png" />
<!-- 3rd party -->
<script type="text/javascript" src="script/jquery.min.js"></script>
<script type="text/javascript" src="script/jquery.notice.js"></script>
<link type="text/css" rel="stylesheet" href="style/jquery.notice.css" />
<script type="text/javascript" src="script/path.min.js"></script>
<!-- my stuff -->
<script type="text/javascript" src="script/utils.js"></script>
<script type="text/javascript" src="script/my-couch.js"></script>
<script type="text/javascript" src="script/title.alert.js"></script>
<script type="text/javascript" src="script/colorizer.js"></script>
<script type="text/javascript" src="script/irclog.js"></script>
</head>
<body>
<header>
<h1>IRC logs with realtime updates</h1>
<div id="infobox" style="display:none">
<p>
This web page is a viewer of irclogs collected by my
<a href="https://github.com/gdamjan/erlang-irc-bot">erlang irc bot</a>.
The bot stores the logs in a CouchDB where this web-app (or couchapp)
is also stored. You can also <a href="http://wiki.apache.org/couchdb/Replication">replicate</a>
the database at https://irc.softver.org.mk/api freely.
</p>
<p>
The following channels are currently logged:
</p>
<ul id="channels"></ul>
<p>If you want your irc channel on freenode logged, contact 'damjan' on #lugola.</p>
</div>
</header>
<div id="container" style="display:none">
<div id="prev_page" class="pagination">↑previous history↑</div>
<table id="irclog"> </table>
<div id="next_page" class="pagination">↓next history↓</div>
</div>
<footer>
<div>
<a href="https://irc.softver.org.mk/">irclog home page</a>
</div>
</footer>
<a href="https://github.com/gdamjan/irclog-couchapp"><img
style="position: absolute; top: 0; right: 20px; border: 0;"
src="images/green-black.png"
alt="Fork me on GitHub"></a>
</body>
</html>