diff options
Diffstat (limited to 'template')
| -rw-r--r-- | template/about_us.st | 4 | ||||
| -rwxr-xr-x | template/banner.st | 19 | ||||
| -rwxr-xr-x | template/chat.st | 31 | ||||
| -rw-r--r-- | template/goodies.st | 70 | ||||
| -rwxr-xr-x | template/head.st | 1 | ||||
| -rw-r--r-- | template/preload.st | 8 | ||||
| -rwxr-xr-x | template/profile.st | 2 |
7 files changed, 120 insertions, 15 deletions
diff --git a/template/about_us.st b/template/about_us.st index 23265c4..cb7205f 100644 --- a/template/about_us.st +++ b/template/about_us.st @@ -26,7 +26,7 @@ jQuery(function() background-attachment:fixed;" onload=" javascript:CreateDropdownWindow('about the site', '360px', true, 'news', 70, 75); javascript:CreateDropdownWindow('about the team', '380px', true, 'link', 500, 60); - javascript:CreateDropdownWindow('contact us', '360px', true, 'contact', 100, 375); + javascript:CreateDropdownWindow('contact us', '360px', true, 'contact', 100, 395); "> @@ -39,7 +39,7 @@ background-attachment:fixed;" onload=" <div style="padding:0px" id="content" name="content"> <div style="background-color:#fff"><center> <img src="/static/dumpclouds.png"><br><br> <h5 style="padding:2px;"> -DUMP.FM is a <img src="/static/newanim.gif"> experiment in communication and web surfing; allowing pictures to be used to talk in realtime. Users can send image URLs, upload locally from their hard drive or post a pic right from their webcam. Every image posted gets stored in your DUMP.FM log, similarly, a log is kept of the entire collaboration. +DUMP.FM is a <img src="/static/newanim.gif"> exciting tool for the internets; allowing pictures to be used for realtime communication and collaboration. Users can send image URLs (which display instantly in the chat), upload locally from their hard drive or post a pics right from their webcam. Every image gets stored in your DUMP.FM log, similarly, a log is kept of the entire collaboration. </center><br></div></h5> </div></div> diff --git a/template/banner.st b/template/banner.st index aa5ae50..f4d74f9 100755 --- a/template/banner.st +++ b/template/banner.st @@ -1,3 +1,7 @@ +<html> +<head> + +</head> <div id="rapper7"> <div id="header7"> @@ -19,10 +23,16 @@ <li><a href="/directory"><img src="/static/directory.gif"width="20px" height="20px" /> Directory</a></li> <li><a href="/browser"><img src="/static/image_draw.gif"/> Image Search</a></li> </ul> - $else$ - <div id="register" style="display:none;"> <a href="/register"><img src="/static/answer_good.gif" />Register</a></div> - <div id="landscape"> <img src="/static/const_landscape.gif" /> </div> - <div id="welcomeinternet"> <img src="/static/welcome.gif" /> </div> + $else$ + + + <ul id="banner-menu"> + <li><div id="lastli"><a href="/">.</a></div></li> + + <li><a href="/register"><img src="/static/answer_good.gif" />Register</a></li> + + </ul> + $endif$ </div> </div> @@ -51,3 +61,4 @@ <img src="/static/img/cursors/osx.hand.gif" class="no-cursor invisible" id="cursor-big"> </div> +</html>
\ No newline at end of file diff --git a/template/chat.st b/template/chat.st index f44c383..15d0e3f 100755 --- a/template/chat.st +++ b/template/chat.st @@ -2,7 +2,11 @@ <head> <title>dump.fm</title> $head()$ + $if(user_nick)$ <link rel="stylesheet" type="text/css" href="/static/dump.css"> + $else$ + <link rel="stylesheet" type="text/css" href="/static/dumpnewuser.css"> + $endif$ <script type="text/javascript" src="/static/webcam/webcam.js"></script> <script type="text/javascript" src="/static/js/tooltip.js"></script> <script> @@ -44,7 +48,7 @@ function pop(url) <div id="userList"> $users: { u | <div class="username"><a href="/u/$u.nick$" target="_blank"> - $if(u.avatar)$<img src="$u.avatar$" width="50" height="50">$endif$ + $if(u.avatar)$<img src="$u.avatar$" width="50" height="50">$else$<img src="/static/noinfo.png"> $endif$ $u.nick$</a><br> </div> }$ @@ -68,6 +72,7 @@ function pop(url) <hr /> </div> $if(user_nick)$ + <link rel="stylesheet" type="text/css" href="/static/dump.css"> <div id="msgInputDiv"> <div id="msginputrapper"> <input id="msgInput" class="msgInput" type="input" /> </div> <input id="msgSubmit" type="submit" value="Send" @@ -77,12 +82,32 @@ function pop(url) <input id="webcam-button-snap" value="Send Pic" type="submit" class="invisible blink"> <div id="trophy"><a href="javascript:pop('http://www.likeneveralways.com/trash/count/index.php');"class="tooltip" title="Contest Counter"><img src="/static/trophyicon.gif"></a></div> </div> - $endif$ +$else$ +<div id="newuserwrap"> +<div id="posthelp"><img src="/static/posthere.png"></div> +<div id="webcamhelp"><img src="/static/webcamhelp.png"></div> +<div id="userlisthelp"><img src="/static/userlisthelp.png"></div> +<div id="imageboard"><img src="/static/imageboard.png"></div> +<div id="uploadstuff"><img src="/static/uploadstuff.png"></div> +<div id="signinblurb"><img src="/static/signinblurb.png"></div> +<div id="readyjoin"><img src="/static/readyjoin.png"></div> +</div> + <link rel="stylesheet" type="text/css" href="/static/dump.css"> + <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 id="trophy"><a href="javascript:pop('http://www.likeneveralways.com/trash/count/index.php');"class="tooltip" title="Contest Counter"><img src="/static/trophyicon.gif"></a></div> + </div> + </div> </div> </div> - </div> + </div> $endif$ <div id="footerc"> <p> $footer()$ diff --git a/template/goodies.st b/template/goodies.st index f8e4429..2bab2c7 100644 --- a/template/goodies.st +++ b/template/goodies.st @@ -1,11 +1,71 @@ <html> <head> - <title>Goodies</title> + <title>dump.fm | Image Search Beta</title> $head()$ + <link rel="stylesheet" type="text/css" href="/static/browser.css"> + <script type="text/javascript" src="/static/gritter/js/jquery.gritter.js"></script> + <link rel="stylesheet" type="text/css" href="/static/gritter/css/jquery.gritter.css" /> + + + + <script> + jQuery(document).ready(initChat); + var Nick = $json_user_nick$; + var Room = $json_room_key$; + var Timestamp = $timestamp$; + var PostedMessages = []; + var IsAdmin = "$isadmin$"; + var growlize = true; + </script> + + <style> + iframe { + z-index: 50000; + position: fixed; + top: 300px; + right: 25px; + + width:100%; + height:100%; + padding:0px; + background-color: #fff; + position:absolute; + top:0px; left:0px; + border:none; + } + </style> + </head> <body> - WE GOT NO GOODIES YET!!!!!!!!!!!!!!!!!!!!!!! - + $banner()$ + <div id="chatrap"> + <div id="logc"> + <div id="content"> + + <div id="rapper"> + <div id="loghead"></div> + </div> + + </div> + <div id="messagePane"> + <div id="messageList"> + <iframe src="/static/search/imagesearch.html" allowtransparency="true" scrolling="auto" ></iframe> + </div> + + </div> + </div> + </div> + </div> +</div> +</div> + + </div> + <div id="footerc"> + <p> + $footer()$</p> + <p> + </p> + </div> </body> -</html> -
\ No newline at end of file + +</html> diff --git a/template/head.st b/template/head.st index da1c3f5..f650579 100755 --- a/template/head.st +++ b/template/head.st @@ -43,3 +43,4 @@ jQuery(document).ready(function () { MM_preloadImages('/static/mouseover.gif'); jQuery(function() { jQuery("#banner-menu").lavaLamp({ fx: "backout", speed: 700 })}); </script> +$preload()$ diff --git a/template/preload.st b/template/preload.st index 1f51935..24f7e7c 100644 --- a/template/preload.st +++ b/template/preload.st @@ -1,4 +1,12 @@ <div id="preload"> <img src="/static/img/cursors/osx.hand.gif" class="no-cursor invisible" id="cursor-big" /> <img src="/static/upload.png" /> + <img src="/static/dblue2.png" /> +<img src="/static/text.gif" /> +<img src="/static/directory.gif" /> +<img src="/static/image_draw.gif" /> +<img src="/static/door2.gif" /> +<img src="/static/cambutton.png" /> +<img src="/static/urlbutton.png" /> +<img src="/static/upbutton.png" /> </div>
\ No newline at end of file diff --git a/template/profile.st b/template/profile.st index 377346f..7a3944f 100755 --- a/template/profile.st +++ b/template/profile.st @@ -1,3 +1,4 @@ + <html> <head> <title>$nick$'s dump.fm</title> @@ -140,6 +141,5 @@ </div> </div> </div></div></div> - $preload()$ </body> </html> |
