blob: 1d915715957e55fa77544890595bcf98d42a6986 (
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
|
<!--/*
_____ ___ ___ ___ ___ ___
/ /::\ /__/\ /__/\ / /\ / /\ /__/\
/ /:/\:\ \ \:\ | |::\ / /::\ / /:/_ | |::\
/ /:/ \:\ \ \:\ | |:|:\ / /:/\:\ / /:/ /\ | |:|:\
/__/:/ \__\:| ___ \ \:\ __|__|:|\:\ / /:/~/:/ / /:/ /:/ __|__|:|\:\
\ \:\ / /:/ /__/\ \__\:\ /__/::::| \:\ /__/:/ /:/ /__/:/ /:/ /__/::::| \:\
\ \:\ /:/ \ \:\ / /:/ \ \:\~~\__\/ \ \:\/:/ \ \:\/:/ \ \:\~~\__\/
\ \:\/:/ \ \:\ /:/ \ \:\ \ \::/ \ \::/ \ \:\
\ \::/ \ \:\/:/ \ \:\ \ \:\ \ \:\ \ \:\
\__\/ \ \::/ \ \:\ \ \:\ \ \:\ \ \:\
\__\/ \__\/ \__\/ \__\/ \__\/
(c)2010 dump.fm -->
<html>
<head>
$head()$
<title>$roomname$ dump.fm</title>
<script type="text/javascript" src="$domain$/static/js/invalid_domains.js"></script>
<script type="text/javascript" src="$domain$/static/webcam/webcam.js"></script>
<script type="text/javascript" src="$domain$/static/js/ajaxupload.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$;
var Version = $version$;
$if(isadmin)$
var IsAdmin = true;
$else$
var IsAdmin = false;
$endif$
if (Nick) {
jQuery(document).ready(function() { setupUpload('upload', Room); });
}
function showAlert() { alert('MUST LOGIN'); }
var newwindow;
function pop(url) {
newwindow=window.open(url,'name','height=50,width=400,left=20,top=20,location=0,status=0,scrollbar=0,resizable=0');
if (window.focus) {newwindow.focus()}
}
jQuery(startTitleUpdater);
jQuery(initChatMsgs);
$if(user_nick)$ //
$else$
function showAlert() {
alert('Join dump.fm @ http://dump.fm/register');
}
$endif$
</script>
<style>
#chat-wrapper {
position: absolute;
z-index: 1000000;
right: 100px;
bottom: 100px;
height: 40px;
width: 300px;
};
</style>
</head>
<body>
$banner()$
<div id="chatrap">
<div id="dcontent">
<div id="messagePane">
<iframe src="http://bon.gs/tile/" width="100%"height="100%"></iframe>
</div>
</div>
</div>
<div id="footerc">
$footer()$
</div>
$preload()$
</body>
</html>
|