Options:
- # Session Start: Thu Nov 15 00:00:00 2012
- # Session Ident: #whatwg
- # [00:03] * Quits: SimonSapin (~simon@85-170-128-18.rev.numericable.fr) (Ping timeout: 260 seconds)
- # [00:04] * Joins: weinig (~weinig@17.245.107.57)
- # [00:10] * Quits: jernoble_ (~jernoble@17.245.108.29) (Quit: Computer has gone to sleep.)
- # [00:10] * Quits: rniwa_ (~rniwa@17.245.107.140) (Quit: rniwa_)
- # [00:11] <Hixie> damn you past hixie for leaving me with this conundrum
- # [00:11] <Hixie> so, anyone have any hot ideas for how to do web fonts in a worker?
- # [00:11] <Hixie> is there some non-@font-face mechanism for loading web fonts?
- # [00:12] <heycam> http://lists.w3.org/Archives/Public/www-style/2012Sep/0101.html
- # [00:13] <Hixie> seems reasonable
- # [00:13] <Hixie> did it get any buy-in?>
- # [00:13] * Quits: danzik17 (~danzik17@ool-45787007.dyn.optonline.net) (Ping timeout: 246 seconds)
- # [00:13] <heycam> not sure, can't remember where the thread ended up
- # [00:14] <heycam> TabAtkins probably knows
- # [00:19] * Quits: weinig (~weinig@17.245.107.57) (Quit: weinig)
- # [00:20] * Quits: BruNeX (u4730@gateway/web/irccloud.com/x-ybvrcfvqhrmvawan) (Ping timeout: 252 seconds)
- # [00:20] * Joins: BruNeX (u4730@gateway/web/irccloud.com/x-vdcvbbwhdntceywg)
- # [00:24] <TabAtkins> Hixie: http://dev.w3.org/csswg/css3-fonts/#document-fontloader
- # [00:24] <TabAtkins> So, yes.
- # [00:25] <TabAtkins> At least among Moz, and I don't know any reason why we'd object. No objections on the mailing list.
- # [00:26] <Hixie> sweet
- # [00:26] <TabAtkins> document.fontloader.loadFont("font name", "optional text for figuring out unicode ranges needed")
- # [00:27] <TabAtkins> Ugh, jdaggett is still doing the indire tion through fontface for the event.
- # [00:27] <TabAtkins> That would make it hard in a Worker, because you'd have to instead return a neutered property bag or something.
- # [00:27] <Hixie> jdaggett: ping
- # [00:27] <TabAtkins> jdaggett: Yo, here's a stronger use-case for flattening the CSSFontFaceRule properties onto the CSSFontFaceLoadEvent interface.
- # [00:29] * Quits: baku (~baku@x1-6-e0-46-9a-1f-0a-72.k694.webspeed.dk) (Ping timeout: 252 seconds)
- # [00:29] * Quits: erichynds (~ehynds@64.206.121.41)
- # [00:30] * Quits: tomasf (~tom@c-44dbe555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Quit: tomasf)
- # [00:33] * Quits: cheron (~cheron@unaffiliated/cheron) (Quit: Leaving.)
- # [00:34] * jernoble is now known as jernoble|afk
- # [00:34] * jernoble|afk is now known as jernoble
- # [00:38] * Joins: jonlee (~jonlee@2620:149:4:1b01:25:d0b7:62fd:19a1)
- # [00:38] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [00:38] <Hixie> hm
- # [00:38] <Hixie> workers don't have a direction
- # [00:38] * Quits: yorick (~quassel@unaffiliated/yorick) (Remote host closed the connection)
- # [00:38] * Quits: othermaciej (~mjs@17.245.108.71) (Quit: othermaciej)
- # [00:38] <Hixie> how do we pick a default writing direction
- # [00:38] <Hixie> workers suck.
- # [00:40] * Quits: JonathanNeal (~anonymous@38.122.109.194) (Quit: JonathanNeal)
- # [00:41] * Joins: weinig (~weinig@2620:149:4:1b01:c5cb:37ad:d0f0:ff56)
- # [00:41] * Quits: weinig (~weinig@2620:149:4:1b01:c5cb:37ad:d0f0:ff56) (Client Quit)
- # [00:42] <Hixie> jdaggett, TabAtkins: would be good for canvas if there could be some conceptual "fonts in scope" which would be defined for each Element, Document, and worker
- # [00:49] * jonlee is now known as jonlee|afk
- # [00:52] * Quits: jonlee|afk (~jonlee@2620:149:4:1b01:25:d0b7:62fd:19a1) (Quit: jonlee|afk)
- # [00:52] * Quits: drublic (~drublic@frbg-5d84e17a.pool.mediaWays.net) (Remote host closed the connection)
- # [00:56] <TabAtkins> Hixie: The same way that documents choose their default direction? Is that applicable? (I don't know what it is.)
- # [00:56] <TabAtkins> (Is it just ltr by default?)
- # [00:59] <TabAtkins> Hixie: "fonts in scope" should be pretty easy to define, I think. It's the set of local fonts available to the document, plus any webfonts after they trigger a "load" event.
- # [01:01] <TabAtkins> jdaggett: Mind if I clean up the Fonts event stuff to hook into DOM Core terminology and whatnot? No significant changes from your perspective, just synchronization and tightening of some definitions.
- # [01:02] <Hixie> TabAtkins: (plus scoped fonts for <style scoped>, though i dunno how to even do that given the cascade)
- # [01:03] <TabAtkins> I don't think impls accept that <style scoped> scopes resource loads like that.
- # [01:03] <Hixie> TabAtkins: right now the spec doesn't have a conceptual list at all, as far as i can tell, it's all implied that hte fonts are reset on page load, etc
- # [01:04] * Quits: yoshu (~josh@150.135.118.118) (Ping timeout: 265 seconds)
- # [01:04] <TabAtkins> Hixie: Yeah, there's no concept of it yet. Just saying that it's an easy thing to define.
- # [01:05] <Hixie> agreed
- # [01:07] * Quits: Druide_ (~Druid@p5B137AF8.dip.t-dialin.net) (Ping timeout: 244 seconds)
- # [01:07] <Hixie> (<style scoped> has to have some solution for font scoping, otherwise two different scoped blocks defining the same font differently would conflict)
- # [01:07] * Joins: Druide_ (~Druid@p5B137AF8.dip.t-dialin.net)
- # [01:07] <TabAtkins> Yes. I think that problem is what impls plan to stick themselves with.
- # [01:08] <Hixie> it's not a problem for impls, it's a problem for syndicators using scopes styles.
- # [01:08] <TabAtkins> Sure. But it's impls that decide whether they'll do anything about it. ^_^
- # [01:09] <Hixie> it would be sad if we didn't find a solution, but yeah
- # [01:09] <Hixie> wouldn't be the first time we screwed authors, certainly :-)
- # [01:09] <TabAtkins> Same thing with all the name-defining at-rules, like @counter-style.
- # [01:09] * Joins: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net)
- # [01:10] * Joins: jonlee (~jonlee@2620:149:4:1b01:bcb8:4726:2f17:75b9)
- # [01:11] <Hixie> yeah
- # [01:11] <Hixie> we really should find a solution
- # [01:11] * Joins: othermaciej (~mjs@17.245.108.71)
- # [01:11] <Hixie> maybe it's as "simple" as automatically munging names to be prefixed with the block's name or something?
- # [01:13] * Quits: othermaciej (~mjs@17.245.108.71) (Client Quit)
- # [01:15] * linclark|afk is now known as linclark
- # [01:15] <Hixie> in other news, rewriting the entire canvas section to compatible with workers is about as mind-numbing as rewriting a library to be thread-safe
- # [01:18] * Quits: ^esc (~esc_ape@77.116.247.233.wireless.dyn.drei.com) (Ping timeout: 244 seconds)
- # [01:19] <Hixie> oh.... bummer.
- # [01:19] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
- # [01:20] <TabAtkins> "The block's name"? There is no such thing.
- # [01:20] <Hixie> addHitRegion is going to be exciting
- # [01:20] <Hixie> TabAtkins: an anonymous one
- # [01:20] <Hixie> TabAtkins: not one the author can see
- # [01:20] <TabAtkins> Oh, and then rewrite all references inside the stylesheet as well?
- # [01:20] <TabAtkins> Contextually?
- # [01:20] <Hixie> (s/anonymous/internal/)
- # [01:20] <Hixie> something like that
- # [01:20] <TabAtkins> That sounds unfun.
- # [01:21] <Hixie> yeah
- # [01:21] <Hixie> hrm
- # [01:21] <Hixie> really no idea how to do addHitRegion()
- # [01:22] <Hixie> oh i guess it's no so bad
- # [01:24] * Quits: miketaylr (~miketaylr@70.112.101.224) (Quit: Leaving...)
- # [01:25] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [01:27] <jamesr> Hixie, i don't think you could call addHitRegion() from the worker anyway, since that's about interactivity with the DOM and you can't really manipulate interactive things from a worker
- # [01:27] <Hixie> you can, it just ends up pushing the data to the main thread
- # [01:27] <Hixie> the only thing you can't do is use the 'control' thing
- # [01:28] * Quits: heycam (~cam@wok.mcc.id.au) (Ping timeout: 240 seconds)
- # [01:29] <Hixie> TabAtkins: can you think of any way in which changing the directionality would affect the metrics measured in a canvas TextMetrics object?
- # [01:29] <Hixie> bounding box, positions of baselines, advance width...
- # [01:30] <Hixie> i guess if a ( and a ) have different dimensions
- # [01:30] <Hixie> hmm
- # [01:30] <zewt> kerning differences?
- # [01:31] <Hixie> hm yeah I guess "+-" could kern differently than "-+"
- # [01:31] * Joins: plutoniix (~plutoniix@ppp-115-87-241-147.revip4.asianet.co.th)
- # [01:31] * Joins: ^esc (~esc_ape@77.117.247.251.wireless.dyn.drei.com)
- # [01:31] <zewt> oh, i was thinking horizontal vs. vertical, but i guess that applies to rtl too
- # [01:32] <Hixie> oh i'm not talking about the writing direction, just the directionality
- # [01:32] <zewt> yeah
- # [01:32] <Hixie> canvas doesn't do vertical text yet
- # [01:34] * Joins: heycam (~cam@wok.mcc.id.au)
- # [01:46] * jonlee is now known as jonlee|afk
- # [01:46] * jonlee|afk is now known as jonlee
- # [01:49] * Joins: ryanseddon_ (~ryanseddo@90.200.233.220.static.exetel.com.au)
- # [01:53] * Joins: othermaciej (~mjs@17.245.108.71)
- # [01:53] <jdaggett> TabAtkins: can you send me a patch with whatever changes you want to make?
- # [01:54] <jdaggett> TabAtkins: then I'll move it back into the src
- # [01:58] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Quit: Leaving...)
- # [02:00] * Quits: ryanseddon_ (~ryanseddo@90.200.233.220.static.exetel.com.au) (Quit: Colloquy for iPhone - http://colloquy.mobi)
- # [02:02] * Quits: ap (~ap@2620:149:4:1b01:937:e25a:fa9:97d2) (Quit: ap)
- # [02:07] * Quits: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [02:12] * Joins: zjhxmjl (~zjhxmjl@58.221.132.2)
- # [02:12] * Joins: yoshu (~josh@67-1-11-149.tcso.qwest.net)
- # [02:13] * Parts: zjhxmjl (~zjhxmjl@58.221.132.2)
- # [02:14] * Quits: jsbell (jsbell@nat/google/x-jmijddvmfrpybvzc) (Quit: There's no place like home...)
- # [02:16] * Joins: yoshiaki_ (~yoshiaki@p15163-obmd01.tokyo.ocn.ne.jp)
- # [02:20] * Quits: cabanier (~cabanier@192.150.22.55) (Quit: Leaving.)
- # [02:20] * jonlee is now known as jonlee|afk
- # [02:21] * Quits: yoshiaki_ (~yoshiaki@p15163-obmd01.tokyo.ocn.ne.jp) (Ping timeout: 246 seconds)
- # [02:22] * Quits: jonlee|afk (~jonlee@2620:149:4:1b01:bcb8:4726:2f17:75b9) (Quit: jonlee|afk)
- # [02:23] * Quits: bLh (wat@89-212-66-204.dynamic.t-2.net) (Ping timeout: 256 seconds)
- # [02:25] * Quits: cgcardona (~cgcardona@unaffiliated/cgcardona) (Ping timeout: 264 seconds)
- # [02:29] * Joins: yoshiaki_ (~yoshiaki@p15163-obmd01.tokyo.ocn.ne.jp)
- # [02:34] * Quits: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net) (Quit: bholley)
- # [02:38] * Quits: gavinp (~gavin@74-94-180-53-NewEngland.hfc.comcastbusiness.net) (Remote host closed the connection)
- # [02:39] * Quits: yoshiaki_ (~yoshiaki@p15163-obmd01.tokyo.ocn.ne.jp) (Ping timeout: 246 seconds)
- # [02:42] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Quit: Leaving)
- # [02:42] * Quits: Bass10__ (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Quit: Leaving)
- # [02:42] * Quits: Bass10_ (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Quit: Leaving)
- # [02:43] * Quits: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net) (Quit: tantek)
- # [02:43] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [02:45] * Joins: jonlee (~jonlee@2620:149:4:1b01:3c25:1e7d:b6a5:90ec)
- # [02:45] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Read error: Connection reset by peer)
- # [02:45] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Ping timeout: 252 seconds)
- # [02:45] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [02:45] * Joins: a-ja (~Instantbi@70.230.159.5)
- # [02:45] * Joins: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net)
- # [02:52] * Quits: othermaciej (~mjs@17.245.108.71) (Quit: othermaciej)
- # [02:52] * Joins: othermaciej (~mjs@17.245.108.71)
- # [02:52] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: Leaving...)
- # [02:54] * Quits: sicking (~sicking@v-1045.fw1.sfo1.mozilla.net) (Quit: sicking)
- # [03:00] * Joins: bLh (wat@89-212-66-204.dynamic.t-2.net)
- # [03:00] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [03:00] * Joins: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net)
- # [03:04] * jernoble is now known as jernoble|afk
- # [03:04] * jernoble|afk is now known as jernoble
- # [03:05] * Quits: bLh (wat@89-212-66-204.dynamic.t-2.net) (Ping timeout: 265 seconds)
- # [03:06] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Quit: Leaving)
- # [03:09] * Joins: tantek (~tantek@mb90536d0.tmodns.net)
- # [03:13] * Joins: tantek_ (~tantek@mb90536d0.tmodns.net)
- # [03:13] * Quits: othermaciej (~mjs@17.245.108.71) (Quit: othermaciej)
- # [03:16] * Quits: tantek (~tantek@mb90536d0.tmodns.net) (Ping timeout: 276 seconds)
- # [03:16] * tantek_ is now known as tantek
- # [03:16] * Parts: say2joe (~say2joe@204.56.108.2)
- # [03:16] * heycam is now known as heycam|away
- # [03:19] * Quits: ehsan (~ehsan@64.213.70.194) (Remote host closed the connection)
- # [03:20] * Joins: say2joe (~say2joe@204.56.108.2)
- # [03:23] * Quits: dbaron (~dbaron@64.213.70.194) (Ping timeout: 245 seconds)
- # [03:28] * Joins: danzik17 (~danzik17@ool-45787007.dyn.optonline.net)
- # [03:29] * jonlee is now known as jonlee|afk
- # [03:29] * jonlee|afk is now known as jonlee
- # [03:31] * Quits: MikeSmith (~MikeSmith@s1106164.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 246 seconds)
- # [03:32] * Quits: jamesr_ (jamesr@nat/google/x-qxwhzlmyfhzuqwyc) (Quit: jamesr_)
- # [03:33] * Quits: pablof (~pablof@144.189.150.129) (Quit: ^z)
- # [03:34] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [03:35] * Quits: yoshu (~josh@67-1-11-149.tcso.qwest.net) (Quit: yoshu)
- # [03:40] * Joins: cgcardona (~cgcardona@c-24-4-198-207.hsd1.ca.comcast.net)
- # [03:40] * Quits: cgcardona (~cgcardona@c-24-4-198-207.hsd1.ca.comcast.net) (Changing host)
- # [03:40] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
- # [03:40] * jonlee is now known as jonlee|afk
- # [03:40] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
- # [03:41] * Quits: jonlee|afk (~jonlee@2620:149:4:1b01:3c25:1e7d:b6a5:90ec) (Quit: jonlee|afk)
- # [03:42] * Quits: tantek (~tantek@mb90536d0.tmodns.net) (Quit: tantek)
- # [03:52] * Joins: jonlee (~jonlee@72.51.33.54)
- # [03:54] * Quits: jwalden (~waldo@2620:101:8003:200:224:d7ff:fef0:8d90) (Quit: ChatZilla 0.9.87-5.1450hg.fc17 [XULRunner 16.0.2/20121026094416])
- # [03:54] * Quits: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net) (Quit: linclark)
- # [03:56] * Quits: say2joe (~say2joe@204.56.108.2) (Read error: Connection reset by peer)
- # [03:57] * Joins: say2joe (~say2joe@204.56.108.2)
- # [04:01] * Joins: skcin7 (~skcin7@c-68-38-156-213.hsd1.nj.comcast.net)
- # [04:02] * Joins: yoshu (~josh@67-1-11-149.tcso.qwest.net)
- # [04:03] * jernoble is now known as jernoble|afk
- # [04:03] * jernoble|afk is now known as jernoble
- # [04:08] * Quits: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [04:09] * Joins: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net)
- # [04:12] * Joins: dydx (~dydz@76-220-18-65.lightspeed.sntcca.sbcglobal.net)
- # [04:14] * Joins: necolas_ (~necolas@50.0.205.154)
- # [04:16] * Quits: necolas (~necolas@8.25.197.24) (Disconnected by services)
- # [04:16] * necolas_ is now known as necolas
- # [04:16] * Joins: necolas_ (~necolas@8.25.197.24)
- # [04:24] * Joins: zjhxmjl (~zjhxmjl@58.221.132.2)
- # [04:24] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [04:25] * Parts: zjhxmjl (~zjhxmjl@58.221.132.2)
- # [04:26] * Quits: jonlee (~jonlee@72.51.33.54) (Quit: jonlee)
- # [04:30] * Quits: nessy (~silviapf@124-171-35-8.dyn.iinet.net.au) (Quit: Leaving.)
- # [04:30] * Quits: yoshu (~josh@67-1-11-149.tcso.qwest.net) (Quit: yoshu)
- # [04:32] * Quits: say2joe (~say2joe@204.56.108.2) (Read error: Connection reset by peer)
- # [04:32] * Joins: say2joe (~say2joe@204.56.108.2)
- # [04:32] * Quits: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net) (Quit: bholley)
- # [04:43] * Quits: say2joe (~say2joe@204.56.108.2) (Read error: Connection reset by peer)
- # [04:43] * Joins: say2joe (~say2joe@204.56.108.2)
- # [04:44] * Joins: say2joe1 (~say2joe@204.56.108.2)
- # [04:44] * Quits: say2joe (~say2joe@204.56.108.2) (Read error: Connection reset by peer)
- # [04:47] * Joins: tantek (~tantek@adsl-75-36-199-18.dsl.pltn13.sbcglobal.net)
- # [04:50] * Quits: SamB_MacG5 (~SamB@2001:470:1f07:57:211:24ff:feaa:27a) (Ping timeout: 264 seconds)
- # [04:51] * Joins: othermaciej (~mjs@17.245.108.71)
- # [04:51] * Joins: SamB_MacG5 (~SamB@2001:470:1f07:57:211:24ff:feaa:27a)
- # [04:55] * Quits: mbatle (mbatle@pasanda.collabora.co.uk) (Ping timeout: 260 seconds)
- # [04:56] * Joins: mbatle (mbatle@pasanda.collabora.co.uk)
- # [04:56] * Quits: mbatle (mbatle@pasanda.collabora.co.uk) (Read error: Connection reset by peer)
- # [04:57] * Quits: necolas (~necolas@50.0.205.154) (Remote host closed the connection)
- # [04:57] * Quits: say2joe1 (~say2joe@204.56.108.2) (Quit: Leaving.)
- # [05:04] * Quits: ajt_ (~ajt@li181-64.members.linode.com) (Ping timeout: 246 seconds)
- # [05:05] * Joins: ajt_ (~ajt@li181-64.members.linode.com)
- # [05:05] * Joins: jonlee (~jonlee@c-71-202-46-113.hsd1.ca.comcast.net)
- # [05:07] * Joins: divya (~nimbu@c-67-169-39-98.hsd1.ca.comcast.net)
- # [05:11] * toyoshim is now known as toyoshiAw
- # [05:14] * toyoshiAw is now known as toyoshim
- # [05:14] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [05:14] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [05:19] * Quits: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [05:19] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Ping timeout: 256 seconds)
- # [05:21] * Joins: nessy (silviapf@nat/google/x-qxipvrtysytczydz)
- # [05:24] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: Leaving...)
- # [05:25] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [05:26] * Quits: skcin7 (~skcin7@c-68-38-156-213.hsd1.nj.comcast.net) (Ping timeout: 252 seconds)
- # [05:36] * Quits: tantek (~tantek@adsl-75-36-199-18.dsl.pltn13.sbcglobal.net) (Quit: tantek)
- # [05:39] * Joins: skcin7 (~skcin7@c-68-38-156-213.hsd1.nj.comcast.net)
- # [05:39] * Quits: skcin7 (~skcin7@c-68-38-156-213.hsd1.nj.comcast.net) (Max SendQ exceeded)
- # [05:39] * Joins: skcin7 (~skcin7@c-68-38-156-213.hsd1.nj.comcast.net)
- # [05:39] * Quits: skcin7 (~skcin7@c-68-38-156-213.hsd1.nj.comcast.net) (Max SendQ exceeded)
- # [05:40] * Joins: skcin7 (~skcin7@c-68-38-156-213.hsd1.nj.comcast.net)
- # [05:40] * Quits: skcin7 (~skcin7@c-68-38-156-213.hsd1.nj.comcast.net) (Max SendQ exceeded)
- # [05:40] * Joins: skcin7 (~skcin7@c-68-38-156-213.hsd1.nj.comcast.net)
- # [05:44] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
- # [05:45] * Quits: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net) (Client Quit)
- # [05:47] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Quit: Leaving)
- # [05:53] * Joins: MikeSmith (~MikeSmith@p15181-obmd01.tokyo.ocn.ne.jp)
- # [05:57] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
- # [05:58] * Quits: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net) (Client Quit)
- # [06:00] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [06:01] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
- # [06:02] * Quits: othermaciej (~mjs@17.245.108.71) (Quit: othermaciej)
- # [06:07] * Joins: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net)
- # [06:07] * Quits: jamesr_ (~jamesr@173-164-251-190-SFBA.hfc.comcastbusiness.net) (Client Quit)
- # [06:13] * Quits: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net) (Quit: bholley)
- # [06:17] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [06:17] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [06:20] * Joins: hdhoang (~hdhoang@113.178.25.158)
- # [06:22] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Ping timeout: 265 seconds)
- # [06:24] * Joins: tomasf (~tom@85.229.219.68)
- # [06:24] * Quits: tomasf (~tom@85.229.219.68) (Client Quit)
- # [06:25] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Quit: Leaving...)
- # [06:29] * Joins: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net)
- # [06:33] * Joins: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net)
- # [06:33] * Quits: eresair (~eresair@c-24-5-78-71.hsd1.ca.comcast.net) (Ping timeout: 252 seconds)
- # [06:51] * Joins: dbaron (~dbaron@64.213.70.194)
- # [06:54] * Joins: zjhxmjl (~zjhxmjl@58.221.132.2)
- # [06:55] * Parts: zjhxmjl (~zjhxmjl@58.221.132.2)
- # [06:55] * heycam|away is now known as heycam
- # [06:57] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [07:04] * Quits: jochen__ (jochen@nat/google/x-ziujvraddbpwmiio) (Ping timeout: 260 seconds)
- # [07:08] * Quits: dbaron (~dbaron@64.213.70.194) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [07:08] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [07:09] * Joins: annevk (~annevk@209.118.182.194)
- # [07:09] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [07:10] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [07:11] * Joins: alrra (~alrra@unaffiliated/alrra)
- # [07:24] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [07:24] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [07:25] * Joins: zdobersek (~zan@cpe-62-84-226-3.dynamic.amis.net)
- # [07:28] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Ping timeout: 248 seconds)
- # [07:30] * Quits: annevk (~annevk@209.118.182.194) (Remote host closed the connection)
- # [07:34] * Joins: Ducki (~Ducki@pD9E395CF.dip0.t-ipconnect.de)
- # [07:36] * Joins: zcorpan (~zcorpan@81-231-170-159-no135.tbcn.telia.com)
- # [07:36] * Quits: danzik17 (~danzik17@ool-45787007.dyn.optonline.net) (Ping timeout: 264 seconds)
- # [07:44] * Quits: plutoniix (~plutoniix@ppp-115-87-241-147.revip4.asianet.co.th) (Read error: Connection reset by peer)
- # [07:44] * Joins: Smylers (~smylers@host86-180-208-134.range86-180.btcentralplus.com)
- # [07:45] * Joins: jonlee_ (~jonlee@2620:149:4:1b01:f0b3:761d:e010:5044)
- # [07:48] * Quits: Benvie (~brandon@cpe-174-097-187-248.nc.res.rr.com)
- # [07:50] * Joins: zjhxmjl (~zjhxmjl@58.221.132.2)
- # [07:51] * Quits: Smylers (~smylers@host86-180-208-134.range86-180.btcentralplus.com) (Remote host closed the connection)
- # [07:55] * Joins: Benvie (~brandon@cpe-174-097-187-248.nc.res.rr.com)
- # [07:57] * Joins: k4k1_c0der (~k4k1_c0de@118.97.212.179)
- # [07:58] * Quits: karlcow (~karl@nerval.la-grange.net) (Remote host closed the connection)
- # [07:59] * Joins: k4k1c0der (~k4k1_c0de@118.97.212.179)
- # [08:00] * Quits: k4k1c0der (~k4k1_c0de@118.97.212.179) (Client Quit)
- # [08:01] * Joins: plutoniix (~plutoniix@ppp-58-8-210-57.revip2.asianet.co.th)
- # [08:01] * Parts: zjhxmjl (~zjhxmjl@58.221.132.2) ("Leaving")
- # [08:02] * jonlee_ is now known as jonlee|afk
- # [08:04] * Quits: jonlee|afk (~jonlee@2620:149:4:1b01:f0b3:761d:e010:5044) (Quit: jonlee|afk)
- # [08:06] * Joins: k4k1c0der (~k4k1_c0de@118.97.212.179)
- # [08:06] * Quits: JohnAlbin (~JohnAlbin@209.41.114.204) (Ping timeout: 246 seconds)
- # [08:06] * Joins: kennyluck (~kennyluck@119.161.158.96)
- # [08:07] * Quits: k4k1c0der (~k4k1_c0de@118.97.212.179) (Client Quit)
- # [08:17] * Joins: SimonSapin (~simon@85-170-128-18.rev.numericable.fr)
- # [08:18] * Joins: Ducki_ (~Ducki@pD9E3A106.dip0.t-ipconnect.de)
- # [08:20] * Quits: Ducki (~Ducki@pD9E395CF.dip0.t-ipconnect.de) (Ping timeout: 260 seconds)
- # [08:24] * Quits: k4k1_c0der (~k4k1_c0de@118.97.212.179)
- # [08:25] * Quits: OnlyMax (~OnlyMax@187-126-223-141.user.veloxzone.com.br)
- # [08:45] * Joins: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no)
- # [08:50] * Quits: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no) (Remote host closed the connection)
- # [08:51] * Joins: shwetank (~shwetank@122.173.173.97)
- # [08:57] * Joins: maikmerten (~merten@ls5dhcp200.cs.uni-dortmund.de)
- # [09:00] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [09:00] <zcorpan> hsivonen: https://twitter.com/builtwith/status/268951926085910528 https://twitter.com/W3Techs/status/268835927500148737 we'll see if they publish correct reports next
- # [09:05] * Joins: Ms2ger (~Ms2ger@109.133.5.192)
- # [09:06] * Joins: jochen__ (jochen@nat/google/x-fyajppfbdvuquypf)
- # [09:07] * Quits: rniwa (~rniwa@17.212.154.114) (Quit: rniwa)
- # [09:15] <hsivonen> zcorpan: thanks
- # [09:17] <zcorpan> hsivonen: do you have any ideas for how to approach http://bugzilla.validator.nu/show_bug.cgi?id=945#c7 ?
- # [09:20] * Joins: henrikkok (~henrikkok@81.27.221.193)
- # [09:21] * Joins: baku (~baku@x1-6-e0-46-9a-1f-0a-72.k694.webspeed.dk)
- # [09:23] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [09:25] * Joins: sedovsek (~robert@89.143.12.238)
- # [09:30] <hsivonen> zcorpan: the datatype back end can report which character was the problem. I don’t recall how well (if at all) the front end handles that data
- # [09:30] * Joins: Ducki (~Ducki@pD9E39DD8.dip0.t-ipconnect.de)
- # [09:30] <hsivonen> zcorpan: but I expect it to not handle line breaks in the attribute value very well
- # [09:33] * Quits: Ducki_ (~Ducki@pD9E3A106.dip0.t-ipconnect.de) (Ping timeout: 260 seconds)
- # [09:35] * Joins: JohnAlbin (~JohnAlbin@111-250-46-191.dynamic.hinet.net)
- # [09:35] <zcorpan> hsivonen: ok
- # [09:36] * Joins: darobin (~darobin@78.109.80.74)
- # [09:45] <hsivonen> zcorpan: yeah, the front end doesn’t handle the error index given by the back end: http://html5.validator.nu/?doc=data%3Atext%2Fhtml%3Bcharset%3Dutf-8%2C%3C!DOCTYPE+html%3E%3Ctitle%3E%3C%2Ftitle%3E%3Cinput+type%3Drange+step%3D0.k5%3E
- # [09:45] * Quits: divya (~nimbu@c-67-169-39-98.hsd1.ca.comcast.net) (Quit: Leaving.)
- # [09:46] * Quits: alrra (~alrra@unaffiliated/alrra) (Ping timeout: 246 seconds)
- # [09:48] * Quits: baku (~baku@x1-6-e0-46-9a-1f-0a-72.k694.webspeed.dk) (Ping timeout: 252 seconds)
- # [09:52] * Quits: kennyluck (~kennyluck@119.161.158.96) (Read error: Connection reset by peer)
- # [09:53] * Joins: kennyluck (~kennyluck@119.161.158.96)
- # [09:59] * Joins: mpt (~mpt@faun.canonical.com)
- # [09:59] * heycam is now known as heycam|away
- # [09:59] * Quits: mpt (~mpt@faun.canonical.com) (Changing host)
- # [09:59] * Joins: mpt (~mpt@canonical/mpt)
- # [10:00] * Quits: mpt (~mpt@canonical/mpt) (Remote host closed the connection)
- # [10:00] * Joins: Somatt_wrk (~somattwrk@darkstar2.fullsix.com)
- # [10:03] * jonlee is now known as jonlee|afk
- # [10:03] * jonlee|afk is now known as jonlee
- # [10:04] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Ping timeout: 265 seconds)
- # [10:04] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [10:07] * Quits: dydx (~dydz@76-220-18-65.lightspeed.sntcca.sbcglobal.net) (Quit: dydx)
- # [10:11] * Joins: drublic (~drublic@p5098a42b.dip0.t-ipconnect.de)
- # [10:18] <MikeSmith> zcorpan: yeah I think this is a general limitation for all the attribute-microsyntax checking
- # [10:18] <zcorpan> yeah :-(
- # [10:18] <MikeSmith> maybe can try to figure out some clever way to get past it
- # [10:19] <zcorpan> can the front end be fixed to use the position that the back end reports?
- # [10:20] <MikeSmith> possibly
- # [10:21] <MikeSmith> though even if we do that it's not clear to me how it's going to handle line breaks in attribute values
- # [10:22] * Quits: Lachy (~Lachy@cm-84.215.19.229.getinternet.no) (Quit: Computer has gone to sleep.)
- # [10:22] <MikeSmith> anyway I'll mess around with it a bit
- # [10:25] * Quits: Kolombiken (~Adium@217.13.228.226) (Quit: Leaving.)
- # [10:27] * Joins: baku (~baku@x1-6-e0-46-9a-1f-0a-72.k694.webspeed.dk)
- # [10:28] * Quits: sangwhan (~cynthia@58.121.33.154) (Ping timeout: 245 seconds)
- # [10:28] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [10:29] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [10:30] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [10:34] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Ping timeout: 276 seconds)
- # [10:38] * Quits: SimonSapin (~simon@85-170-128-18.rev.numericable.fr) (Ping timeout: 240 seconds)
- # [10:39] * jonlee is now known as jonlee|afk
- # [10:40] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [10:45] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [10:48] * Quits: jonlee|afk (~jonlee@c-71-202-46-113.hsd1.ca.comcast.net) (Quit: jonlee|afk)
- # [10:49] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Client Quit)
- # [10:50] * Joins: nonge (~nonge@p50829772.dip.t-dialin.net)
- # [10:51] <MikeSmith> zcorpan: one thing I guess we could have it do it is, emit the entire current command expression it was parsing when it found the error
- # [10:52] <MikeSmith> just one command along with all its arguments
- # [10:53] <MikeSmith> do you think would that be useful enough that I should bother to try adding it?
- # [10:53] * Quits: nessy (silviapf@nat/google/x-qxipvrtysytczydz) (Quit: Leaving.)
- # [10:54] * Joins: Lachy (~Lachy@pat-tazdevil.opera.com)
- # [10:54] * Quits: nonge_ (~nonge@p50829859.dip.t-dialin.net) (Ping timeout: 264 seconds)
- # [10:54] <zcorpan> MikeSmith: giving a small context around the error seems good enough to be able to locate the error
- # [10:55] <MikeSmith> OK
- # [10:56] * Quits: cgcardona (~cgcardona@unaffiliated/cgcardona) (Quit: cgcardona)
- # [10:56] <zcorpan> MikeSmith: the message doesn't trim the attribute value, but the source extract does. that seems like a bug
- # [10:57] * Joins: JonathanNeal (~anonymous@cpe-142-11-82-156.socal.rr.com)
- # [10:57] <zcorpan> MikeSmith: maybe the message should omit the value completely if it's longer than some value
- # [10:57] <MikeSmith> yeah
- # [10:58] <MikeSmith> that would not be too hard to change
- # [10:58] <MikeSmith> so I wonder how long is too long
- # [11:01] <MikeSmith> 300 characters?
- # [11:01] <MikeSmith> 200?
- # [11:05] * Joins: SimonSapin (~simon@2a01:e35:2e8d:b5f0:ea9d:87ff:fe22:e221)
- # [11:08] <MikeSmith> zcorpan: btw the attribute value doesn't get trimmed in the source extract either, does it?
- # [11:09] <zcorpan> my test case in the bug seems to get trimmed in the source extract
- # [11:10] <MikeSmith> strange
- # [11:10] <MikeSmith> it doesn't for me
- # [11:10] <MikeSmith> can you make a screen shot?
- # [11:11] <MikeSmith> the extract I'm seeing has the whole element emitted and highlighted in red
- # [11:11] * Ms2ger mumbles something about CSS specs
- # [11:11] <zcorpan> um. now it doesn't
- # [11:12] * Quits: kborchers_ (~kborchers@unaffiliated/kborchers) (Ping timeout: 246 seconds)
- # [11:13] * Joins: kmbarnhart (~IceChat77@184.175.13.81)
- # [11:13] <MikeSmith> zcorpan: ok
- # [11:14] <zcorpan> MikeSmith: if i use <img src="aaaaaaaa b"> where there are many "a"s, i get trimmed source extract.
- # [11:14] <zcorpan> d>↩<body>↩<img src="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa…aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa b">↩</bod
- # [11:14] <MikeSmith> oh
- # [11:14] <zcorpan> i thought i saw that for d="" previously as well
- # [11:15] * Joins: kborchers (~kborchers@unaffiliated/kborchers)
- # [11:15] <MikeSmith> I'll take a look at that part of the message code
- # [11:16] <MikeSmith> for the riduculously-long case I can have it truncate the value or omit it completely
- # [11:16] <MikeSmith> in both places
- # [11:17] <zcorpan> i think i'd prefer omit in the message and truncate in the source extract
- # [11:17] <MikeSmith> OK
- # [11:18] <MikeSmith> that makes sense
- # [11:18] * Joins: sangwhan (~cynthia@211.201.105.54)
- # [11:18] <zcorpan> as for too long, let's go with 200, since that's about as long as the truncated highlighted source extract is
- # [11:19] <MikeSmith> yeah that's what I was thinking too
- # [11:19] <MikeSmith> 300 is too long
- # [11:21] * Quits: plutoniix (~plutoniix@ppp-58-8-210-57.revip2.asianet.co.th) (Quit: จรลี จรลา)
- # [11:26] * Joins: alrra (~alrra@unaffiliated/alrra)
- # [11:29] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [11:35] <kmbarnhart> Can someone answer a question I have about the WebVTT specification
- # [11:35] * Quits: JohnAlbin (~JohnAlbin@111-250-46-191.dynamic.hinet.net) (Quit: JohnAlbin)
- # [11:35] <kmbarnhart> Sepecifically, a number of times the spec states "one or more characters other than" and say line feed and ampersand
- # [11:37] <kmbarnhart> It seems to me that that means line feed and ampersand are not allowed at all
- # [11:38] <kmbarnhart> Which would mean that in the cue text cannot have newline or an & without &
- # [11:39] <zcorpan> kmbarnhart: right, line feed and ampersand are not allowed at all for that particular part of the syntax it's discussing, because they have special meaning and are allowed in other parts of the syntax
- # [11:39] <kmbarnhart> ok thanks
- # [11:40] <zcorpan> kmbarnhart: e.g. with the cue data "foo & bar", there is text "foo ", entity "&" and text " bar"
- # [11:40] <zcorpan> kmbarnhart: ampersand is not allowed in the text parts
- # [11:40] <zcorpan> does that make sense?
- # [11:41] <kmbarnhart> yes. I was a bit unclear because ok, however the newline issues is contrary to the non-normative example and is allowed by the parser
- # [11:42] <zcorpan> can you explain what the newilne issues are?
- # [11:42] <zcorpan> newline, even
- # [11:42] <kmbarnhart> The part I'm concerned with is here http://dev.w3.org/html5/webvtt/#webvtt-cue-text-span
- # [11:42] * Joins: reinaldob (~reinaldob@201.74.233.31)
- # [11:43] <kmbarnhart> The example here: http://dev.w3.org/html5/webvtt/#cues-with-multiple-lines
- # [11:43] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
- # [11:43] <zcorpan> see http://dev.w3.org/html5/webvtt/#webvtt-cue-text
- # [11:44] <zcorpan> each line is a cue text span
- # [11:45] <kmbarnhart> ok ic
- # [11:45] <kmbarnhart> I missed that, thank you
- # [11:45] <zcorpan> np
- # [11:46] <zcorpan> (each line in the example in the spec, i mean. a line can have several webvtt components, too.)
- # [11:50] * Parts: a-ja (~Instantbi@70.230.159.5)
- # [11:57] * Joins: Stevef_ (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [11:59] * Joins: mpt (~mpt@faun.canonical.com)
- # [11:59] * Quits: mpt (~mpt@faun.canonical.com) (Changing host)
- # [11:59] * Joins: mpt (~mpt@canonical/mpt)
- # [11:59] * Joins: tomasf (~tomasf@77.72.97.5)
- # [12:06] * Quits: reinaldob (~reinaldob@201.74.233.31) (Remote host closed the connection)
- # [12:08] * Quits: JonathanNeal (~anonymous@cpe-142-11-82-156.socal.rr.com) (Quit: JonathanNeal)
- # [12:11] * Joins: bLh (wat@89-212-66-204.dynamic.t-2.net)
- # [12:18] * Joins: mbatle (mbatle@pasanda.collabora.co.uk)
- # [12:26] * Quits: kmbarnhart (~IceChat77@184.175.13.81) (Quit: REALITY.SYS Corrupted: Re-boot universe? (Y/N/Q))
- # [12:30] * Joins: izhak (~izhak@213.87.241.204)
- # [12:33] * Quits: zdobersek (~zan@cpe-62-84-226-3.dynamic.amis.net) (Ping timeout: 260 seconds)
- # [12:34] * Quits: izhak (~izhak@213.87.241.204) (Ping timeout: 252 seconds)
- # [12:38] * Quits: bLh (wat@89-212-66-204.dynamic.t-2.net)
- # [12:43] * Quits: MikeSmith (~MikeSmith@p15181-obmd01.tokyo.ocn.ne.jp) (Ping timeout: 252 seconds)
- # [12:51] * Quits: Somatt_wrk (~somattwrk@darkstar2.fullsix.com) (Ping timeout: 255 seconds)
- # [12:54] * Quits: shwetank (~shwetank@122.173.173.97) (Quit: Leaving...)
- # [12:57] * Joins: shwetank (~shwetank@122.173.173.97)
- # [12:58] * Quits: SimonSapin (~simon@2a01:e35:2e8d:b5f0:ea9d:87ff:fe22:e221) (Quit: Leaving.)
- # [13:01] * Joins: SimonSapin (~simon@2a01:e35:2e8d:b5f0:ea9d:87ff:fe22:e221)
- # [13:09] * Joins: MikeSmith (~MikeSmith@s1106052.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [13:10] * Joins: WolfieZero (~WolfieZer@87.124.34.32)
- # [13:19] * Joins: Somatt_wrk (~somattwrk@darkstar2.fullsix.com)
- # [13:34] * Quits: sedovsek (~robert@89.143.12.238) (Quit: sedovsek)
- # [13:51] * Quits: WolfieZero (~WolfieZer@87.124.34.32) (Quit: WolfieZero)
- # [13:52] * Joins: reinaldob (~reinaldob@201.74.233.31)
- # [13:53] * Quits: baku (~baku@x1-6-e0-46-9a-1f-0a-72.k694.webspeed.dk) (Ping timeout: 248 seconds)
- # [14:03] * Quits: reinaldob (~reinaldob@201.74.233.31) (Remote host closed the connection)
- # [14:04] * Joins: Ducki_ (~Ducki@pD9E3891F.dip0.t-ipconnect.de)
- # [14:07] * Quits: Ducki (~Ducki@pD9E39DD8.dip0.t-ipconnect.de) (Ping timeout: 255 seconds)
- # [14:08] * Joins: auchenbe_ (~auchenber@176.222.239.226)
- # [14:11] * Quits: auchenberg (~auchenber@176.222.239.226) (Ping timeout: 248 seconds)
- # [14:11] * Joins: WolfieZero (~WolfieZer@87.124.34.32)
- # [14:11] * Joins: xjiujiu (~quassel@218.77.14.202)
- # [14:12] * Joins: JohnAlbin (~JohnAlbin@36-224-105-112.dynamic-ip.hinet.net)
- # [14:19] * Joins: sedovsek (~robert@89.143.12.238)
- # [14:26] * Joins: annevk (~annevk@209.118.182.194)
- # [14:37] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [14:37] * Quits: WolfieZero (~WolfieZer@87.124.34.32) (Quit: WolfieZero)
- # [14:39] * Joins: cgcardona (~cgcardona@c-24-4-198-207.hsd1.ca.comcast.net)
- # [14:39] * Quits: cgcardona (~cgcardona@c-24-4-198-207.hsd1.ca.comcast.net) (Changing host)
- # [14:39] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
- # [14:41] * Joins: zdobersek (~zan@cpe-62-84-226-3.dynamic.amis.net)
- # [14:42] * Joins: divya (~nimbu@c-67-169-39-98.hsd1.ca.comcast.net)
- # [14:46] * Joins: WolfieZero (~WolfieZer@87.124.34.32)
- # [14:51] * Quits: zcorpan (~zcorpan@81-231-170-159-no135.tbcn.telia.com) (Remote host closed the connection)
- # [14:58] * Quits: auchenbe_ (~auchenber@176.222.239.226) (Remote host closed the connection)
- # [14:58] * Quits: WolfieZero (~WolfieZer@87.124.34.32) (Quit: WolfieZero)
- # [14:59] * Joins: erichynds (~ehynds@64.206.121.41)
- # [15:01] * Quits: jdaggett (~jdaggett@v023209.dynamic.ppp.asahi-net.or.jp) (Quit: jdaggett)
- # [15:03] * Joins: auchenberg (~auchenber@176.222.239.226)
- # [15:04] * Joins: danzik17 (~danzik17@164.55.254.106)
- # [15:04] * Quits: tomasf (~tomasf@77.72.97.5) (Quit: tomasf)
- # [15:13] * Quits: xjiujiu (~quassel@218.77.14.202) (Read error: Connection reset by peer)
- # [15:20] * Joins: MacTed (~Thud@63.119.36.36)
- # [15:27] * Joins: yoshu (~josh@67-1-11-149.tcso.qwest.net)
- # [15:34] * Joins: garciawebdev (~garciaweb@190.244.76.14)
- # [15:36] * Quits: kennyluck (~kennyluck@119.161.158.96) (Quit: kennyluck)
- # [15:41] * Joins: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se)
- # [15:45] <annevk> Oh Mozilla killed XML Events. Well Opera, when will you?
- # [15:46] * Quits: annevk (~annevk@209.118.182.194) (Remote host closed the connection)
- # [15:47] * Quits: sedovsek (~robert@89.143.12.238) (Quit: sedovsek)
- # [15:47] * Joins: baku (~baku@194.182.142.5)
- # [15:48] <smaug____> Does Opera have XML Events?
- # [15:48] <smaug____> for what?
- # [15:48] <smaug____> XML Events require special kinds of event listeners
- # [15:49] <smaug____> xforms elements or such
- # [15:49] * Quits: divya (~nimbu@c-67-169-39-98.hsd1.ca.comcast.net) (Quit: Leaving.)
- # [15:49] <smaug____> Don't remember how that all worked in X+V
- # [15:50] * Quits: baku (~baku@194.182.142.5) (Client Quit)
- # [15:50] * Joins: baku (~baku@194.182.142.5)
- # [15:51] * Joins: sedovsek (~robert@89.143.12.238)
- # [15:52] <darobin> I didn't know anyone supported XML Events in the first place
- # [15:52] * Quits: erichynds (~ehynds@64.206.121.41)
- # [15:53] <jgraham> If you supported XML events you would keep quiet about it too
- # [15:53] <darobin> yeah you would, nasty buggers to use they were
- # [15:58] * Quits: yoshu (~josh@67-1-11-149.tcso.qwest.net) (Quit: yoshu)
- # [16:00] * Joins: Ducki (~Ducki@pD9E395B2.dip0.t-ipconnect.de)
- # [16:00] * Quits: baku (~baku@194.182.142.5) (Read error: Connection reset by peer)
- # [16:00] * Joins: yodasw16 (~yodasw16@ql1fwhide.rockfin.com)
- # [16:01] <smaug____> XML Events was the first larger contribution I made to Gecko (2004, I think) . And now I removed it :)
- # [16:01] * Quits: Ducki_ (~Ducki@pD9E3891F.dip0.t-ipconnect.de) (Ping timeout: 255 seconds)
- # [16:13] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [16:15] * Joins: jacobolus (~jacobolus@99.127.228.11)
- # [16:18] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Ping timeout: 246 seconds)
- # [16:20] * Quits: jacobolus (~jacobolus@99.127.228.11) (Ping timeout: 252 seconds)
- # [16:20] * Joins: izhak (~izhak@213.87.240.35)
- # [16:20] * Quits: maikmerten (~merten@ls5dhcp200.cs.uni-dortmund.de) (Remote host closed the connection)
- # [16:22] * Quits: Lachy (~Lachy@pat-tazdevil.opera.com) (Quit: Computer has gone to sleep.)
- # [16:23] * Quits: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net) (Quit: tantek)
- # [16:23] * Joins: yoshu (~josh@uawifi-nat-210-38.arizona.edu)
- # [16:23] * Joins: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net)
- # [16:28] * Joins: annevk (~annevk@209.118.182.194)
- # [16:28] <annevk> Pretty sure Opera has it for SVG
- # [16:28] * Joins: divya (~nimbu@sjfw1-a.adobe.com)
- # [16:28] * Parts: shwetank (~shwetank@122.173.173.97) ("Linkinus - http://linkinus.com")
- # [16:29] <annevk> Opera also still has xml:id :-(
- # [16:29] * Quits: izhak (~izhak@213.87.240.35) (Ping timeout: 240 seconds)
- # [16:32] * Quits: Ducki (~Ducki@pD9E395B2.dip0.t-ipconnect.de) (Ping timeout: 260 seconds)
- # [16:32] * Quits: annevk (~annevk@209.118.182.194) (Remote host closed the connection)
- # [16:32] * Quits: auchenberg (~auchenber@176.222.239.226) (Remote host closed the connection)
- # [16:32] * Joins: auchenberg (~auchenber@176.222.239.226)
- # [16:39] * Joins: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net)
- # [16:40] * Quits: alrra (~alrra@unaffiliated/alrra) (Ping timeout: 248 seconds)
- # [16:44] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [16:45] * Quits: Somatt_wrk (~somattwrk@darkstar2.fullsix.com) (Ping timeout: 264 seconds)
- # [16:46] * Joins: krawchyk (~krawchyk@c-76-21-215-221.hsd1.dc.comcast.net)
- # [16:49] * Joins: Somatt_wrk (~somattwrk@darkstar2.fullsix.com)
- # [16:50] * Quits: yoshu (~josh@uawifi-nat-210-38.arizona.edu) (Quit: yoshu)
- # [16:52] * Quits: MikeSmith (~MikeSmith@s1106052.xgsspn.imtp.tachikawa.spmode.ne.jp) (Quit: MikeSmith)
- # [16:52] * Joins: yoshu (~josh@uawifi-nat-210-38.arizona.edu)
- # [16:59] * Quits: hdhoang (~hdhoang@113.178.25.158) (Quit: Leaving.)
- # [17:00] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [17:00] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [17:01] * Joins: MikeSmith (~MikeSmith@s1106052.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [17:02] * Quits: yoshu (~josh@uawifi-nat-210-38.arizona.edu) (Quit: yoshu)
- # [17:03] * Joins: hswe (~hswe@san.space150.com)
- # [17:03] * Joins: jonlee (~jonlee@c-71-202-46-113.hsd1.ca.comcast.net)
- # [17:05] * Joins: yoshu (~josh@150.135.118.188)
- # [17:05] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Ping timeout: 246 seconds)
- # [17:08] * Quits: jonlee (~jonlee@c-71-202-46-113.hsd1.ca.comcast.net) (Quit: jonlee)
- # [17:11] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
- # [17:12] * Quits: tomasf (~tomasf@static-88.131.62.36.addr.tdcsong.se) (Quit: tomasf)
- # [17:13] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [17:13] * Joins: Ducki (~Ducki@pD9E395B2.dip0.t-ipconnect.de)
- # [17:31] * Joins: eresair (~eresair@173.247.199.2)
- # [17:31] * Quits: cabanier (~cabanier@c-98-237-137-173.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [17:34] * Joins: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no)
- # [17:35] * Joins: vikash (~vikash@175.100.147.119)
- # [17:35] * Quits: vikash (~vikash@175.100.147.119) (Client Quit)
- # [17:37] * Quits: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no) (Remote host closed the connection)
- # [17:37] * Quits: MikeSmith (~MikeSmith@s1106052.xgsspn.imtp.tachikawa.spmode.ne.jp) (Quit: MikeSmith)
- # [17:41] * Quits: cgcardona (~cgcardona@unaffiliated/cgcardona) (Quit: cgcardona)
- # [17:47] * Quits: jernoble (~jernoble@17.212.152.13) (Quit: Textual IRC Client: www.textualapp.com)
- # [17:50] * Joins: MikeSmith (~MikeSmith@s1106052.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [17:50] * Quits: drublic (~drublic@p5098a42b.dip0.t-ipconnect.de) (Remote host closed the connection)
- # [17:51] <dglazkov> good morning, Whatwg!
- # [17:54] * Joins: jonlee (~jonlee@65.50.217.92)
- # [17:55] * Joins: cabanier (~cabanier@192.150.22.55)
- # [17:57] * Quits: divya (~nimbu@sjfw1-a.adobe.com) (Quit: Leaving.)
- # [18:00] * Joins: divya (~nimbu@sjfw1-a.adobe.com)
- # [18:03] * Quits: auchenberg (~auchenber@176.222.239.226) (Remote host closed the connection)
- # [18:06] * Parts: hswe (~hswe@san.space150.com)
- # [18:09] * Joins: blooberry (blooberry_@nat/intel/x-gtqmqioskgbwemqj)
- # [18:09] * heycam|away is now known as heycam
- # [18:09] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [18:10] * Joins: jsbell (jsbell@nat/google/x-jhtmkhcyfnynfsvt)
- # [18:13] * Joins: ehsan (~ehsan@64.213.70.194)
- # [18:14] * Quits: Kolombiken (~Adium@217.13.228.226) (Read error: Connection reset by peer)
- # [18:14] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [18:14] * Joins: erichynds (~ehynds@64.206.121.41)
- # [18:15] * Quits: henrikkok (~henrikkok@81.27.221.193) (Quit: Leaving.)
- # [18:16] * Joins: jacobolus (~jacobolus@108.71.93.34)
- # [18:18] * Joins: ap (~ap@2620:149:4:1b01:937:e25a:fa9:97d2)
- # [18:18] * Joins: sicking (~sicking@nat/mozilla/x-agqtpdoiofmfxjdc)
- # [18:19] * Quits: sicking (~sicking@nat/mozilla/x-agqtpdoiofmfxjdc) (Client Quit)
- # [18:19] * Joins: sicking (~sicking@2620:101:8003:200:c54d:7489:8d9:3aee)
- # [18:28] * Quits: Kolombiken (~Adium@217.13.228.226) (Ping timeout: 265 seconds)
- # [18:29] * Joins: JonathanNeal (~anonymous@cpe-142-11-82-156.socal.rr.com)
- # [18:32] * Quits: jonlee (~jonlee@65.50.217.92) (Quit: jonlee)
- # [18:33] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [18:33] * Joins: zcorpan (~zcorpan@81-231-170-159-no135.tbcn.telia.com)
- # [18:37] * Joins: alrra (~alrra@unaffiliated/alrra)
- # [18:39] * Quits: yoshu (~josh@150.135.118.188) (Quit: yoshu)
- # [18:41] <tantek> good morning dglazkov!
- # [18:41] * Quits: darobin (~darobin@78.109.80.74) (Ping timeout: 240 seconds)
- # [18:43] * Quits: sedovsek (~robert@89.143.12.238) (Quit: sedovsek)
- # [18:44] * Joins: yoshu (~josh@150.135.118.188)
- # [18:45] * Quits: nonge (~nonge@p50829772.dip.t-dialin.net) (Quit: Verlassend)
- # [18:46] * Quits: divya (~nimbu@sjfw1-a.adobe.com) (Quit: Leaving.)
- # [18:47] * Joins: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no)
- # [18:50] * Joins: jwalden (~waldo@c-71-202-165-226.hsd1.ca.comcast.net)
- # [18:51] * Joins: pablof (~pablof@144.189.150.129)
- # [18:52] * Quits: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no) (Ping timeout: 252 seconds)
- # [18:52] * Joins: dbaron (~dbaron@64.213.70.194)
- # [18:56] * Joins: jonlee (~jonlee@2620:149:4:1b01:f0b4:5274:7065:eefd)
- # [18:57] * Joins: say2joe (~say2joe@204.56.108.2)
- # [18:57] * Joins: yoshu_ (~josh@uawifi-nat-210-38.arizona.edu)
- # [18:57] * Quits: yoshu_ (~josh@uawifi-nat-210-38.arizona.edu) (Client Quit)
- # [19:00] * Quits: yoshu (~josh@150.135.118.188) (Ping timeout: 240 seconds)
- # [19:01] * Quits: sicking (~sicking@2620:101:8003:200:c54d:7489:8d9:3aee) (Quit: sicking)
- # [19:02] * Joins: yoshu (~josh@uawifi-nat-210-38.arizona.edu)
- # [19:03] * Joins: divya (~nimbu@sjfw1-a.adobe.com)
- # [19:04] * Joins: mattgifford (~mattgiffo@70.102.199.158)
- # [19:04] * Quits: divya (~nimbu@sjfw1-a.adobe.com) (Client Quit)
- # [19:08] * Joins: divya (~nimbu@sjfw1-a.adobe.com)
- # [19:11] * Joins: bholley (~bholley@c-67-180-21-133.hsd1.ca.comcast.net)
- # [19:16] * Quits: jonlee (~jonlee@2620:149:4:1b01:f0b4:5274:7065:eefd) (Quit: jonlee)
- # [19:18] <TabAtkins> jdaggett: Looks like Ms2ger handled the rewrite for me. His suggested patch looks good on its face.
- # [19:19] <Ms2ger> TabAtkins, not to me, half of it needs to be filled in still
- # [19:19] * Joins: jonlee (~jonlee@2620:149:4:1b01:e46c:e920:53a7:10d5)
- # [19:19] * Quits: jonlee (~jonlee@2620:149:4:1b01:e46c:e920:53a7:10d5) (Client Quit)
- # [19:19] * Joins: KevinMarks (~KevinMark@c-71-204-145-244.hsd1.ca.comcast.net)
- # [19:20] * Joins: jonlee (~jonlee@2620:149:4:1b01:e46c:e920:53a7:10d5)
- # [19:20] * Quits: eresair (~eresair@173.247.199.2) (Remote host closed the connection)
- # [19:20] <TabAtkins> Ms2ger: The part you've filled in looks fine with me skimming it, though.
- # [19:21] * Joins: yorick (~quassel@vredebest.xs4all.nl)
- # [19:21] * Quits: yorick (~quassel@vredebest.xs4all.nl) (Changing host)
- # [19:21] * Joins: yorick (~quassel@unaffiliated/yorick)
- # [19:23] * Quits: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com) (Ping timeout: 248 seconds)
- # [19:24] * Quits: say2joe (~say2joe@204.56.108.2) (Quit: Leaving.)
- # [19:27] * Quits: divya (~nimbu@sjfw1-a.adobe.com) (Quit: Leaving.)
- # [19:29] * Joins: cgcardona (~cgcardona@64.124.34.2)
- # [19:29] * Quits: cgcardona (~cgcardona@64.124.34.2) (Changing host)
- # [19:29] * Joins: cgcardona (~cgcardona@unaffiliated/cgcardona)
- # [19:33] * Joins: say2joe (~say2joe@204.56.108.2)
- # [19:33] * Joins: miketaylr (~miketaylr@cpe-70-112-101-224.austin.res.rr.com)
- # [19:37] * Quits: yoshu (~josh@uawifi-nat-210-38.arizona.edu) (Quit: yoshu)
- # [19:38] * Quits: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net) (Quit: tantek)
- # [19:40] * Quits: blooberry (blooberry_@nat/intel/x-gtqmqioskgbwemqj) (Remote host closed the connection)
- # [19:40] * Joins: divya (~nimbu@sjfw1-a.adobe.com)
- # [19:43] * necolas_ is now known as necolas
- # [19:44] * Quits: MikeSmith (~MikeSmith@s1106052.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 256 seconds)
- # [19:54] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [19:54] * Joins: Druide__ (~Druid@p5B05D7BC.dip.t-dialin.net)
- # [19:54] * Joins: jernoble (~jernoble@17.212.152.13)
- # [19:56] * Quits: Druide_ (~Druid@p5B137AF8.dip.t-dialin.net) (Ping timeout: 244 seconds)
- # [19:57] * Quits: ehsan (~ehsan@64.213.70.194) (Read error: Connection reset by peer)
- # [19:58] * Joins: ehsan (~ehsan@64.213.70.194)
- # [19:58] * Quits: Somatt_wrk (~somattwrk@darkstar2.fullsix.com) (Ping timeout: 252 seconds)
- # [19:58] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [19:59] * Quits: divya (~nimbu@sjfw1-a.adobe.com) (Quit: Leaving.)
- # [20:00] * Quits: zcorpan (~zcorpan@81-231-170-159-no135.tbcn.telia.com) (Remote host closed the connection)
- # [20:00] * Joins: eresair (~eresair@173.247.199.2)
- # [20:05] * Joins: divya (~nimbu@sjfw1-a.adobe.com)
- # [20:07] * Joins: Lachy (~Lachy@cm-84.215.19.229.getinternet.no)
- # [20:08] * Quits: Stevef_ (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 246 seconds)
- # [20:08] * Quits: pablof (~pablof@144.189.150.129) (Remote host closed the connection)
- # [20:09] * Joins: pablof (~pablof@144.189.31.1)
- # [20:16] * Quits: SimonSapin (~simon@2a01:e35:2e8d:b5f0:ea9d:87ff:fe22:e221) (Ping timeout: 246 seconds)
- # [20:16] * Joins: SimonSapin (~simon@vev69-1-82-232-219-95.fbx.proxad.net)
- # [20:21] * Quits: SimonSapin (~simon@vev69-1-82-232-219-95.fbx.proxad.net) (Ping timeout: 264 seconds)
- # [20:21] * Quits: jernoble (~jernoble@17.212.152.13) (Quit: Textual IRC Client: www.textualapp.com)
- # [20:23] * Joins: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no)
- # [20:26] * Joins: jernoble (~jernoble@17.212.152.13)
- # [20:28] * jonlee is now known as jonlee|afk
- # [20:29] * jonlee|afk is now known as jonlee
- # [20:29] * Quits: divya (~nimbu@sjfw1-a.adobe.com) (Quit: Leaving.)
- # [20:30] <Hixie> should scrollPathIntoView() in a worker do anything?
- # [20:31] <Hixie> (i could, in theory, have it remember what it was told to scroll to, and when you call commit(), have it tell teh main thread to actually do that scroll)
- # [20:33] <TabAtkins> Interesting.
- # [20:33] <TabAtkins> That sounds useful, actually.
- # [20:34] <TabAtkins> It would probably be good, as much as possible, to make the deferred canvas act like the original canvas would, just delayed by the commit().
- # [20:34] * Joins: divya (~nimbu@sjfw1-a.adobe.com)
- # [20:35] <Hixie> ok
- # [20:37] * Quits: ehsan (~ehsan@64.213.70.194) (Read error: Connection reset by peer)
- # [20:37] * Joins: ehsan (~ehsan@64.213.70.194)
- # [20:38] <Hixie> so when you're doing this worker-to-main-thread thing, i push the bits out when the main thread is in a stable state (between tasks)
- # [20:38] <Hixie> (though i suppose i could queue a task)
- # [20:39] * Quits: divya (~nimbu@sjfw1-a.adobe.com) (Client Quit)
- # [20:39] <Hixie> anyway. if, for whatever reason, the "worker" is actually script running on the same thread, should commit() switch to being synchronous? i'm thinking not, it should still queue...
- # [20:43] * Joins: danja (~danny@host29-203-dynamic.12-79-r.retail.telecomitalia.it)
- # [20:44] * Quits: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no) (Remote host closed the connection)
- # [20:45] * Joins: divya (~nimbu@sjfw1-a.adobe.com)
- # [20:47] * Quits: divya (~nimbu@sjfw1-a.adobe.com) (Client Quit)
- # [20:48] * Joins: SimonSapin (~simon@85-170-128-18.rev.numericable.fr)
- # [20:48] * Joins: tantek (~tantek@ma80536d0.tmodns.net)
- # [20:54] * Joins: nessy (~silviapf@124-171-35-8.dyn.iinet.net.au)
- # [20:54] <Hixie> context.fillRect(0,0,10,10); context.drawImage(context, 20,0); -- how many rectangles?
- # [20:54] <Hixie> i was planning on making it one rectangle in workers and two for the case where you getContext()
- # [20:55] <Hixie> (because in the former case you have to commit() and the latter you don't)
- # [20:55] <Hixie> but i'm thinking maybe it should always be two
- # [20:55] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [20:58] * Joins: othermaciej (~mjs@2620:149:f01:201:346f:fe2a:fc3e:d915)
- # [21:00] * Quits: jwalden (~waldo@c-71-202-165-226.hsd1.ca.comcast.net) (Quit: back later)
- # [21:01] * Joins: Stevef_ (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [21:02] * Joins: divya (~nimbu@sjfw1-a.adobe.com)
- # [21:04] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [21:07] * Joins: yoshu (~josh@150.135.118.188)
- # [21:08] * Joins: sicking (~sicking@2620:101:8003:200:795f:6765:376f:747f)
- # [21:09] * Quits: sicking (~sicking@2620:101:8003:200:795f:6765:376f:747f) (Client Quit)
- # [21:10] * Joins: sicking (~sicking@nat/mozilla/x-nxprxbfvfevulqas)
- # [21:11] * Quits: sicking (~sicking@nat/mozilla/x-nxprxbfvfevulqas) (Client Quit)
- # [21:19] * Quits: Stevef_ (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 246 seconds)
- # [21:20] * Quits: yoshu (~josh@150.135.118.188) (Quit: yoshu)
- # [21:22] * Joins: othermaciej_ (~mjs@17.244.1.96)
- # [21:24] * Quits: othermaciej (~mjs@2620:149:f01:201:346f:fe2a:fc3e:d915) (Ping timeout: 246 seconds)
- # [21:24] * othermaciej_ is now known as othermaciej
- # [21:30] * Joins: sicking (~sicking@nat/mozilla/x-zuwuqqvfvteuthap)
- # [21:41] * Quits: zdobersek (~zan@cpe-62-84-226-3.dynamic.amis.net) (Quit: Leaving.)
- # [21:41] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [21:43] * Quits: othermaciej (~mjs@17.244.1.96) (Quit: othermaciej)
- # [21:43] * Joins: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no)
- # [21:46] * Quits: JonathanNeal (~anonymous@cpe-142-11-82-156.socal.rr.com) (Quit: JonathanNeal)
- # [21:50] * Quits: tantek (~tantek@ma80536d0.tmodns.net) (Ping timeout: 245 seconds)
- # [21:51] * Quits: yodasw16 (~yodasw16@ql1fwhide.rockfin.com) (Quit: yodasw16)
- # [21:52] * Joins: tantek (~tantek@ma80536d0.tmodns.net)
- # [22:00] * Quits: sicking (~sicking@nat/mozilla/x-zuwuqqvfvteuthap) (Quit: sicking)
- # [22:01] * Quits: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no) (Remote host closed the connection)
- # [22:02] * Joins: sicking (~sicking@nat/mozilla/x-wduqucdhmwaghqdx)
- # [22:02] * Joins: othermaciej (~mjs@17.244.1.96)
- # [22:02] * Quits: erichynds (~ehynds@64.206.121.41)
- # [22:03] * Joins: yoshu (~josh@150.135.118.188)
- # [22:06] * jernoble is now known as jernoble|afk
- # [22:06] * jernoble|afk is now known as jernoble
- # [22:08] * Quits: jacobolus (~jacobolus@108.71.93.34) (Remote host closed the connection)
- # [22:12] * Joins: zcorpan (~zcorpan@81-231-170-159-no135.tbcn.telia.com)
- # [22:16] * Quits: othermaciej (~mjs@17.244.1.96) (Quit: othermaciej)
- # [22:18] * Quits: eresair (~eresair@173.247.199.2) (Remote host closed the connection)
- # [22:19] * Quits: zcorpan (~zcorpan@81-231-170-159-no135.tbcn.telia.com) (Remote host closed the connection)
- # [22:19] * jonlee is now known as jonlee|afk
- # [22:23] * Quits: alrra (~alrra@unaffiliated/alrra) (Ping timeout: 260 seconds)
- # [22:25] * Joins: othermaciej (~mjs@17.244.1.96)
- # [22:28] * Quits: jonlee|afk (~jonlee@2620:149:4:1b01:e46c:e920:53a7:10d5) (Quit: jonlee|afk)
- # [22:29] * Quits: othermaciej (~mjs@17.244.1.96) (Ping timeout: 255 seconds)
- # [22:30] * Joins: jonlee (~jonlee@2620:149:4:1b01:c4a3:7486:1924:b815)
- # [22:31] * Quits: tantek (~tantek@ma80536d0.tmodns.net) (Ping timeout: 265 seconds)
- # [22:40] * Joins: jacobolus (~jacobolus@108-71-93-34.lightspeed.sntcca.sbcglobal.net)
- # [22:44] * Joins: sicking_ (~sicking@2620:101:8003:200:9ec:f4ba:b7aa:8c31)
- # [22:45] * Joins: weinig (~weinig@2620:149:4:1b01:60e1:7c2c:e161:fe24)
- # [22:47] * Quits: divya (~nimbu@sjfw1-a.adobe.com) (Quit: Leaving.)
- # [22:48] * Quits: sicking (~sicking@nat/mozilla/x-wduqucdhmwaghqdx) (Ping timeout: 240 seconds)
- # [22:48] * sicking_ is now known as sicking
- # [22:49] * Joins: asdf` (asdf@bigfr.klupek.org)
- # [22:50] * Joins: divya (~nimbu@sjfw1-a.adobe.com)
- # [22:50] * Quits: divya (~nimbu@sjfw1-a.adobe.com) (Client Quit)
- # [22:51] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [22:52] * Joins: othermaciej (~mjs@17.245.108.71)
- # [22:56] * Quits: MacTed (~Thud@63.119.36.36)
- # [22:58] * Quits: yoshu (~josh@150.135.118.188) (Ping timeout: 246 seconds)
- # [23:05] * Joins: tantek (~tantek@ma80536d0.tmodns.net)
- # [23:11] * Joins: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no)
- # [23:12] * Quits: othermaciej (~mjs@17.245.108.71) (Quit: othermaciej)
- # [23:13] * Joins: othermaciej (~mjs@17.245.108.71)
- # [23:13] * Quits: cheron (~cheron@unaffiliated/cheron) (Quit: Leaving.)
- # [23:14] * Joins: rniwa (~rniwa@17.212.154.114)
- # [23:15] * Quits: sicking (~sicking@2620:101:8003:200:9ec:f4ba:b7aa:8c31) (Quit: sicking)
- # [23:16] * Quits: hasather_ (~hasather_@cm-84.208.105.178.getinternet.no) (Ping timeout: 265 seconds)
- # [23:20] * Joins: sicking (~sicking@2620:101:8003:200:ac67:265:fb69:917)
- # [23:27] * Joins: eresair (~eresair@173.247.199.2)
- # [23:27] * Joins: weinig_ (~weinig@17.245.107.57)
- # [23:28] * Joins: jwalden (~waldo@c-71-202-165-226.hsd1.ca.comcast.net)
- # [23:28] * Joins: WeirdAl (~chatzilla@g2spf.ask.info)
- # [23:30] * Quits: weinig (~weinig@2620:149:4:1b01:60e1:7c2c:e161:fe24) (Ping timeout: 246 seconds)
- # [23:30] * weinig_ is now known as weinig
- # [23:30] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [23:34] * Quits: Ms2ger (~Ms2ger@109.133.5.192) (Quit: nn)
- # [23:37] * abstractj|away is now known as abstractj
- # [23:37] * Quits: weinig (~weinig@17.245.107.57) (Remote host closed the connection)
- # [23:37] * Joins: weinig (~weinig@2620:149:4:1b01:ec78:af50:b2f:eadf)
- # [23:38] * abstractj is now known as abstractj|away
- # [23:39] * Joins: tomasf (~tom@2002:55e5:db44:0:6008:55c6:8d8d:1459)
- # [23:41] * Joins: weinig_ (~weinig@17.245.107.57)
- # [23:43] * Quits: weinig (~weinig@2620:149:4:1b01:ec78:af50:b2f:eadf) (Ping timeout: 246 seconds)
- # [23:43] * weinig_ is now known as weinig
- # [23:44] * Joins: bGriz (~quassel@san.space150.com)
- # [23:54] * Quits: WeirdAl (~chatzilla@g2spf.ask.info) (Quit: ChatZilla 0.9.89 [Firefox 16.0.2/20121024073032])
- # Session Close: Fri Nov 16 00:00:00 2012
The end :)