Options:
- # Session Start: Sat Jan 22 00:00:00 2011
- # Session Ident: #whatwg
- # [00:00] * Quits: Xano (~Xano@5249AD0D.cm-4-2c.dynamic.ziggo.nl) (Quit: Xano)
- # [00:01] * Joins: inkbase (~Inkbase@nat/ibm/x-yzmptzdunkwrwcvl)
- # [00:02] * Quits: smaug____ (~chatzilla@dsl-hkibrasgw4-fe41dc00-67.dhcp.inet.fi) (Ping timeout: 276 seconds)
- # [00:04] <bfrohs> TabAtkins: Does it support multiple tags for each level? e.g. - body { section, article { strong {prop:value; } } }
- # [00:04] <TabAtkins> bfrohs: Of course.
- # [00:04] <bfrohs> TabAtkins: You're my hero :)
- # [00:06] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 276 seconds)
- # [00:09] * Quits: annevk (~annevk@5355737B.cm-6-6b.dynamic.ziggo.nl) (Quit: annevk)
- # [00:10] <Steve^> This new CSS is effectively the same as Sass or less?
- # [00:10] * Quits: remysharp (~remysharp@cpc2-brig17-2-0-cust448.3-3.cable.virginmedia.com) (Quit: Shazam)
- # [00:10] <TabAtkins> Highly inspired, yeah.
- # [00:11] <Hixie> http://wiki.whatwg.org/wiki/FAQ updated based on theblog comments
- # [00:13] <Steve^> TabAtkins, what are the fundamental differences?
- # [00:14] <chriseppstein> Steve^: So far the biggest diff is some parser constraints and things have be kept declarative instead of sass's more imperative style.
- # [00:14] <TabAtkins> Steve^: Vars act like they should in a declarative language, unlike SASS where it can be assigned different values at different times.
- # [00:14] <TabAtkins> Then just some relatively minor syntax differences.
- # [00:15] <chriseppstein> TabAtkins: Lots of people are worried about nesting as a perf drag because descendent selectors are slow
- # [00:15] <Steve^> Less has constants, rather than variables
- # [00:16] <TabAtkins> chriseppstein: Nesting has no inherent relationship to descendant selectors. That's one of the things our syntax helps with.
- # [00:16] <chriseppstein> TabAtkins: how so
- # [00:17] <TabAtkins> foo { & > bar { prop: value; }} === foo > bar { prop: value; }
- # [00:17] <chriseppstein> right. you can do that in sass
- # [00:17] <chriseppstein> you can even omit the &
- # [00:17] <Steve^> exactly
- # [00:17] * Joins: weinig_ (~weinig@17.246.18.216)
- # [00:17] <Steve^> So how does the & help us?
- # [00:18] <TabAtkins> Yeah, so there's no perf hit that you wouldn't see otherwise. You're not forced to use descendant selectors. It's exactly as easy to write performant nested CSS as not.
- # [00:18] <chriseppstein> Steve^: body.foo &
- # [00:18] <TabAtkins> Steve^: When parsing CSS, if you don't have an explicit indication that "here there be nesting", you ahve to have lots of lookahead.
- # [00:18] <TabAtkins> In "foo { bar:hover a a a a a a { prop: value; }}", you don't know whether this is an element with a pseudoclass or a property named "bar" until you reach the {.
- # [00:18] <Steve^> hmm, not so sure about that
- # [00:19] <Steve^> ok, but does that matter?
- # [00:19] <TabAtkins> Yes. We try to minimize lookahead in CSS.
- # [00:19] <chriseppstein> TabAtkins: I agree. It's just a concern that people have. might want to make sure to note it in your post
- # [00:19] <TabAtkins> Except for a few minor places, we only have to do 1-token lookahead max.
- # [00:19] <TabAtkins> chriseppstein: Sure.
- # [00:19] * Quits: weinig_ (~weinig@17.246.18.216) (Client Quit)
- # [00:19] <Steve^> Yea, nice to explain that. First glance it looks like less/sass but with more syntax
- # [00:20] <Steve^> TabAtkins, how would you nest a :hover?
- # [00:20] <TabAtkins> foo { &:hover { prop:value; }}
- # [00:21] <TabAtkins> (This is another benefit of our syntax over the no-explicit-indicator syntax.)
- # [00:21] <Steve^> Would you have mixins?
- # [00:21] * Quits: BlurstOfTimes (~blurstoft@168.203.103.108) (Remote host closed the connection)
- # [00:21] <TabAtkins> You can use mixins and nesting together, yeah.
- # [00:21] * Quits: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl) (Quit: kor)
- # [00:22] <chriseppstein> TabAtkins: That's legal sass you just typed ;)
- # [00:22] * Quits: seventh (seventh@199.48.243.37) (Ping timeout: 240 seconds)
- # [00:22] <Steve^> So, you've added a & and restricting variables a little (so it's more like less, to my understanding)
- # [00:22] <TabAtkins> chriseppstein: Yeah, I'm just saying.
- # [00:22] <chriseppstein> Steve^: even less.js has &
- # [00:23] <Steve^> bah, less.js is a mess
- # [00:23] <chriseppstein> confirm
- # [00:23] * Joins: weinig_ (~weinig@17.246.18.216)
- # [00:23] <Steve^> I tried raising bugs and the developers didn't seem to care
- # [00:23] <Steve^> but it'll be nice for a CSS fallback
- # [00:24] <chriseppstein> you can use scss now :) we don't ignore bugs
- # [00:24] <TabAtkins> We're writing a preprocessor for our syntax anyway, so you'll be able to run it just like SASS/LESS, and use the new syntax now rather than a decade from now.
- # [00:24] <Steve^> chriseppstein, is that a typo of sass?
- # [00:24] <chriseppstein> scss is sass's css-based syntax
- # [00:24] * bga_ is now known as bga_|away
- # [00:24] <TabAtkins> Also, SASS may just add a mode that recognizes the spec syntax.
- # [00:24] <Steve^> ah
- # [00:24] <TabAtkins> alter scss to do so.
- # [00:25] <chriseppstein> TabAtkins: ya. maybe we'll just parse css in that mode
- # [00:26] <TabAtkins> If a spec says that UAs must block cross-origin loads, does CORS apply automatically or does the spec need to explicitly say "unless lifted by CORS"?
- # [00:27] <TabAtkins> s/loads/loads of a particular type of resource/
- # [00:27] * Quits: xtoph (~xtoph@213.47.185.206)
- # [00:30] * Quits: torvalamo (~loriisacu@79-65-9.connect.netcom.no) (Ping timeout: 240 seconds)
- # [00:30] <Steve^> oh wow, Less have stopped the ruby version?
- # [00:31] <chriseppstein> Steve^: yes. it's deprecated
- # [00:31] <Steve^> when I tried it it was hot of the press, there was literally one decent blog post on it
- # [00:32] <chriseppstein> Steve^: Sass has been around for 4 years with the same active, maintainer.
- # [00:32] <Steve^> My super-critical bug was that urls in normal css files are relative to the css file location, whereas urls via less.js were relative to the site
- # [00:32] <Steve^> so it wasn't compatible with itself
- # [00:33] <Steve^> I'm not sure I see the point of less.js outside of development
- # [00:34] * Quits: inkbase (~Inkbase@nat/ibm/x-yzmptzdunkwrwcvl) (Quit: inkbase)
- # [00:34] <Steve^> Why exclude that really small percentage of users and add an overhead?
- # [00:34] <chriseppstein> Steve^: right. even @cloudhead recommends using the server side version for any "real" use
- # [00:34] <chriseppstein> it can run on the server using node.js
- # [00:34] <Steve^> So.. they deprecated themselves?
- # [00:35] * bga_|away is now known as bga_
- # [00:35] <chriseppstein> less.js can run in client and server
- # [00:35] <chriseppstein> the idea is pretty neat
- # [00:36] <Steve^> Are we actually saying that everyone has JS now though?
- # [00:37] <chriseppstein> ?
- # [00:38] <Steve^> yea, ignore me
- # [00:38] <Steve^> that's the official notice that it's bed time
- # [00:38] * Joins: davidmurdoch_ (434ef46a@gateway/web/freenode/ip.67.78.244.106)
- # [00:38] <chriseppstein> 'nite
- # [00:39] * Parts: bfrohs (~bfrohs@smtp.forewordinternal.com)
- # [00:39] <davidmurdoch_> paul_irish told me to come in here and ask TabAtkins about this: http://jsfiddle.net/sBy6M/
- # [00:39] <TabAtkins> I categorically refuse to answer questions about flexbox, since I'm writing a new version of it right now. ^_^
- # [00:40] <jamesr_> davidmurdoch_: hmm, i guess setting display:block changes the replaced behavior?
- # [00:40] <jamesr_> i always get confused about how layout works with replaced elements (like iframes)
- # [00:40] <davidmurdoch_> are you sure. cus I've been at it for about 3 hours before I figure out that the docs were wrong (i think)
- # [00:40] <Steve^> wait... Chrome 10?
- # [00:40] <jamesr_> davidmurdoch_: can you file a bug on bugs.webkit.org, actually?
- # [00:40] <jamesr_> looks like an implementation bug
- # [00:40] <TabAtkins> They're display:inline, but inline replaced acts just like display:inline-block.
- # [00:40] <Steve^> I thought we were in 9 beta
- # [00:40] <davidmurdoch_> i'm on dev.
- # [00:40] <jamesr_> although like tab said flexbox is going to get changed
- # [00:41] <Steve^> crazy
- # [00:41] <Steve^> (not you, the version numbering)
- # [00:41] <davidmurdoch_> so, should I file the bug?
- # [00:42] <TabAtkins> I don't know. The behavior of current-draft flexbox feels dangerously underspecified, so I'm not certain what behavior is right and what is wrong.
- # [00:42] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [00:43] <TabAtkins> However! I suspect the problem is that only display:block element can actually be flexbox children. display:inline elements get wrapped in an anonymous block box. This can cause troubles similar to what you get with the table-* display values sometimes.
- # [00:43] <Steve^> How are Chrome going to get around the version numbering problem that Opera 10 found?
- # [00:43] <TabAtkins> Steve^: By powering through.
- # [00:43] <TabAtkins> We already know that there's some problems, but shrug.
- # [00:44] <Steve^> That is the Google way!
- # [00:44] <Steve^> Alright, night guys
- # [00:44] * Quits: Steve^ (~steve@cpc2-hari1-0-0-cust1111.hari.cable.virginmedia.com) (Quit: Leaving)
- # [00:50] * Quits: weinig_ (~weinig@17.246.18.216) (Remote host closed the connection)
- # [00:50] <davidmurdoch_> TabAtkins: i just tested it on a <span/> and found the same problem.
- # [00:50] * Joins: weinig_ (~weinig@17.203.14.141)
- # [00:50] * Quits: boaz (~boaz@64.119.153.2) (Quit: boaz)
- # [00:50] * Quits: cying (~cying@173-13-176-101-sfba.hfc.comcastbusiness.net) (Quit: cying)
- # [00:50] <TabAtkins> That's consistent with what I just said.
- # [00:51] <davidmurdoch_> Yup, I was just checking.
- # [00:53] <davidmurdoch_> From the docs: "If inline-level elements are nested inside boxes, they get wrapped in an anonymous block which then takes part in the box layout." Wouldn't this mean that inline elements should behave exactly the same as block-level?
- # [00:53] <davidmurdoch_> sorry, i know you don't care to answer these questions.
- # [00:53] * Joins: davidb_ (~davidb@174.91.46.137)
- # [00:53] <davidmurdoch_> I'll check what firefox does.
- # [00:54] * Joins: lumely_ (~lumely@dhcp2-186.slis.tsukuba.ac.jp)
- # [00:55] * bga_ is now known as bga_|away
- # [00:56] * Quits: lumely (~lumely@dhcp2-186.slis.tsukuba.ac.jp) (Ping timeout: 250 seconds)
- # [00:59] * Joins: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net)
- # [01:00] <TabAtkins> No, the thing that participates in layout is the block box, which you can't target or give any instructions to.
- # [01:00] <TabAtkins> davidmurdoch_: In particular, you can't tell it to flex.
- # [01:01] <davidmurdoch_> well, thats just confusing. :-)
- # [01:01] <TabAtkins> Yeah, anonymous blocks confuse a lot of people.
- # [01:02] <TabAtkins> They are an unfortunate necessity in many circumstances.
- # [01:02] * Joins: oojacoboo (~jacob@96-38-235-118.static.gwnt.ga.charter.com)
- # [01:02] <davidmurdoch_> Firefox 4 treats the containing element as inline-block...
- # [01:03] <davidmurdoch_> it ignores the height on the iframe and flexes it to match the box.
- # [01:03] <davidmurdoch_> ...it flxes the width to match the box as well.
- # [01:04] <davidmurdoch_> it ignores <span> completely
- # [01:04] <davidmurdoch_> http://jsfiddle.net/sBy6M/2/
- # [01:05] * Joins: jochen___ (~jochen@nat/google/x-unkeewipurcauuie)
- # [01:06] * bga_|away is now known as bga_
- # [01:07] * Quits: foolip_ (~foolip@h182n6-g-hn-a11.ias.bredband.telia.com) (Ping timeout: 250 seconds)
- # [01:07] * Quits: davidmurdoch_ (434ef46a@gateway/web/freenode/ip.67.78.244.106) (Quit: Page closed)
- # [01:08] * Quits: jochen__ (~jochen@nat/google/x-olkpcoparnsrrybs) (Ping timeout: 240 seconds)
- # [01:08] * jochen___ is now known as jochen__
- # [01:11] * Joins: mpt (~mpt@canonical/mpt)
- # [01:13] * Joins: bfrohs (~bfrohs@24-236-214-100.dhcp.trcy.mi.charter.com)
- # [01:13] * Quits: davidb_ (~davidb@174.91.46.137) (Ping timeout: 240 seconds)
- # [01:13] * Quits: jdaggett (~jdaggett@y224181.dynamic.ppp.asahi-net.or.jp) (Quit: jdaggett)
- # [01:14] * Quits: matjas (~matjas@91.182.216.237) (Quit: Computer has gone to sleep.)
- # [01:15] <Hixie> just hit r5800
- # [01:15] <TabAtkins> Wake me when you're over 9000.
- # [01:16] <Hixie> wow, you're going for a long sleep
- # [01:17] <TabAtkins> Start committing with each keystroke.
- # [01:17] <Hixie> you haven't seen some of my recent commits ;-)
- # [01:17] <Hixie> unfortunately it takes forever to build
- # [01:17] <Hixie> so that doesn't scale
- # [01:18] <gsnedders> Optimize!
- # [01:19] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
- # [01:20] <Hixie> well to be fair, thanks to you it's way faster than it used to be
- # [01:20] <Hixie> i mean i run about 5 anolis' each time
- # [01:20] <Hixie> there was no way i could do that before
- # [01:20] <gsnedders> Anolis could be way quicker
- # [01:23] <TabAtkins> All right, new blog post about vars/mixins/nesting
- # [01:23] <TabAtkins> http://www.xanthir.com/blog/b49w0
- # [01:24] <paul_irish> \o/ tab!
- # [01:24] <paul_irish> the @lang attribute.. seems to be totally reasonable to declare it on the <body> elem.. does the fact that <title> precedes body and is un-lang'ed matter?
- # [01:24] <TabAtkins> Only insofar as you care that <title> is unlanged.
- # [01:24] <Hixie> put it on <html>
- # [01:24] <TabAtkins> Plus maybe other metadata in head.
- # [01:24] <paul_irish> aw. okay.
- # [01:25] <nimbupani> i knew there was a good reason for lang to be on html
- # [01:27] <paul_irish> TabAtkins: whats the story with that color cycley-sometimes bar on your site?
- # [01:27] * Quits: mloki (~mloki__@x1-6-00-10-a7-28-f3-47.k765.webspeed.dk) (Quit: Leaving)
- # [01:28] * Quits: sicking (~chatzilla@c-98-210-155-80.hsd1.ca.comcast.net) (Ping timeout: 276 seconds)
- # [01:29] <paul_irish> TabAtkins: Nevermind. chrome extension. :) (great post. i'm linking it up on the big nettuts article today)
- # [01:29] <chriseppstein> TabAtkins: I don't see types here.
- # [01:29] * Quits: kal-EL_ (~jor-EL@host127-148-dynamic.211-62-r.retail.telecomitalia.it) (Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101203075014])
- # [01:29] <TabAtkins> Yeah, I had to turn off that extension for my site, because it's annoying and doesn't work right.
- # [01:29] <TabAtkins> chriseppstein: They're there, but we figured out how to make them optional.
- # [01:29] <chriseppstein> TabAtkins: I <3 you
- # [01:29] <nimbupani> ahem ahem
- # [01:30] <chriseppstein> nimbupani: hush
- # [01:30] <bfrohs> TabAtkins: May I make a suggestion for how to make your recent post backward compatible in a way?
- # [01:30] <chriseppstein> oh there they are
- # [01:30] * Quits: dglazkov (d8ef2d04@gateway/web/freenode/ip.216.239.45.4) (Ping timeout: 265 seconds)
- # [01:31] <TabAtkins> bfrohs: What's up?
- # [01:31] <TabAtkins> Also, brb, grabbing snacks and beer.
- # [01:33] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 276 seconds)
- # [01:33] <bfrohs> TabAtkins: As much as I hate to suggest it, using conditional statements (or something similar) like IE has. It would force two separate CSS files at first, but should (well, may) speed up adoption of the new CSS. Okay, looking back, this probably wouldn't help, but it's a suggestion to consider I guess ;)
- # [01:33] <paul_irish> chriseppstein: did you bring up our ideas on that to tab already?
- # [01:34] <chriseppstein> paul_irish: I did not
- # [01:34] <chriseppstein> paul_irish: go ahead
- # [01:34] <paul_irish> k. /me gets beer and snacks and corners Tab.
- # [01:39] <nimbupani> oo so close to sass chriseppstein
- # [01:39] <nimbupani> these proposals :D
- # [01:39] * chriseppstein is happy
- # [01:39] * Quits: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de) (Read error: Connection reset by peer)
- # [01:39] <chriseppstein> still a lot missing
- # [01:40] <nimbupani> its a good start :P
- # [01:41] * Joins: taf2 (~taf2@pool-98-117-223-231.bltmmd.fios.verizon.net)
- # [01:42] * Quits: david_carlisle (~davidc@dcarlisle.demon.co.uk) (Quit: david_carlisle)
- # [01:44] <benschwarz> Want for appCache: conditionally download assets, based on media queries
- # [01:44] * bga_ is now known as bga_|away
- # [01:45] <ap> benschwarz: what good will this appcache be if you rotate your iPhone, changing screen dimensions?
- # [01:45] <benschwarz> The application in question has double density graphics for retina display, yet we have to download the standard size resources as well…
- # [01:45] <benschwarz> ap: I wouldn't use dimensions as a means of discovering which graphics should be downloaded
- # [01:46] <benschwarz> Its a poor practice, really
- # [01:48] <benschwarz> I was hoping to incite some discussion around this… wrong time of day in the US I guess
- # [01:48] <TabAtkins> bfrohs: I didn't mind conditional comments. But yeah, something like that might help.
- # [01:52] * Joins: ben_c (~ben_c@cpc3-brig17-2-0-cust939.3-3.cable.virginmedia.com)
- # [01:55] * Joins: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net)
- # [01:55] <benschwarz> re: The CSSOM discussion
- # [01:55] * Quits: mdelaney (~mdelaney@2620:0:1b00:1191:d69a:20ff:febf:89a0) (Quit: mdelaney)
- # [01:56] <benschwarz> Anyone who has worked on javascript heavy mobile applications knows that repaints are expensive. Some native methods to set multiple properties at once would be very useful
- # [01:56] <TabAtkins> Indeed. That's been discussed before, and something to help with that will show up at some point.
- # [01:56] <TabAtkins> How to do it best without making it easy to shoot yourself in the foot is the open question.
- # [01:57] <benschwarz> Why invent syntaxes? Whats wrong with simple hash assignment?
- # [01:58] <TabAtkins> Because setting several things at once isn't the problem. Generally, browsers already coalesce multiple property sets into one. The problem is declaring that you're okay with *reading* stale data, so you don't need to force a layout every time you ask for offsetTop.
- # [02:00] <benschwarz> TabAtkins: Why should it be considered stale?
- # [02:00] * Quits: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com) (Remote host closed the connection)
- # [02:00] <TabAtkins> Because you've updated something that could potentially have changed it?
- # [02:00] <TabAtkins> Like the size of an ancestor or something.
- # [02:01] * Quits: bga_|away (~bga@ppp91-122-51-148.pppoe.avangarddsl.ru) (Read error: Connection reset by peer)
- # [02:01] <paul_irish> benschwarz: the use case is i want to do LOTS of stuff before i want the browser to do a reflow/repaint. touch a bunch of elements.
- # [02:01] <benschwarz> paul_irish: so, an 'atomic commit'?
- # [02:02] * Parts: bfrohs (~bfrohs@24-236-214-100.dhcp.trcy.mi.charter.com)
- # [02:03] <paul_irish> 'suppose so.
- # [02:04] * Quits: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net) (Quit: cying)
- # [02:07] * Quits: Frippe (~Frippe@238.218.216.81.static.hud.siw.siwnet.net) (Quit: Computer has gone to sleep)
- # [02:08] <benschwarz> paul_irish: any thoughts on appCache ^ ?
- # [02:08] * Joins: lumely (~lumely@dhcp2-186.slis.tsukuba.ac.jp)
- # [02:09] <paul_irish> i would also like media queries to affect img @src's
- # [02:10] * Quits: lumely_ (~lumely@dhcp2-186.slis.tsukuba.ac.jp) (Ping timeout: 240 seconds)
- # [02:10] * Joins: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de)
- # [02:11] * Quits: othermaciej (~mjs@17.246.16.138) (Quit: othermaciej)
- # [02:12] * Quits: gwillen (~gwillen@unaffiliated/gwillen) (Ping timeout: 272 seconds)
- # [02:15] * Joins: gwillen (~gwillen@unaffiliated/gwillen)
- # [02:16] <benschwarz> paul_irish: good idea. perhaps worth a post to the whatwg list?
- # [02:17] <paul_irish> yeah it's a very old feat request from brad neuberg. it looks to have never been formally suggested.
- # [02:18] <nimbupani> why is he not here :/
- # [02:18] * Quits: charlvn (~charlvn@41.0.48.93) (Quit: Leaving)
- # [02:24] <MikeSmith> shh, brad doesn't know about IRC yet
- # [02:25] <MikeSmith> we're trying to keep it secret from him
- # [02:25] <nimbupani> :D
- # [02:25] <MikeSmith> so he'll stay busy working on his other stuff
- # [02:25] <nimbupani> :))
- # [02:28] * Joins: othermaciej (~mjs@67.218.104.202)
- # [02:29] <MikeSmith> it is extremely cool to see browser implementors taking inspiration from CSS preprocessors
- # [02:29] <nimbupani> WOOT WOOT
- # [02:29] <TabAtkins> Pave the cowpaths, man.
- # [02:29] <nimbupani> about time
- # [02:29] <MikeSmith> yep
- # [02:30] <MikeSmith> much like inspiration was taken from JS libraries for other features now implemented natively
- # [02:30] <TabAtkins> Yup.
- # [02:30] * Quits: slartsa (~slartsa@alpha.pumppumedia.com) (Ping timeout: 265 seconds)
- # [02:31] * Joins: slartsa (~slartsa@alpha.pumppumedia.com)
- # [02:31] <MikeSmith> TabAtkins: and glad the you are representing in the CSS WG
- # [02:31] <MikeSmith> *that you are
- # [02:31] <TabAtkins> ^_^
- # [02:34] * Quits: dave_levin (~dave_levi@74.125.59.76) (Quit: dave_levin)
- # [02:35] * Joins: dave_levin (~dave_levi@74.125.59.68)
- # [02:35] * Joins: davidb_ (~davidb@174.91.46.137)
- # [02:35] * Quits: dave_levin (~dave_levi@74.125.59.68) (Client Quit)
- # [02:38] * Quits: oojacoboo (~jacob@96-38-235-118.static.gwnt.ga.charter.com) (Quit: oojacoboo)
- # [02:39] <MikeSmith> gsnedders: I like http://twitter.com/#!/gsnedders/status/28468340255105024
- # [02:39] <MikeSmith> you should write more poems like that
- # [02:40] <MikeSmith> Nabokov himself never wrote anything half as great
- # [02:41] <gsnedders> MikeSmith: As brucel pointed out, it's Yeats.
- # [02:41] <MikeSmith> well gosh
- # [02:42] <MikeSmith> you've stunned me with that revelation man
- # [02:43] <MikeSmith> I was trying to be cute
- # [02:43] <gsnedders> MikeSmith: You failed.
- # [02:43] <gsnedders> I'm the cute one ;P
- # [02:43] <MikeSmith> heh
- # [02:43] <MikeSmith> that part's true
- # [02:43] * Quits: exp (~zAyghip8@cpc2-ely02-0-0-cust338.5-1.cable.virginmedia.com) (Read error: Connection reset by peer)
- # [02:44] <MikeSmith> anyway, I recognize my yeats… I didn't spend half my university career reading yeats at outdoor cafes just to impress the girls
- # [02:45] <MikeSmith> anyway, the thing about Yeats was, his first couple albums were great
- # [02:45] <MikeSmith> and his live shows before he got his record deal were way better
- # [02:45] <MikeSmith> he used to perform with just a sock on
- # [02:45] <MikeSmith> one sock
- # [02:46] <MikeSmith> and not on either of his feet
- # [02:46] <MikeSmith> a lot of people think the Red Hot Chili Peppers invented that
- # [02:46] <MikeSmith> but no, it was Yeats
- # [02:46] <MikeSmith> way ahead of his time
- # [02:46] * Quits: ojan (~ojan@nat/google/x-bsmswusgkcbbxagu) (Quit: ojan)
- # [02:47] <MikeSmith> but then he got into all that prog-rock crap and it was just downhill from there
- # [02:47] * Joins: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net)
- # [02:48] <gsnedders> MikeSmith: Wait, reading Yeats doesn't impress girls? Shit, that explains a lot.
- # [02:49] <MikeSmith> heh
- # [02:49] <MikeSmith> anyway, not sure why I'm telling you this because you obviously know it all already, being that you know enough to quote some of Yeats best lyrics
- # [02:51] * Quits: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [02:51] <gsnedders> MikeSmith: I /do/ have taste!
- # [02:52] <MikeSmith> indeed
- # [02:52] <MikeSmith> I never had any doubt at all about that
- # [02:55] <MikeSmith> but as far as impressing others, well, it's kind of like the old Starkist Tuna commercials: "Sorry, Charlie, but Starkist wants tuna that tastes good, not tuna with good taste."
- # [02:56] <benschwarz> ps. MikeSmith, Tokyo in July ;)
- # [02:58] <MikeSmith> whoah
- # [02:58] <MikeSmith> righteous
- # [02:58] <benschwarz> Party time. Looking into apartments already.
- # [02:58] <benschwarz> Hopefully we can get something good
- # [02:58] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer)
- # [02:58] <MikeSmith> yeah
- # [02:58] <MikeSmith> last time was epic
- # [02:58] <MikeSmith> the police are still looking for you guys
- # [02:59] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
- # [03:00] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Client Quit)
- # [03:01] * Joins: erlehmann (~erlehmann@95-89-41-39-dynip.superkabel.de)
- # [03:01] <MikeSmith> jgraham: btw, you asked me at one time whether the spec-annotation mechanism I set up for the ES5 spec could handle annotations at the sub-section level, and I said no
- # [03:01] <MikeSmith> but I lied
- # [03:01] <MikeSmith> it can
- # [03:01] <MikeSmith> I was looking at http://test.w3.org/html/tests/submission/PhilipTaylor/annotated-spec/canvas.html yesterday
- # [03:03] <MikeSmith> testing annos similar to those could be added to http://es5.github.com/ doc if you wanted to
- # [03:03] <MikeSmith> I would be happy to help work on setting up a mechanism for making it easier to add them
- # [03:05] * Joins: inkbase (~inkbase@S0106002312f9bea2.vc.shawcable.net)
- # [03:05] * Quits: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de) (Read error: No route to host)
- # [03:05] <MikeSmith> right now it would be a matter of a manually adding spans in the source with unique IDs, then adjusting the script to recognize those and know what to do with them
- # [03:06] <MikeSmith> actually, I don't see any way to get around the manually-adding-of-the-IDs part
- # [03:07] * Quits: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net) (Quit: cying)
- # [03:09] * Quits: franksalim (~frank@108-65-76-174.lightspeed.sntcca.sbcglobal.net) (Quit: Ex-Chat)
- # [03:12] * Quits: paul_irish (~paul_iris@nat/google/x-ctmxzeoisaxsssnd) (Remote host closed the connection)
- # [03:17] * Joins: paul_irish (~paul_iris@67.218.103.4)
- # [03:17] * Joins: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net)
- # [03:18] * Quits: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net) (Client Quit)
- # [03:18] * Joins: oojacoboo (~jacob@96-32-175-233.dhcp.gwnt.ga.charter.com)
- # [03:19] * Quits: inkbase (~inkbase@S0106002312f9bea2.vc.shawcable.net) (Quit: inkbase)
- # [03:20] * Joins: miketaylr (~miketaylr@user-160vrg5.cable.mindspring.com)
- # [03:23] * Quits: othermaciej (~mjs@67.218.104.202) (Quit: othermaciej)
- # [03:25] * Quits: sethladd (~sethladd@nat/google/x-akoyvjtzpbbncpwb) (Quit: sethladd)
- # [03:26] * Joins: sethladd (~sethladd@nat/google/x-aqxqhtvdkxabbgdw)
- # [03:30] * Quits: sethladd (~sethladd@nat/google/x-aqxqhtvdkxabbgdw) (Ping timeout: 245 seconds)
- # [03:34] * Joins: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net)
- # [03:35] * Quits: ap (~ap@17.246.17.33) (Quit: ap)
- # [03:35] * Quits: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net) (Client Quit)
- # [03:39] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 240 seconds)
- # [03:39] * Joins: othermaciej (~mjs@c-24-6-209-6.hsd1.ca.comcast.net)
- # [03:44] * Joins: Silanus_ (~silanus@p5DDEAB99.dip.t-dialin.net)
- # [03:44] * Quits: dbaron (~dbaron@nat/mozilla/x-nktspamlapuehunq) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [03:45] * Quits: Silanus (~silanus@p5DDEA9F4.dip.t-dialin.net) (Ping timeout: 240 seconds)
- # [03:54] * Joins: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net)
- # [04:02] * Joins: zillab2b2 (~zillab2b2@97-91-220-86.dhcp.stls.mo.charter.com)
- # [04:03] * Quits: zillab2b2 (~zillab2b2@97-91-220-86.dhcp.stls.mo.charter.com) (Client Quit)
- # [04:13] * Quits: paul_irish (~paul_iris@67.218.103.4) (Remote host closed the connection)
- # [04:15] * Joins: bfrohs (~bfrohs@24-236-214-100.dhcp.trcy.mi.charter.com)
- # [04:16] * Joins: inkbase (~inkbase@S0106002312f9bea2.vc.shawcable.net)
- # [04:16] * Quits: inkbase (~inkbase@S0106002312f9bea2.vc.shawcable.net) (Client Quit)
- # [04:17] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [04:17] * Joins: KaOSoFt (~maxzagato@unaffiliated/kaosoft)
- # [04:21] * Joins: paul_irish (~paul_iris@c-76-21-40-62.hsd1.ca.comcast.net)
- # [04:30] * Quits: Amorphous (jan@unaffiliated/amorphous) (Ping timeout: 272 seconds)
- # [04:32] * Quits: webr3 (~nathan@host86-133-149-132.range86-133.btcentralplus.com) (Ping timeout: 255 seconds)
- # [04:36] * Joins: Aleoss (~AleossIRC@unaffiliated/aleoss)
- # [04:37] * Joins: webr3 (~nathan@host86-133-147-138.range86-133.btcentralplus.com)
- # [04:40] * Quits: bfrohs (~bfrohs@24-236-214-100.dhcp.trcy.mi.charter.com) (Quit: bfrohs)
- # [04:44] * Joins: Amorphous (jan@unaffiliated/amorphous)
- # [04:45] * Joins: myakura (~myakura@p2032-ipbf3005marunouchi.tokyo.ocn.ne.jp)
- # [05:03] * Quits: jamesr_ (~jamesr@nat/google/x-jnyisorfvizaghry) (Quit: jamesr_)
- # [05:05] * Quits: tndH (~Rob@cpc15-seac19-2-0-cust232.7-2.cable.virginmedia.com) (Quit: ChatZilla 0.9.86-rdmsoft [XULRunner 1.9.0.1/2008072406])
- # [05:06] * Joins: MikeSmith_ (~MikeSmith@EM114-48-48-133.pool.e-mobile.ne.jp)
- # [05:08] * Quits: taf2 (~taf2@pool-98-117-223-231.bltmmd.fios.verizon.net) (Quit: taf2)
- # [05:09] * Quits: MikeSmith (~MikeSmith@EM111-188-40-131.pool.e-mobile.ne.jp) (Ping timeout: 240 seconds)
- # [05:09] * MikeSmith_ is now known as MikeSmith
- # [05:13] * Quits: KaOSoFt (~maxzagato@unaffiliated/kaosoft)
- # [05:16] * Quits: kennyluck (~kennyluck@133.27.228.180) (Ping timeout: 276 seconds)
- # [05:19] * Quits: benschwarz (~ben@59.167.185.148) (Quit: benschwarz)
- # [05:20] * Joins: sethladd (~sethladd@c-98-207-207-107.hsd1.ca.comcast.net)
- # [05:21] * Joins: KDN (~KDN@202.171.164.212)
- # [05:24] * Joins: benschwarz (~ben@59.167.185.148)
- # [05:26] * Quits: benschwarz (~ben@59.167.185.148) (Client Quit)
- # [05:26] * Joins: benschwarz (~ben@59.167.185.148)
- # [05:31] * Quits: miketaylr (~miketaylr@user-160vrg5.cable.mindspring.com) (Quit: miketaylr)
- # [05:34] * Quits: davidb_ (~davidb@174.91.46.137) (Quit: davidb_)
- # [05:40] * Quits: sethladd (~sethladd@c-98-207-207-107.hsd1.ca.comcast.net) (Quit: sethladd)
- # [05:42] * Quits: jwalden (~waldo@nat/mozilla/x-dfgniavlwfmiacmv) (Quit: ChatZilla 0.9.86-rdmsoft [XULRunner 1.9.2.13/20110103133706])
- # [05:43] * Quits: weinig_ (~weinig@17.203.14.141) (Quit: weinig_)
- # [05:43] * Quits: weinig (~weinig@2620:0:1b00:1191:ea06:88ff:feca:2f45) (Quit: weinig)
- # [05:49] * Joins: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net)
- # [05:51] * Joins: Silanus (~silanus@p5DDEAB99.dip.t-dialin.net)
- # [05:51] * Quits: Silanus_ (~silanus@p5DDEAB99.dip.t-dialin.net) (Ping timeout: 240 seconds)
- # [05:55] * Quits: Aleoss (~AleossIRC@unaffiliated/aleoss) (Ping timeout: 240 seconds)
- # [06:12] * Joins: wakaba_ (~wakaba_@247.157.197.113.dy.bbexcite.jp)
- # [06:40] * Quits: plomlompom (~plomlompo@i59F6D042.versanet.de) (Ping timeout: 264 seconds)
- # [06:41] * Quits: benschwarz (~ben@59.167.185.148) (Quit: benschwarz)
- # [06:42] * Joins: plomlompom (~plomlompo@i59F6D14A.versanet.de)
- # [06:43] * Joins: mpt (~mpt@canonical/mpt)
- # [06:44] * Quits: mpt (~mpt@canonical/mpt) (Read error: Connection reset by peer)
- # [06:46] * Joins: benschwarz (~ben@59.167.185.148)
- # [06:48] * Quits: shiawuen (~chatzilla@cm68.eta56.maxonline.com.sg) (Read error: Connection reset by peer)
- # [06:57] * Joins: shiawuen (~chatzilla@cm68.eta56.maxonline.com.sg)
- # [07:05] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 265 seconds)
- # [07:12] * Quits: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net) (Quit: Leaving)
- # [07:13] * Quits: benschwarz (~ben@59.167.185.148) (Quit: benschwarz)
- # [07:13] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Quit: Leaving)
- # [07:17] * Joins: benschwarz (~ben@59.167.185.148)
- # [07:21] * Quits: plomlompom (~plomlompo@i59F6D14A.versanet.de) (Ping timeout: 272 seconds)
- # [07:22] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [07:23] * Joins: plomlompom (~plomlompo@i59F6D14A.versanet.de)
- # [07:27] * Quits: benschwarz (~ben@59.167.185.148) (Quit: benschwarz)
- # [07:32] * Joins: weinig (~weinig@c-24-130-56-198.hsd1.ca.comcast.net)
- # [07:37] * Quits: shiawuen (~chatzilla@cm68.eta56.maxonline.com.sg) (Ping timeout: 272 seconds)
- # [07:49] * Joins: Xano (~Xano@5249AD0D.cm-4-2c.dynamic.ziggo.nl)
- # [07:51] * Joins: kennyluck (~kennyluck@EM114-48-88-88.pool.e-mobile.ne.jp)
- # [08:08] * Joins: shiawuen_ (~chatzilla@cm68.eta56.maxonline.com.sg)
- # [08:08] * shiawuen_ is now known as shiawuen
- # [08:08] * Quits: weinig (~weinig@c-24-130-56-198.hsd1.ca.comcast.net) (Quit: weinig)
- # [08:09] * Quits: oojacoboo (~jacob@96-32-175-233.dhcp.gwnt.ga.charter.com) (Quit: oojacoboo)
- # [08:10] * Joins: Martijnc (~Martijnc@91.176.11.49)
- # [08:11] * Joins: Martijnc_ (~Martijnc@91.176.11.49)
- # [08:11] * Quits: Martijnc (~Martijnc@91.176.11.49) (Read error: Connection reset by peer)
- # [08:11] * Martijnc_ is now known as Martijnc
- # [08:20] * Joins: weinig (~weinig@c-24-130-56-198.hsd1.ca.comcast.net)
- # [08:29] * Quits: Xano (~Xano@5249AD0D.cm-4-2c.dynamic.ziggo.nl) (Quit: Xano)
- # [08:29] * Joins: nielsle (~nielsle@4135136-cl69.boa.fiberby.dk)
- # [08:35] * Joins: althie (althalus@vauhtis.thegroup.fi)
- # [08:42] * Quits: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net) (Quit: cying)
- # [08:42] * Joins: mhausenblas (~mhausenbl@188.141.67.15)
- # [08:53] * Quits: weinig (~weinig@c-24-130-56-198.hsd1.ca.comcast.net) (Quit: weinig)
- # [08:59] * Quits: erlehmann (~erlehmann@95-89-41-39-dynip.superkabel.de) (Ping timeout: 276 seconds)
- # [09:01] * Joins: erlehmann (~erlehmann@95-89-41-39-dynip.superkabel.de)
- # [09:05] * Joins: torvalamo (~loriisacu@c6471BF51.dhcp.bluecom.no)
- # [09:06] * Quits: shiawuen (~chatzilla@cm68.eta56.maxonline.com.sg) (Ping timeout: 240 seconds)
- # [09:07] * Quits: torvalamo (~loriisacu@c6471BF51.dhcp.bluecom.no) (Client Quit)
- # [09:07] * Joins: torvalamo (~loriisacu@147-242-212.connect.netcom.no)
- # [09:12] * Quits: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [09:12] * Joins: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net)
- # [09:12] * Quits: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net) (Client Quit)
- # [09:15] * Joins: othermaciej_ (~mjs@c-24-6-209-6.hsd1.ca.comcast.net)
- # [09:15] * Quits: othermaciej (~mjs@c-24-6-209-6.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [09:15] * othermaciej_ is now known as othermaciej
- # [09:20] * Joins: sicking (~chatzilla@24.32.31.222)
- # [09:22] * Joins: kal-EL_ (~jor-EL@host168-57-dynamic.249-95-r.retail.telecomitalia.it)
- # [09:28] * Quits: mhausenblas (~mhausenbl@188.141.67.15) (Quit: mhausenblas)
- # [09:36] * Quits: sicking (~chatzilla@24.32.31.222) (Ping timeout: 255 seconds)
- # [09:41] * Quits: erlehmann (~erlehmann@95-89-41-39-dynip.superkabel.de) (Quit: Die demokratieerhaltende Whistleblower-Organisation Krautchan freut sich immer über Spenden.)
- # [09:50] * Joins: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl)
- # [09:51] * Joins: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com)
- # [10:02] * Joins: matjas (~matjas@91.182.60.55)
- # [10:03] * Quits: Sirisian (~Sirisian@adsl-69-208-85-245.dsl.klmzmi.ameritech.net) (Ping timeout: 240 seconds)
- # [10:05] * Joins: foolip_ (~foolip@h182n6-g-hn-a11.ias.bredband.telia.com)
- # [10:05] * Joins: Athox (~loriisacu@c6471BF51.dhcp.bluecom.no)
- # [10:08] * Joins: ROBOd (~robod@109.96.198.249)
- # [10:08] * Quits: torvalamo (~loriisacu@147-242-212.connect.netcom.no) (Ping timeout: 272 seconds)
- # [10:09] * Quits: Athox (~loriisacu@c6471BF51.dhcp.bluecom.no) (Ping timeout: 240 seconds)
- # [10:10] * Joins: torvalamo (~loriisacu@59-52-15.connect.netcom.no)
- # [10:11] * Quits: micheil (~micheil@124-149-189-229.dyn.iinet.net.au) (Quit: http://brandedcode.com | http://github.com/miksago)
- # [10:16] * Quits: kennyluck (~kennyluck@EM114-48-88-88.pool.e-mobile.ne.jp) (Ping timeout: 240 seconds)
- # [10:16] * Joins: kennyluck (~kennyluck@EM114-48-113-86.pool.e-mobile.ne.jp)
- # [10:20] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [10:28] * Quits: kennyluck (~kennyluck@EM114-48-113-86.pool.e-mobile.ne.jp) (Ping timeout: 240 seconds)
- # [10:31] * Joins: annevk (~annevk@5355737B.cm-6-6b.dynamic.ziggo.nl)
- # [10:33] * Joins: micheil (~micheil@124-149-189-229.dyn.iinet.net.au)
- # [10:57] * Joins: Ms2ger (~Ms2ger@91.181.30.21)
- # [10:58] * annevk is watching They Were There as pointed out by Gruber, in WebM
- # [11:06] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [11:06] * Joins: mhausenblas (~mhausenbl@188.141.67.15)
- # [11:09] * Quits: MikeSmith (~MikeSmith@EM114-48-48-133.pool.e-mobile.ne.jp) (Ping timeout: 255 seconds)
- # [11:14] * Joins: MikeSmith (~MikeSmith@EM114-48-178-94.pool.e-mobile.ne.jp)
- # [11:17] * Joins: ivmarcin (~ivanmarci@adsl-99-27-132-236.dsl.pltn13.sbcglobal.net)
- # [11:20] <Ms2ger> http://html5.org/tools/web-apps-tracker: HTML5 Tracker or HTML Tracker?
- # [11:21] * Joins: ZombieLoffe (~e@unaffiliated/zombieloffe)
- # [11:21] <annevk> Web Applications 1.0 tracker really
- # [11:21] <annevk> but that is a long word
- # [11:21] <annevk> multiple words even :)
- # [11:21] * Quits: huehnts (~huehnts@static.213-239-210-158.clients.your-server.de) (Quit: quitting)
- # [11:23] * Joins: huehnts (~huehnts@static.213-239-210-158.clients.your-server.de)
- # [11:26] * Quits: huehnts (~huehnts@static.213-239-210-158.clients.your-server.de) (Client Quit)
- # [11:26] * Quits: matjas (~matjas@91.182.60.55) (Quit: Computer has gone to sleep.)
- # [11:28] * Joins: huehnts (~huehnts@static.213-239-210-158.clients.your-server.de)
- # [11:28] * Quits: huehnts (~huehnts@static.213-239-210-158.clients.your-server.de) (Client Quit)
- # [11:32] * Quits: nielsle (~nielsle@4135136-cl69.boa.fiberby.dk) (Ping timeout: 250 seconds)
- # [11:33] * Joins: huehnts (~huehnts@static.213-239-210-158.clients.your-server.de)
- # [11:34] * Joins: Frippe (~Frippe@238.218.216.81.static.hud.siw.siwnet.net)
- # [11:34] * Quits: huehnts (~huehnts@static.213-239-210-158.clients.your-server.de) (Client Quit)
- # [11:36] * Joins: huehnts (~huehnts@static.213-239-210-158.clients.your-server.de)
- # [11:38] * Joins: matjas (~matjas@91.182.60.55)
- # [11:44] * Joins: nielsle (~nielsle@4135136-cl69.boa.fiberby.dk)
- # [11:52] * Joins: Timz (~Adium@86.89.174.199)
- # [11:55] * Quits: Timz (~Adium@86.89.174.199) (Client Quit)
- # [11:55] * Joins: Timz (~Adium@86.89.174.199)
- # [11:56] * Joins: tndH (~Rob@cpc15-seac19-2-0-cust232.7-2.cable.virginmedia.com)
- # [12:12] * Joins: realityking (~anonymous@f048007155.adsl.alicedsl.de)
- # [12:13] * Quits: toyoshim (~toyoshim@y252053.dynamic.ppp.asahi-net.or.jp) (Ping timeout: 255 seconds)
- # [12:23] <annevk> just looked at blog stats again
- # [12:23] <annevk> although more people came from reddit than any other location (apart from direct) they also stayed about half the time the other visitors did
- # [12:27] * Quits: Martijnc (~Martijnc@91.176.11.49) (Quit: Martijnc)
- # [12:28] * Joins: Martijnc (~Martijnc@91.176.11.49)
- # [12:28] * Quits: Martijnc (~Martijnc@91.176.11.49) (Read error: Connection reset by peer)
- # [12:29] * Joins: Martijnc (~Martijnc@91.176.11.49)
- # [12:36] * Parts: danbeam__ (~anonymous@cpe-75-83-194-56.socal.res.rr.com) ("later dudes")
- # [12:40] * Joins: toyoshim (~toyoshim@y252189.dynamic.ppp.asahi-net.or.jp)
- # [12:41] * Quits: mhausenblas (~mhausenbl@188.141.67.15) (Quit: mhausenblas)
- # [12:47] * Quits: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl) (Quit: kor)
- # [12:51] * Joins: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl)
- # [12:55] * Quits: temp01 (~temp01@unaffiliated/temp01) (Quit: Poof.)
- # [12:56] <jgraham> MikeSmith: Hmm, it doesn't sound like that will work well for the HTML5 spec, or at least having to manually add all the spans seems like an enormous pain with the spec changing all the time
- # [13:07] <annevk> I just realized that in my Formal Objection case the Director was probably Judy Brewer...
- # [13:10] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [13:10] <annevk> Is there a better link for W3C Domain Leads then http://www.w3.org/People/domain ?
- # [13:12] <annevk> hmm,I am probably wrong
- # [13:12] <annevk> never mind
- # [13:26] <hsivonen> http://blog.whatwg.org/webm-html5-org I announced webm.html5.org
- # [13:27] <annevk> I changed IRC channel to point to the Wiki page
- # [13:28] <annevk> i.e. added a link
- # [13:28] * Joins: Steve^ (~steve@cpc2-hari1-0-0-cust1111.hari.cable.virginmedia.com)
- # [13:29] <hsivonen> annevk: thanks
- # [13:40] * Joins: mokush (~quassel@188.24.40.245)
- # [13:41] * Quits: shepazu (~schepers@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Ping timeout: 276 seconds)
- # [13:44] <Rik`> hsivonen: it kind of looks like whatwg is endorsing webm, no?
- # [13:44] <annevk> some of us are
- # [13:46] <Rik`> the outside world thinks whatwg is one entity with one opinion
- # [13:46] * Quits: micheil (~micheil@124-149-189-229.dyn.iinet.net.au) (Quit: http://brandedcode.com | http://github.com/miksago)
- # [13:47] <hsivonen> Rik`: well, Hixie has been pretty liberal about what can be posted on the blog
- # [13:47] <Rik`> fair enough :)
- # [13:47] <Rik`> hsivonen: what about translations ?
- # [13:47] <hsivonen> Rik`: does it look like whatwg endorses the V.nu parser when I announce updates there?
- # [13:47] <Rik`> I'm willing to do the French one
- # [13:47] <annevk> Rik`, we have posted translations in the past on the blog
- # [13:48] * Joins: shepazu (~schepers@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [13:48] <Rik`> I meant translation of webm.html5.org :)
- # [13:48] <Rik`> hsivonen: V.nu parser is a technical stuff, not highly sensible like the webm/h264 stuff
- # [13:48] * Joins: virtuelv (~virtuelv_@20.74.9.46.customer.cdi.no)
- # [13:49] <hsivonen> Rik`: A translation under the MIT license is welcome if you also figure out how to integrate it into the sniffer script in a maintainable way
- # [13:49] <hsivonen> Rik`: ITYM "sensitive" :-)
- # [13:50] <hsivonen> Rik`: hmm. actually, I think as long as the number of translations is small, I could update two copies of the sniffer with different UI strings
- # [13:51] <hsivonen> so maybe the script maintainability thing doesn't need to be solved while there's just English and French
- # [13:52] * Quits: annevk (~annevk@5355737B.cm-6-6b.dynamic.ziggo.nl) (Remote host closed the connection)
- # [13:53] * Joins: annevk (~annevk@5355737B.cm-6-6b.dynamic.ziggo.nl)
- # [14:02] <annevk> http://annevankesteren.nl/2011/01/wai-aria-objection in case anyone cares
- # [14:02] <karlcow> http://adamcecc.blogspot.com/2011/01/javascript.html
- # [14:05] <Ms2ger> "Henri Sivonen just recently landed a brand new HTML 5 parsing engine in Gecko"
- # [14:07] <hsivonen> Ms2ger: source?
- # [14:07] <Ms2ger> http://www.google.com/buzz/ianbicking/2SDGH7NJGgJ/HTML-5-Parsing-John-Resig
- # [14:07] <Steve^> karlcow, that is insane - in a cool way
- # [14:09] <annevk> Ms2ger, which in turn is a copy of http://ejohn.org/blog/html-5-parsing/
- # [14:09] <annevk> Posted: July 7th, 2009
- # [14:17] * Quits: Silanus (~silanus@p5DDEAB99.dip.t-dialin.net) (Ping timeout: 276 seconds)
- # [14:19] <Rik`> hsivonen: is there a repository somewhere for webm.h.o ?
- # [14:21] * Joins: erlehmann (~erlehmann@95-89-41-39-dynip.superkabel.de)
- # [14:22] <hsivonen> Rik`: no repo. this is a very unprofessional operation
- # [14:23] <karlcow> http://www.readwriteweb.com/start/2011/01/the-valley-lacks-flexibility-not-talent.php
- # [14:27] <hsivonen> Philip`: have you investigating CFF subsetting? Is lack of CFF support in your subsetter just a matter of "not done yet" or is it particularly hard?
- # [14:27] <hsivonen> s/investigating/investigated/
- # [14:27] * hsivonen is typing faster than thinking
- # [14:31] <Philip`> hsivonen: I used the Font::TTF library for reading/writing fonts and it doesn't support the CFF table at all, so it'd be necessary to implement that (or at least enough of it to delete and renumber glyphs)
- # [14:32] <Philip`> I don't think that's inherently hard, but it'd take a lot of specification-reading and testing
- # [14:33] <Philip`> (I haven't looked at the spec in much detail though)
- # [14:35] * Joins: Silanus (~silanus@p5DDE8CB0.dip.t-dialin.net)
- # [14:36] <hsivonen> Philip`: ok
- # [14:39] <vrs> karlcow: awesome
- # [14:40] <vrs> found this in the comments: http://sla.ckers.org/forum/read.php?24,33349,33405 http://discogscounter.getfreehosting.co.uk/js-noalnum_com.php
- # [14:40] <Philip`> Originally I wanted fonts to work in all browsers, and IE didn't support CFF in EOT (though flipping a single conditional instruction in a DLL file seemed to make it work perfectly fine), so I was just focused on TrueType outlines instead
- # [14:43] <annevk> http://www.infosyncworld.com/reviews/cell-phones/opera-software-whatwg-support/11716.html euh ok
- # [14:45] <annevk> i wonder how people who write stuff like that get paid
- # [14:45] <karlcow> because they write stuff like that.
- # [14:46] <Philip`> Because people read stuff like that
- # [14:47] <karlcow> chicken and egg
- # [14:47] <Philip`> Egg
- # [14:47] <karlcow> http://no.linkedin.com/pub/sindre-lia/0/392/59
- # [14:48] <Philip`> (Chickens weren't the first animals to lay eggs)
- # [14:48] <karlcow> snake and egg ? :p
- # [14:48] * Joins: maikmerten (~maikmerte@port-92-201-244-65.dynamic.qsc.de)
- # [15:03] * Joins: cstextiles (~chirag@triband-mum-59.184.36.36.mtnl.net.in)
- # [15:04] * Joins: taf2 (~taf2@pool-98-117-223-231.bltmmd.fios.verizon.net)
- # [15:04] * Joins: mhausenblas (~mhausenbl@wlan-nat.fwgal01.deri.ie)
- # [15:08] <hsivonen> maybe webm.html5.org should have the UI strings in a separate .js file that could vary by UI language
- # [15:11] <Philip`> Maybe it'd be better for the language to be chosen by the site that links users to webm.html5.org
- # [15:11] <Philip`> since that site must know what language the user understands (else the user wouldn't be on that site)
- # [15:12] <Philip`> and that'd probably safer than the webm site trying to guess the appropriate language itself
- # [15:13] * Quits: lumely (~lumely@dhcp2-186.slis.tsukuba.ac.jp) (Read error: Connection reset by peer)
- # [15:13] * Joins: lumely (~lumely@dhcp2-186.slis.tsukuba.ac.jp)
- # [15:14] <hsivonen> Philip`: oh, I'd expect the linker to link to a particular language
- # [15:15] <hsivonen> Philip`: but still, it seems to me that putting strings into a per-language .js file would be the simplest way to vary the strings
- # [15:16] <Philip`> Is there any desire to support users with scripting disabled?
- # [15:16] * Quits: taf2 (~taf2@pool-98-117-223-231.bltmmd.fios.verizon.net) (Quit: taf2)
- # [15:16] <hsivonen> Philip`: some; see the source of the page
- # [15:16] * Joins: Stikki (~lordstich@dsl-tkubrasgw3-fed4f900-36.dhcp.inet.fi)
- # [15:17] <annevk> hsivonen, can't you use some PHP module for translations?
- # [15:17] <hsivonen> annevk: no idea
- # [15:17] <Philip`> Sounds like you'd need some server-side templating to replace the no-script strings at least
- # [15:17] <hsivonen> maybe
- # [15:17] <annevk> hsivonen, so you can have some kind of translation files
- # [15:18] <Philip`> and then it's probably easiest to use that for the scripted strings too
- # [15:18] <hsivonen> i18n complicates as simple hack very quickly. :-(
- # [15:20] <Philip`> You could leave it English-only and wait and see if it becomes popular enough to jusify the extra effort
- # [15:20] <hsivonen> Philip`: it sucks to turn away people when they volunteer to translate *right now*
- # [15:22] <Philip`> Are they volunteering to keep the translations up-to-date when you modify the original text over the next few days/weeks/months?
- # [15:23] <hsivonen> Philip`: dunno. For French, I could do simple translation updates myself. For Dutch, I couldn't.
- # [15:23] * Philip` is sometimes scared of accepting translations since he imagines they'll discourage him from making improvements to the versions that he can maintain
- # [15:23] * Quits: Frippe (~Frippe@238.218.216.81.static.hud.siw.siwnet.net) (Ping timeout: 240 seconds)
- # [15:24] <Philip`> (and I never like marking anything as a final unchanging version)
- # [15:24] * Philip` would like to learn how to get over those fears
- # [15:25] * Joins: Frippe (~Frippe@m77-218-185-217.cust.tele2.se)
- # [15:26] <annevk> just add a warning sign on top of those outdated versions
- # [15:27] <annevk> someone might help you fix it
- # [15:32] * Quits: Frippe (~Frippe@m77-218-185-217.cust.tele2.se) (Ping timeout: 264 seconds)
- # [15:32] * Joins: david_carlisle (~davidc@dcarlisle.demon.co.uk)
- # [15:34] * Joins: Frippe (~Frippe@238.218.216.81.static.hud.siw.siwnet.net)
- # [15:35] * Joins: bga_ (~bga@ppp91-122-51-148.pppoe.avangarddsl.ru)
- # [15:35] * bga_ is now known as bga_|away
- # [15:37] * Quits: karlcow (~karl@nerval.la-grange.net) (Ping timeout: 240 seconds)
- # [15:38] * bga_|away is now known as bga_
- # [15:38] * Quits: Ms2ger (~Ms2ger@91.181.30.21) (Ping timeout: 240 seconds)
- # [15:45] <Dashiva> Dear twitter, I know what a retweet is, please stop telling me.
- # [15:46] <annevk> Might have more effect if you do that on twitter using @twitter
- # [15:47] <Dashiva> I'm really just fishing for someone to tell me there's an obvious way to disable it :P
- # [15:47] * Joins: saba (~foo@unaffiliated/saba)
- # [15:48] <annevk> You mean you do not want see retweets from other people?
- # [15:50] <Dashiva> No, I just don't want the popup telling me what a retweet is
- # [15:55] * Quits: mhausenblas (~mhausenbl@wlan-nat.fwgal01.deri.ie) (Quit: mhausenblas)
- # [16:12] <Dashiva> Haha
- # [16:13] <Dashiva> I did a search for @twitter to see if anyone was doing what annevk suggested, and there are lots of people complaining about twitter removing a hashtag from trending topics
- # [16:17] * Joins: m0 (~m0@mohamedmansour.com)
- # [16:23] <jgraham> Oooh Ian Bicking works for Mozilla now? When did that happen?
- # [16:24] * jgraham is obviously not keeping up
- # [16:26] * Quits: david_carlisle (~davidc@dcarlisle.demon.co.uk) (Ping timeout: 250 seconds)
- # [16:27] * Joins: Aleoss (~AleossIRC@unaffiliated/aleoss)
- # [16:35] <annevk> http://blog.ianbicking.org/2010/03/10/joining-mozilla/
- # [16:36] <annevk> Why is Internet Explorer so bad when Content-Length is not provided over HTTP?
- # [16:39] <annevk> Hmm, there might be something else going on...
- # [16:41] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [16:44] * bga_ is now known as bga_|away
- # [16:48] * Joins: FireyFly (~firefly@unaffiliated/firefly)
- # [16:56] * Joins: smaug____ (~chatzilla@dsl-hkibrasgw4-fe45dc00-171.dhcp.inet.fi)
- # [17:01] * bga_|away is now known as bga_
- # [17:02] * Joins: rubys (~rubys@cpe-098-027-048-117.nc.res.rr.com)
- # [17:02] <rubys> hsivonen: ping?
- # [17:04] <rubys> My suggestion for http://webm.html5.org/ : focus on describing webm; leave out the gratuitous statement about H.264.
- # [17:06] * Joins: MikeSmith_ (~MikeSmith@EM114-48-243-22.pool.e-mobile.ne.jp)
- # [17:08] * Parts: rubys (~rubys@cpe-098-027-048-117.nc.res.rr.com)
- # [17:08] * Quits: MikeSmith (~MikeSmith@EM114-48-178-94.pool.e-mobile.ne.jp) (Ping timeout: 240 seconds)
- # [17:08] * MikeSmith_ is now known as MikeSmith
- # [17:13] * Joins: _bga (~bga@ppp91-122-51-148.pppoe.avangarddsl.ru)
- # [17:13] * Joins: Ms2ger (~Ms2ger@91.181.30.21)
- # [17:14] * Joins: sephr (~Eli@c-98-235-63-240.hsd1.pa.comcast.net)
- # [17:16] * Joins: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net)
- # [17:16] * Quits: bga_ (~bga@ppp91-122-51-148.pppoe.avangarddsl.ru) (Ping timeout: 276 seconds)
- # [17:20] * Quits: smaug____ (~chatzilla@dsl-hkibrasgw4-fe45dc00-171.dhcp.inet.fi) (Ping timeout: 260 seconds)
- # [17:21] <annevk> http://news.cnet.com/8301-30685_3-20029143-264.html
- # [17:22] <annevk> "We submitted the VP8 bitstream reference as an IETF Independent RFC [request for comments] to create a canonical public reference for the document," Google said. "This is independent from a standards track."
- # [17:25] * Joins: pauld (~chatzilla@nat-124-248.guardian.co.uk)
- # [17:25] * Joins: charlvn (~charlvn@41.0.48.93)
- # [17:26] * Quits: Rik` (~Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Ping timeout: 240 seconds)
- # [17:27] * Joins: Rik` (~Rik`@2a01:e35:139b:b390:daa2:5eff:fe97:85ed)
- # [17:27] <Dashiva> annevk: Can we have a prettier font on webm.html5.org? :)
- # [17:27] * Joins: oojacoboo (~jacob@96-32-175-233.dhcp.gwnt.ga.charter.com)
- # [17:28] * Joins: smaug____ (~chatzilla@dsl-hkibrasgw4-fe45dc00-171.dhcp.inet.fi)
- # [17:32] * Quits: smaug____ (~chatzilla@dsl-hkibrasgw4-fe45dc00-171.dhcp.inet.fi) (Ping timeout: 240 seconds)
- # [17:33] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (Ping timeout: 240 seconds)
- # [17:33] <annevk> Dashiva, suggest one to hsivonen
- # [17:33] <annevk> hsivonen, maybe you should put it on bitbucket or some such
- # [17:33] <annevk> hsivonen, so people can provide patches
- # [17:34] <hsivonen> annevk: I'll put it on bitbucket but not today
- # [17:35] <hsivonen> Dashiva: yes we can if someone other than me takes care of design and testing
- # [17:35] <hsivonen> I can pony up the cash for a TypeKit account if that's needed
- # [17:36] <hsivonen> the Museo font looks particularly nice even on IE6
- # [17:37] <hsivonen> hmm. rubys left already
- # [17:37] <hsivonen> anyway, the sentence about H.264 is there to give an explanation why the "royalty-free" bit is rather central
- # [17:38] * Joins: GPHemsley (~GPHemsley@ool-45719f33.dyn.optonline.net)
- # [17:38] * Quits: GPHemsley (~GPHemsley@ool-45719f33.dyn.optonline.net) (Changing host)
- # [17:38] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
- # [17:38] * Joins: cstextiles1 (~chirag@triband-mum-59.184.39.131.mtnl.net.in)
- # [17:40] * Joins: shiawuen (~chatzilla@cm68.eta56.maxonline.com.sg)
- # [17:40] <espadrine> hsivonen: do you think we could have something like a "ie9 should have built-in support of webm" petition on the website?
- # [17:40] * Quits: cstextiles (~chirag@triband-mum-59.184.36.36.mtnl.net.in) (Ping timeout: 240 seconds)
- # [17:41] <hsivonen> espadrine: no, I think that doesn't fit the purpose of the site
- # [17:42] <espadrine> you're probably right.
- # [17:42] <hsivonen> espadrine: the purpose of the site is to be a vendor-neutral destination that sites that use WebM can link to
- # [17:42] * karlcow just discovered ##opera channel
- # [17:42] <hsivonen> espadrine: once Google publishes a WebM decoder for Media Foundation, I intend to suggest that as the primary WebM-enablement solution to visitors with IE on Vista or Windows 7
- # [17:43] <espadrine> good!
- # [17:43] <espadrine> Do you know when that is?
- # [17:43] <hsivonen> espadrine: I don't
- # [17:44] <annevk> hsivonen, I do agree with rubys it is probably better to not mention other formats at all
- # [17:45] <hsivonen> annevk: ok
- # [17:45] <annevk> hsivonen, negative arguments are best avoided
- # [17:45] <hsivonen> annevk, rubys: removed
- # [17:46] <hsivonen> annevk: I know. I wanted to give context to the royalty-free bit
- # [17:51] * _bga is now known as bga_|away
- # [17:52] * Joins: rubys (~rubys@cpe-098-027-051-152.nc.res.rr.com)
- # [17:52] <rubys> annevk said what I meant to say better than I did
- # [17:53] * Joins: smaug____ (~chatzilla@dsl-hkibrasgw4-fe45dc00-171.dhcp.inet.fi)
- # [17:53] <rubys> I'm pleased to see that statement removed; I don't believe "royalty-free" needs any more context.
- # [17:54] <hsivonen> rubys: I believe it hasn't even occurred to most people that a file format could be royalty-bearing.
- # [17:54] <rubys> this site does plant that seed in their mind; those that wish to can explore it.
- # [17:54] * Joins: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net)
- # [17:55] <rubys> My belief is that you will get more converts if they discover this for themselves than if you preach to them
- # [17:56] <rubys> in any case, most readers won't even know what H.264 is, all they will know is that it is free and that their browser is backlevel as it doesn't include support for this format.
- # [17:56] <rubys> (and given that it is royalty free, don't have cost as an excuse to not provide the necessary support)
- # [17:57] * Quits: smaug____ (~chatzilla@dsl-hkibrasgw4-fe45dc00-171.dhcp.inet.fi) (Ping timeout: 272 seconds)
- # [18:02] * Joins: seventh (seventh@69.80.99.166)
- # [18:04] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 240 seconds)
- # [18:06] * Quits: karlcow (~karl@nerval.la-grange.net) (Ping timeout: 250 seconds)
- # [18:07] * Quits: rubys (~rubys@cpe-098-027-051-152.nc.res.rr.com) (Quit: Leaving.)
- # [18:11] * Joins: rubys (~rubys@cpe-098-027-051-152.nc.res.rr.com)
- # [18:17] * Joins: ben_c1 (~ben_c@cpc3-brig17-2-0-cust939.3-3.cable.virginmedia.com)
- # [18:17] * Quits: ben_c (~ben_c@cpc3-brig17-2-0-cust939.3-3.cable.virginmedia.com) (Read error: Connection reset by peer)
- # [18:19] * Joins: louquillio1 (~louquilli@cpe-67-246-39-126.nycap.res.rr.com)
- # [18:20] * Quits: rubys (~rubys@cpe-098-027-051-152.nc.res.rr.com) (Ping timeout: 250 seconds)
- # [18:23] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [18:23] * Quits: Timz (~Adium@86.89.174.199) (Quit: Leaving.)
- # [18:27] * Quits: ben_c1 (~ben_c@cpc3-brig17-2-0-cust939.3-3.cable.virginmedia.com) (Ping timeout: 276 seconds)
- # [18:29] * Quits: cstextiles1 (~chirag@triband-mum-59.184.39.131.mtnl.net.in) (Quit: Leaving.)
- # [18:29] * Joins: rubys1 (~rubys@cpe-098-027-048-117.nc.res.rr.com)
- # [18:30] * Quits: charlvn (~charlvn@41.0.48.93) (Ping timeout: 255 seconds)
- # [18:30] * Joins: Xano (~Xano@5249AD0D.cm-4-2c.dynamic.ziggo.nl)
- # [18:32] * Parts: louquillio1 (~louquilli@cpe-67-246-39-126.nycap.res.rr.com)
- # [18:32] * Quits: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net) (Read error: Connection reset by peer)
- # [18:32] * Joins: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net)
- # [18:34] * Joins: ben_c (~ben_c@cpc9-brig17-2-0-cust194.3-3.cable.virginmedia.com)
- # [18:37] * Joins: weinig (~weinig@c-24-130-56-198.hsd1.ca.comcast.net)
- # [18:40] * Quits: pauld (~chatzilla@nat-124-248.guardian.co.uk) (Ping timeout: 240 seconds)
- # [18:41] * Quits: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net) (Quit: Leaving.)
- # [18:43] * Joins: charlvn (~charlvn@41.0.48.93)
- # [18:49] <annevk> Maciej came up with 5 > 2 as far as I can tell: http://krijnhoetmer.nl/irc-logs/whatwg/20070411#l-411
- # [18:49] <annevk> http://blog.whatwg.org/t-shirts and http://five-gt-two.spreadshirt.com/
- # [18:50] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
- # [18:50] <Ms2ger> 5 != 3 is the new 5 > 2
- # [18:54] <rubys1> 5 != 3 won't have the same staying power, particularly as the W3C has already updated the FAQ for the logo
- # [18:54] * Joins: karlushi (~karl@nerval.la-grange.net)
- # [18:55] * Joins: eighty4_ (~eighty4@li150-164.members.linode.com)
- # [18:56] <annevk> And it is far less amusing
- # [18:56] <annevk> To me anyway
- # [18:57] * Joins: ROBOd_ (~robod@109.96.198.249)
- # [18:58] <Philip`> http://www.w3.org/2002/09/wbs/40318/issue-128-objection-poll/results - "ISSUE-128: Authors should be able to use where can be used - Straw Poll for Objections"
- # [18:58] * bga_|away is now known as bga_
- # [18:58] <Philip`> I wonder if anyone will file a cunningly-titled issue to exploit that XSS hole
- # [18:59] * Quits: jacobolus (~jacobolus@c-24-128-190-29.hsd1.ma.comcast.net) (Remote host closed the connection)
- # [18:59] <rubys1> That bug in that form is frustrating
- # [18:59] * rubys1 is now known as rubys
- # [19:00] * Quits: Aleoss (~AleossIRC@unaffiliated/aleoss) (Read error: Connection reset by peer)
- # [19:00] <Ms2ger> Issue tracking tools will save us as long as we don't mention HTML?
- # [19:00] <rubys> I tried a number of different ways to enter that title, but couldn't find one that worked.
- # [19:00] <Rik`> hsivonen: tell me if I can translate tonight or if you plan to extract the strings
- # [19:00] * Joins: Aleoss (~AleossIRC@unaffiliated/aleoss)
- # [19:01] * Joins: shiawuen_ (~chatzilla@cm68.eta56.maxonline.com.sg)
- # [19:01] * Quits: karlcow (~karl@nerval.la-grange.net) (Read error: Connection reset by peer)
- # [19:01] * Quits: eighty4 (~eighty4@unaffiliated/eighty4) (Ping timeout: 264 seconds)
- # [19:01] * Quits: frederich (~unitone@unaffiliated/unitone) (Ping timeout: 264 seconds)
- # [19:01] * Quits: shiawuen (~chatzilla@cm68.eta56.maxonline.com.sg) (Ping timeout: 264 seconds)
- # [19:01] * Quits: ROBOd (~robod@109.96.198.249) (Ping timeout: 264 seconds)
- # [19:01] * Quits: Peter` (~peter@188.95.90.218) (Ping timeout: 264 seconds)
- # [19:01] * Joins: Peter` (~peter@188.95.90.218)
- # [19:01] * shiawuen_ is now known as shiawuen
- # [19:12] * bga_ is now known as bga_|away
- # [19:18] * Joins: smaug____ (~chatzilla@dsl-hkibrasgw4-fe45dc00-171.dhcp.inet.fi)
- # [19:19] * Joins: pauld (~chatzilla@nat-124-248.guardian.co.uk)
- # [19:21] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
- # [19:26] * Joins: xtoph (~xtoph@213.47.185.206)
- # [19:31] * Quits: weinig (~weinig@c-24-130-56-198.hsd1.ca.comcast.net) (Quit: weinig)
- # [19:37] * Quits: FireyFly (~firefly@unaffiliated/firefly) (Quit: swatted to death)
- # [19:38] * Joins: zachleat (440d75dd@gateway/web/freenode/ip.68.13.117.221)
- # [19:43] * Quits: kal-EL_ (~jor-EL@host168-57-dynamic.249-95-r.retail.telecomitalia.it) (Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101203075014])
- # [19:43] * Joins: zachleat_ (~zachleat@ip68-13-117-221.om.om.cox.net)
- # [19:44] * Quits: maikmerten (~maikmerte@port-92-201-244-65.dynamic.qsc.de) (Quit: Leaving)
- # [19:49] * Quits: zachleat (440d75dd@gateway/web/freenode/ip.68.13.117.221)
- # [19:49] * zachleat_ is now known as zachleat
- # [19:49] * bga_|away is now known as bga_
- # [19:50] * Quits: zachleat (~zachleat@ip68-13-117-221.om.om.cox.net) (Quit: zachleat)
- # [19:50] * Joins: zachleat (~zachleat@ip68-13-117-221.om.om.cox.net)
- # [19:53] * Quits: smaug____ (~chatzilla@dsl-hkibrasgw4-fe45dc00-171.dhcp.inet.fi) (Ping timeout: 272 seconds)
- # [19:54] * Quits: zachleat (~zachleat@ip68-13-117-221.om.om.cox.net) (Client Quit)
- # [19:58] * Joins: nimbupani (~Adium@c-24-22-131-46.hsd1.wa.comcast.net)
- # [19:59] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
- # [20:03] * Joins: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de)
- # [20:04] * Joins: zachleat (~anonymous@ip68-13-117-221.om.om.cox.net)
- # [20:04] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [20:05] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Max SendQ exceeded)
- # [20:06] * Joins: smaug____ (~chatzilla@dsl-hkibrasgw4-fe45dc00-171.dhcp.inet.fi)
- # [20:06] * Joins: dglazkov (~dglazkov@75-37-194-175.lightspeed.lsatca.sbcglobal.net)
- # [20:20] * Parts: rubys (~rubys@cpe-098-027-048-117.nc.res.rr.com)
- # [20:23] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [20:28] * Joins: Athox (~loriisacu@c6471BF51.dhcp.bluecom.no)
- # [20:29] * Quits: Rik` (~Rik`@2a01:e35:139b:b390:daa2:5eff:fe97:85ed) (Ping timeout: 272 seconds)
- # [20:29] * Joins: Rik` (~Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [20:31] * Quits: torvalamo (~loriisacu@59-52-15.connect.netcom.no) (Ping timeout: 276 seconds)
- # [20:32] * Joins: Sirisian (~Sirisian@adsl-75-5-226-254.dsl.klmzmi.sbcglobal.net)
- # [20:33] * Joins: david_carlisle (~davidc@dcarlisle.demon.co.uk)
- # [20:34] * Quits: pauld (~chatzilla@nat-124-248.guardian.co.uk) (Ping timeout: 255 seconds)
- # [20:34] * Joins: aualin (~Mikael@c-89-233-211-62.cust.bredband2.com)
- # [20:36] * Joins: Evet (~Evet@78.191.154.5)
- # [20:37] * Athox is now known as torvalamo
- # [20:37] * Quits: david_carlisle (~davidc@dcarlisle.demon.co.uk) (Ping timeout: 250 seconds)
- # [20:38] * Quits: zachleat (~anonymous@ip68-13-117-221.om.om.cox.net) (Quit: zachleat)
- # [20:38] * Joins: kal-EL_ (~jor-EL@host168-57-dynamic.249-95-r.retail.telecomitalia.it)
- # [20:41] * Joins: david_carlisle (~davidc@dcarlisle.demon.co.uk)
- # [20:46] * Joins: may_psu (~may_psu@202.12.74.163)
- # [20:47] * Quits: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no) (Quit: Leaving)
- # [20:47] * Joins: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no)
- # [20:50] * Joins: jacobolus (~jacobolus@wrls-249-211-126.wrls-client.fas.harvard.edu)
- # [21:00] * Quits: jacobolus (~jacobolus@wrls-249-211-126.wrls-client.fas.harvard.edu) (Remote host closed the connection)
- # [21:01] * Quits: smaug____ (~chatzilla@dsl-hkibrasgw4-fe45dc00-171.dhcp.inet.fi) (Ping timeout: 240 seconds)
- # [21:01] * Quits: may_psu (~may_psu@202.12.74.163) (Quit: Leaving)
- # [21:03] * Quits: Aleoss (~AleossIRC@unaffiliated/aleoss) (Read error: Connection reset by peer)
- # [21:04] * Joins: Aleoss (~AleossIRC@unaffiliated/aleoss)
- # [21:11] * Joins: smaug____ (~chatzilla@dsl-hkibrasgw4-fe45dc00-171.dhcp.inet.fi)
- # [21:11] * Quits: dglazkov (~dglazkov@75-37-194-175.lightspeed.lsatca.sbcglobal.net) (Quit: dglazkov)
- # [21:13] * Joins: davidb_ (~davidb@174.91.40.94)
- # [21:14] * Joins: jacobolus (~jacobolus@wrls-249-211-126.wrls-client.fas.harvard.edu)
- # [21:14] * Joins: pesla (~pesla@ip51cc03a5.speed.planet.nl)
- # [21:17] * Quits: jacobolus (~jacobolus@wrls-249-211-126.wrls-client.fas.harvard.edu) (Remote host closed the connection)
- # [21:27] * Joins: weinig (~weinig@17.203.14.141)
- # [21:32] * Joins: boaz (~boaz@c-75-68-210-42.hsd1.vt.comcast.net)
- # [21:33] * Joins: mlpug (~mlpug@a88-115-171-217.elisa-laajakaista.fi)
- # [21:34] * Quits: erlehmann (~erlehmann@95-89-41-39-dynip.superkabel.de) (Quit: Die demokratieerhaltende Whistleblower-Organisation Krautchan freut sich immer über Spenden.)
- # [21:37] * Joins: pauld (~chatzilla@188.28.73.253.threembb.co.uk)
- # [21:44] * Quits: mokush (~quassel@188.24.40.245) (Remote host closed the connection)
- # [21:44] * Quits: pauld (~chatzilla@188.28.73.253.threembb.co.uk) (Ping timeout: 240 seconds)
- # [21:46] <Hixie> anything interesting going on in the land of web standards?
- # [21:47] <abarth> Hixie: we're trying to make progress on an XSS mitigation for browsers
- # [21:48] * Joins: erlehmann (~erlehmann@95-89-41-39-dynip.superkabel.de)
- # [21:48] <Hixie> any luck?
- # [21:49] <Hixie> i saw the thread, but stopped reading it after it seemed to go nowhere new
- # [21:49] <abarth> yeah, the main issue is still the same as last time
- # [21:49] <abarth> moz wants to do something complicated
- # [21:49] <abarth> i want to do something that targets XSS specifically
- # [21:51] * Quits: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com) (Read error: Connection reset by peer)
- # [21:51] * Quits: david_carlisle (~davidc@dcarlisle.demon.co.uk) (Ping timeout: 265 seconds)
- # [21:51] <abarth> hopefully we'll come to an agreement, but otherwise, we'll probably try something experimental in webkit anyway
- # [21:51] * Joins: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com)
- # [21:52] * Quits: Aleoss (~AleossIRC@unaffiliated/aleoss) (Ping timeout: 240 seconds)
- # [22:00] * Quits: davidb_ (~davidb@174.91.40.94) (Quit: davidb_)
- # [22:03] * Quits: Ms2ger (~Ms2ger@91.181.30.21) (Quit: nn)
- # [22:05] * Quits: plomlompom (~plomlompo@i59F6D14A.versanet.de) (Ping timeout: 276 seconds)
- # [22:07] * Joins: plomlompom (~plomlompo@89.246.169.8)
- # [22:08] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # [22:10] * Quits: boaz (~boaz@c-75-68-210-42.hsd1.vt.comcast.net) (Quit: boaz)
- # [22:14] * Quits: plomlompom (~plomlompo@89.246.169.8) (Ping timeout: 250 seconds)
- # [22:14] * Joins: plomlompom (~plomlompo@89.246.169.8)
- # [22:15] * Quits: mlpug (~mlpug@a88-115-171-217.elisa-laajakaista.fi) (Remote host closed the connection)
- # [22:21] * Quits: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
- # [22:23] * Quits: Stikki (~lordstich@dsl-tkubrasgw3-fed4f900-36.dhcp.inet.fi)
- # [22:29] * Quits: realityking (~anonymous@f048007155.adsl.alicedsl.de) (Quit: realityking)
- # [22:44] * Quits: kor (~kor@ip146-53-210-87.adsl2.static.versatel.nl) (Quit: kor)
- # [22:45] * Joins: zcorpan (~zcorpan@c-8d9ae355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [22:46] <zcorpan> hsivonen: " addParaWithLink("Chromium added WebM support in version 6.0. You need to upgrade. Or if your Chromium is not upgradeable, you may consider ", "installing the latest Chrome", "http://www.google.com/chrome", " instead.");" doesn't have the "to view WebM content"
- # [22:46] * Quits: erlehmann (~erlehmann@95-89-41-39-dynip.superkabel.de) (Quit: Die demokratieerhaltende Whistleblower-Organisation Krautchan freut sich immer über Spenden.)
- # [22:54] * Quits: karlushi (~karl@nerval.la-grange.net) (Quit: Freedom - to walk free and own no superior.)
- # [22:54] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [22:55] * Joins: davidb_ (~davidb@174.91.40.94)
- # [22:58] * Quits: shepazu (~schepers@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Ping timeout: 246 seconds)
- # [23:05] * Joins: shepazu (~schepers@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [23:06] * Joins: MikeSmith_ (~MikeSmith@EM111-188-16-99.pool.e-mobile.ne.jp)
- # [23:09] * Quits: MikeSmith (~MikeSmith@EM114-48-243-22.pool.e-mobile.ne.jp) (Ping timeout: 240 seconds)
- # [23:09] * MikeSmith_ is now known as MikeSmith
- # [23:10] * Joins: erlehmann (~erlehmann@95-89-41-39-dynip.superkabel.de)
- # [23:10] <annevk> Hixie, I toyed with ISSUE-125 and ISSUE-126
- # [23:11] <annevk> Hixie, I think I agree with you that it is not really worth fighting over
- # [23:11] <annevk> Hixie, I hope HTTP will change to make Content-Type somewhat more sane
- # [23:12] * Quits: nielsle (~nielsle@4135136-cl69.boa.fiberby.dk) (Quit: Ex-Chat)
- # [23:13] <zcorpan> annevk: can javascript: urls ever be something other than text/html?
- # [23:14] * Quits: ROBOd_ (~robod@109.96.198.249) (Quit: .)
- # [23:14] <annevk> they can be images in e.g. Gecko if every character is U+00FF or lower I believe
- # [23:14] * Quits: davidb_ (~davidb@174.91.40.94) (Quit: davidb_)
- # [23:14] * Quits: abarth (~abarth@c-67-169-68-88.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [23:14] <annevk> I think that will always result in an octet stream
- # [23:14] <annevk> and then it depends on sniffing
- # [23:15] <zcorpan> oh
- # [23:18] <annevk> anyway, nn
- # [23:20] * Quits: annevk (~annevk@5355737B.cm-6-6b.dynamic.ziggo.nl) (Quit: annevk)
- # [23:23] * Quits: erlehmann (~erlehmann@95-89-41-39-dynip.superkabel.de) (Quit: Die demokratieerhaltende Whistleblower-Organisation Krautchan freut sich immer über Spenden.)
- # [23:28] * Joins: david_carlisle (~davidc@dcarlisle.demon.co.uk)
- # [23:33] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [23:38] * Joins: benschwarz (~ben@59.167.185.148)
- # [23:42] * Joins: chriseppstein (~chris@99-34-231-235.lightspeed.sntcca.sbcglobal.net)
- # [23:42] * Joins: _bga (~bga@ppp91-122-51-148.pppoe.avangarddsl.ru)
- # [23:43] <foolip_> hmm, maybe I've written enough change proposals for today
- # [23:44] * Quits: david_carlisle (~davidc@dcarlisle.demon.co.uk) (Quit: david_carlisle)
- # [23:45] * Quits: bga_ (~bga@ppp91-122-51-148.pppoe.avangarddsl.ru) (Ping timeout: 272 seconds)
- # [23:46] * Quits: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de) (Ping timeout: 276 seconds)
- # [23:51] * Quits: cying (~cying@c-24-23-135-168.hsd1.ca.comcast.net) (Quit: cying)
- # [23:59] * Quits: aualin (~Mikael@c-89-233-211-62.cust.bredband2.com) (Ping timeout: 240 seconds)
- # Session Close: Sun Jan 23 00:00:00 2011
The end :)