blob: 4d792ae3d7642ecb8481372df29fbf53992cfd02 (
plain)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
<html>
<head>
<title>dump.fm</title>
$head()$
<link rel="stylesheet" type="text/css" href="/static/pichat.css">
<script type="text/javascript" src="/static/webcam/webcam.js"></script>
<script>
jQuery(document).ready(initChat);
var Nick = $json_user_nick$;
var Room = $json_room_key$;
var Timestamp = $timestamp$;
$if(isadmin)$
var IsAdmin = true;
$else$
var IsAdmin = false;
$endif$
</script>
<script type="text/javascript">
</script>
$if(isadminroom)$
<style>
iframe {
z-index: 50000;
position: fixed;
top: 200px;
right: 25px;
}
</style>
<script src="http://widgets.getclicky.com/tally/?site_id=170656&sitekey=736f7dd41a0612d8d50797c65768e71a&width=175&height=250&title=Visitors" type="text/javascript"></script>
$endif$
<script src="/static/away.js"></script>
<script src="/static/js/ajaxupload.js"></script>
<script>
if (Nick) {
jQuery(document).ready(function() {
setupUpload('upload', Room);
});
}
</script>
$if(isadminroom)$
<style>
.stats {
background: #FFF;
z-index: 500000;
position: fixed;
top: 450px;
right: 25px;
width: 400px;
border: 1px solid #ccc;
padding: 1em;
}
.stats a {
margin: 0.75em;
}
.stats a { color: #666; }
.stats a:hover { color: blue; }
.stats a.active { text-decoration: underline;
color: black; }
.stats #statschart { position: relative; margin: 1em; }
</style>
<script type="text/javascript"
src="http://cloud.github.com/downloads/danvk/dygraphs/dygraph-combined.js"></script>
<script src="/static/js/stats.js"></script>
<script>
jQuery(document).ready(initStats);
</script>
$endif$
</head>
<body onload="MM_preloadImages('/static/thumbs_up_sm.gif')">
$banner()$
<div id="chatrap">
<div id="logc">
<div id="content">
<div id="messagetabs"></div>
<div id="rapper">
<div id="loghead"></div>
</div>
<div id="userList">
$users: { u |
<div class="username"><a href="/u/$u.nick$">
$if(u.avatar)$<img src="$u.avatar$" width="50" height="50">$endif$
$u.nick$</a><br>
</div>
}$
</div>
<div id="messagePane">
<div id="messageList">
$messages: { m |
<div class="msgDiv oldmsg" id="message-$m.message_id$"><b>
<a href="/u/$m.nick$">$m.nick$</a>: </b>
<span class="content">$m.content$
</a><span>
<div id="faving">
<a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('like','','/static/thumbs_up_sm.gif',1)"><img src="/static/thumbup.gif" alt="like it!" name="like" width="14" height="15" border="0" id="like" /></a>
</div>
</div>
}$
<hr />
</div>
$if(user_nick)$
<div id="msgInputDiv">
<div id="msginputrapper"> <input id="msgInput" class="msgInput" type="input" /> </div>
<input id="msgSubmit" type="submit" value="Send"
/>
<input id="upload" value="Upload" type="submit">
<input id="webcam-button-upload" value="Webcam" type="submit">
<input id="webcam-button-snap" value="Send Pic" type="submit" class="invisible blink">
</div>
$endif$
</div>
</div>
</div>
</div>
<div id="footerc">
<p>
$footer()$
<p>
</div>
$preload()$
</body>
</html>
|