diff options
| author | dumpfmprod <dumpfmprod@ubuntu.(none)> | 2010-08-01 01:52:38 -0400 |
|---|---|---|
| committer | dumpfmprod <dumpfmprod@ubuntu.(none)> | 2010-08-01 01:52:38 -0400 |
| commit | 2a7b0ab6991051b917a4ee75435007f3fa06f5f3 (patch) | |
| tree | 71cb4ca3e414930d33fe15f87c9facafd8f79f9c /template/imagelayering.st | |
| parent | 0e142c1a5a74973bd2122bd123ba45136477b191 (diff) | |
sostler prod commit
Diffstat (limited to 'template/imagelayering.st')
| -rw-r--r-- | template/imagelayering.st | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/template/imagelayering.st b/template/imagelayering.st new file mode 100644 index 0000000..1d91571 --- /dev/null +++ b/template/imagelayering.st @@ -0,0 +1,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> |
