diff options
27 files changed, 440 insertions, 355 deletions
diff --git a/static/idgi/index.html b/static/idgi/index.html index 1f6d6a2..1b999d2 100755 --- a/static/idgi/index.html +++ b/static/idgi/index.html @@ -23,17 +23,17 @@ html{background-image:url('https://archive.hump.fm/images/20101130/1291165289435 <div align="center"><h1><b>CLOSED FOR NOW LOL...</b></h1><br> - <!-- <label style="text-align:left;margin-bottom:-8px;">username</label> + <!-- <label>username</label> <input type="text" class="field" id="nickInput" /> <br> - <label style="text-align:left;margin-bottom:-8px;">password</label> + <label>password</label> <input type="password" class="field" id="passwordInput" /> <br> - <label style="text-align:left;margin-bottom:-8px;">password2x</label> + <label>password2x</label> <input type="password" class="field" id="passwordInput2" /> <br> - <label style="text-align:left;margin-bottom:-8px;">email</label> + <label>email</label> <input type="text" class="field" id="emailInput" /> <br> diff --git a/static/js/pages/frontpage_refresh.js b/static/js/pages/frontpage_refresh.js new file mode 100644 index 0000000..aa31cc2 --- /dev/null +++ b/static/js/pages/frontpage_refresh.js @@ -0,0 +1,11 @@ +// Frontpage-only helper. +// The legacy frontpage HTML calls `refreshing()` via <body onload="refreshing()">. + +if (typeof window.refreshing !== 'function') { + window.refreshing = function refreshing() { + var el = document.getElementsByName('posts')[0]; + if (el) { el.src = el.src; } + setTimeout(refreshing, 300000); + }; +} + diff --git a/static/js/pages/fullscreen_front_init.js b/static/js/pages/fullscreen_front_init.js new file mode 100644 index 0000000..a1a87a5 --- /dev/null +++ b/static/js/pages/fullscreen_front_init.js @@ -0,0 +1,18 @@ +// Shared initializer for fullscreen feed pages. +// Keeps template inline JS mostly data-only (LoggedIn, Timestamp). + +(function($){ + function defaultPop(url) { + var 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) { newwindow.focus(); } + return newwindow; + } + + if (typeof window.pop !== 'function') { window.pop = defaultPop; } + + if (typeof window.startChatUpdater === 'function') { $(window.startChatUpdater); } +})(jQuery); diff --git a/static/js/pages/fullscreen_front_run.js b/static/js/pages/fullscreen_front_run.js new file mode 100644 index 0000000..1116b7a --- /dev/null +++ b/static/js/pages/fullscreen_front_run.js @@ -0,0 +1,7 @@ +// Runs `initFullscreen()` for `template/fullscreen_front.st` without inline JS. +(function() { + if (typeof window.initFullscreen === 'function') { + window.initFullscreen(); + } +})(); + diff --git a/static/js/pages/fullscreen_init.js b/static/js/pages/fullscreen_init.js new file mode 100644 index 0000000..a7f8bb7 --- /dev/null +++ b/static/js/pages/fullscreen_init.js @@ -0,0 +1,55 @@ +// Initializer for `/fullscreen` (login/register overlays + fullscreen feed). +// Goal: reduce template inline JS without changing behavior. + +(function($){ + function choice(a) { return a[Math.floor(Math.random() * a.length)]; } + + function defaultPop(url) { + var 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) { newwindow.focus(); } + return newwindow; + } + + if (typeof window.pop !== 'function') { window.pop = defaultPop; } + + var urls = [ + 'https://archive.hump.fm/images/20100601/1275428508049-dumpfm-foot-oie_oie_overlay-1.gif', + 'https://archive.hump.fm/images/20100928/1285728674225-dumpfm-timb-running.unicorn.gif', + 'https://archive.hump.fm/images/20100726/1280119193796-dumpfm-enso-human-condition.gif', + 'https://archive.hump.fm/images/20100521/1274415795577-dumpfm-ucnv-mx.gif', + 'https://archive.hump.fm/images/20100912/1284315873224-dumpfm-Neontoast-1283990707508-dumpfm-crunkus-crabtoon.gif', + 'https://archive.hump.fm/images/20110927/1317105622918-dumpfm-peachfist-test8scam.gif', + 'https://archive.hump.fm/images/20110323/1300915179773-dumpfm-blingscience-fishtank.gif', + 'https://archive.hump.fm/images/20110418/1303108538834-dumpfm-LAVARLAMAR-lettuce_lavarlamar.gif', + 'https://s3.amazonaws.com/i.asdf.us/im/84/gradient_horse_1318306378_1322355741_ryz_1337322355_ryz.gif', + 'https://archive.hump.fm/images/20110724/1311552093462-dumpfm-hologrampa-1291586335941-dumpfm-jeeeelings-cat_face_wink_hologrampa-lettuce.gif', + 'https://s3.amazonaws.com/i.asdf.us/im/be/tt7620731fltt_1315431978.gif' + ]; + + // Legacy behavior: register these on DOM-ready (historically done via `jQuery(initLogin)`). + if (typeof window.initLogin === 'function') { $(window.initLogin); } + if (typeof window.startChatUpdater === 'function') { $(window.startChatUpdater); } + + if (window.location && window.location.href.indexOf('nologin') !== -1) { + $('#loginbox').hide(); + } + + var bigImage = document.getElementById('big-image'); + if (bigImage) { bigImage.innerHTML = "<img src='" + choice(urls) + "'>"; } + + if (typeof window.initFullscreen === 'function') { window.initFullscreen(); } + if (typeof window.initRegister === 'function') { window.initRegister(); } + + $('#reglink').click(function(e){ + e.preventDefault(); + $('#loginbox').hide(); + $('#registerbox').show().addClass('b'); + return false; + }); + + $('#nickInput').focus(); +})(jQuery); diff --git a/static/js/pages/log_favs_init.js b/static/js/pages/log_favs_init.js new file mode 100644 index 0000000..47565a9 --- /dev/null +++ b/static/js/pages/log_favs_init.js @@ -0,0 +1,7 @@ +// Log template helper: kick off the permalink fav-list loader (defined in pichat.js). +(function() { + if (typeof window.load_favs === 'function') { + window.load_favs(); + } +})(); + diff --git a/static/js/pages/log_init.js b/static/js/pages/log_init.js new file mode 100644 index 0000000..93d27b0 --- /dev/null +++ b/static/js/pages/log_init.js @@ -0,0 +1,58 @@ +// Shared initializer for log-like pages (frontpage/log views) that include pichat.js. +// Keeps templates mostly data-only (Recips, MasonryColumnWidth). + +(function($){ + function initLogIfPresent() { + if (typeof window.Recips === 'undefined') { window.Recips = []; } + if (typeof window.initLog === 'function') { window.initLog(window.Recips); } + } + + function initMasonryIfPresent() { + var $posts = $('#posts'); + if (!$posts.length) { return; } + if (typeof $posts.masonry !== 'function') { return; } + + var colWidth = typeof window.MasonryColumnWidth !== 'undefined' ? window.MasonryColumnWidth : 275; + + $posts.masonry({ columnWidth: colWidth }); + $posts.masonry({ singleMode: true }); + $posts.masonry({ resizeable: true }); + $posts.masonry({ animate: true }); + } + + $(initLogIfPresent); + $(window).load(initMasonryIfPresent); +})(jQuery); + +if (typeof window.images_loading_bar !== 'function') { + window.images_loading_bar = function images_loading_bar() { + try { + var imgs = document.getElementsByTagName('img'); + var total = imgs.length; + + if (!total) { + var lb0 = document.getElementById('LB0'); + if (lb0) { lb0.style.display = 'none'; } + return; + } + + var loaded = 0; + for (var i = 0; i < total; i++) { + loaded += imgs[i].complete ? 1 : 0; + } + + var lb1 = document.getElementById('LB1'); + if (lb1) { lb1.style.width = Math.round((loaded / total) * 100) + 'px'; } + + if (loaded === total) { + setTimeout(function() { + var lb0Done = document.getElementById('LB0'); + if (lb0Done) { lb0Done.style.display = 'none'; } + }, 128); + } else { + setTimeout(images_loading_bar, 64); + } + } catch (e) {} + }; +} + diff --git a/static/nickinterview/peoplewholiketochatalot dump.fm_files/dumping_hopper.html b/static/nickinterview/peoplewholiketochatalot dump.fm_files/dumping_hopper.html index 1efdb7f..5de4d28 100755 --- a/static/nickinterview/peoplewholiketochatalot dump.fm_files/dumping_hopper.html +++ b/static/nickinterview/peoplewholiketochatalot dump.fm_files/dumping_hopper.html @@ -97,7 +97,59 @@ #footertext2 {position: absolute; z-index: 50; top: 821px; left: 1px; width: 773px; text-align: center; font-size: 11px;}
#footertext3 {position: absolute; z-index: 50; top: 879px; left: 17px; width: 773px; color: #666666; font-size: 10px; text-align: left;}
- </style>
+
+ /* Inline style attributes moved into CSS (refactor) */
+ .u-s1 {display: none; visibility: hidden;}
+ .u-s2 {border: none;}
+ .u-s3 {position: relative; top: 1px;}
+ .u-s4 {font-weight: bold; position: relative; top: 1px;}
+ .u-s5 {font-size: 12px; color: #fff;}
+ .u-s6 {width: 170px;}
+ .u-s7 {height: 21px;}
+ .u-s8 {text-decoration: none; color: #000;}
+ .u-s9 {font-family: Arial; font-size: 11px; text-decoration: underline; color: #0600ff;}
+ .u-s10 {font-family: Arial;}
+ .u-s11 {padding-top: 4px; text-align: center; overflow: hidden;}
+ .u-s12 {text-decoration: none; color: #fff;}
+ .u-s13 {color: #FF5500; position: absolute; left: 118px; top: 110px;}
+ .u-s14 {font-size: 43px;}
+ .u-s15 {color: #FF5500; position: absolute; left: 101px; top: 113px;}
+ .u-s16 {font-size: 30px;}
+ .u-s17 {color: #FF5500; position: absolute; left: 138px; top: 113px;}
+ .u-s18 {color: #FF5500; position: absolute; left: 78px; top: 219px;}
+ .u-s19 {color: #FF5500; position: absolute; left: 61px; top: 222px;}
+ .u-s20 {color: #FF5500; position: absolute; left: 125px; top: 222px;}
+ .u-s21 {color: #FF5500; position: absolute; left: 275px; top: 219px;}
+ .u-s22 {color: #FF5500; position: absolute; left: 258px; top: 222px;}
+ .u-s23 {color: #FF5500; position: absolute; left: 300px; top: 222px;}
+ .u-s24 {position: absolute; left: 13px; top: 583px; display: none;}
+ .u-s25 {font-size: 8px;}
+ .u-s26 {cursor: help;}
+ .u-s27 {font-weight: bold;}
+ .u-s28 {height: 48px; width: 48px; text-align: center; position: absolute; top: 542px; left: 76px;}
+ .u-s29 {border: 0;}
+ .u-s30 {height: 48px; width: 48px; text-align: center; position: absolute; top: 542px; left: 159px;}
+ .u-s31 {height: 48px; text-align: center; width: 48px; position: absolute; top: 542px; left: 242px;}
+ .u-s32 {height: 48px; width: 48px; text-align: center; position: absolute; top: 542px; left: 324px;}
+ .u-s33 {height: 48px; width: 48px; text-align: center; position: absolute; top: 542px; left: 406px;}
+ .u-s34 {width: 80px; text-align: center; position: absolute; font-size: 11px; top: 590px; left: 60px;}
+ .u-s35 {height: 30px; overflow: hidden;}
+ .u-s36 {color: #000000;}
+ .u-s37 {color: #FF0000; font-weight: bold; text-decoration: none;}
+ .u-s38 {width: 80px; text-align: center; position: absolute; font-size: 11px; top: 590px; left: 143px;}
+ .u-s39 {width: 80px; text-align: center; position: absolute; font-size: 11px; top: 590px; left: 226px;}
+ .u-s40 {width: 80px; text-align: center; position: absolute; font-size: 11px; top: 590px; left: 308px;}
+ .u-s41 {width: 80px; text-align: center; position: absolute; font-size: 11px; top: 590px; left: 390px;}
+ .u-s42 {position: absolute; text-align: center; font-size: 11px; top: 518px; left: 285px;}
+ .u-s43 {width: 340px; display: none; position: absolute; z-index: 99; top: 344px; left: 270px;}
+ .u-s44 {width: 340px;}
+ .u-s45 {width: 331px; background-image: url('http: //imagesak.godaddy.com/aaa/help/hlp_top.gif'); background-repeat: repeat-x;}
+ .u-s46 {background-image: url('http: //imagesak.godaddy.com/aaa/help/hlp_sidelft.gif'); background-repeat: repeat-y;}
+ .u-s47 {width: 331px; padding: 4px 8px 6px 8px; background-color: #FAFAFA;}
+ .u-s48 {background-image: url('http: //imagesak.godaddy.com/aaa/help/hlp_sidert.gif'); background-repeat: repeat-y;}
+ .u-s49 {width: 331px; background-image: url('http: //imagesak.godaddy.com/aaa/help/hlp_bot.gif'); background-repeat: repeat-x;}
+ .u-s50 {color: #000; font-weight: bold;}
+</style>
<script language="javascript" type="text/javascript">
var agt=navigator.userAgent.toLowerCase();
var is_opera = (agt.indexOf("opera") != -1);
@@ -127,8 +179,8 @@ </head>
<body>
-<div style="display:none;visibility:hidden;">
-<a href="/st.aspx"><img src="http://images-pw.secureserver.net/images/061703/spc_trans.gif" style="border:none" height="1" width="1" alt="" /></a>
+<div class="u-s1">
+<a href="/st.aspx"><img class="u-s2" src="http://images-pw.secureserver.net/images/061703/spc_trans.gif" height="1" width="1" alt="" /></a>
</div>
<div id="header">
@@ -143,18 +195,18 @@ </div>
<div id="todaysoffer">
- <img style="position: relative; top: 1px;" src="http://images-pw.secureserver.net/images/gd/img_arrows_todaysoffer.gif" border="0" alt="GoDaddy.com"/>
- <span style="font-weight: bold;position: relative; top: 1px;"><a class="bluelink" href="https://www.godaddy.com/gdshop/hotdeals/landing.asp?isc=GPPT03A111&ci=13111&domain=callsharkeys.com">Today's offers at GoDaddy.com</a></span>
+ <img class="u-s3" src="http://images-pw.secureserver.net/images/gd/img_arrows_todaysoffer.gif" border="0" alt="GoDaddy.com"/>
+ <span class="u-s4"><a class="bluelink" href="https://www.godaddy.com/gdshop/hotdeals/landing.asp?isc=GPPT03A111&ci=13111&domain=callsharkeys.com">Today's offers at GoDaddy.com</a></span>
</div>
<div id="domainname">
- <span style="font-size: 12px; color: #fff;">callsharkeys.com</span>
+ <span class="u-s5">callsharkeys.com</span>
</div>
<div id="topDomainSearch">
<form id="LookupForm" name="LookupForm" method="post" action="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A112&ci=13112&domain=callsharkeys.com">
- <input type="text" name="domaintocheck" maxlength="63" style="width:170px;" />
- <select name="tld" style="height: 21px;">
+ <input class="u-s6" type="text" name="domaintocheck" maxlength="63" />
+ <select class="u-s7" name="tld">
<option value=".com">.com</option>
@@ -306,21 +358,21 @@ <div><a href="https://shops.godaddy.com?isc=GPPT03A090&ci=14090&domain=callsharkeys.com"><img src="http://images-pw.secureserver.net/images/mrkt_200x80_4.gif" border="0" alt="Find Great Deals Now at Go Daddy Marketplace"/></a></div>
</div>
<div class="leftad">
- <div id="leftadBP"><a href="http://www.bobparsons.me?isc=GPPT03A879&domain=callsharkeys.com" style="text-decoration: none;color: #000;"><span style="font-family:Arial; font-size:11px; text-decoration:underline; color:#0600ff;">Learn how to succeed</span><span style="font-family:Arial; "> — in life and online — with straight talk from Go Daddy's CEO & Founder, Bob Parsons®.</span></a></div>
+ <div id="leftadBP"><a class="u-s8" href="http://www.bobparsons.me?isc=GPPT03A879&domain=callsharkeys.com"><span class="u-s9">Learn how to succeed</span><span class="u-s10"> — in life and online — with straight talk from Go Daddy's CEO & Founder, Bob Parsons®.</span></a></div>
<div><a href="http://www.bobparsons.me?isc=GPPT03A879&domain=callsharkeys.com"><img src="http://images-pw.secureserver.net/images/gd/49574_ros_bob.gif" border="0" alt="www.bobparsons.me" /></a></div>
</div>
- <div style="padding-top: 4px; text-align: center;overflow: hidden;"><a href="" id="ad_tp_banner_1"><img src="http://images-pw.secureserver.net/images/tp200x80_5.gif" alt="" style="border:none;" /></a><script type="text/javascript" language="javascript">document.getElementById('ad_tp_banner_1').href = '/ct.html?u=http%3a%2f%2fwww.trialpay.com%2fstores%2fgodaddy%2ftwodomains%3ftid%3d6rG-kb1&e=Mm0mZQNzMQ0zMG0zL3MkCF00AGxlZQL2ZQtmZGtlZQpkZQpmWzIaCGVjZGNkZQRkZGtkBQH4WzA5CGRzrQ0zpTqjCGHznT5aCGRzoab9ZPMzpQ0jWaOjCHuT-1';</script></div>
+ <div class="u-s11"><a href="" id="ad_tp_banner_1"><img class="u-s2" src="http://images-pw.secureserver.net/images/tp200x80_5.gif" alt="" /></a><script type="text/javascript" language="javascript">document.getElementById('ad_tp_banner_1').href = '/ct.html?u=http%3a%2f%2fwww.trialpay.com%2fstores%2fgodaddy%2ftwodomains%3ftid%3d6rG-kb1&e=Mm0mZQNzMQ0zMG0zL3MkCF00AGxlZQL2ZQtmZGtlZQpkZQpmWzIaCGVjZGNkZQRkZGtkBQH4WzA5CGRzrQ0zpTqjCGHznT5aCGRzoab9ZPMzpQ0jWaOjCHuT-1';</script></div>
<div class="leftad">
- <div id="leftadWST"><a href="https://www.godaddy.com/gdshop/hosting/hosting_build_website.asp?isc=GPPT03A128&ci=13128&domain=callsharkeys.com" style="text-decoration: none;color: #fff;">Plans from $3.99/mo!</a></div>
+ <div id="leftadWST"><a class="u-s12" href="https://www.godaddy.com/gdshop/hosting/hosting_build_website.asp?isc=GPPT03A128&ci=13128&domain=callsharkeys.com">Plans from $3.99/mo!</a></div>
<div><a href="https://www.godaddy.com/gdshop/hosting/hosting_build_website.asp?isc=GPPT03A128&ci=13128&domain=callsharkeys.com"><img src="http://images-pw.secureserver.net/images/gd/ad_wst.gif" border="0" alt="Website Tonight®"/></a></div>
</div>
<div class="leftad">
- <div id="leftadHost"><a href="http://www.godaddy.com/hosting/web-hosting.aspx?isc=GPPT03A129&ci=13129&domain=callsharkeys.com" style="text-decoration: none;color: #000;">Starting at<br/>$4.99/mo</a></div>
+ <div id="leftadHost"><a class="u-s8" href="http://www.godaddy.com/hosting/web-hosting.aspx?isc=GPPT03A129&ci=13129&domain=callsharkeys.com">Starting at<br/>$4.99/mo</a></div>
<div><a href="http://www.godaddy.com/hosting/web-hosting.aspx?isc=GPPT03A129&ci=13129&domain=callsharkeys.com"><img src="http://images-pw.secureserver.net/images/gd/ad_hosting_noppc.gif" border="0" alt="Hosting Plans" /></a></div>
</div>
<div class="leftad">
- <div id="leftadAuction"><a href="https://www.godaddy.com/gdshop/dna/landing.asp?isc=GPPT03A132&ci=13132&domain=callsharkeys.com" style="text-decoration: none;color: #fff;">Memberships just $4.99/year!</a></div>
+ <div id="leftadAuction"><a class="u-s12" href="https://www.godaddy.com/gdshop/dna/landing.asp?isc=GPPT03A132&ci=13132&domain=callsharkeys.com">Memberships just $4.99/year!</a></div>
<div><a href="https://www.godaddy.com/gdshop/dna/landing.asp?isc=GPPT03A132&ci=13132&domain=callsharkeys.com"><img src="http://images-pw.secureserver.net/images/gd/ad_gdauctions_noppc2.gif" border="0" alt="Domain Name Aftermarket®" /></a></div>
</div>
<div class="leftad">
@@ -364,25 +416,25 @@ <area shape="rect" coords="9,440,101,484" alt="Radio Go Daddy" href="http://www.radiogodaddy.com?isc=GPPT03A753&ci=14753&domain=callsharkeys.com"/>
</map>
</div>
- <div id="domain1" style="color: #FF5500;position: absolute; left: 118px; top: 110px;" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span style="font-size: 43px;">1</span></strong></a></div>
- <div id="domain1a" style="color: #FF5500;position: absolute; left: 101px; top: 113px;" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span style="font-size: 30px;">$</span></strong></a></div>
- <div id="domain1b" style="color: #FF5500;position: absolute; left: 138px; top: 113px;" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span style="font-size: 30px;">.99*</span></strong></a></div>
+ <div class="u-s13" id="domain1" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span class="u-s14">1</span></strong></a></div>
+ <div class="u-s15" id="domain1a" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span class="u-s16">$</span></strong></a></div>
+ <div class="u-s17" id="domain1b" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span class="u-s16">.99*</span></strong></a></div>
- <div id="domain2" style="color: #FF5500;position: absolute; left: 78px; top: 219px;" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span style="font-size: 43px;">11</span></strong></a></div>
- <div id="domain2a" style="color: #FF5500;position: absolute; left: 61px; top: 222px;" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span style="font-size: 30px;">$</span></strong></a></div>
- <div id="domain2b" style="color: #FF5500;position: absolute; left: 125px; top: 222px;" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span style="font-size: 30px;">.99*</span></strong></a></div>
+ <div class="u-s18" id="domain2" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span class="u-s14">11</span></strong></a></div>
+ <div class="u-s19" id="domain2a" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span class="u-s16">$</span></strong></a></div>
+ <div class="u-s20" id="domain2b" ><a href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span class="u-s16">.99*</span></strong></a></div>
- <div id="domain3" style="color: #FF5500;position: absolute; left: 275px; top: 219px;" ><a href="https://www.godaddy.com/gdshop/transfers/landing.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span style="font-size: 43px;">7</span></strong></a></div>
- <div id="domain3a" style="color: #FF5500;position: absolute; left: 258px; top: 222px;" ><a href="https://www.godaddy.com/gdshop/transfers/landing.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span style="font-size: 30px;">$</span></strong></a></div>
- <div id="domain3b" style="color: #FF5500;position: absolute; left: 300px; top: 222px;" ><a href="https://www.godaddy.com/gdshop/transfers/landing.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span style="font-size: 30px;">.49*</span></strong></a></div>
+ <div class="u-s21" id="domain3" ><a href="https://www.godaddy.com/gdshop/transfers/landing.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span class="u-s14">7</span></strong></a></div>
+ <div class="u-s22" id="domain3a" ><a href="https://www.godaddy.com/gdshop/transfers/landing.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span class="u-s16">$</span></strong></a></div>
+ <div class="u-s23" id="domain3b" ><a href="https://www.godaddy.com/gdshop/transfers/landing.asp?isc=GPPT03A133&ci=13133&domain=callsharkeys.com" class="pricelink"><strong><span class="u-s16">.49*</span></strong></a></div>
- <div style="position: absolute; left:13px; top: 583px; display:none;"><a href="" id="ad_tp_banner_2"><img src="http://images-pw.secureserver.net/images/tp468x60_5.gif" alt="" style="border:none;" /></a><script type="text/javascript" language="javascript">document.getElementById('ad_tp_banner_2').href = '/ct.html?u=http%3a%2f%2fwww.trialpay.com%2fstores%2fgodaddy%2ftwodomains%3ftid%3d6rG-kb1&e=Mm0mZQNzMQ0zMG0zL3MkCF00AGxlZQL2ZQtmZGtlZQpkZQpmWzIaCGVjZGNkZQRkZGtkBQH4WzA5CGRzrQ0zpTqjCGHznT5aCGRzoab9ZPMzpQ0jWaOjCHuT-1';</script></div>
+ <div class="u-s24"><a href="" id="ad_tp_banner_2"><img class="u-s2" src="http://images-pw.secureserver.net/images/tp468x60_5.gif" alt="" /></a><script type="text/javascript" language="javascript">document.getElementById('ad_tp_banner_2').href = '/ct.html?u=http%3a%2f%2fwww.trialpay.com%2fstores%2fgodaddy%2ftwodomains%3ftid%3d6rG-kb1&e=Mm0mZQNzMQ0zMG0zL3MkCF00AGxlZQL2ZQtmZGtlZQpkZQpmWzIaCGVjZGNkZQRkZGtkBQH4WzA5CGRzrQ0zpTqjCGHznT5aCGRzoab9ZPMzpQ0jWaOjCHuT-1';</script></div>
- <div id="extrasText"><span><a href="http://www.godaddy.com/gdshop/domain_offer.asp?isc=GPPT03A319&ci=13319&domain=callsharkeys.com" class="extralink">Over $100 in EXTRAS including Hosting<sup style="font-size: 8px;">†</sup><br/>with Site Builder, Personalized Email,<br/>Quick Blogcast, and MORE!</a></span></div>
+ <div id="extrasText"><span><a href="http://www.godaddy.com/gdshop/domain_offer.asp?isc=GPPT03A319&ci=13319&domain=callsharkeys.com" class="extralink">Over $100 in EXTRAS including Hosting<sup class="u-s25">†</sup><br/>with Site Builder, Personalized Email,<br/>Quick Blogcast, and MORE!</a></span></div>
<div id="mainDomainSearch">
<form id="LookupForm2" name="LookupForm2" method="post" action="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A134&domain=callsharkeys.com&ci=13134">
- <input type="text" name="domaintocheck" maxlength="63" style="width:170px;">
- <select name="tld" style="height: 21px;">
+ <input class="u-s6" type="text" name="domaintocheck" maxlength="63">
+ <select class="u-s7" name="tld">
<option value=".com">.com</option>
@@ -523,7 +575,7 @@ </div>
<div id="wwwText">www.</div>
<div id="startText">Start a Domain Name search:</div>
- <div id="whatsText"><span id="whatsThis" style="cursor: help;" onmouseover="ShowHelp(this,'whatsdom',false);" onmouseout="ShowHelp(this,'whatsdom',true);">?</span></div>
+ <div id="whatsText"><span class="u-s26" id="whatsThis" onmouseover="ShowHelp(this,'whatsdom',false);" onmouseout="ShowHelp(this,'whatsdom',true);">?</span></div>
<div id="icanntext"><p>*Plus <a href="javascript:void(openICANNPopup())" class="bluelink">ICANN fee</a> of 18 cents per yr.</p>
<script type="text/javascript">
function openICANNPopup()
@@ -531,7 +583,7 @@ var win=window.open('https://www.godaddy.com/gdshop/jump_pages/icann_dry.asp?isc=GPPT03&domain=callsharkeys.com&app%5Fhdr=99', 'icann', 'left=50,top=50,resizable=yes,scrollbars=yes,width=400,height=250');
}
</script></div>
- <div id="transfertext"><span style="font-weight: bold;">#1 in Domain Registrations.</span> <a class="whitelink" href="https://www.godaddy.com/gdshop/transfers/landing.asp?ci=13135&isc=GPPT03A135&domain=callsharkeys.com">Transfer your domains online</a><br/>or call the Transfer Concierge at (480) 505-8866!</div>
+ <div id="transfertext"><span class="u-s27">#1 in Domain Registrations.</span> <a class="whitelink" href="https://www.godaddy.com/gdshop/transfers/landing.asp?ci=13135&isc=GPPT03A135&domain=callsharkeys.com">Transfer your domains online</a><br/>or call the Transfer Concierge at (480) 505-8866!</div>
<div id="tldList">
<a class="bluelink" href="https://www.godaddy.com/gdshop/tlds/com.asp?ci=13318&isc=GPPT03A318&domain=callsharkeys.com&tld=%2ECOM">.com</a>
<a class="bluelink" href="https://www.godaddy.com/gdshop/tlds/us.asp?ci=13318&isc=GPPT03A318&domain=callsharkeys.com&tld=%2EUS">.us</a>
@@ -554,47 +606,47 @@ </div>
<div id="bpBlog"><a href="http://www.bobparsons.me?isc=GPPT03A754&domain=callsharkeys.com" class="prodadvlink">Learn how to succeed—in life and online—with straight <br/>talk from Go Daddy's CEO & Founder, Bob Parsons®. <br/><i>Viewer discretion advised!</i></a></div>
- <div id="learnMore"><img src="http://images-pw.secureserver.net/images/061703/arw_orange_white.gif" width="7" height="9" border="0"/><img src="http://images-pw.secureserver.net/images/061703/arw_orange_white.gif" width="7" height="9" border="0"/> <span style="font-weight: bold;">Learn more about:</span> <a class="bluelink" href="https://www.godaddy.com/gdshop/dbp/landing.asp?ci=13317&isc=GPPT03A317&domain=callsharkeys.com">Private domain registrations</a>, <a class="bluelink" href="https://www.godaddy.com/gdshop/Domain_Alert/landing.asp?ci=13317&isc=GPPT03A317&domain=callsharkeys.com">domain backordering</a> <span style="font-weight: bold;">PLUS,</span> <a class="bluelink" href="https://www.godaddy.com/gdshop/dna/landing.asp?ci=13317&isc=GPPT03A317&domain=callsharkeys.com">buy used domain names</a>, <a class="bluelink" href="https://www.godaddy.com/gdshop/registrar/bulkprices.asp?ci=13317&isc=GPPT03A317&domain=callsharkeys.com">bulk domain prices slashed</a> AND MORE!</div>
+ <div id="learnMore"><img src="http://images-pw.secureserver.net/images/061703/arw_orange_white.gif" width="7" height="9" border="0"/><img src="http://images-pw.secureserver.net/images/061703/arw_orange_white.gif" width="7" height="9" border="0"/> <span class="u-s27">Learn more about:</span> <a class="bluelink" href="https://www.godaddy.com/gdshop/dbp/landing.asp?ci=13317&isc=GPPT03A317&domain=callsharkeys.com">Private domain registrations</a>, <a class="bluelink" href="https://www.godaddy.com/gdshop/Domain_Alert/landing.asp?ci=13317&isc=GPPT03A317&domain=callsharkeys.com">domain backordering</a> <span class="u-s27">PLUS,</span> <a class="bluelink" href="https://www.godaddy.com/gdshop/dna/landing.asp?ci=13317&isc=GPPT03A317&domain=callsharkeys.com">buy used domain names</a>, <a class="bluelink" href="https://www.godaddy.com/gdshop/registrar/bulkprices.asp?ci=13317&isc=GPPT03A317&domain=callsharkeys.com">bulk domain prices slashed</a> AND MORE!</div>
<div id="productAdv"><a href="http://www.godaddy.com/gdshop/wizard/start.asp?isc=GPPT03&ci=13379&domain=callsharkeys.com" class="prodadvlink">Get what you need in </a><a href="http://www.godaddy.com/gdshop/wizard/start.asp?isc=GPPT03A379&ci=13379&domain=callsharkeys.com" class="prodadvorlink">UNDER 5 MINUTES </a><a href="http://www.godaddy.com/gdshop/wizard/start.asp?isc=GPPT03A379&ci=13379&domain=callsharkeys.com" class="prodadvlink">with our Product Advisor</a></div>
-<div style="height: 48px; width: 48px; text-align: center; position: absolute; top: 542px; left: 76px;">
- <table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" width="48" height="48" padding="0" margin="0" border="0"><a href="http://shops.godaddy.com/BiggSports/UCLA-Halloween-Pumpkin-Bucket-990687/?isc=GPPT03A092&domain=callsharkeys.com"><img src="http://shops1.wsimg.com/shop112853108/A87/product990687/0_2_e84b434e-7469-4a13-b1bf-2f79afba9993.jpg" style="border:0;" /></a></td></tr></table>
+<div class="u-s28">
+ <table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" width="48" height="48" padding="0" margin="0" border="0"><a href="http://shops.godaddy.com/BiggSports/UCLA-Halloween-Pumpkin-Bucket-990687/?isc=GPPT03A092&domain=callsharkeys.com"><img class="u-s29" src="http://shops1.wsimg.com/shop112853108/A87/product990687/0_2_e84b434e-7469-4a13-b1bf-2f79afba9993.jpg" /></a></td></tr></table>
</div>
-<div style="height: 48px; width: 48px; text-align: center; position: absolute; top: 542px; left: 159px;">
- <table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" width="48" height="48" padding="0" margin="0" border="0"><a href="http://shops.godaddy.com/Earth-Herbs-and-Books/Botanical-Slimming-Soft-Gels/?isc=GPPT03A092&domain=callsharkeys.com"><img src="http://shops1.wsimg.com/shop91707529/product671368/1_2_a9a6f499-bc28-4042-9b6b-ec9348c1107c.jpg" style="border:0;" /></a></td></tr></table>
+<div class="u-s30">
+ <table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" width="48" height="48" padding="0" margin="0" border="0"><a href="http://shops.godaddy.com/Earth-Herbs-and-Books/Botanical-Slimming-Soft-Gels/?isc=GPPT03A092&domain=callsharkeys.com"><img class="u-s29" src="http://shops1.wsimg.com/shop91707529/product671368/1_2_a9a6f499-bc28-4042-9b6b-ec9348c1107c.jpg" /></a></td></tr></table>
</div>
-<div style="height: 48px; text-align: center; width: 48px; position: absolute; top: 542px; left: 242px;">
- <table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" width="48" height="48" padding="0" margin="0" border="0"><a href="http://shops.godaddy.com/Preferred-Merchandizing/Litter-Lifter-Magic-Scoop/?isc=GPPT03A092&domain=callsharkeys.com"><img src="http://shops1.wsimg.com/shop96408706/0_2_c5193305-86ef-40eb-953f-04b82332016e.jpg" style="border:0;" /></a></td></tr></table>
+<div class="u-s31">
+ <table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" width="48" height="48" padding="0" margin="0" border="0"><a href="http://shops.godaddy.com/Preferred-Merchandizing/Litter-Lifter-Magic-Scoop/?isc=GPPT03A092&domain=callsharkeys.com"><img class="u-s29" src="http://shops1.wsimg.com/shop96408706/0_2_c5193305-86ef-40eb-953f-04b82332016e.jpg" /></a></td></tr></table>
</div>
-<div style="height: 48px; width: 48px; text-align: center; position: absolute; top: 542px; left: 324px;">
- <table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" width="48" height="48" padding="0" margin="0" border="0"><a href="http://shops.godaddy.com/aSavings-com/Baggallini-Milano-Bagg-Silver-Hardware-Crinkle-Pewter-Mimosa/?isc=GPPT03A092&domain=callsharkeys.com"><img src="http://shops1.wsimg.com/shop101069415/A58/product1065858/0_2_25ebc940-e9e8-48e0-94cd-daa930a67489.jpg" style="border:0;" /></a></td></tr></table>
+<div class="u-s32">
+ <table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" width="48" height="48" padding="0" margin="0" border="0"><a href="http://shops.godaddy.com/aSavings-com/Baggallini-Milano-Bagg-Silver-Hardware-Crinkle-Pewter-Mimosa/?isc=GPPT03A092&domain=callsharkeys.com"><img class="u-s29" src="http://shops1.wsimg.com/shop101069415/A58/product1065858/0_2_25ebc940-e9e8-48e0-94cd-daa930a67489.jpg" /></a></td></tr></table>
</div>
-<div style="height: 48px; width: 48px; text-align: center; position: absolute; top: 542px; left: 406px;">
- <table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" width="48" height="48" padding="0" margin="0" border="0"><a href="http://shops.godaddy.com/Earth-Herbs-and-Books/6-Boxes-New-Slim-Pomegranate-Weight-Loss-Slimming-Caspsule-6-Month/?isc=GPPT03A092&domain=callsharkeys.com"><img src="http://shops1.wsimg.com/shop91707529/product0/0_2_79fadd2e-447c-4b5b-962d-82f90ff62879.jpg" style="border:0;" /></a></td></tr></table>
+<div class="u-s33">
+ <table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" width="48" height="48" padding="0" margin="0" border="0"><a href="http://shops.godaddy.com/Earth-Herbs-and-Books/6-Boxes-New-Slim-Pomegranate-Weight-Loss-Slimming-Caspsule-6-Month/?isc=GPPT03A092&domain=callsharkeys.com"><img class="u-s29" src="http://shops1.wsimg.com/shop91707529/product0/0_2_79fadd2e-447c-4b5b-962d-82f90ff62879.jpg" /></a></td></tr></table>
</div>
-<div style="width: 80px; text-align: center; position: absolute; font-size: 11px; top: 590px; left: 60px;"><div style="height: 30px; overflow: hidden;"><a href="http://shops.godaddy.com/BiggSports/UCLA-Halloween-Pumpkin-Bucket-990687/?isc=GPPT03A092&domain=callsharkeys.com" style="color:#000000">UCLA Halloween Pumpkin B...</a></div><div><a href="http://shops.godaddy.com/BiggSports/UCLA-Halloween-Pumpkin-Bucket-990687/?isc=GPPT03A092&domain=callsharkeys.com" style="color:#FF0000; font-weight:bold;text-decoration:none;">$14.99</a></div></div>
-<div style="width: 80px; text-align: center; position: absolute; font-size: 11px; top: 590px; left: 143px;"><div style="height: 30px; overflow: hidden;"><a href="http://shops.godaddy.com/Earth-Herbs-and-Books/Botanical-Slimming-Soft-Gels/?isc=GPPT03A092&domain=callsharkeys.com" style="color:#000000">20 Meizitang Botanical S...</a></div><div><a href="http://shops.godaddy.com/Earth-Herbs-and-Books/Botanical-Slimming-Soft-Gels/?isc=GPPT03A092&domain=callsharkeys.com" style="color:#FF0000; font-weight:bold;text-decoration:none;">$199.98</a></div></div>
-<div style="width: 80px; text-align: center; position: absolute; font-size: 11px; top: 590px; left: 226px;"><div style="height: 30px; overflow: hidden;"><a href="http://shops.godaddy.com/Preferred-Merchandizing/Litter-Lifter-Magic-Scoop/?isc=GPPT03A092&domain=callsharkeys.com" style="color:#000000">Litter-Lifterâ„¢ Magic-S...</a></div><div><a href="http://shops.godaddy.com/Preferred-Merchandizing/Litter-Lifter-Magic-Scoop/?isc=GPPT03A092&domain=callsharkeys.com" style="color:#FF0000; font-weight:bold;text-decoration:none;">$8.75</a></div></div>
-<div style="width: 80px; text-align: center; position: absolute; font-size: 11px; top: 590px; left: 308px;"><div style="height: 30px; overflow: hidden;"><a href="http://shops.godaddy.com/aSavings-com/Baggallini-Milano-Bagg-Silver-Hardware-Crinkle-Pewter-Mimosa/?isc=GPPT03A092&domain=callsharkeys.com" style="color:#000000">Baggallini Milano Bagg S...</a></div><div><a href="http://shops.godaddy.com/aSavings-com/Baggallini-Milano-Bagg-Silver-Hardware-Crinkle-Pewter-Mimosa/?isc=GPPT03A092&domain=callsharkeys.com" style="color:#FF0000; font-weight:bold;text-decoration:none;">$63.97</a></div></div>
-<div style="width: 80px; text-align: center; position: absolute; font-size: 11px; top: 590px; left: 390px;"><div style="height: 30px; overflow: hidden;"><a href="http://shops.godaddy.com/Earth-Herbs-and-Books/6-Boxes-New-Slim-Pomegranate-Weight-Loss-Slimming-Caspsule-6-Month/?isc=GPPT03A092&domain=callsharkeys.com" style="color:#000000">6 Boxes New (super)Slim ...</a></div><div><a href="http://shops.godaddy.com/Earth-Herbs-and-Books/6-Boxes-New-Slim-Pomegranate-Weight-Loss-Slimming-Caspsule-6-Month/?isc=GPPT03A092&domain=callsharkeys.com" style="color:#FF0000; font-weight:bold;text-decoration:none;">$68.98</a></div></div>
-<div style="position: absolute; text-align: center; font-size: 11px; top: 518px; left: 285px;"><a href="https://shops.godaddy.com?isc=GPPT03A092&domain=callsharkeys.com">GoDaddyMarketplace.com</a></div>
+<div class="u-s34"><div class="u-s35"><a class="u-s36" href="http://shops.godaddy.com/BiggSports/UCLA-Halloween-Pumpkin-Bucket-990687/?isc=GPPT03A092&domain=callsharkeys.com">UCLA Halloween Pumpkin B...</a></div><div><a class="u-s37" href="http://shops.godaddy.com/BiggSports/UCLA-Halloween-Pumpkin-Bucket-990687/?isc=GPPT03A092&domain=callsharkeys.com">$14.99</a></div></div>
+<div class="u-s38"><div class="u-s35"><a class="u-s36" href="http://shops.godaddy.com/Earth-Herbs-and-Books/Botanical-Slimming-Soft-Gels/?isc=GPPT03A092&domain=callsharkeys.com">20 Meizitang Botanical S...</a></div><div><a class="u-s37" href="http://shops.godaddy.com/Earth-Herbs-and-Books/Botanical-Slimming-Soft-Gels/?isc=GPPT03A092&domain=callsharkeys.com">$199.98</a></div></div>
+<div class="u-s39"><div class="u-s35"><a class="u-s36" href="http://shops.godaddy.com/Preferred-Merchandizing/Litter-Lifter-Magic-Scoop/?isc=GPPT03A092&domain=callsharkeys.com">Litter-Lifterâ„¢ Magic-S...</a></div><div><a class="u-s37" href="http://shops.godaddy.com/Preferred-Merchandizing/Litter-Lifter-Magic-Scoop/?isc=GPPT03A092&domain=callsharkeys.com">$8.75</a></div></div>
+<div class="u-s40"><div class="u-s35"><a class="u-s36" href="http://shops.godaddy.com/aSavings-com/Baggallini-Milano-Bagg-Silver-Hardware-Crinkle-Pewter-Mimosa/?isc=GPPT03A092&domain=callsharkeys.com">Baggallini Milano Bagg S...</a></div><div><a class="u-s37" href="http://shops.godaddy.com/aSavings-com/Baggallini-Milano-Bagg-Silver-Hardware-Crinkle-Pewter-Mimosa/?isc=GPPT03A092&domain=callsharkeys.com">$63.97</a></div></div>
+<div class="u-s41"><div class="u-s35"><a class="u-s36" href="http://shops.godaddy.com/Earth-Herbs-and-Books/6-Boxes-New-Slim-Pomegranate-Weight-Loss-Slimming-Caspsule-6-Month/?isc=GPPT03A092&domain=callsharkeys.com">6 Boxes New (super)Slim ...</a></div><div><a class="u-s37" href="http://shops.godaddy.com/Earth-Herbs-and-Books/6-Boxes-New-Slim-Pomegranate-Weight-Loss-Slimming-Caspsule-6-Month/?isc=GPPT03A092&domain=callsharkeys.com">$68.98</a></div></div>
+<div class="u-s42"><a href="https://shops.godaddy.com?isc=GPPT03A092&domain=callsharkeys.com">GoDaddyMarketplace.com</a></div>
- <div id="whatsdom_help" style="width:340px;display:none;position:absolute;z-index:99;top: 344px; left: 270px;">
- <table class="subText" border="0" style="width:340px;" cellpadding="0" cellspacing="0">
+ <div class="u-s43" id="whatsdom_help">
+ <table class="subText u-s44" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="http://imagesak.godaddy.com/aaa/help/hlp_toplft.gif" width="4" height="5"></td>
- <td style="width:331px;background-image:url('http://imagesak.godaddy.com/aaa/help/hlp_top.gif');background-repeat:repeat-x;"><img src="http://imagesak.godaddy.com/assets/spc_trans.gif" width="1" height="5"></td>
+ <td class="u-s45"><img src="http://imagesak.godaddy.com/assets/spc_trans.gif" width="1" height="5"></td>
<td><img src="http://imagesak.godaddy.com/aaa/help/hlp_toprt.gif" width="5" height="5"></td>
</tr>
<tr>
- <td style="background-image:url('http://imagesak.godaddy.com/aaa/help/hlp_sidelft.gif');background-repeat:repeat-y;"><img src="http://imagesak.godaddy.com/assets/spc_trans.gif" width="4" height="1"></td>
- <td style="width:331px;padding:4px 8px 6px 8px;background-color:#FAFAFA;"><b>What's a Domain Name?</b><br>Want a Web site? Personalized email? How about an easy, affordable way to promote your business, class reunion or favorite hobby? A unique, memorable dot com domain name is the first step to doing all this and more. It's <b>your 'address' on the World Wide Web</b>, and along with your Web site, serves as your 'online identity,' reflecting your purpose and personality. Friends, family, customers - anyone in the world with Internet access - can type your domain name into their Web browser and visit your Web site.</td>
- <td style="background-image:url('http://imagesak.godaddy.com/aaa/help/hlp_sidert.gif');background-repeat:repeat-y;"><img src="http://imagesak.godaddy.com/assets/spc_trans.gif" width="5" height="1"></td>
+ <td class="u-s46"><img src="http://imagesak.godaddy.com/assets/spc_trans.gif" width="4" height="1"></td>
+ <td class="u-s47"><b>What's a Domain Name?</b><br>Want a Web site? Personalized email? How about an easy, affordable way to promote your business, class reunion or favorite hobby? A unique, memorable dot com domain name is the first step to doing all this and more. It's <b>your 'address' on the World Wide Web</b>, and along with your Web site, serves as your 'online identity,' reflecting your purpose and personality. Friends, family, customers - anyone in the world with Internet access - can type your domain name into their Web browser and visit your Web site.</td>
+ <td class="u-s48"><img src="http://imagesak.godaddy.com/assets/spc_trans.gif" width="5" height="1"></td>
</tr>
<tr>
<td><img src="http://imagesak.godaddy.com/aaa/help/hlp_botlft.gif" width="4" height="5"></td>
- <td style="width:331px;background-image:url('http://imagesak.godaddy.com/aaa/help/hlp_bot.gif');background-repeat:repeat-x;"><img src="http://imagesak.godaddy.com/assets/spc_trans.gif" width="1" height="5"></td>
+ <td class="u-s49"><img src="http://imagesak.godaddy.com/assets/spc_trans.gif" width="1" height="5"></td>
<td><img src="http://imagesak.godaddy.com/aaa/help/hlp_botrt.gif" width="5" height="5"></td>
</tr>
</table>
@@ -607,7 +659,7 @@ <area shape="rect" coords="196,5,555,32" alt="Parked Free Courtesy of Godaddy.com" href="http://www.godaddy.com?isc=GPPT03A136&ci=13136&domain=callsharkeys.com"/>
</map>
<div id="best_values">
- <span style="color: #000; font-weight: bold;">Visit GoDaddy.com for the best values on:</span><br/>
+ <span class="u-s50">Visit GoDaddy.com for the best values on:</span><br/>
<a class="footerlink2" href="https://www.godaddy.com/gdshop/registrar/search.asp?isc=GPPT03A137&ci=13137&domain=callsharkeys.com">Domain names</a><img src="http://images-pw.secureserver.net/images/bul_blacksquare.png" class="blackbullet"/><a class="footerlink2" href="https://www.godaddy.com/gdshop/hosting/landing.asp?isc=GPPT03A137&ci=13137&domain=callsharkeys.com">Web Hosting</a><img src="http://images-pw.secureserver.net/images/bul_blacksquare.png" class="blackbullet"/><a class="footerlink2" href="https://www.godaddy.com/gdshop/website.asp?isc=GPPT03A137&ci=13137&domain=callsharkeys.com">Web Site Builders</a><img src="http://images-pw.secureserver.net/images/bul_blacksquare.png" class="blackbullet"/><a class="footerlink2" href="https://www.godaddy.com/gdshop/email.asp?isc=GPPT03A137&ci=13137&domain=callsharkeys.com">Email Accounts</a><img src="http://images-pw.secureserver.net/images/bul_blacksquare.png" class="blackbullet"/><a class="footerlink2" href="https://www.godaddy.com/gdshop/ssl/ssl.asp?isc=GPPT03A137&ci=13137&domain=callsharkeys.com">SSL Certificates</a><img src="http://images-pw.secureserver.net/images/bul_blacksquare.png" class="blackbullet"/><a class="footerlink2" href="https://www.godaddy.com/gdshop/ecommerce/cart.asp?isc=GPPT03A137&ci=13137&domain=callsharkeys.com">Ecommerce Products</a><img src="http://images-pw.secureserver.net/images/bul_blacksquare.png" class="blackbullet"/><a class="footerlink2" href="https://www.godaddy.com?isc=GPPT03A137&ci=13137&domain=callsharkeys.com">And More!</a><img src="http://images-pw.secureserver.net/images/bul_blacksquare.png" class="blackbullet"/><a class="footerlink2" href="https://www.godaddy.com/gdshop/catalog.asp?isc=GPPT03A137&ci=13137&domain=callsharkeys.com">See Product Catalog</a>
</div>
<div id="footertext1">
diff --git a/static/nickinterview/peoplewholiketochatalot dump.fm_files/photo30.html b/static/nickinterview/peoplewholiketochatalot dump.fm_files/photo30.html index 37bb327..b81b73e 100755 --- a/static/nickinterview/peoplewholiketochatalot dump.fm_files/photo30.html +++ b/static/nickinterview/peoplewholiketochatalot dump.fm_files/photo30.html @@ -39,6 +39,13 @@ var excludeModules='38'; <style type="text/css"> #ja-header,#ja-mainnav,#ja-container,#ja-botsl,#ja-footer {width: 760px;margin: 0 auto;} #ja-wrapper {min-width: 761px;} +#ja-containerwrap-fr { z-index: 0; } + +.cursor-pointer { cursor: pointer; } +.fb-like-frame { border: none; overflow: hidden; width: 80px; height: 20px; } +.collection-thumb { width: 100px; border: 0; } +.margin-x-15 { margin: 0 15px; } +.text-center { text-align: center; } </style> <!-- ShareThis code --> @@ -46,7 +53,7 @@ var excludeModules='38'; <style type="text/css"> body {font-family:helvetica,sans-serif;font-size:12px;} a.stbar.chicklet img {border:0;height:16px;width:16px;margin-right:3px;vertical-align:middle;} -a.stbar.chicklet {height:16px;line-height:16px;} +a.stbar.chicklet {height:16px;line-height:16px;text-decoration:none;} </style> </head> @@ -74,9 +81,9 @@ a.stbar.chicklet {height:16px;line-height:16px;} <ul class="ja-usertools-font"> - <li><img style="cursor: pointer;" title="Increase font size" src="http://www.samuseum.org/templates/sama/images/user-increase.png" alt="Increase font size" id="ja-tool-increase" onclick="switchFontSize('sama_ja_font','inc'); return false;" /></li> - <li><img style="cursor: pointer;" title="Default font size" src="http://www.samuseum.org/templates/sama/images/user-reset.png" alt="Default font size" id="ja-tool-reset" onclick="switchFontSize('sama_ja_font',3); return false;" /></li> - <li><img style="cursor: pointer;" title="Decrease font size" src="http://www.samuseum.org/templates/sama/images/user-decrease.png" alt="Decrease font size" id="ja-tool-decrease" onclick="switchFontSize('sama_ja_font','dec'); return false;" /></li> + <li><img class="cursor-pointer" title="Increase font size" src="http://www.samuseum.org/templates/sama/images/user-increase.png" alt="Increase font size" id="ja-tool-increase" onclick="switchFontSize('sama_ja_font','inc'); return false;" /></li> + <li><img class="cursor-pointer" title="Default font size" src="http://www.samuseum.org/templates/sama/images/user-reset.png" alt="Default font size" id="ja-tool-reset" onclick="switchFontSize('sama_ja_font',3); return false;" /></li> + <li><img class="cursor-pointer" title="Decrease font size" src="http://www.samuseum.org/templates/sama/images/user-decrease.png" alt="Decrease font size" id="ja-tool-decrease" onclick="switchFontSize('sama_ja_font','dec'); return false;" /></li> </ul> <script type="text/javascript">var CurrentFontSize=parseInt('3');</script> @@ -95,7 +102,7 @@ a.stbar.chicklet {height:16px;line-height:16px;} </div> <!-- END: MAIN NAVIGATION --> - <div id="ja-containerwrap-fr" style="z-index:0"> + <div id="ja-containerwrap-fr"> <div id="ja-containerwrap2"> <div id="ja-container"> <div id="ja-container2" class="clearfix"> @@ -161,7 +168,7 @@ form#form-ccsignup fieldset { SAMA Collections</span> </td> <td align="right" valign="bottom"> - <iframe src="https://www.facebook.com/plugins/like.php?href=http://www.samuseum.org/index.php/sama-collections/&layout=button_count&show_faces=true&width=80&action=like&font&colorscheme=light&height=20" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:20px;" allowTransparency="true"></iframe> + <iframe src="https://www.facebook.com/plugins/like.php?href=http://www.samuseum.org/index.php/sama-collections/&layout=button_count&show_faces=true&width=80&action=like&font&colorscheme=light&height=20" scrolling="no" frameborder="0" class="fb-like-frame" allowTransparency="true"></iframe> </td></tr> </table> </div> @@ -184,7 +191,7 @@ SAMA Collections</span> <tbody>
<tr>
<td>
- <a href="/sama-collections/american-art"><img alt="American Art" border="0" src="/images/collection/photo2_.jpg" style="width: 100px; border: 0px;" /></a></td>
+ <a href="/sama-collections/american-art"><img alt="American Art" border="0" src="/images/collection/photo2_.jpg" class="collection-thumb" /></a></td>
<td valign="top">
<a href="/sama-collections/american-art"> </a>
<h3>
@@ -210,7 +217,7 @@ SAMA Collections</span> </tr>
<tr>
<td>
- <a href="/sama-collections/contemporary-art"><img alt="Contemporary Art" border="0" src="/images/collection/photo7_.jpg" style="width: 100px; border: 0px;" /></a></td>
+ <a href="/sama-collections/contemporary-art"><img alt="Contemporary Art" border="0" src="/images/collection/photo7_.jpg" class="collection-thumb" /></a></td>
<td valign="top">
<a href="/sama-collections/contemporary-art"> </a>
<h3>
@@ -223,7 +230,7 @@ SAMA Collections</span> </tr>
<tr>
<td>
- <a href="/sama-collections/european-art"><img alt="European Art" border="0" src="/images/collection/photo3_.jpg" style="width: 100px; border: 0px;" /></a></td>
+ <a href="/sama-collections/european-art"><img alt="European Art" border="0" src="/images/collection/photo3_.jpg" class="collection-thumb" /></a></td>
<td valign="top">
<a href="/sama-collections/european-art"> </a>
<h3>
@@ -236,7 +243,7 @@ SAMA Collections</span> </tr>
<tr>
<td>
- <a href="/sama-collections/latin-american-art"><img alt="Latin American Art" border="0" src="/images/collection/photo1_.jpg" style="width: 100px; border: 0px;" /></a></td>
+ <a href="/sama-collections/latin-american-art"><img alt="Latin American Art" border="0" src="/images/collection/photo1_.jpg" class="collection-thumb" /></a></td>
<td valign="top">
<a href="/sama-collections/latin-american-art"> </a>
<h3>
@@ -249,7 +256,7 @@ SAMA Collections</span> </tr>
<tr>
<td>
- <a href="/sama-collections/oceanic-art"><img alt="Oceanic Art" border="0" src="/images/collection/photo6_.jpg" style="width: 100px; border: 0px;" /></a></td>
+ <a href="/sama-collections/oceanic-art"><img alt="Oceanic Art" border="0" src="/images/collection/photo6_.jpg" class="collection-thumb" /></a></td>
<td valign="top">
<a href="/sama-collections/oceanic-art"> </a>
<h3>
@@ -262,7 +269,7 @@ SAMA Collections</span> </tr>
<tr>
<td>
- <a href="/sama-collections/art-of-the-ancient-mediterranean-world"><img alt="Western Antiquities" border="0" src="/images/collection/photo5_.jpg" style="width: 100px; border: 0px;" /></a></td>
+ <a href="/sama-collections/art-of-the-ancient-mediterranean-world"><img alt="Western Antiquities" border="0" src="/images/collection/photo5_.jpg" class="collection-thumb" /></a></td>
<td valign="top">
<a href="/sama-collections/art-of-the-ancient-mediterranean-world"> </a>
<h3>
@@ -279,7 +286,7 @@ SAMA Collections</span> <!--tour information--> - <div style="margin:0px 15px"> + <div class="margin-x-15"> </div> @@ -309,11 +316,11 @@ SAMA Collections</span> </div> <br /> - <div style="text-align: center;"> + <div class="text-center"> <a id="ck_email" class="stbar chicklet" href="javascript:void(0);"><img src="http://w.sharethis.com/chicklets/email.gif" /></a> <a id="ck_facebook" class="stbar chicklet" href="javascript:void(0);"><img src="http://w.sharethis.com/chicklets/facebook.gif" /></a> <a id="ck_twitter" class="stbar chicklet" href="javascript:void(0);"><img src="http://w.sharethis.com/chicklets/twitter.gif" /></a> - <a id="ck_sharethis" class="stbar chicklet" href="javascript:void(0);" style="text-decoration: none;"><img src="http://w.sharethis.com/chicklets/sharethis.gif" />ShareThis</a> + <a id="ck_sharethis" class="stbar chicklet" href="javascript:void(0);" ><img src="http://w.sharethis.com/chicklets/sharethis.gif" />ShareThis</a> <script type="text/javascript"> var shared_object = SHARETHIS.addEntry({ title: document.title, diff --git a/template/altar_log.st b/template/altar_log.st index 5d826ef..40704ee 100755 --- a/template/altar_log.st +++ b/template/altar_log.st @@ -1,11 +1,12 @@ <html> <head> - <title>dump.fm log</title> -$head()$ - <script> - jQuery(document).ready(initLog); - </script> - </head> + <title>dump.fm log</title> + $head()$ + <script> + var Recips = []; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + </head> <body> $banner()$ <div id="content"> diff --git a/template/altar_user_log.st b/template/altar_user_log.st index 75159a6..b3c197c 100755 --- a/template/altar_user_log.st +++ b/template/altar_user_log.st @@ -1,11 +1,12 @@ <html> <head> - <title>dump.fm log</title> - $head()$ - <script> - jQuery(document).ready(initLog); - </script> - </head> + <title>dump.fm log</title> + $head()$ + <script> + var Recips = []; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + </head> <body> $banner()$ <div id="content"> diff --git a/template/fame2.st b/template/fame2.st index 58ec622..e742b24 100755 --- a/template/fame2.st +++ b/template/fame2.st @@ -1,12 +1,13 @@ <html> <head> <title>dump.fm hall of fame</title> - $head()$ - <link rel="stylesheet" type="text/css" href="/static/css/fame.css?v=20260131"> - <script> - jQuery(document).ready(initLog); - </script> - </head> + $head()$ + <link rel="stylesheet" type="text/css" href="/static/css/fame.css?v=20260131"> + <script> + var Recips = []; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + </head> <body> $banner()$ <div id="content"> diff --git a/template/frontpage copy.st b/template/frontpage copy.st index 2cd3d0c..4549dd7 100755 --- a/template/frontpage copy.st +++ b/template/frontpage copy.st @@ -1,14 +1,6 @@ <html> <head> - <script type="text/javascript"> -function refreshing() -{ -frm=document.getElementsByName("posts")[0]; -frm.src=frm.src; -setTimeout("refreshing()",300000); -} -</script> - <title>dump.fm</title> + <title>dump.fm</title> <!---HEAD ---> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="keywords" content="dump.fm, image chat, realtime, internet 3.0, dump, dump fm, image dump, pictures, image links, image board, scott ostler, ryder ripps"> @@ -34,27 +26,15 @@ setTimeout("refreshing()",300000); <link rel="shortcut icon" href="/static/favicon.ico"> <!--END HEAD--> - <script> - var Recips = []; - jQuery(function() { - initLog(Recips) - }); - </script> - - <script> -jQuery(window).load(function(){ - jQuery('#posts').masonry({ columnWidth: 275 }); - jQuery('#posts').masonry({ singleMode: true }); - jQuery('#posts').masonry({ resizeable: true }); - jQuery('#posts').masonry({ animate: true}); - - - }); + <script> + var Recips = []; + var MasonryColumnWidth = 275; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + <script type="text/javascript" src="/static/js/pages/frontpage_refresh.js?v=20260203"></script> -</script> - - - + + </head> diff --git a/template/frontpage.st b/template/frontpage.st index efb433c..88c0e25 100755 --- a/template/frontpage.st +++ b/template/frontpage.st @@ -1,13 +1,5 @@ <html> <head> - <script type="text/javascript"> -function refreshing() -{ -frm=document.getElementsByName("posts")[0]; -frm.src=frm.src; -setTimeout("refreshing()",300000); -} -</script> <title>dump.fm</title> <!---HEAD ---> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> @@ -27,34 +19,22 @@ setTimeout("refreshing()",300000); <link href="/static/css/front.css?v=20260130.2" media="screen, projection" rel="stylesheet" type="text/css"> <link href="/static/css/frontpage_legacy.css?v=20260130" media="screen, projection" rel="stylesheet" type="text/css"> - $if(!logged_in)$ - <script type="text/javascript" src="/static/js/popup.js"></script> - $endif$ - - <link rel="shortcut icon" href="/static/favicon.ico"> - - <!--END HEAD--> - <script> - var Recips = []; - jQuery(function() { - initLog(Recips) - }); - </script> - - <script> -jQuery(window).load(function(){ - jQuery('#posts').masonry({ columnWidth: 275 }); - jQuery('#posts').masonry({ singleMode: true }); - jQuery('#posts').masonry({ resizeable: true }); - jQuery('#posts').masonry({ animate: true}); + $if(!logged_in)$ + <script type="text/javascript" src="/static/js/popup.js"></script> + $endif$ + <link rel="shortcut icon" href="/static/favicon.ico"> + + <!--END HEAD--> + <script> + var Recips = []; + var MasonryColumnWidth = 275; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + <script type="text/javascript" src="/static/js/pages/frontpage_refresh.js?v=20260203"></script> - }); - -</script> - - - + + </head> @@ -199,6 +179,6 @@ $debug_log()$ <span class="loading-bar-label">Loading...</span> <span class="loading-bar-track"><span id="LB1" class="loading-bar-fill"></span></span> </span> -<script type="text/javascript">m00=document.getElementsByTagName("img");m01=m00.length;function images_loading_bar(){m02=0;for(i=0;i<m01;i++)m02+=(m00[i].complete)?1:0;document.getElementById("LB1").style.width=Math.round(m02/m01*100)+'px';if(m02==m01)setTimeout("document.getElementById('LB0').style.display='none'",128); else setTimeout("images_loading_bar()", 64);};images_loading_bar();</script> +<script type="text/javascript">if (typeof images_loading_bar === "function") { images_loading_bar(); }</script> </body> </html> diff --git a/template/frontpagePROFILE.st b/template/frontpagePROFILE.st index a586c31..5fdef71 100755 --- a/template/frontpagePROFILE.st +++ b/template/frontpagePROFILE.st @@ -38,27 +38,15 @@ $endif$ -<!--END HEAD--> -<script> - var Recips = []; - jQuery(function() { - initLog(Recips) - }); - </script> + <!--END HEAD--> + <script> + var Recips = []; + var MasonryColumnWidth = 275; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> - <script> -jQuery(window).load(function(){ - jQuery('#posts').masonry({ columnWidth: 275 }); - jQuery('#posts').masonry({ singleMode: true }); - jQuery('#posts').masonry({ resizeable: true }); - jQuery('#posts').masonry({ animate: true}); - - - }); -</script> - - - + + </head> diff --git a/template/frontpage_halloffame.st b/template/frontpage_halloffame.st index e0de329..e2bacc1 100755 --- a/template/frontpage_halloffame.st +++ b/template/frontpage_halloffame.st @@ -1,14 +1,6 @@ <html> <head> - <script type="text/javascript"> -function refreshing() -{ -frm=document.getElementsByName("posts")[0]; -frm.src=frm.src; -setTimeout("refreshing()",300000); -} -</script> - <title>dump.fm</title> + <title>dump.fm</title> <!---HEAD ---> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="keywords" content="dump.fm, image chat, realtime, internet 3.0, dump, dump fm, image dump, pictures, image links, image board, scott ostler, ryder ripps"> @@ -34,27 +26,15 @@ setTimeout("refreshing()",300000); <link rel="shortcut icon" href="/static/favicon.ico"> <!--END HEAD--> - <script> - var Recips = []; - jQuery(function() { - initLog(Recips) - }); - </script> - - <script> -jQuery(window).load(function(){ - jQuery('#posts').masonry({ columnWidth: 275 }); - jQuery('#posts').masonry({ singleMode: true }); - jQuery('#posts').masonry({ resizeable: true }); - jQuery('#posts').masonry({ animate: true}); - - - }); + <script> + var Recips = []; + var MasonryColumnWidth = 275; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + <script type="text/javascript" src="/static/js/pages/frontpage_refresh.js?v=20260203"></script> -</script> - - - + + </head> diff --git a/template/fullscreen.st b/template/fullscreen.st index 5879804..54960fc 100755 --- a/template/fullscreen.st +++ b/template/fullscreen.st @@ -5,23 +5,17 @@ <script src="/static/js/pichat.js?v=20260130"></script> <script src="/static/js/fullscreen.js?v=20260126"></script> $if(user_nick)$ - $else$ - <script src="/static/js/register.js"></script> - $endif$ - <script> - var LoggedIn = $if(user_nick)$true$else$false$endif$; - var Timestamp = $timestamp$; - 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()} - } - </script> - - <link rel="stylesheet" type="text/css" href="/static/css/fullscreen_box.css?v=20260131"> - <script>jQuery(initLogin)</script> - </head> - <body> + $else$ + <script src="/static/js/register.js"></script> + $endif$ + <script> + var LoggedIn = $if(user_nick)$true$else$false$endif$; + var Timestamp = $timestamp$; + </script> + + <link rel="stylesheet" type="text/css" href="/static/css/fullscreen_box.css?v=20260131"> + </head> + <body> $if(user_nick)$ @@ -75,40 +69,8 @@ </div> $endif$ - <div id="big-image"></div> - <script> - function choice(a) { return a[Math.floor(Math.random()*a.length)] } - var urls = [ - "https://archive.hump.fm/images/20100601/1275428508049-dumpfm-foot-oie_oie_overlay-1.gif", - "https://archive.hump.fm/images/20100928/1285728674225-dumpfm-timb-running.unicorn.gif", - "https://archive.hump.fm/images/20100726/1280119193796-dumpfm-enso-human-condition.gif", - "https://archive.hump.fm/images/20100521/1274415795577-dumpfm-ucnv-mx.gif", - "https://archive.hump.fm/images/20100912/1284315873224-dumpfm-Neontoast-1283990707508-dumpfm-crunkus-crabtoon.gif", - "https://archive.hump.fm/images/20110927/1317105622918-dumpfm-peachfist-test8scam.gif", - "https://archive.hump.fm/images/20110323/1300915179773-dumpfm-blingscience-fishtank.gif", - "https://archive.hump.fm/images/20110418/1303108538834-dumpfm-LAVARLAMAR-lettuce_lavarlamar.gif", - "https://s3.amazonaws.com/i.asdf.us/im/84/gradient_horse_1318306378_1322355741_ryz_1337322355_ryz.gif", - "https://archive.hump.fm/images/20110724/1311552093462-dumpfm-hologrampa-1291586335941-dumpfm-jeeeelings-cat_face_wink_hologrampa-lettuce.gif", - "https://s3.amazonaws.com/i.asdf.us/im/be/tt7620731fltt_1315431978.gif" - ] - if (window.location.href.indexOf("nologin") != -1) { - jQuery("#loginbox").hide(); - } - document.getElementById("big-image").innerHTML = "<img src='" + choice(urls) + "'>" - initFullscreen() - initRegister() - jQuery(startChatUpdater) - jQuery("#reglink").click(function(e){ - e.preventDefault(); - jQuery("#loginbox").hide(); - jQuery("#registerbox").show().addClass("b"); - return false; - }); - jQuery("#nickInput").focus(); - $if(user_nick)$ - $else$ - $endif$ - </script> - $google_analytics()$ - </body> -</html> + <div id="big-image"></div> + <script type="text/javascript" src="/static/js/pages/fullscreen_init.js?v=20260203"></script> + $google_analytics()$ + </body> + </html> diff --git a/template/fullscreen_front.st b/template/fullscreen_front.st index b0bfb4d..2eadf1f 100755 --- a/template/fullscreen_front.st +++ b/template/fullscreen_front.st @@ -7,19 +7,12 @@ <script> var LoggedIn = $if(user_nick)$true$else$false$endif$; var Timestamp = $timestamp$; - 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(startChatUpdater); </script> - <link rel="stylesheet" type="text/css" href="/static/css/fullscreen_base.css?v=20260131"> + <script type="text/javascript" src="/static/js/pages/fullscreen_front_init.js?v=20260203"></script> + <link rel="stylesheet" type="text/css" href="/static/css/fullscreen_base.css?v=20260131"> <link rel="stylesheet" type="text/css" href="/static/css/fullscreen_bigtext.css?v=20260129"> </head> <body> - <script> - initFullscreen() - </script> + <script type="text/javascript" src="/static/js/pages/fullscreen_front_run.js?v=20260203"></script> </body> </html> diff --git a/template/hiscore_test.st b/template/hiscore_test.st index 50e7b9e..7e0c679 100755 --- a/template/hiscore_test.st +++ b/template/hiscore_test.st @@ -1,11 +1,12 @@ <html> <head> - <title>dump.fm log</title> -$head()$ - <script> - jQuery(document).ready(initLog); - </script> - </head> + <title>dump.fm log</title> + $head()$ + <script> + var Recips = []; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + </head> <body> $banner()$ <div id="content"> diff --git a/template/log.st b/template/log.st index c235ae8..241a06a 100755 --- a/template/log.st +++ b/template/log.st @@ -1,14 +1,12 @@ <html> <head> - <title>dump.fm log</title> - $head()$ - <script> - var Recips = []; - jQuery(function() { - initLog(Recips) - }); - </script> - </head> + <title>dump.fm log</title> + $head()$ + <script> + var Recips = []; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + </head> <body> $banner()$ <div id="content"> @@ -57,6 +55,6 @@ </div> </div></div></div> -<script type="text/javascript">load_favs()</script> - </body> -</html> + <script type="text/javascript" src="/static/js/pages/log_favs_init.js?v=20260203"></script> + </body> + </html> diff --git a/template/newlog.st b/template/newlog.st index 19b4481..e1f987a 100755 --- a/template/newlog.st +++ b/template/newlog.st @@ -43,10 +43,8 @@ window.location = "/error/ie"; <!--END HEAD--> <script> var Recips = []; - jQuery(function() { - initLog(Recips) - }); </script> +<script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> </head> <body> diff --git a/template/popular.st b/template/popular.st index 162c63b..c07d6ba 100755 --- a/template/popular.st +++ b/template/popular.st @@ -1,14 +1,13 @@ <html> <head> - <title>dump.fm - $nick$'s popular</title> - $head()$ - <script> - jQuery(function() { - initLog($recips$); - }); - </script> + <title>dump.fm - $nick$'s popular</title> + $head()$ + <script> + var Recips = $recips$; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> - </head> + </head> <body> $banner()$ <div id="dcontent"> @@ -45,5 +44,5 @@ </div> </div> </div> - </body> -</html> + </body> + </html> diff --git a/template/simplerlog.st b/template/simplerlog.st index 7e68473..9acc742 100755 --- a/template/simplerlog.st +++ b/template/simplerlog.st @@ -41,24 +41,12 @@ $endif$ <!--END HEAD--> <script> var Recips = []; - jQuery(function() { - initLog(Recips) - }); + var MasonryColumnWidth = 270; </script> +<script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> - <script> -jQuery(window).load(function(){ - jQuery('#posts').masonry({ columnWidth: 270 }); - jQuery('#posts').masonry({ singleMode: true }); - jQuery('#posts').masonry({ resizeable: true }); - jQuery('#posts').masonry({ animate: true}); - - - }); -</script> - - - + + </head> @@ -216,6 +204,6 @@ $debug_log()$ <span class="loading-bar-label">Loading...</span> <span class="loading-bar-track"><span id="LB1" class="loading-bar-fill"></span></span> </span> -<script type="text/javascript">m00=document.getElementsByTagName("img");m01=m00.length;function images_loading_bar(){m02=0;for(i=0;i<m01;i++)m02+=(m00[i].complete)?1:0;document.getElementById("LB1").style.width=Math.round(m02/m01*100)+'px';if(m02==m01)setTimeout("document.getElementById('LB0').style.display='none'",128); else setTimeout("images_loading_bar()", 64);};images_loading_bar();</script> +<script type="text/javascript">if (typeof images_loading_bar === "function") { images_loading_bar(); }</script> </body> </html> diff --git a/template/single_message.st b/template/single_message.st index 352b2ea..4b08490 100755 --- a/template/single_message.st +++ b/template/single_message.st @@ -1,13 +1,12 @@ <html> <head> - <title>dump.fm</title> - $head()$ - <script> - jQuery(function() { - initLog($recips$); - }); - </script> - </head> + <title>dump.fm</title> + $head()$ + <script> + var Recips = $recips$; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + </head> <body class="permalink"> $banner()$ <div class="content"><br><br><br> @@ -39,5 +38,5 @@ $footer()$ </div> </div> - </body> -</html> + </body> + </html> diff --git a/template/tagged_dumps.st b/template/tagged_dumps.st index f169aab..3de9509 100755 --- a/template/tagged_dumps.st +++ b/template/tagged_dumps.st @@ -1,13 +1,16 @@ <html> <head> - <title>dump.fm - $page_title$</title> - $head()$ - <script> - jQuery(function() { - initLog($recips$); - }); - </script> - </head> + <title>dump.fm - $page_title$</title> + $head()$ + <script> + $if(recips)$ + var Recips = $recips$; + $else$ + var Recips = []; + $endif$ + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + </head> <body> $banner()$ <div id="dcontent"> @@ -45,5 +48,5 @@ </div> </div> </div> - </body> -</html> + </body> + </html> diff --git a/template/topic.st b/template/topic.st index 1594364..a748a20 100755 --- a/template/topic.st +++ b/template/topic.st @@ -1,13 +1,12 @@ <html> <head> - <title>#$topic$ - dump.fm</title> - $head()$ - <script> - jQuery(function() { - initLog($recips$); - }); - </script> - </head> + <title>#$topic$ - dump.fm</title> + $head()$ + <script> + var Recips = $recips$; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + </head> <body> $banner()$ <div id="content"> @@ -44,5 +43,5 @@ </div> </div> </div> - </body> -</html> + </body> + </html> diff --git a/template/userlog.st b/template/userlog.st index 1dacade..bfe2628 100755 --- a/template/userlog.st +++ b/template/userlog.st @@ -1,13 +1,12 @@ <html> <head> - <title>$nick$'s dump.fm</title> - $head()$ - <script> - jQuery(function() { - initLog($recips$); - }); - </script> - </head> + <title>$nick$'s dump.fm</title> + $head()$ + <script> + var Recips = $recips$; + </script> + <script type="text/javascript" src="/static/js/pages/log_init.js?v=20260203"></script> + </head> <body> $banner()$ <div id="dcontent"> @@ -43,5 +42,5 @@ </div> </div> - </body> -</html> + </body> + </html> |
