blob: aecf87c988e753209cf499e4ddf4ce290595db78 (
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
|
<html>
<head>
<title>dump.fm</title>
<link rel="stylesheet" type="text/css" href="/static/reset.css">
<link rel="stylesheet" type="text/css" href="static/pichat.css">
<link rel="shortcut icon" href="/static/favicon.ico">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="/static/sha1.js"></script>
<script type="text/javascript" src="/static/pichat.js"></script>
<script type="text/javascript" src="/static/scroll.js"></script>
<script>
jQuery(document).ready(initChat);
var Nick = $json_user_nick$;
</script>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><style type="text/css">
<!--
a {
font-size: 12px;
color: #000;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #000;
}
a:hover {
text-decoration: none;
color: #00F;
}
a:active {
text-decoration: none;
color: #000;
}
-->
</style></head>
<body>
$header()$
<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$" class="username"><img src="/static/cat.jpeg" width="50" height="50">$u$</a><br>
</div>
}$
</div>
<div id="messagePane">
<div id="messageList">
$messages: { m |
<div class="msgDiv oldmsg"><b><a href="/u/$m.nick$">$m.nick$</a>: </b>
<span class="content">$m.content$<span></div>
}$
<hr />
</div></div></div>
$if(user_nick)$
<div id="msgInputDiv">
<input id="msgInput" class="msgInput" type="input" />
<input id="msgSubmit" type="submit" value="Send Image URL"
/>
</div>
$endif$
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="footerc">
<p>
$footer()$</p>
<p>
</p>
</div>
</body>
</html>
|