Slave Famous Become Wrath 34079 Posts user info edit post |
Its like that sound before the time shift on LOST 12/13/2009 10:59:23 PM |
fleetwud AmbitiousButRubbish 49741 Posts user info edit post |
V.02 12/13/2009 11:07:58 PM |
qntmfred retired 40723 Posts user info edit post |
wouldn't be surprised if there's some slowness tonight 12/15/2009 9:25:36 PM |
Jen All American 10527 Posts user info edit post |
Quote : | "t
look, dude, look
you're SERIOUSLY f'n up my PM e-game right now" |
12/15/2009 9:35:12 PM |
qntmfred retired 40723 Posts user info edit post |
ok, things are gonna be either really awesome or totally fubar in a short while 12/19/2009 2:53:20 PM |
wawebste All American 19599 Posts user info edit post |
awesome how? 12/19/2009 2:56:28 PM |
qntmfred retired 40723 Posts user info edit post |
i'll ask the questions around here ok
[Edited on December 19, 2009 at 3:00 PM. Reason : major database improvements] 12/19/2009 2:59:55 PM |
wawebste All American 19599 Posts user info edit post |
^don't take that tone with me 12/19/2009 3:02:00 PM |
DeltaBeta All American 9417 Posts user info edit post |
TWW takes things that are totally awesome and makes them totally fubar on a daily basis. We'll continue on with the status quo in case this doesn't work out qntmly.
[Edited on December 19, 2009 at 3:03 PM. Reason : *] 12/19/2009 3:03:28 PM |
qntmfred retired 40723 Posts user info edit post |
heads up 12/23/2009 12:40:35 AM |
EMCE balls deep 89771 Posts user info edit post |
thx 12/23/2009 12:40:59 AM |
BIGcementpon Status Name 11318 Posts user info edit post |
Quote : | "WONKY
SHIT
IMMINENT" |
12/23/2009 12:41:27 AM |
qntmfred retired 40723 Posts user info edit post |
everybody still here? 12/23/2009 12:56:01 AM |
wdprice3 BinaryBuffonary 45912 Posts user info edit post |
MY GOD, EVERYONE IS GONE. 12/23/2009 8:21:48 AM |
FroshKiller All American 51911 Posts user info edit post |
Noticing that the TITLE element isn't getting set on any pages. 12/23/2009 8:25:14 AM |
Biofreak70 All American 33197 Posts user info edit post |
WONKY SHIT!!! 12/23/2009 8:26:16 AM |
FroshKiller All American 51911 Posts user info edit post |
Also, it looks like many attributes are no longer wrapped in quotation marks, e.g. the HREF attributes of most anchors.
[Edited on December 23, 2009 at 8:29 AM. Reason : man-e-faces] 12/23/2009 8:29:19 AM |
wdprice3 BinaryBuffonary 45912 Posts user info edit post |
^^^I, too, just noticed this. 12/23/2009 8:34:34 AM |
qntmfred retired 40723 Posts user info edit post |
i don't think the attributes had quotation marks before either
[Edited on December 23, 2009 at 9:38 AM. Reason : i'll look at the title jazz though] 12/23/2009 9:37:57 AM |
JTMONEYNCSU All American 24529 Posts user info edit post |
OH WE FUCKED 12/23/2009 9:39:22 AM |
qntmfred retired 40723 Posts user info edit post |
titles are back 12/23/2009 10:31:17 AM |
AstralEngine All American 3864 Posts user info edit post |
that eyeball video really freaks me out... 12/23/2009 10:36:20 AM |
qntmfred retired 40723 Posts user info edit post |
how's everybody doing today? good? great.
bump. 12/23/2009 1:05:26 PM |
zorthage 1+1=5 17148 Posts user info edit post |
12/23/2009 4:19:22 PM |
Tarun almost 11687 Posts user info edit post |
12/23/2009 4:46:03 PM |
wdprice3 BinaryBuffonary 45912 Posts user info edit post |
Is it just me or are none of the tag/smilie buttons working?????? 12/23/2009 7:52:32 PM |
synapse play so hard 60935 Posts user info edit post |
just u 12/23/2009 7:57:11 PM |
ScHpEnXeL Suspended 32613 Posts user info edit post |
just you. 12/23/2009 7:57:15 PM |
wdprice3 BinaryBuffonary 45912 Posts user info edit post |
lies 12/23/2009 7:58:07 PM |
qntmfred retired 40723 Posts user info edit post |
browser? 12/23/2009 8:13:24 PM |
wdprice3 BinaryBuffonary 45912 Posts user info edit post |
FF3.5.6
apparently a GM script is causing it... any recent updates that may cause a script to cause this?
ok, my insert at cursor script is causing this... I've had this script installed for a while and this issue just started.... so is this on your end or mine?
// ==UserScript== // @name InsertAtCursor // @namespace tww.fixes // @description Inserts text from button click or copy & paste at cursor location // @include *thewolfweb.com/* // @include *brentroad.com/* // ==/UserScript==
// borrowed from the intarweb document.getElementsByClassName = function(cl) { var retnode = []; var myclass = new RegExp('\\b'+cl+'\\b'); var elem = this.getElementsByTagName('*'); for (var i = 0; i < elem.length; i++) { var classes = elem[i].className; if (myclass.test(classes)) retnode.push(elem[i]); } return retnode; };
// also borrowed and modified function insertAtCursor(event) { insertText = this.getAttribute('title'); // if the className is fb (NOT fb_down, because the class has been changed by now) // AND it's a start/end tag, make it an ending tag if(this.className == 'fb' && insertText.indexOf('[') != -1) { insertText = insertText.substr(0,1) + '/' + insertText.substr(1, insertText.length - 1); }
field = document.getElementById('_ctl0_body'); if (field.selectionStart || field.selectionStart == '0') { field.focus(); var startPos = field.selectionStart; var endPos = field.selectionEnd; field.value = field.value.substring(0, startPos) + insertText + field.value.substring(endPos, field.value.length); field.setSelectionRange(endPos+insertText.length, endPos+insertText.length); // behave with default } else { field.value += insertText; } }
// bind click listener to all "fb" class items var buttons = document.getElementsByClassName('fb'); var field = document.getElementById('_ctl0_body');
for(var i = 0; i < buttons.length; i++) { var button = buttons[i]; var clickEvent = button.getAttribute('onClick'); var insertText = ""; if(clickEvent) { // tag // overwrite the default onclick behavior button.setAttribute("onClick","if(className=='fb_down'){className='fb';}else{className='fb_down';}"); insertText = clickEvent.substring( clickEvent.indexOf('['), clickEvent.indexOf(']', clickEvent.indexOf('[')) + 1 ); } else { // smiley or prompt // overwrite the default onMouseUp behavior var upEvent = button.getAttribute('onMouseUp'); if(upEvent.indexOf('prompt') == -1) { // smiley button.setAttribute("onMouseUp","if(className == 'fb_down'){className='fb';}"); insertText = upEvent.substring( upEvent.indexOf("addtext('") + 10, upEvent.indexOf("')", upEvent.indexOf("addtext('")) - 1 ); } else { // prompt // get rid of old prompt, people know how to copy & paste now. button.setAttribute("onMouseUp",""); button.setAttribute("onMouseDown",""); button.setAttribute("onMouseOut",""); button.setAttribute("onClick","if(className=='fb_down'){className='fb';}else{className='fb_down';}"); if(upEvent.indexOf('[link]') != -1) { insertText = '[link]'; } else if(upEvent.indexOf('[image]') != -1) { insertText = '[image]'; } } }
var buttonID = "button-" + i; button.setAttribute("id", buttonID); button.setAttribute("title", insertText); document.getElementById(buttonID).addEventListener('click', insertAtCursor, false); }
[Edited on December 23, 2009 at 8:26 PM. Reason : .]12/23/2009 8:21:05 PM |
qntmfred retired 40723 Posts user info edit post |
well, i did make a pretty significant update last night, so it's possible. but since i haven't heard it from any other people, and i'm using FF 3.5.6 right now with no problems, i'd say not likely due to this change 12/23/2009 8:28:14 PM |
BigMan157 no u 103354 Posts user info edit post |
OH GOD WHAT IS HAPPENING 1/11/2010 2:14:06 PM |
pttyndal WINGS!!!!! 35217 Posts user info edit post |
1/11/2010 2:14:57 PM |
mawle427 All American 22137 Posts user info edit post |
^^ wonky shit.
obviously. 1/11/2010 2:15:39 PM |
thegoodlife3 All American 39298 Posts user info edit post |
we wasn't warned 1/11/2010 2:16:16 PM |
saps852 New Recruit 80068 Posts user info edit post |
THE SKY IS FALLING 1/11/2010 2:17:10 PM |
sparky Garage Mod 12301 Posts user info edit post |
balls ass slow 1/11/2010 2:17:50 PM |
wdprice3 BinaryBuffonary 45912 Posts user info edit post |
I DID NOT PAY FOR THIS TYPE OF EXPERIENCE. 1/11/2010 2:18:13 PM |
thumper All American 21574 Posts user info edit post |
OH WE BACK] 1/11/2010 2:18:22 PM |
qntmfred retired 40723 Posts user info edit post |
oh hay 1/11/2010 2:32:05 PM |
qntmfred retired 40723 Posts user info edit post |
heads up 1/31/2010 12:14:04 AM |
Tarun almost 11687 Posts user info edit post |
1/31/2010 12:24:28 AM |
qntmfred retired 40723 Posts user info edit post |
1/31/2010 11:36:26 PM |
qntmfred retired 40723 Posts user info edit post |
going down for a few minutes at midnight k 1/31/2010 11:57:29 PM |
Chop All American 6271 Posts user info edit post |
1/31/2010 11:58:51 PM |
qntmfred retired 40723 Posts user info edit post |
ok it's over. shit should be pretty speedy from here on out
actually, i'm gonna run some database reports to make sure things are as ok as i think they are. will probably be some slowness for the next little while THEN shit will be speedy
[Edited on February 1, 2010 at 12:06 AM. Reason : THEN] 2/1/2010 12:02:31 AM |
mdbncsu All American 4923 Posts user info edit post |
Like 2/1/2010 8:57:22 AM |
pilgrimshoes Suspended 63151 Posts user info edit post |
Quote : | "going down for a few minutes at midnight k" |
just like your mother!2/1/2010 9:38:47 AM |
ScHpEnXeL Suspended 32613 Posts user info edit post |
OH SICK BURN 2/1/2010 9:39:51 AM |