blob: dc7060b73d2fb00579d7a297d9caa46531592364 (
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
|
<!--/*
_____ ___ ___ ___ ___ ___
/ /::\ /__/\ /__/\ / /\ / /\ /__/\
/ /:/\:\ \ \:\ | |::\ / /::\ / /:/_ | |::\
/ /:/ \:\ \ \:\ | |:|:\ / /:/\:\ / /:/ /\ | |:|:\
/__/:/ \__\:| ___ \ \:\ __|__|:|\:\ / /:/~/:/ / /:/ /:/ __|__|:|\:\
\ \:\ / /:/ /__/\ \__\:\ /__/::::| \:\ /__/:/ /:/ /__/:/ /:/ /__/::::| \:\
\ \:\ /:/ \ \:\ / /:/ \ \:\~~\__\/ \ \:\/:/ \ \:\/:/ \ \:\~~\__\/
\ \:\/:/ \ \:\ /:/ \ \:\ \ \::/ \ \::/ \ \:\
\ \::/ \ \:\/:/ \ \:\ \ \:\ \ \:\ \ \:\
\__\/ \ \::/ \ \:\ \ \:\ \ \:\ \ \:\
\__\/ \__\/ \__\/ \__\/ \__\/
(c)2010 dump.fm -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="dump.fm,mgmt,okfocus">
<meta name="description" content="dump.fm - Talk with pictures!" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="$domain$/static/js/jquery-ui-1.8.effects.min.js"></script>
<script type="text/javascript" src="$domain$/static/js/pichat.js"></script>
<link rel="stylesheet" type="text/css" href="$domain$/static/css/mgmt.css">
<script>Domain = "$domain$"</script>
$if(isadmin)$
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/ui-lightness/jquery-ui.css"
type="text/css" media="all" />
<link rel="stylesheet" href="$domain$/static/css/admin.css"
type="text/css" media="all" />
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"
type="text/javascript"></script>
<script src="$domain$/static/js/admin.js" type="text/javascript"></script>
$endif$
<link rel="shortcut icon" href="$domain$/static/favicon.ico">
<!--[if IE]>
<script>
window.location = "http://dump.fm/error/ie";
</script>
<![endif]-->
<title>$roomname$ dump.fm</title>
<script type="text/javascript" src="$domain$/static/js/invalid_domains.js"></script>
$if(user_nick)$
<script type="text/javascript" src="$domain$/json/$user_nick$/favorites"></script>
$endif$
<script>
jQuery(document).ready(initChat);
var Nick = $json_user_nick$;
var Room = $json_room_key$;
var Timestamp = $timestamp$;
jQuery(Away.startTitleUpdater);
jQuery(initChatMsgs);
</script>
<style>
#chat-wrapper {
position: absolute;
z-index: 1000000;
right: 100px;
bottom: 100px;
height: 40px;
width: 300px;
};
</style>
</head>
<body>
<div id="chatrap">
<div id="dcontent">
<div id="messagePane">
<div id="logo7">
<div align="center">
<img style="visibility:hidden;width:0px;height:0px;" border=0 width=0 height=0 />
<a class="img_roll" href="$domain$"></a>
<span class="fulltxt"> <a href="http://dump.fm/m/mgmtfull">View in fullscreen!</a></span>
</div>
</div>
<div id="userList">
$users: { u |
<div class="username"><a href="/$u.nick$" target="_blank">
$u.score_ent$
$if(u.avatar)$
<img src="$u.avatar$" width="50" height="50">
$else$
<img src="/static/img/noinfo.png">
$endif$
$u.nick$</a><br>
</div>
}$
</div>
<div id="favbox" style="display: hidden"></div>
<div id="messageList">
$messages: { m |
<div class="msgDiv oldmsg dump $if(m.favorited)$favorite$endif$ $if(m.is_image)$contains-image$endif$" id="message-$m.message_id$" nick="$m.nick$">
<span class="nick">
<b><a href="$domain$/$m.nick$" target="_blank">$m.nick$</a></b>
$if(m.favorited)$
<img src="/static/img/thumbs/chatheartover.gif" class="chat-thumb" onclick="Tag.favorite(this)">
$else$
<img src="/static/img/thumbs/smallheart.gif" class="chat-thumb" onclick="Tag.favorite(this)">
$endif$
</span>
<span class="content">$m.content$</span>
</div>
}$
</div>
</div>
</div>
$preload()$
</body>
</html>
|