Options:
- # Session Start: Sun Mar 20 00:00:00 2011
- # Session Ident: #whatwg
- # [00:04] * Quits: MrOpposite (~mropposit@unaffiliated/mropposite) (Remote host closed the connection)
- # [00:05] * Quits: xtoph (~xtoph@213.47.185.206)
- # [00:13] * Quits: eric_carlson (~ericc@12.2.203.28) (Read error: Connection reset by peer)
- # [00:13] * Quits: nessy (~Adium@12.2.203.28) (Read error: Connection reset by peer)
- # [00:13] * Quits: Amorphous (jan@unaffiliated/amorphous) (Read error: Operation timed out)
- # [00:13] * Quits: MikeSmith_ (~MikeSmith@12.2.203.28) (Read error: Connection reset by peer)
- # [00:13] * Joins: nessy (~Adium@12.2.203.28)
- # [00:13] * Joins: MikeSmith (~MikeSmith@12.2.203.28)
- # [00:14] * Joins: eric_carlson (~ericc@12.2.203.28)
- # [00:20] * Quits: eric_carlson (~ericc@12.2.203.28) (Ping timeout: 250 seconds)
- # [00:25] * Joins: eric_carlson (~ericc@12.2.203.28)
- # [00:28] * Joins: alrra (592f527d@gateway/web/freenode/ip.89.47.82.125)
- # [00:30] * Joins: Amorphous (jan@unaffiliated/amorphous)
- # [00:35] * Joins: erlehmann (~erlehmann@89.204.153.98)
- # [00:39] * Quits: alrra (592f527d@gateway/web/freenode/ip.89.47.82.125) (Quit: Page closed)
- # [00:40] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [00:47] <eric_carlson> Hixie: ping?
- # [00:47] <Hixie> here
- # [00:48] <eric_carlson> what is the rational for not having cues in the DOM?
- # [00:49] <Hixie> they are in the dom
- # [00:49] <Hixie> same as CSS and JS
- # [00:49] * Joins: jacobolu_ (~jacobolus@pool-71-174-34-88.bstnma.east.verizon.net)
- # [00:49] <eric_carlson> Hixie: the text for the current cue?
- # [00:50] * Quits: jacobolus (~jacobolus@pool-71-174-34-88.bstnma.east.verizon.net) (Ping timeout: 248 seconds)
- # [00:50] <Hixie> the text for the current cue of the first track of a video element /video/ is video.tracks[0].activeCues[0].getCueAsHTML()
- # [00:51] <nessy> it's not in the page DOM though, right?
- # [00:52] <Hixie> it's in the page DOM just like CSS and JS is...? I don't understand the question.
- # [00:52] <nessy> as in - a cue could be added as a <div> underneath e.g. the <track> element
- # [00:53] <Hixie> ?
- # [00:53] <erlehmann> whyyyy would you do that?
- # [00:53] <Hixie> oh you mean putting the cues in teh page?
- # [00:53] <Hixie> i considered that but it seemed like most people would want thhe subtitles in a separate file
- # [00:54] <nessy> the idea is to parse the external file and upon parsing change the page DOM and add the cues in <div> elements
- # [00:54] <erlehmann> well, that would certainly be possible. but inline cues would be a mess. let's not go there.
- # [00:55] <nessy> why would they be a mess?
- # [00:55] * Quits: msucan (~robod@109.96.239.161) (Quit: .)
- # [00:55] <Hixie> that makes no sense
- # [00:55] <nessy> (not necessarily saying I want that, but trying to understand the reasons)
- # [00:56] <Hixie> why would something not in the page be in the page?
- # [00:56] * Joins: cpearce (~chatzilla@ip-118-90-81-165.xdsl.xnet.co.nz)
- # [00:56] <Hixie> i don't think i understand the proposal
- # [00:57] <erlehmann> nessy, what would happen if track elements are in a video and in a div next to it?
- # [00:58] <erlehmann> in what order would video.tracks be filled? what if later the DOM changes?
- # [00:58] <erlehmann> what if the div with the tracks comes before the video? can tracks for one video also be used for another?
- # [00:58] <nessy> erlehmann: this is not the proposal
- # [00:58] <erlehmann> oh. i don't think i understand the proposal, then.
- # [00:59] <Hixie> yeah me either
- # [00:59] <erlehmann> please elaborate, nessy.
- # [00:59] <nessy> erlehmann: the proposal is to parse an external file and to load the cues from that external file into the page and then ignore the external file
- # [00:59] <Hixie> that's exactly what happens
- # [00:59] <nessy> like an iframe
- # [00:59] <Hixie> the cues get parsed, just like js or css, into a dom structure
- # [00:59] <erlehmann> nessy, „into the page“?
- # [00:59] <nessy> ok, but right now we only add them to the IDL, not the page DOM
- # [00:59] <Hixie> that's what video.tracks is
- # [01:00] <Hixie> what's the difference between "the IDL" and "the page DOM"?
- # [01:00] <nessy> no, you cannot address it directly through CSS
- # [01:00] <erlehmann> i remain confused. nessy, what is video.tracks missing?
- # [01:00] <Hixie> oh if you're talking about how you style it in CSS, then you use the ::cue pseudo-element
- # [01:00] * Quits: cpearce (~chatzilla@ip-118-90-81-165.xdsl.xnet.co.nz) (Ping timeout: 248 seconds)
- # [01:01] <Hixie> so in the page CSS you can say, e.g., viduo::cue(v[voice=narrator]) { color: red; }
- # [01:01] <nessy> sure, the question that is being asked here is why not put it straight into the page so we don't need a pseudo-element and can directly use a page element
- # [01:02] <Hixie> well like i said, i did consider supporting having the cues directly in the page
- # [01:02] <nessy> e.g. video > track > cue
- # [01:02] <Hixie> but it seems most people would want to use an external file
- # [01:02] <Hixie> so i ended up not supporting that
- # [01:02] <Hixie> we could certainly add support for in-page cues too i guess
- # [01:02] <Hixie> if there's a good use case
- # [01:02] * Joins: richardschwerdtf (~RichS@12.2.203.28)
- # [01:03] <nessy> the author wouldn't author them in the page - they would be authored in an external file
- # [01:03] <Hixie> basically just define a maping of nodes to the Track API
- # [01:03] <Hixie> you just said "having the cues directly in the page"
- # [01:03] <Hixie> er, mispaste. you just said "why not put it straight into the page"
- # [01:03] <nessy> after the UA has parsed the file and included them into the page
- # [01:03] <Hixie> wait wait wait, you're saying you want the VTT parser to actually parse into the HTML parser's output?!
- # [01:04] <nessy> yes - are there good reasons not to do that?
- # [01:04] <Hixie> sanity?
- # [01:04] <Hixie> i mean that would just be crazy
- # [01:04] <nessy> why? (sorry for asking the seemingly dumb...)
- # [01:05] <Hixie> it would be completely inconsistent with everything the platform does with external files
- # [01:05] <Hixie> it would prevent any kind of round-tripping of files containing links to cues
- # [01:05] <Hixie> it would mean the DOM didn't reflect the markup even when no script has manipulated the DOM
- # [01:05] <nessy> iframes get rendered into the DOM, too
- # [01:05] <Hixie> <iframe>s work exactly like cues
- # [01:05] <Hixie> they are separate trees
- # [01:06] <Hixie> that can be accessed via the DOM API
- # [01:06] * Joins: jochen___ (~jochen@nat/google/x-wsuqaiqxaisllszz)
- # [01:06] <Hixie> the child of the iframe isn't the iframe's browsing context's dom tree
- # [01:06] <Hixie> that would be a security disaster
- # [01:07] <nessy> it's the round-tripping of links in the cue that would create the security disaster?
- # [01:07] <Hixie> i mean... if external cues went into the HTML tree, it would mean that an external cue file could affect form submission of unrelated forms, for example
- # [01:07] <Hixie> no the security disaster would be if iframes worked as you describe
- # [01:07] <Hixie> not for cues
- # [01:08] <Hixie> cues are same-origin, so we side-step the security issues there
- # [01:08] <Hixie> though if we did what you described, we'd never be able to do cross-origin cues either
- # [01:08] <nessy> ok, so that problem doesn't exist for cues?
- # [01:08] <nessy> ah ok
- # [01:09] * Quits: richardschwerdtf (~RichS@12.2.203.28) (Quit: richardschwerdtf)
- # [01:10] <nessy> thanks, that's the arguments that we needed :-)
- # [01:10] * Quits: jochen__ (~jochen@nat/google/x-fncmxbadvnkqgdxw) (Ping timeout: 264 seconds)
- # [01:10] * jochen___ is now known as jochen__
- # [01:14] * Quits: nonge__ (~nonge@p5082AA03.dip.t-dialin.net) (Quit: Verlassend)
- # [01:14] * Joins: nonge (~nonge@p5082AA03.dip.t-dialin.net)
- # [01:15] * jacobolu_ is now known as jacobolus
- # [01:25] * Quits: eric_carlson (~ericc@12.2.203.28) (Quit: eric_carlson)
- # [01:29] * Quits: nessy (~Adium@12.2.203.28) (Ping timeout: 250 seconds)
- # [01:29] * Quits: MikeSmith (~MikeSmith@12.2.203.28) (Ping timeout: 264 seconds)
- # [01:30] * abarth|afk is now known as abarth
- # [01:35] * Quits: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk) (Read error: Operation timed out)
- # [01:36] * Joins: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk)
- # [01:39] * bga_ is now known as bga_|away
- # [01:40] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # [01:40] * Quits: kal-EL_ (~jor-EL@host182-10-dynamic.117-80-r.retail.telecomitalia.it) (Quit: ChatZilla 0.9.86.1 [Firefox 3.6.15/20110303024726])
- # [01:41] * bga_|away is now known as bga_
- # [01:43] * Joins: nessy (~Adium@12.2.200.10)
- # [01:46] * Quits: nessy (~Adium@12.2.200.10) (Client Quit)
- # [01:52] * bga_ is now known as bga_|away
- # [01:54] * bga_|away is now known as bga_
- # [01:54] * Joins: michaeln (~michaeln@nat/google/x-chvmqqvkidelpnge)
- # [02:03] * Quits: erlehmann (~erlehmann@89.204.153.98) (Ping timeout: 260 seconds)
- # [02:07] * Quits: Maurice` (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [02:12] * bga_ is now known as bga_|away
- # [02:14] * bga_|away is now known as bga_
- # [02:16] * Joins: erlehmann (~erlehmann@89.204.137.113)
- # [02:17] * Joins: Evet (~Evet@pdpc/supporter/active/evet)
- # [02:18] * Joins: variable (~variable@unaffiliated/variable)
- # [02:24] * Quits: michaeln (~michaeln@nat/google/x-chvmqqvkidelpnge) (Quit: Leaving.)
- # [02:32] * bga_ is now known as bga_|away
- # [02:32] * Quits: bga_|away (~bga@ppp91-122-51-148.pppoe.avangarddsl.ru) (Read error: Connection reset by peer)
- # [03:00] * Quits: jacobolus (~jacobolus@pool-71-174-34-88.bstnma.east.verizon.net) (Remote host closed the connection)
- # [03:00] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [03:02] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Max SendQ exceeded)
- # [03:04] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Quit: Reading http://davidwalsh.name)
- # [03:21] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
- # [03:26] * Joins: jacobolus (~jacobolus@c-24-128-49-85.hsd1.ma.comcast.net)
- # [03:32] * Quits: variable (~variable@unaffiliated/variable) (Read error: Connection timed out)
- # [03:32] * Joins: variable (~variable@unaffiliated/variable)
- # [03:38] * Quits: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [03:40] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
- # [03:58] * Quits: variable (~variable@unaffiliated/variable) (Read error: Operation timed out)
- # [03:58] * Joins: variable (~variable@unaffiliated/variable)
- # [04:09] * Joins: AlexNRoss (~AleossIRC@unaffiliated/aleoss)
- # [04:14] * Joins: MikeSmith (~MikeSmith@12.2.200.10)
- # [04:23] * Quits: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi) (Ping timeout: 276 seconds)
- # [04:26] * Quits: boaz (~boaz@75-150-66-249-NewEngland.hfc.comcastbusiness.net) (Quit: boaz)
- # [04:38] * Quits: bentruyman (~bentruyma@24-148-24-69.c3-0.prs-ubr2.chi-prs.il.cable.rcn.com) (Quit: bentruyman)
- # [04:42] * Joins: cpearce (~chatzilla@ip-118-90-81-165.xdsl.xnet.co.nz)
- # [04:42] * Joins: michaeln (~michaeln@nat/google/x-hjklectbswwmghjv)
- # [04:52] * Quits: FastJack (~fastjack@dumpstr.net) (Read error: Operation timed out)
- # [04:53] * Joins: nessy (~Adium@12.2.200.10)
- # [04:58] * Joins: nessy1 (~Adium@12.2.200.10)
- # [04:59] * Quits: nessy (~Adium@12.2.200.10) (Read error: Connection reset by peer)
- # [05:02] * Joins: FastJack (~fastjack@dumpstr.net)
- # [05:03] * Quits: variable (~variable@unaffiliated/variable) (Read error: Operation timed out)
- # [05:05] * Quits: CvP (~CvP@123.49.23.53) (Ping timeout: 246 seconds)
- # [05:08] * Joins: dhx1 (~anonymous@60-242-108-164.static.tpgi.com.au)
- # [05:08] * Quits: AlexNRoss (~AleossIRC@unaffiliated/aleoss) (Ping timeout: 240 seconds)
- # [05:12] * Quits: michaeln (~michaeln@nat/google/x-hjklectbswwmghjv) (Quit: Leaving.)
- # [05:17] * Joins: variable (~variable@unaffiliated/variable)
- # [05:29] * Joins: agektmr (~Adium@t049235.dynamic.ppp.asahi-net.or.jp)
- # [05:31] * Joins: paradisaeidae (~chatzilla@ppp167-253-233.static.internode.on.net)
- # [05:41] * Joins: paradisaeidae_ (~chatzilla@ppp167-253-233.static.internode.on.net)
- # [05:41] * Quits: paradisaeidae (~chatzilla@ppp167-253-233.static.internode.on.net) (Quit: ChatZilla 0.9.86.1 [Firefox 4.0b13pre/20110319030418])
- # [05:41] * paradisaeidae_ is now known as paradisaeidae
- # [05:42] * Joins: nonge_ (~nonge@p5B32744E.dip.t-dialin.net)
- # [05:46] * Quits: agektmr (~Adium@t049235.dynamic.ppp.asahi-net.or.jp) (Quit: Leaving.)
- # [05:46] * Quits: nonge (~nonge@p5082AA03.dip.t-dialin.net) (Ping timeout: 248 seconds)
- # [05:48] * Quits: paradisaeidae (~chatzilla@ppp167-253-233.static.internode.on.net) (Quit: ChatZilla 0.9.86.1 [Firefox 4.0b13pre/20110319030418])
- # [05:53] * Joins: agektmr (~Adium@t049235.dynamic.ppp.asahi-net.or.jp)
- # [05:59] * Quits: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [06:08] * Quits: variable (~variable@unaffiliated/variable) (Quit: Daemon escaped from pentagram)
- # [06:30] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Never look down on someone unless you're helping them up.)
- # [06:33] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [06:36] * Quits: abarth (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net) (Ping timeout: 240 seconds)
- # [06:37] * Quits: erlehmann (~erlehmann@89.204.137.113) (Ping timeout: 250 seconds)
- # [06:46] * Joins: paradisaeidae (~chatzilla@ppp167-253-233.static.internode.on.net)
- # [06:56] * Quits: MikeSmith (~MikeSmith@12.2.200.10) (Ping timeout: 252 seconds)
- # [07:04] <Hixie> why on earth are <output> elements in Chrome focusable
- # [07:04] <Hixie> is that fixed in dev builds?
- # [07:05] * Hixie wonders if he's already run into this and complained about it...
- # [07:11] * Joins: dbaron_ (~dbaron@173-228-28-143.dsl.dynamic.sonic.net)
- # [07:12] * Quits: nessy1 (~Adium@12.2.200.10) (Quit: Leaving.)
- # [07:13] * Quits: dbaron (~dbaron@173-228-28-143.dsl.dynamic.sonic.net) (Ping timeout: 250 seconds)
- # [07:15] * Quits: paradisaeidae (~chatzilla@ppp167-253-233.static.internode.on.net) (Quit: ChatZilla 0.9.86.1 [Firefox 4.0b13pre/20110319030418])
- # [07:17] * Quits: dbaron_ (~dbaron@173-228-28-143.dsl.dynamic.sonic.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [07:30] * Quits: ezoe (~ezoe@203-140-88-98f1.kyt1.eonet.ne.jp) (Ping timeout: 255 seconds)
- # [07:33] * Quits: tw2113 (~tw2113@fedora/tw2113) (Quit: Ex-Chat)
- # [07:35] * Joins: abarth (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net)
- # [07:44] * Joins: othermaciej (~mjs@c-24-6-209-6.hsd1.ca.comcast.net)
- # [07:47] * Joins: michaeln (~michaeln@nat/google/x-qxnnlpmwjssjjhsp)
- # [07:54] * Quits: davve__ (~davve@83.218.67.122) (Remote host closed the connection)
- # [07:55] * Joins: davve__ (~davve@83.218.67.122)
- # [07:58] * Joins: nessy (~Adium@12.2.200.10)
- # [08:06] * Quits: nessy (~Adium@12.2.200.10) (Quit: Leaving.)
- # [08:17] * Joins: nessy (~Adium@12.2.200.10)
- # [08:17] * Quits: michaeln (~michaeln@nat/google/x-qxnnlpmwjssjjhsp) (Quit: Leaving.)
- # [08:22] * Quits: nessy (~Adium@12.2.200.10) (Quit: Leaving.)
- # [08:33] * Quits: dydx (~dydz@adsl-75-36-189-233.dsl.pltn13.sbcglobal.net) (Quit: dydx)
- # [08:34] * Quits: timb (~tim@bacon2.burri.to) (Read error: Operation timed out)
- # [08:37] * Quits: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net) (Ping timeout: 240 seconds)
- # [08:37] * Joins: timb_ (~tim@bacon2.burri.to)
- # [08:41] * Joins: nessy (~Adium@12.2.200.10)
- # [08:46] * Quits: nessy (~Adium@12.2.200.10) (Quit: Leaving.)
- # [08:51] * Joins: paradisaeidae (~chatzilla@ppp167-253-233.static.internode.on.net)
- # [09:11] * Joins: nessy (~Adium@12.2.200.10)
- # [09:13] * Joins: jochen___ (~jochen@nat/google/x-pjysuztzadicubco)
- # [09:16] * Quits: jochen__ (~jochen@nat/google/x-wsuqaiqxaisllszz) (Ping timeout: 240 seconds)
- # [09:16] * jochen___ is now known as jochen__
- # [09:17] * Quits: paradisaeidae (~chatzilla@ppp167-253-233.static.internode.on.net) (Quit: ChatZilla 0.9.86.1 [Firefox 4.0b13pre/20110319030418])
- # [09:18] * Joins: paradisaeidae (~chatzilla@ppp167-253-233.static.internode.on.net)
- # [09:20] * Joins: doublec (~chris@unaffiliated/doublec)
- # [09:34] * Quits: paradisaeidae (~chatzilla@ppp167-253-233.static.internode.on.net) (Remote host closed the connection)
- # [09:39] * Joins: msucan (~robod@109.96.192.201)
- # [09:42] * Quits: othermaciej (~mjs@c-24-6-209-6.hsd1.ca.comcast.net) (Ping timeout: 248 seconds)
- # [09:43] * Joins: eric_carlson (~ericc@140.239.1.4.ptr.us.xo.net)
- # [09:45] * Quits: nessy (~Adium@12.2.200.10) (Quit: Leaving.)
- # [09:48] * Joins: MrOpposite (~mropposit@unaffiliated/mropposite)
- # [10:13] * Quits: agektmr (~Adium@t049235.dynamic.ppp.asahi-net.or.jp) (Quit: Leaving.)
- # [10:14] * Joins: agektmr (~Adium@t049235.dynamic.ppp.asahi-net.or.jp)
- # [10:14] * Joins: alrra (592f527d@gateway/web/freenode/ip.89.47.82.125)
- # [10:15] * Quits: wakaba (~wakaba@198.22.102.121.dy.bbexcite.jp) (Quit: Leaving...)
- # [10:20] * Joins: Ms2ger (~Ms2ger@91.181.81.47)
- # [10:23] * Joins: wakaba (~wakaba@198.22.102.121.dy.bbexcite.jp)
- # [10:30] * Quits: shepazu (~schepers@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Quit: Core Breach)
- # [10:34] * Quits: alrra (592f527d@gateway/web/freenode/ip.89.47.82.125) (Ping timeout: 252 seconds)
- # [10:37] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [10:42] * Joins: michaeln (~michaeln@nat/google/x-whcyzcodjwbwmlls)
- # [10:52] * Joins: bga_ (~bga@ppp91-122-51-148.pppoe.avangarddsl.ru)
- # [10:56] * Joins: kal-EL_ (~jor-EL@host223-75-dynamic.244-95-r.retail.telecomitalia.it)
- # [10:58] * Quits: agektmr (~Adium@t049235.dynamic.ppp.asahi-net.or.jp) (Quit: Leaving.)
- # [10:59] * bga_ is now known as bga_|away
- # [11:09] * Joins: smaug____ (~chatzilla@a91-154-43-115.elisa-laajakaista.fi)
- # [11:11] * Quits: michaeln (~michaeln@nat/google/x-whcyzcodjwbwmlls) (Quit: Leaving.)
- # [11:20] * bga_|away is now known as bga_
- # [11:35] * Joins: ZombieLoffe (~e@unaffiliated/zombieloffe)
- # [11:38] * Joins: ezoe (~ezoe@203-140-90-129f1.kyt1.eonet.ne.jp)
- # [11:43] * Quits: doublec (~chris@unaffiliated/doublec) (Quit: Leaving)
- # [11:44] * Joins: doublec (~u1016@gateway/web/irccloud.com/x-ivqvnhxwecsjqojt)
- # [11:45] * Joins: CvP (~CvP@123.49.20.74)
- # [11:50] * Quits: nielsle (~nielsle@4135136-cl69.boa.fiberby.dk) (Remote host closed the connection)
- # [11:55] * Joins: alrra (592f527d@gateway/web/freenode/ip.89.47.82.125)
- # [11:56] * Quits: doublec (~u1016@gateway/web/irccloud.com/x-ivqvnhxwecsjqojt) (Ping timeout: 276 seconds)
- # [11:59] * Joins: doublec (~u1016@gateway/web/irccloud.com/x-pwvddubjxuvpkeie)
- # [12:04] * Parts: doublec (~u1016@gateway/web/irccloud.com/x-pwvddubjxuvpkeie)
- # [12:39] * Quits: jacobolus (~jacobolus@c-24-128-49-85.hsd1.ma.comcast.net) (Read error: Connection reset by peer)
- # [12:40] * Joins: jacobolus (~jacobolus@c-24-128-49-85.hsd1.ma.comcast.net)
- # [12:40] * bga_ is now known as bga_|away
- # [12:47] * Joins: feios (~info@cust-35-104.on4.ontelecoms.gr)
- # [12:50] * Quits: aho (~nya@fuld-590c69d7.pool.mediaWays.net) (Quit: EXEC_over.METHOD_SUBLIMATION)
- # [12:52] * Quits: Peter` (~peter@53516E0C.cm-6-2b.dynamic.ziggo.nl) (Ping timeout: 248 seconds)
- # [12:57] * Joins: Peter` (~peter@53516E0C.cm-6-2b.dynamic.ziggo.nl)
- # [13:00] * Quits: CvP (~CvP@123.49.20.74) (Ping timeout: 255 seconds)
- # [13:05] * Quits: feios (~info@cust-35-104.on4.ontelecoms.gr) (Quit: so what?!)
- # [13:19] * bga_|away is now known as bga_
- # [13:25] * Joins: Necrathex (~nectop@82-170-160-25.ip.telfort.nl)
- # [13:28] * Joins: dendeffe (~stijn@d54C222F2.access.telenet.be)
- # [13:42] * Quits: alrra (592f527d@gateway/web/freenode/ip.89.47.82.125) (Quit: Page closed)
- # [13:48] * Joins: michaeln (~michaeln@nat/google/x-rzxymmjwdncirdfr)
- # [13:52] * Quits: smaug____ (~chatzilla@a91-154-43-115.elisa-laajakaista.fi) (Ping timeout: 246 seconds)
- # [14:13] * Joins: alrra (592f527d@gateway/web/freenode/ip.89.47.82.125)
- # [14:16] * Joins: maikmerten (~maikmerte@port-92-201-238-155.dynamic.qsc.de)
- # [14:18] * Quits: michaeln (~michaeln@nat/google/x-rzxymmjwdncirdfr) (Quit: Leaving.)
- # [14:54] * Quits: dendeffe (~stijn@d54C222F2.access.telenet.be) (Quit: dendeffe)
- # [15:14] * Joins: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
- # [15:22] * Quits: maikmerten (~maikmerte@port-92-201-238-155.dynamic.qsc.de) (Remote host closed the connection)
- # [15:26] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
- # [15:34] * Joins: michaeln (~michaeln@nat/google/x-ipqzrzframropukv)
- # [15:43] * Quits: eric_carlson (~ericc@140.239.1.4.ptr.us.xo.net) (Quit: eric_carlson)
- # [15:57] * Quits: alrra (592f527d@gateway/web/freenode/ip.89.47.82.125) (Ping timeout: 252 seconds)
- # [15:59] * Joins: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de)
- # [16:03] * Quits: michaeln (~michaeln@nat/google/x-ipqzrzframropukv) (Quit: Leaving.)
- # [16:07] * Joins: tw2113 (~tw2113@host-172-48-107-208.midco.net)
- # [16:07] * Quits: tw2113 (~tw2113@host-172-48-107-208.midco.net) (Changing host)
- # [16:07] * Joins: tw2113 (~tw2113@fedora/tw2113)
- # [16:10] * Joins: bentruyman (~bentruyma@24-148-24-69.c3-0.prs-ubr2.chi-prs.il.cable.rcn.com)
- # [16:17] * Joins: virtuelv (~virtuelv_@20.74.9.46.customer.cdi.no)
- # [16:22] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
- # [16:27] * Quits: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [16:39] * Joins: alrra (592f527d@gateway/web/freenode/ip.89.47.82.125)
- # [16:43] * Joins: michaeln (~michaeln@nat/google/x-isqfrsgsuniqwfah)
- # [16:50] * Joins: dbaron (~dbaron@173-228-28-143.dsl.dynamic.sonic.net)
- # [16:50] * bga_ is now known as bga_|away
- # [16:54] * Quits: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
- # [16:57] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [17:00] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
- # [17:00] * Joins: eric_carlson (~ericc@12.2.203.248)
- # [17:01] * Joins: nessy (~Adium@12.2.203.248)
- # [17:08] * Joins: MikeSmith (~MikeSmith@12.2.203.248)
- # [17:12] * Quits: michaeln (~michaeln@nat/google/x-isqfrsgsuniqwfah) (Quit: Leaving.)
- # [17:41] * Joins: smaug____ (~chatzilla@YGKMMMDXXV.gprs.sl-laajakaista.fi)
- # [17:45] * bga_|away is now known as bga_
- # [17:49] * Quits: smaug____ (~chatzilla@YGKMMMDXXV.gprs.sl-laajakaista.fi) (Ping timeout: 255 seconds)
- # [18:15] <MikeSmith> foolip: you around?
- # [18:29] * Joins: Evet_ (~Evet@78.191.251.130)
- # [18:30] * Joins: JoePeck (~JoePeck@c-76-102-33-198.hsd1.ca.comcast.net)
- # [18:31] * Quits: Evet (~Evet@pdpc/supporter/active/evet) (Ping timeout: 248 seconds)
- # [18:32] * Joins: Evet (~Evet@78.185.112.180)
- # [18:35] * Quits: Evet_ (~Evet@78.191.251.130) (Ping timeout: 248 seconds)
- # [18:36] * Quits: zum (~antti@xdsl-83-150-88-4.nebulazone.fi) (Ping timeout: 240 seconds)
- # [18:39] * Quits: MikeSmith (~MikeSmith@12.2.203.248) (Quit: MikeSmith)
- # [18:42] * Joins: nessy1 (~Adium@12.2.200.10)
- # [18:45] * Quits: nessy (~Adium@12.2.203.248) (Ping timeout: 240 seconds)
- # [18:45] * bga_ is now known as bga_|away
- # [18:50] * Joins: MikeSmith (~MikeSmith@12.2.203.248)
- # [18:52] * Quits: jacobolus (~jacobolus@c-24-128-49-85.hsd1.ma.comcast.net) (Remote host closed the connection)
- # [18:53] * Joins: jacobolus (~jacobolus@c-24-128-49-85.hsd1.ma.comcast.net)
- # [18:53] * bga_|away is now known as bga_
- # [18:54] * Joins: zum (~antti@xdsl-83-150-88-4.nebulazone.fi)
- # [18:57] * Quits: jacobolus (~jacobolus@c-24-128-49-85.hsd1.ma.comcast.net) (Ping timeout: 255 seconds)
- # [18:58] * Quits: nessy1 (~Adium@12.2.200.10) (Remote host closed the connection)
- # [19:01] * Joins: nessy (~Adium@12.2.203.248)
- # [19:10] * Joins: temp02 (~temp01@unaffiliated/temp01)
- # [19:12] * Quits: temp01 (~temp01@unaffiliated/temp01) (Disconnected by services)
- # [19:14] * temp02 is now known as temp901
- # [19:14] * temp901 is now known as temp01
- # [19:14] * Joins: CvP (~CvP@123.49.22.131)
- # [19:40] * bga_ is now known as bga_|away
- # [19:44] * Joins: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com)
- # [19:47] * bga_|away is now known as bga_
- # [19:49] * Joins: michaeln (~michaeln@nat/google/x-exitdxywhlsetnat)
- # [19:55] * Quits: cpearce (~chatzilla@ip-118-90-81-165.xdsl.xnet.co.nz) (Ping timeout: 255 seconds)
- # [20:01] * Joins: erlehmann (~erlehmann@89.204.153.115)
- # [20:03] * Joins: Xdega (4c54f095@gateway/web/freenode/ip.76.84.240.149)
- # [20:04] * Joins: variable (~variable@unaffiliated/variable)
- # [20:05] <Xdega> Hi. Just a heads up to any admins. I just submitted a new blog entry for review ;)
- # [20:17] * Joins: dydx (~dydz@adsl-75-36-189-233.dsl.pltn13.sbcglobal.net)
- # [20:19] * Quits: michaeln (~michaeln@nat/google/x-exitdxywhlsetnat) (Quit: Leaving.)
- # [20:27] * Joins: KDN (~KDN@202.171.164.211)
- # [20:38] * Joins: boaz (~boaz@75-150-66-249-NewEngland.hfc.comcastbusiness.net)
- # [20:41] * Joins: smaug____ (~chatzilla@cs181139127.pp.htv.fi)
- # [20:49] * Quits: Xdega (4c54f095@gateway/web/freenode/ip.76.84.240.149) (Ping timeout: 252 seconds)
- # [20:59] * Quits: CvP (~CvP@123.49.22.131) (Ping timeout: 250 seconds)
- # [21:06] * Quits: dydx (~dydz@adsl-75-36-189-233.dsl.pltn13.sbcglobal.net) (Quit: dydx)
- # [21:06] * Quits: smaug____ (~chatzilla@cs181139127.pp.htv.fi) (Ping timeout: 276 seconds)
- # [21:09] * Quits: drunknbass (~drunknbas@76.91.255.83) (Ping timeout: 246 seconds)
- # [21:09] * Joins: smaug____ (~chatzilla@cs181139127.pp.htv.fi)
- # [21:17] * Joins: cpearce (~chatzilla@203-97-204-82.dsl.clear.net.nz)
- # [21:17] * Quits: smaug____ (~chatzilla@cs181139127.pp.htv.fi) (Ping timeout: 276 seconds)
- # [21:19] * Quits: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [21:25] * Quits: MikeSmith (~MikeSmith@12.2.203.248) (Quit: MikeSmith)
- # [21:32] * Joins: benschwarz (~benschwar@59.167.185.148)
- # [21:33] * Quits: benschwarz (~benschwar@59.167.185.148) (Read error: Connection reset by peer)
- # [21:37] * Joins: MikeSmith (~MikeSmith@12.2.200.10)
- # [21:43] * Joins: Lachy (~Lachlan@178.74.11.135)
- # [21:44] * Quits: Lachy (~Lachlan@178.74.11.135) (Client Quit)
- # [21:45] * Joins: Lachy (~Lachlan@178.74.11.135)
- # [21:50] * Joins: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
- # [22:00] * Quits: kal-EL_ (~jor-EL@host223-75-dynamic.244-95-r.retail.telecomitalia.it) (Quit: ChatZilla 0.9.86.1 [Firefox 3.6.15/20110303024726])
- # [22:01] * Joins: CvP (~CvP@123.49.20.117)
- # [22:09] * Quits: tomaw (tom@freenode/staff/tomaw) (Quit: Quitting)
- # [22:14] * Joins: roc (~chatzilla@203-97-204-82.dsl.clear.net.nz)
- # [22:14] * Joins: tomaw (tom@freenode/staff/tomaw)
- # [22:15] * Quits: msucan (~robod@109.96.192.201) (Quit: .)
- # [22:19] * Joins: benschwarz (~benschwar@ppp59-167-179-123.static.internode.on.net)
- # [22:22] * Joins: smaug____ (~chatzilla@cs181139127.pp.htv.fi)
- # [22:22] * Quits: MikeSmith (~MikeSmith@12.2.200.10) (Quit: MikeSmith)
- # [22:22] * Quits: virtuelv (~virtuelv_@20.74.9.46.customer.cdi.no) (Read error: Connection reset by peer)
- # [22:24] * Quits: KDN (~KDN@202.171.164.211) (Quit: KDN)
- # [22:28] * Quits: Lachy (~Lachlan@178.74.11.135) (Quit: This computer has gone to sleep)
- # [22:34] * Joins: aho (~nya@fuld-590c61fa.pool.mediaWays.net)
- # [22:37] * Joins: nimbupani (~Adium@c-24-18-47-160.hsd1.wa.comcast.net)
- # [22:37] * Quits: erlehmann (~erlehmann@89.204.153.115) (Ping timeout: 248 seconds)
- # [22:38] * Joins: xbuzz (~chris@c-24-63-24-211.hsd1.ma.comcast.net)
- # [22:39] * Joins: svl (~me@190-82-0-23.adsl.tie.cl)
- # [22:42] * Joins: michaeln (~michaeln@nat/google/x-lxtzjbeodsdopysp)
- # [22:44] * Quits: xbuzz (~chris@c-24-63-24-211.hsd1.ma.comcast.net) (Read error: Connection reset by peer)
- # [22:44] * Joins: xbuzz_ (~chris@c-24-63-24-211.hsd1.ma.comcast.net)
- # [22:47] * Quits: JoePeck (~JoePeck@c-76-102-33-198.hsd1.ca.comcast.net) (Quit: -)
- # [22:52] * Joins: erlehmann (~erlehmann@82.113.99.48)
- # [23:02] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [23:02] * Quits: Ms2ger (~Ms2ger@91.181.81.47) (Quit: nn)
- # [23:09] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # [23:11] * Joins: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [23:11] * Quits: michaeln (~michaeln@nat/google/x-lxtzjbeodsdopysp) (Quit: Leaving.)
- # [23:13] * Quits: MrOpposite (~mropposit@unaffiliated/mropposite) (Quit: OMG, YOU KILLED OPPO!)
- # [23:26] * Quits: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [23:29] * Joins: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [23:30] * Joins: MrOpposite (~mropposit@unaffiliated/mropposite)
- # [23:30] * Quits: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de) (Quit: Now time for the weather. Tiffany?)
- # [23:31] * Quits: MrOpposite (~mropposit@unaffiliated/mropposite) (Read error: Connection reset by peer)
- # [23:42] * Quits: nessy (~Adium@12.2.203.248) (Quit: Leaving.)
- # [23:43] * Quits: boaz (~boaz@75-150-66-249-NewEngland.hfc.comcastbusiness.net) (Quit: boaz)
- # [23:43] * Quits: eric_carlson (~ericc@12.2.203.248) (Quit: eric_carlson)
- # [23:44] * Quits: svl (~me@190-82-0-23.adsl.tie.cl) (Ping timeout: 255 seconds)
- # [23:47] * Joins: xtoph (~xtoph@213.47.185.206)
- # [23:47] * Joins: dydx (~dydz@adsl-76-228-82-246.dsl.pltn13.sbcglobal.net)
- # [23:50] * Joins: sroussey (~sroussey@adsl-69-234-104-86.dsl.irvnca.pacbell.net)
- # [23:50] * Quits: smaug____ (~chatzilla@cs181139127.pp.htv.fi) (Ping timeout: 276 seconds)
- # [23:52] * Quits: FireFly (~firefly@unaffiliated/firefly) (Quit: swatted to death)
- # [23:58] * Joins: ktos (ktos@dynamic-78-8-55-83.ssp.dialog.net.pl)
- # [23:58] <ktos> Hello
- # [23:59] <ktos> I read TabAtkins blogpost about layout template vs flexbox
- # Session Close: Mon Mar 21 00:00:01 2011
The end :)