Options:
- # Session Start: Sat Oct 08 00:00:01 2011
- # Session Ident: #whatwg
- # [00:00] <Hixie> i can say that if you like
- # [00:00] <annevk> the event listeners associated with the EventTarget surely change in some way?
- # [00:01] <Hixie> no
- # [00:02] <Hixie> all that changes is the value of the event handler
- # [00:02] <Hixie> (which i think is already defined)
- # [00:02] <Hixie> (but i can check in a sec)
- # [00:02] <Hixie> the event listener itself is just a small anonymous function that calls the event handler if it's not null
- # [00:02] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [00:02] <Hixie> all event listeners that have ever been set to a non-null value have the same one
- # [00:02] <Hixie> the same anonymous function, i mean
- # [00:03] <annevk> oh interesting
- # [00:04] <annevk> I wonder if that's exposed in any way
- # [00:04] <Hixie> if it wasn't done that way "return false" wouldn't work
- # [00:05] * Quits: davidb_ (~davidb@bas1-toronto06-2925210074.dsl.bell.ca) (Quit: davidb_)
- # [00:07] * Joins: davidb (~davidb@bas1-toronto06-2925210074.dsl.bell.ca)
- # [00:07] * Quits: KillerX (~anant@206-15-76-122.static.twtelecom.net) (Remote host closed the connection)
- # [00:07] * Joins: KillerX (~anant@206-15-76-122.static.twtelecom.net)
- # [00:11] * Joins: KillerX_ (~anant@206-15-76-122.static.twtelecom.net)
- # [00:11] * Quits: KillerX (~anant@206-15-76-122.static.twtelecom.net) (Ping timeout: 258 seconds)
- # [00:11] * KillerX_ is now known as KillerX
- # [00:15] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [00:16] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [00:17] <Hixie> annevk: what does "a Function object" mean in DOM Core?
- # [00:17] <Hixie> a JS Function object?
- # [00:17] <Hixie> or an object implementing the HTML spec's Function interface?
- # [00:17] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:28f7:e3b3:1932:8a7f) (Ping timeout: 244 seconds)
- # [00:19] <Hixie> and is the callback this value for addEventListener() really the target, not the currentTarget?
- # [00:19] <Hixie> for event handlers it's the currentTarget, right?
- # [00:20] <annevk> yeah, ECMAScript
- # [00:20] <smaug____> callback this value must be currentTarget
- # [00:22] * Quits: davidb (~davidb@bas1-toronto06-2925210074.dsl.bell.ca) (Quit: davidb)
- # [00:23] * Joins: RobbertAtWork (~Robbert@a83-160-99-114.adsl.xs4all.nl)
- # [00:23] <smaug____> (well, of course not if callback is actually an object, not a function)
- # [00:24] <annevk> smaug____, thanks fixed
- # [00:24] <annevk> Hixie, I wasn't sure how to mark up Function
- # [00:24] <Hixie> yeah
- # [00:25] <annevk> Hixie, it's currentTarget for both apparently, didn't test properly :(
- # [00:25] <Hixie> k
- # [00:25] <annevk> but the spec is fixed now
- # [00:27] <annevk> oops, bedtime, ttyl
- # [00:28] * bga_|away is now known as bga_
- # [00:29] <michaelw> if a script element which has async or defer set is removed from the document tree *before* the script actually run, should it still run eventually?
- # [00:30] <Hixie> i believe the answer is no
- # [00:30] <Hixie> wait
- # [00:30] <michaelw> anything else would've raised more questions :)
- # [00:30] <Hixie> it depends on whether the element was inserted by the parser or not
- # [00:31] <Hixie> see a Function object
- # [00:31] <Hixie> er
- # [00:31] <Hixie> see http://www.whatwg.org/specs/web-apps/current-work/#execute-the-script-block
- # [00:31] * michaelw looks
- # [00:33] * Joins: cygri (~cygri@109.255.150.223)
- # [00:33] <Hixie> annevk: dom core doesn't pass the Event object to the listener!
- # [00:36] * Quits: cygri (~cygri@109.255.150.223) (Client Quit)
- # [00:45] <michaelw> Hixie: hmm, I don't see it in the section you referenced, but in the section directly above (in particular, step 15), I could read it that way, because the defer scripts go to the "list of scripts that will execute when the document has finished parsing" (and async scripts to the "set of scripts that will execute ASAP")
- # [00:47] <michaelw> however, fun starts if a defer script is in that lists, and the document is blown away and a new one is created (which I understand is possible)...
- # [00:50] * Quits: Amorphous (jan@unaffiliated/amorphous) (Ping timeout: 255 seconds)
- # [00:51] * Quits: tomasf (~tom@c-5ed9e555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Quit: tomasf)
- # [00:53] * Quits: RobbertAtWork (~Robbert@a83-160-99-114.adsl.xs4all.nl) (Quit: RobbertAtWork)
- # [01:00] * Quits: KillerX (~anant@206-15-76-122.static.twtelecom.net) (Quit: KillerX)
- # [01:02] <Hixie> michaelw: if the document is blown away, the list is never used, is it?
- # [01:02] <Hixie> i don't recall exactly where the list is used
- # [01:02] <Hixie> in the parser is one place
- # [01:02] <Hixie> i think in the script section is the other, there's some text somewhere that talks about it
- # [01:02] <Hixie> this particular part of hte spec is one of the most complicated aspects of the web platform, fwiw
- # [01:02] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [01:03] * Quits: zewt (~x@c-24-62-196-44.hsd1.ma.comcast.net) (Ping timeout: 258 seconds)
- # [01:05] * Joins: Amorphous (jan@unaffiliated/amorphous)
- # [01:06] <michaelw> Hixie: even for the case that a script wants to remove everything from a document, there is no way to avoid executing the (then potentially unneeded) async and defer scripts
- # [01:06] <michaelw> (by everything I mean all nodes)
- # [01:08] * Joins: zewt (~x@c-24-62-196-44.hsd1.ma.comcast.net)
- # [01:10] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [01:11] * Quits: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net) (Ping timeout: 256 seconds)
- # [01:12] * Joins: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [01:17] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Quit: Reading http://davidwalsh.name)
- # [01:21] * Quits: jwalden (~waldo@2620:101:8003:200:221:6aff:fe6e:d10) (Quit: bbl)
- # [01:32] * Joins: danbeam (~bitlbee@unaffiliated/danbeam)
- # [01:33] <danbeam> anybody know if there's a specified way to remove a branch of the DOM tree from the tab order?
- # [01:34] <smaug____> removeChild
- # [01:34] * Joins: cygri (~cygri@109.255.150.223)
- # [01:34] <smaug____> (I guess you mean something else)
- # [01:37] <Hixie> michaelw: oh well you can just put an if statement at the top of the script and set a flag that it checks to decide to not bother :-)
- # [01:39] <danbeam> smaug____: no, from the tab order, not the DOM
- # [01:39] <danbeam> smaug____: i.e. tabindex="-1" works hiearchically
- # [01:40] <danbeam> I've always found a pain to have to remove every focusable element from the tab order manually rather than just set an indicator on an ancestor
- # [01:44] * Quits: cygri (~cygri@109.255.150.223) (Ping timeout: 252 seconds)
- # [01:46] <smaug____> danbeam: you really want only remove tab-to-focus, not focus-using-mouse ?
- # [01:54] <danbeam> smaug____: tab focus, yeah
- # [02:00] * Joins: jwalden (~waldo@2620:101:8003:200:224:d7ff:fef0:8d90)
- # [02:06] * Quits: ojan (ojan@nat/google/x-bariwvjazsxdpuah) (Quit: ojan)
- # [02:07] * Quits: jwalden (~waldo@2620:101:8003:200:224:d7ff:fef0:8d90) (Quit: brb)
- # [02:07] * Joins: jwalden (~waldo@2620:101:8003:200:224:d7ff:fef0:8d90)
- # [02:11] * Quits: jwalden (~waldo@2620:101:8003:200:224:d7ff:fef0:8d90) (Client Quit)
- # [02:12] * Joins: jwalden (~waldo@2620:101:8003:200:224:d7ff:fef0:8d90)
- # [02:14] * Quits: dbaron (~dbaron@206-15-76-122.static.twtelecom.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [02:14] * Quits: hasather_ (~hasather_@84.38.144.96) (Remote host closed the connection)
- # [02:15] * Quits: Telling (~unknown@80-71-135-15.u.parknet.dk) (Quit: ...)
- # [02:24] * Quits: ap (~ap@2620:149:4:1b01:98bb:2bc8:39ff:7e4a) (Quit: ap)
- # [02:25] * bga_ is now known as bga_|away
- # [02:32] * bga_|away is now known as bga_
- # [02:39] * Quits: astearns (~anonymous@192.150.22.5) (Ping timeout: 252 seconds)
- # [02:43] * Joins: MikeSmith (~MikeSmith@EM114-51-74-33.pool.e-mobile.ne.jp)
- # [02:53] * Quits: sicking (~chatzilla@c-98-210-155-80.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [02:54] * Joins: sicking (~chatzilla@c-98-210-155-80.hsd1.ca.comcast.net)
- # [02:57] * bga_ is now known as bga_|away
- # [02:57] * Joins: benjoffe_ (~benjoffe_@CPE-121-218-225-100.lnse4.cht.bigpond.net.au)
- # [02:58] * bga_|away is now known as bga_
- # [03:01] * Quits: jacobolus (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [03:01] * Quits: smaug____ (~chatzilla@GZKCLXVI.gprs.sl-laajakaista.fi) (Ping timeout: 248 seconds)
- # [03:07] * bga_ is now known as bga_|away
- # [03:07] * Quits: bga_|away (~bga@ppp91-122-183-128.pppoe.avangarddsl.ru) (Read error: Connection reset by peer)
- # [03:11] * Quits: ezoe_ (~ezoe@203-140-88-114f1.kyt1.eonet.ne.jp) (Ping timeout: 276 seconds)
- # [03:14] * Joins: gavin__ (~gavin@people.mozilla.com)
- # [03:16] * Quits: kling (~kling@nat/trolltech/x-qwpvvzokryssrxbg) (Ping timeout: 258 seconds)
- # [03:16] * Quits: gavin (~gavin@firefox/developer/gavin) (Ping timeout: 252 seconds)
- # [03:17] * Quits: annevk (~annevk@5355737B.cm-6-6b.dynamic.ziggo.nl) (Ping timeout: 252 seconds)
- # [03:26] * Joins: jacobolus (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net)
- # [03:28] * Quits: rillian__ (~rillian@184.71.166.126) (Remote host closed the connection)
- # [03:36] * Joins: kling (~kling@nat/trolltech/x-omqvoqiwxabkgadk)
- # [03:44] * Joins: ezoe (~ezoe@203.140.91.226)
- # [03:45] * Quits: sicking (~chatzilla@c-98-210-155-80.hsd1.ca.comcast.net) (Ping timeout: 252 seconds)
- # [03:50] * Quits: rniwa (rniwa@nat/google/x-xheiraxfbcaxqorf) (Quit: rniwa)
- # [03:54] * Joins: astearns (~anonymous@50.132.63.33)
- # [04:02] * Quits: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net) (Quit: Snak 5.3.3 IRC For Macintosh - http://www.snak.com)
- # [04:02] * Joins: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [04:10] * Joins: mdelaney (~mdelaney@65.50.217.159)
- # [04:35] * Joins: dbaron (~dbaron@173.228.28.227)
- # [04:35] * Quits: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com) (Quit: ChatZilla 0.9.87-rdmsoft [XULRunner 1.9.0.1/2008072406])
- # [04:47] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [04:47] * Quits: scor (~scor@drupal.org/user/52142/view) (Client Quit)
- # [04:57] * Joins: astearns_ (~anonymous@c-50-132-63-33.hsd1.wa.comcast.net)
- # [04:57] * Quits: astearns (~anonymous@50.132.63.33) (Ping timeout: 260 seconds)
- # [04:57] * astearns_ is now known as astearns
- # [05:13] * Quits: mdelaney (~mdelaney@65.50.217.159) (Quit: mdelaney)
- # [05:24] * Quits: othree (~othree@admin39.ct.ntust.edu.tw) (Quit: Lost terminal)
- # [05:26] * Joins: othree (~othree@admin39.ct.ntust.edu.tw)
- # [05:28] * Joins: AlexNRoss (~AleossIRC@unaffiliated/aleoss)
- # [05:30] * Joins: nonge_ (~nonge@p5B326EF9.dip.t-dialin.net)
- # [05:32] * Joins: nessy (~Adium@124-168-52-143.dyn.iinet.net.au)
- # [05:34] * Quits: nonge (~nonge@p5B3262E3.dip.t-dialin.net) (Ping timeout: 258 seconds)
- # [05:37] * danbeam is now known as danbeam__
- # [05:39] * Joins: miketaylr (~miketaylr@cpe-72-177-54-44.austin.res.rr.com)
- # [05:43] * Quits: nessy (~Adium@124-168-52-143.dyn.iinet.net.au) (Quit: Leaving.)
- # [05:43] * Quits: Bass2 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Quit: Leaving)
- # [05:46] * bentruyman is now known as sean```
- # Session Close: Sat Oct 08 05:49:05 2011
- #
- # Session Start: Sat Oct 08 05:49:05 2011
- # Session Ident: #whatwg
- # [05:49] * Disconnected
- # [05:50] * Attempting to rejoin channel #whatwg
- # [05:50] * Rejoined channel #whatwg
- # [05:50] * Topic is 'WHATWG: http://www.whatwg.org/ -- logs: http://krijnhoetmer.nl/irc-logs/ -- stats: http://gavinsharp.com/irc/whatwg.html -- Please leave your sense of logic at the door, thanks!'
- # [05:50] * Set by annevk42 on Mon Oct 19 23:03:06
- # [05:50] -barjavel.freenode.net:#whatwg- [freenode-info] channel trolls and no channel staff around to help? please check with freenode support: http://freenode.net/faq.shtml#gettinghelp
- # [05:54] * Quits: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi) (Ping timeout: 260 seconds)
- # [05:58] * Quits: miketaylr (~miketaylr@cpe-72-177-54-44.austin.res.rr.com) (Read error: Connection reset by peer)
- # [06:02] * Joins: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
- # [06:02] * Joins: miketaylr (~miketaylr@cpe-72-177-54-44.austin.res.rr.com)
- # [06:15] * nunnun_away is now known as nunnun
- # [06:27] * danbeam__ is now known as danbeam
- # [06:45] * Quits: jwalden (~waldo@2620:101:8003:200:224:d7ff:fef0:8d90) (Quit: ChatZilla 0.9.87-2.1450hg.fc15 [XULRunner 7.0.1/20110930134335])
- # [06:47] * Joins: rniwa (~rniwa@216.239.45.130)
- # [06:56] * Joins: Dashimon (Dashiva@84-72-45-52.dclient.hispeed.ch)
- # [06:56] * Quits: Dashimon (Dashiva@84-72-45-52.dclient.hispeed.ch) (Changing host)
- # [06:56] * Joins: Dashimon (Dashiva@wikia/Dashiva)
- # [06:57] * Quits: Dashiva (Dashiva@wikia/Dashiva) (Ping timeout: 252 seconds)
- # [06:57] * Dashimon is now known as Dashiva
- # [07:03] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:03] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:06] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:06] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:07] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:08] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:10] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:10] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:10] * Joins: cygri (~cygri@109.255.150.223)
- # [07:13] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:13] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:b042:56d2:cf0b:f18c)
- # [07:13] * Quits: cygri (~cygri@109.255.150.223) (Client Quit)
- # [07:14] * Quits: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi) (Ping timeout: 276 seconds)
- # [07:18] * Quits: miketaylr (~miketaylr@cpe-72-177-54-44.austin.res.rr.com) (Quit: miketaylr)
- # [07:21] * Joins: Rik`_ (~Rik`@2a01:e34:ec0f:1570:f467:83ae:9ce6:18a2)
- # [07:24] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:b042:56d2:cf0b:f18c) (Ping timeout: 240 seconds)
- # [07:39] * Quits: benjoffe_ (~benjoffe_@CPE-121-218-225-100.lnse4.cht.bigpond.net.au) (Remote host closed the connection)
- # [07:42] * Joins: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
- # [07:50] * Quits: dbaron (~dbaron@173.228.28.227) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [07:54] * Joins: benjoffe_ (~benjoffe_@CPE-121-218-225-100.lnse4.cht.bigpond.net.au)
- # [08:06] * Joins: erlehmann (~erlehmann@82.113.99.17)
- # [08:13] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [08:20] * Parts: danbeam (~bitlbee@unaffiliated/danbeam) ("lates")
- # [08:31] * Quits: benjoffe_ (~benjoffe_@CPE-121-218-225-100.lnse4.cht.bigpond.net.au) (Remote host closed the connection)
- # [08:31] <erlehmann> since most of you are probably older than me (23): how often do amok deletes like the one of mark pilgrim happen in general?
- # [08:43] * Quits: Rik`_ (~Rik`@2a01:e34:ec0f:1570:f467:83ae:9ce6:18a2) (Remote host closed the connection)
- # [08:43] * Joins: MikeSmith_ (~MikeSmith@EM114-51-71-91.pool.e-mobile.ne.jp)
- # [08:43] * Quits: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net) (Quit: The computer fell asleep)
- # [08:43] * Joins: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [08:46] * Quits: MikeSmith (~MikeSmith@EM114-51-74-33.pool.e-mobile.ne.jp) (Ping timeout: 240 seconds)
- # [08:46] * MikeSmith_ is now known as MikeSmith
- # [08:48] * Quits: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net) (Ping timeout: 252 seconds)
- # [08:53] * Joins: benjoffe_ (~benjoffe_@CPE-121-218-225-100.lnse4.cht.bigpond.net.au)
- # [09:09] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 248 seconds)
- # [09:09] * Joins: cygri (~cygri@109.255.150.223)
- # [09:09] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [09:10] * Quits: cygri (~cygri@109.255.150.223) (Client Quit)
- # [09:14] * Joins: temp02 (~temp01@unaffiliated/temp01)
- # [09:14] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 248 seconds)
- # [09:19] * Joins: GlitchMr (~glitchmr@178-36-28-44.adsl.inetia.pl)
- # [09:19] * Joins: cygri (~cygri@109.255.150.223)
- # [09:33] * Quits: ezoe (~ezoe@203.140.91.226) (Ping timeout: 260 seconds)
- # [09:40] * Quits: AlexNRoss (~AleossIRC@unaffiliated/aleoss) (Read error: Connection reset by peer)
- # [09:44] * Joins: AlexNRoss (~AleossIRC@unaffiliated/aleoss)
- # [09:45] * Joins: RobbertAtWork (~Robbert@a83-160-99-114.adsl.xs4all.nl)
- # [09:49] * Joins: dydx (~dydz@adsl-75-36-191-227.dsl.pltn13.sbcglobal.net)
- # [09:49] * Quits: dydx (~dydz@adsl-75-36-191-227.dsl.pltn13.sbcglobal.net) (Client Quit)
- # [09:53] * Joins: Ms2ger (~Ms2ger@91.181.28.204)
- # [10:04] * Joins: tomasf (~tom@c-5ed9e555.024-204-6c6b7012.cust.bredbandsbolaget.se)
- # [10:07] * Quits: rniwa (~rniwa@216.239.45.130) (Quit: rniwa)
- # [10:07] * Joins: ezoe (~ezoe@203-140-91-204f1.kyt1.eonet.ne.jp)
- # [10:11] * Joins: astearns_ (~anonymous@c-50-132-63-33.hsd1.wa.comcast.net)
- # [10:11] * Quits: astearns (~anonymous@c-50-132-63-33.hsd1.wa.comcast.net) (Read error: Connection reset by peer)
- # [10:11] * astearns_ is now known as astearns
- # [10:12] * Quits: erlehmann (~erlehmann@82.113.99.17) (Quit: Ex-Chat)
- # [10:29] * Quits: cygri (~cygri@109.255.150.223) (Quit: cygri)
- # [10:47] * Quits: benjoffe_ (~benjoffe_@CPE-121-218-225-100.lnse4.cht.bigpond.net.au) (Remote host closed the connection)
- # [11:30] * Quits: nunnun (~nunnun@irc.v6.nunnun.jp) (Read error: Operation timed out)
- # [11:30] * Joins: smaug____ (~chatzilla@GGDXCI.gprs.sl-laajakaista.fi)
- # [11:31] * Quits: ezoe (~ezoe@203-140-91-204f1.kyt1.eonet.ne.jp) (Ping timeout: 256 seconds)
- # [11:32] * Joins: benjoffe_ (~benjoffe_@CPE-121-218-225-100.lnse4.cht.bigpond.net.au)
- # [11:32] * Joins: annevk (~annevk@5355737B.cm-6-6b.dynamic.ziggo.nl)
- # [11:33] * Joins: nunnun (~nunnun@p2.nunnun.jp)
- # [11:33] * Joins: FlorianX (~Florian_S@p4FE2D7CB.dip.t-dialin.net)
- # [11:35] * Quits: smaug____ (~chatzilla@GGDXCI.gprs.sl-laajakaista.fi) (Ping timeout: 256 seconds)
- # [11:36] * Joins: smaug____ (~chatzilla@GGDXCI.gprs.sl-laajakaista.fi)
- # [11:40] * Quits: benjoffe_ (~benjoffe_@CPE-121-218-225-100.lnse4.cht.bigpond.net.au) (Remote host closed the connection)
- # [11:44] * Joins: bga_ (~bga@ppp91-122-183-128.pppoe.avangarddsl.ru)
- # [12:03] * bga_ is now known as bga_|away
- # [12:06] * Joins: cygri (~cygri@109.255.150.223)
- # [12:06] * Quits: Ms2ger (~Ms2ger@91.181.28.204) (Quit: brb)
- # [12:12] * Joins: virtuelv (~virtuelv_@247.183.189.109.customer.cdi.no)
- # [12:13] * Joins: charlvn (~charlvn@2001:0:53aa:64c:3c95:8b5:adb4:5bbb)
- # [12:15] * Joins: Telling (~unknown@80-71-135-15.u.parknet.dk)
- # [12:16] * Joins: Ms2ger (~Ms2ger@91.181.28.204)
- # [12:22] * Quits: virtuelv (~virtuelv_@247.183.189.109.customer.cdi.no) (Quit: Ex-Chat)
- # [12:24] * Quits: charlvn (~charlvn@2001:0:53aa:64c:3c95:8b5:adb4:5bbb) (Ping timeout: 244 seconds)
- # [12:27] * Quits: Necrathex (~nectop@82-170-160-25.ip.telfort.nl) (Ping timeout: 276 seconds)
- # [12:28] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [12:40] * Quits: nunnun (~nunnun@p2.nunnun.jp) (Ping timeout: 260 seconds)
- # [12:41] * Joins: nunnun (~nunnun@p2.nunnun.jp)
- # [13:04] * Quits: temp02 (~temp01@unaffiliated/temp01) (Ping timeout: 248 seconds)
- # [13:05] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [13:08] * Joins: FlorianX1 (~Florian_S@p4FE2D4F6.dip.t-dialin.net)
- # [13:09] * Quits: FlorianX (~Florian_S@p4FE2D7CB.dip.t-dialin.net) (Ping timeout: 240 seconds)
- # [13:12] * bga_|away is now known as bga_
- # [13:13] * bga_ is now known as bga_|away
- # [13:25] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [13:36] * Joins: Necrathex (~nectop@ip4da11daf.direct-adsl.nl)
- # [13:36] * Joins: virtuelv (~virtuelv_@247.183.189.109.customer.cdi.no)
- # [13:38] * bga_|away is now known as bga_
- # [13:40] * Quits: Lachy (~Lachy@cm-84.215.59.50.getinternet.no) (Quit: Computer has gone to sleep.)
- # [13:41] * Joins: Rik` (~Rik`@mozilla-paris-253-98.cnt.nerim.net)
- # [13:46] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 252 seconds)
- # [13:48] * bga_ is now known as bga_|away
- # [13:48] * Quits: bga_|away (~bga@ppp91-122-183-128.pppoe.avangarddsl.ru) (Read error: Connection reset by peer)
- # [13:56] * Quits: MikeSmith (~MikeSmith@EM114-51-71-91.pool.e-mobile.ne.jp) (Quit: MikeSmith)
- # [14:08] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [14:09] * Quits: jochen__ (jochen@nat/google/x-bkgqmflgqychvetw) (Remote host closed the connection)
- # [14:09] * Joins: jochen__ (jochen@nat/google/x-nbrnfepofyxjfmjz)
- # [14:42] * Joins: Lachy (~Lachy@cm-84.215.59.50.getinternet.no)
- # [14:54] * Quits: GlitchMr (~glitchmr@178-36-28-44.adsl.inetia.pl) (Read error: Connection reset by peer)
- # [15:11] * Quits: cygri (~cygri@109.255.150.223) (Quit: cygri)
- # [15:17] <Ms2ger> Philip`, yt?
- # [15:26] * Joins: esc_ (~esc-ape@78.inst-3.ufg.ac.at)
- # [15:38] * Quits: hasather_ (~hasather_@84.38.144.96) (Remote host closed the connection)
- # [15:48] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [15:52] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 258 seconds)
- # [15:52] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 252 seconds)
- # [16:03] * Quits: smaug____ (~chatzilla@GGDXCI.gprs.sl-laajakaista.fi) (Ping timeout: 245 seconds)
- # [16:06] * Joins: mpt (~mpt@canonical/mpt)
- # [16:07] * Joins: erlehmann (~erlehmann@89.204.153.87)
- # [16:11] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 248 seconds)
- # [16:16] * Joins: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com)
- # [16:20] * Quits: RobbertAtWork (~Robbert@a83-160-99-114.adsl.xs4all.nl) (Quit: RobbertAtWork)
- # [16:28] * Joins: cygri (~cygri@109.255.150.223)
- # [16:31] * Joins: RobbertAtWork (~Robbert@a83-160-99-114.adsl.xs4all.nl)
- # [16:39] * Quits: myakura (~myakura@FL1-203-136-181-177.tky.mesh.ad.jp) (Remote host closed the connection)
- # [16:41] * Joins: myakura (~myakura@FL1-203-136-181-177.tky.mesh.ad.jp)
- # [16:44] * Quits: FlorianX1 (~Florian_S@p4FE2D4F6.dip.t-dialin.net) (Quit: Leaving.)
- # [16:46] * Quits: nunnun (~nunnun@p2.nunnun.jp) (Ping timeout: 260 seconds)
- # [16:52] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [16:55] * Quits: tomasf (~tom@c-5ed9e555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Remote host closed the connection)
- # [16:55] * Joins: tomasf (~tom@c-5ed9e555.024-204-6c6b7012.cust.bredbandsbolaget.se)
- # [16:56] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [16:56] * Joins: GlitchMr (~glitchmr@178-36-28-44.adsl.inetia.pl)
- # [16:57] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 258 seconds)
- # [17:06] * Quits: Lachy (~Lachy@cm-84.215.59.50.getinternet.no) (Quit: Computer has gone to sleep.)
- # [17:25] * Quits: virtuelv (~virtuelv_@247.183.189.109.customer.cdi.no) (Quit: Ex-Chat)
- # [17:29] <Philip`> Ms2ger: Yes
- # [17:30] <Ms2ger> Philip`, could you have a look at https://bugzilla.mozilla.org/show_bug.cgi?id=407107#c1?
- # [17:33] <Ms2ger> Anyway, I'm off for today; please dump your answer in the logs :)
- # [17:33] * Quits: Ms2ger (~Ms2ger@91.181.28.204) (Quit: nn)
- # [17:35] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [17:39] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 252 seconds)
- # [17:46] * Quits: GlitchMr (~glitchmr@178-36-28-44.adsl.inetia.pl) (Read error: Connection reset by peer)
- # [17:47] <Philip`> Ms2ger: Replied on bug
- # [18:07] * Joins: GlitchMr (~glitchmr@178-36-28-44.adsl.inetia.pl)
- # [18:22] * Joins: Lachy (~Lachy@cm-84.215.59.50.getinternet.no)
- # [18:28] * Joins: benjoffe_ (~benjoffe_@CPE-121-218-225-100.lnse4.cht.bigpond.net.au)
- # [18:35] * Quits: RobbertAtWork (~Robbert@a83-160-99-114.adsl.xs4all.nl) (Quit: RobbertAtWork)
- # [18:36] * Quits: cygri (~cygri@109.255.150.223) (Quit: cygri)
- # [18:39] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [18:44] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 256 seconds)
- # [18:55] * Quits: AlexNRoss (~AleossIRC@unaffiliated/aleoss) (Quit: We love you, Dark Continent! Good night!)
- # [19:22] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [19:23] * Joins: hij1nx (~hij1nx@ip4da81495.direct-adsl.nl)
- # [19:24] * Joins: davidb (~davidb@bas1-toronto06-2925210074.dsl.bell.ca)
- # [19:26] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 248 seconds)
- # [19:31] * Quits: davidb (~davidb@bas1-toronto06-2925210074.dsl.bell.ca) (Quit: davidb)
- # [19:35] * Joins: davidb_ (~davidb@174.91.41.218)
- # [19:41] * Quits: hij1nx (~hij1nx@ip4da81495.direct-adsl.nl) (Quit: hij1nx)
- # [19:45] * Joins: shetech (~shetech@c-76-126-167-49.hsd1.ca.comcast.net)
- # [20:04] * Joins: bga_ (~bga@ppp78-37-194-128.pppoe.avangarddsl.ru)
- # [20:04] * Joins: cygri (~cygri@109.255.150.223)
- # [20:05] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [20:05] * Quits: cygri (~cygri@109.255.150.223) (Client Quit)
- # [20:07] * Quits: davidb_ (~davidb@174.91.41.218) (Quit: davidb_)
- # [20:09] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 255 seconds)
- # [20:18] * Quits: Lachy (~Lachy@cm-84.215.59.50.getinternet.no) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [20:27] * Joins: shichuan (~Shi_Chuan@81.23.49.240)
- # [20:35] * Quits: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi) (Ping timeout: 248 seconds)
- # [20:41] * Joins: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
- # [20:47] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [20:51] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 256 seconds)
- # [21:02] * Quits: benjoffe_ (~benjoffe_@CPE-121-218-225-100.lnse4.cht.bigpond.net.au) (Remote host closed the connection)
- # [21:03] * Quits: Telling (~unknown@80-71-135-15.u.parknet.dk) (Quit: ...)
- # [21:03] * Joins: charlvn (~charlvn@2001:0:53aa:64c:441:9c:adb4:5bbb)
- # [21:07] * bga_ is now known as bga_|away
- # [21:09] * Quits: GlitchMr (~glitchmr@178-36-28-44.adsl.inetia.pl) (Read error: Connection reset by peer)
- # [21:10] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Ping timeout: 255 seconds)
- # [21:27] * Joins: virtuelv (~virtuelv_@247.183.189.109.customer.cdi.no)
- # [21:28] * Quits: erlehmann (~erlehmann@89.204.153.87) (Read error: Connection reset by peer)
- # [21:28] * Joins: erlehmann_ (~erlehmann@89.204.153.87)
- # [21:30] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [21:32] * bga_|away is now known as bga_
- # [21:34] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 260 seconds)
- # [21:40] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 252 seconds)
- # [21:49] * Quits: charlvn (~charlvn@2001:0:53aa:64c:441:9c:adb4:5bbb) (Quit: Ik ga weg)
- # [21:59] * erlehmann_ is now known as erlehmann
- # [22:00] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [22:01] * Joins: ezoe (~ezoe@61-205-124-206f1.kyt1.eonet.ne.jp)
- # [22:12] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [22:13] * Quits: Rik` (~Rik`@mozilla-paris-253-98.cnt.nerim.net) (Remote host closed the connection)
- # [22:17] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 240 seconds)
- # [22:30] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [22:34] * Parts: JonathanNeal (~Jonathan@72.130.7.141)
- # [22:34] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [22:39] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 252 seconds)
- # [22:46] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:680f:ad58:b730:af98)
- # [22:55] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [22:59] * Quits: tomasf (~tom@c-5ed9e555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Quit: tomasf)
- # [23:00] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 260 seconds)
- # [23:02] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 252 seconds)
- # [23:03] * bga_ is now known as bga_|away
- # [23:05] * Quits: bga_|away (~bga@ppp78-37-194-128.pppoe.avangarddsl.ru) (Read error: Connection reset by peer)
- # [23:06] * Joins: bga_ (~bga@ppp78-37-194-128.pppoe.avangarddsl.ru)
- # [23:06] * bga_ is now known as bga_|away
- # [23:17] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [23:21] * Quits: hasather_ (~hasather_@84.38.144.96) (Ping timeout: 256 seconds)
- # [23:36] * Joins: Telling (~unknown@80-71-135-15.u.parknet.dk)
- # [23:38] * Joins: smaug____ (~chatzilla@GGGMCXIX.gprs.sl-laajakaista.fi)
- # [23:49] * Joins: stalled (~stalled@unaffiliated/stalled)
- # Session Close: Sun Oct 09 00:00:00 2011
The end :)