Options:
- # Session Start: Sat May 26 00:00:01 2012
- # Session Ident: #whatwg
- # [00:00] <jamesr_> it gets messy quickly
- # [00:00] <jamesr_> and someone always goes "can i just pass a function?" then you have to explain how it picks up the global context and the thread implications, then someone wants a JS isolate, then you're in a world of hurt
- # [00:01] <zewt> well, mongo's query language is static
- # [00:01] * Quits: tantek_ (~tantek@nat/mozilla/x-dxmyevhjknbwiwpb) (Quit: tantek_)
- # [00:01] <zewt> the above can be optimized (and even if it's not, it's a lot faster to convert it to a native object and just test them all, since you don't have to fire off JS)
- # [00:01] * Quits: tantek (~tantek@nat/mozilla/x-kxtgfsopbpibgyml) (Quit: tantek)
- # [00:01] <TabAtkins> Yes, take some object with values. Eagerly parse them to dispose of getters. Done.
- # [00:02] <zewt> (idl dictionary)
- # [00:02] * Quits: malcolmva (~malcolmva@pool-74-108-142-22.nycmny.fios.verizon.net) (Ping timeout: 276 seconds)
- # [00:07] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [00:08] * Quits: drublic (~drublic@frbg-5d84ec31.pool.mediaWays.net) (Remote host closed the connection)
- # [00:08] * Quits: othermaciej (~mjs@17.245.98.87) (Quit: othermaciej)
- # [00:11] * Joins: othermaciej (~mjs@17.245.98.87)
- # [00:11] * Quits: WeirdAl (~chatzilla@g2spf.ask.info) (Remote host closed the connection)
- # [00:14] * Quits: nesta_ (~nesta_@13.109.219.87.dynamic.jazztel.es) (Quit: nesta_)
- # [00:22] * Quits: hasathe__ (~hasather_@cm-84.208.108.107.getinternet.no) (Remote host closed the connection)
- # [00:25] <Hixie> TabAtkins: my utf-8 validating code isn't vorking
- # [00:25] <TabAtkins> Hixie: Interesting. Should be trivial!
- # [00:26] <Hixie> specifically, it thinks 0xED 0x9F 0xBF is invalid, because it decodes it to a bogus value
- # [00:27] <Hixie> my code for decoding sequences starting with 0xED is equivalent to 0xD000 + ((c1-0x80) << 6) + (c2-0x80)
- # [00:27] <Hixie> am i missing something?
- # [00:28] * Quits: tomasf_ (~tomasf@host-95-199-2-14.mobileonline.telia.com) (Quit: tomasf_)
- # [00:28] <TabAtkins> Assuming that c1 and c2 are guaranteed to be in [00,ff], and you're already making sure that the second bit in each is 0, that should be fine.
- # [00:29] <TabAtkins> Better would be to & each with 0x00111111.
- # [00:29] <Hixie> each one is known to be in the range 0x80 .. 0xBF
- # [00:29] <TabAtkins> Just to be safe, try swapping your "-0x80" with "&63".
- # [00:33] <Hixie> that (thankfully) made no difference
- # [00:33] * Quits: othermaciej (~mjs@17.245.98.87) (Quit: othermaciej)
- # [00:33] <TabAtkins> Okay, good. Just sanity-checking.
- # [00:33] <TabAtkins> What's the bogus value it's decoding to?
- # [00:34] * Quits: jarib (~jarib@unaffiliated/jarib) (Excess Flood)
- # [00:34] <Hixie> 0xDB5F
- # [00:34] <Hixie> oh i see the problem
- # [00:35] <Hixie> off by one error
- # [00:35] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [00:35] <Hixie> don't mind me
- # [00:35] * eric_carlson is now known as ericc|afk
- # [00:35] <TabAtkins> uh, okay.
- # [00:35] <Hixie> c2 contained c1 and c1 contained c0
- # [00:36] <Hixie> the leading byte
- # [00:36] <Hixie> that resulted in disturbingly few of my tests failing
- # [00:36] <Hixie> but that's another story
- # [00:37] <Hixie> ok, bbiab
- # [00:38] <TabAtkins> Oh, duh, I should have noticed that as soon as I looked at it.
- # [00:42] * Joins: nonge (~nonge@p50829B42.dip.t-dialin.net)
- # [00:43] <rniwa> hsivonen: yt?
- # [00:44] <rniwa> Hixie: do you know how well tested the part it says to throw SYNAX_ERR in http://html5.org/specs/dom-parsing.html#extensions-to-the-range-interface ?
- # [00:44] * Joins: nickrathert (~nickrathe@c-98-206-42-116.hsd1.il.comcast.net)
- # [00:44] <rniwa> when the element name is html, body, etc...?
- # [00:44] * Joins: jdong_bot_ (~jdong_bot@117.79.233.235)
- # [00:46] * Quits: nickrathert (~nickrathe@c-98-206-42-116.hsd1.il.comcast.net) (Client Quit)
- # [00:53] * Joins: othermaciej (~mjs@17.245.104.231)
- # [00:54] * Quits: sanjayb (~sanj@122.170.67.108) (Ping timeout: 246 seconds)
- # [01:02] * Quits: jernoble (~jernoble@17.212.152.13) (Quit: jernoble)
- # [01:03] <rafaelw_> Hixie; Where are you WRT Document.parse()?
- # [01:04] <rafaelw_> I'd really like to get this in. I'm wondering if you still have strong objections or not.
- # [01:08] * Joins: tantek (~tantek@md60536d0.tmodns.net)
- # [01:09] <espadrine> Firefox cannot redefine Element.prototype.scrollIntoView, while webkit can. Firefox's wrong, right?
- # [01:09] * Quits: tantek (~tantek@md60536d0.tmodns.net) (Read error: Connection reset by peer)
- # [01:10] * Joins: tantek (~tantek@md60536d0.tmodns.net)
- # [01:21] * Quits: ehsan (~ehsan@66.207.208.98) (Remote host closed the connection)
- # [01:22] * Quits: sarro (~sarro@i5E864094.versanet.de)
- # [01:26] * Joins: dgathright (~dgathrigh@nat/yahoo/x-tflupbnqvcnmhbxf)
- # [01:31] * Quits: jdong_bot_ (~jdong_bot@117.79.233.235) (Remote host closed the connection)
- # [01:31] * Joins: jernoble (~jernoble@2620:149:4:1b01:523:8488:bfe3:d5f2)
- # [01:31] <jwalden> espadrine: wrong assuming you consider webidl authoritative now, yes
- # [01:31] <jwalden> espadrine: DOM bindings are being rewritten now and should end up fixing that
- # [01:32] <espadrine> jwalden: oh ok, thanks!
- # [01:33] * Quits: gavinc (~gavin@barad-dur.carothers.name) (Quit: Konversation terminated!)
- # [01:35] * Quits: tantek (~tantek@md60536d0.tmodns.net) (Quit: tantek)
- # [01:39] * Quits: grantbdev (~grantbdev@ip174-70-100-162.no.no.cox.net) (Quit: Leaving)
- # [01:41] * Quits: krit (~krit@sjfw1-a.adobe.com) (Quit: Leaving.)
- # [01:43] * Quits: jacobolus (~jacobolus@coffeebar.static.monkeybrains.net) (Ping timeout: 246 seconds)
- # [01:45] * Joins: mven_ (~mven__@169.241.49.57)
- # [01:47] * Quits: mven (~mven__@169.241.49.57) (Ping timeout: 260 seconds)
- # [01:50] * Quits: Kasey (~kkellydes@cpe-76-181-198-184.columbus.res.rr.com) (Quit: Computer has gone to sleep.)
- # [01:50] * Joins: JoePeck (~JoePeck@2620:149:4:304:58f2:b453:3c3:2c19)
- # [01:51] * Quits: JoePeck (~JoePeck@2620:149:4:304:58f2:b453:3c3:2c19) (Client Quit)
- # [02:04] * heycam|away is now known as heycam
- # [02:05] * Quits: jernoble (~jernoble@2620:149:4:1b01:523:8488:bfe3:d5f2) (Quit: jernoble)
- # [02:09] * Joins: jernoble (~jernoble@17.212.152.13)
- # [02:14] * Joins: jacobolus (~jacobolus@coffeebar.static.monkeybrains.net)
- # [02:20] * Quits: astearns (~astearns@192.150.22.5) (Quit: astearns)
- # [02:23] * Joins: astearns (~astearns@192.150.22.5)
- # [02:24] * Quits: astearns (~astearns@192.150.22.5) (Client Quit)
- # [02:24] * Joins: danielfilho (~daniel@187.31.77.7)
- # [02:31] * Joins: ap (~ap@2620:149:4:1b01:7d88:7c01:23e9:de30)
- # [02:31] * Joins: jamesr (jamesr@nat/google/x-mtwuxnhowvsejqxd)
- # [02:37] * Joins: jsbell (jsbell@nat/google/x-gctkgncespsdifmf)
- # [02:37] * Joins: scor (~scor@c-98-216-66-30.hsd1.ma.comcast.net)
- # [02:37] * Quits: scor (~scor@c-98-216-66-30.hsd1.ma.comcast.net) (Changing host)
- # [02:37] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [02:38] * Quits: jamesr (jamesr@nat/google/x-mtwuxnhowvsejqxd) (Quit: jamesr)
- # [02:39] * Joins: MikeSmith (~MikeSmith@s1106207.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [02:40] * Quits: jsbell (jsbell@nat/google/x-gctkgncespsdifmf) (Client Quit)
- # [02:42] * Quits: othermaciej (~mjs@17.245.104.231) (Quit: othermaciej)
- # [02:44] * Quits: mven_ (~mven__@169.241.49.57) (Read error: Connection reset by peer)
- # [02:44] * Joins: tantek (~tantek@50-0-92-247.dsl.dynamic.sonic.net)
- # [02:46] * edwardbc is now known as edwardbc_
- # [02:47] * Joins: mven (~mven__@169.241.49.57)
- # [02:51] * Joins: othermaciej (~mjs@17.245.104.231)
- # [03:11] * Quits: danielfilho (~daniel@187.31.77.7) (Quit: </html>)
- # [03:27] * Quits: dgathright (~dgathrigh@nat/yahoo/x-tflupbnqvcnmhbxf) (Quit: dgathright)
- # [03:39] * Quits: chriseppstein (~chrisepps@209.119.65.162) (Quit: chriseppstein)
- # [03:39] * Quits: sicking (~chatzilla@2620:101:8003:200:226:bbff:fe05:3fe1) (Ping timeout: 272 seconds)
- # [04:10] * Quits: aklein (u4454@gateway/web/irccloud.com/x-otzusccxjxexxuwy)
- # [04:13] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Quit: ERC Version 5.3 (IRC client for Emacs))
- # [04:14] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [04:21] * Quits: othermaciej (~mjs@17.245.104.231) (Quit: othermaciej)
- # [04:23] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [04:26] * Joins: jacobolu_ (~jacobolus@coffeebar.static.monkeybrains.net)
- # [04:27] * Quits: jacobolus (~jacobolus@coffeebar.static.monkeybrains.net) (Ping timeout: 244 seconds)
- # [04:28] * jacobolu_ is now known as jacobolus
- # [04:30] * Quits: twisted` (~twisted@p5DDBB0E0.dip.t-dialin.net) (Ping timeout: 246 seconds)
- # [04:31] * Joins: twisted` (~twisted@p5DDBB78A.dip.t-dialin.net)
- # [04:35] * Joins: fileformat (485ec707@gateway/web/freenode/ip.72.94.199.7)
- # [04:36] * Quits: fileformat (485ec707@gateway/web/freenode/ip.72.94.199.7) (Client Quit)
- # [05:04] * Quits: jacobolus (~jacobolus@coffeebar.static.monkeybrains.net) (Remote host closed the connection)
- # [05:21] * Joins: nessy (~Adium@124.170.221.202)
- # [05:22] * Joins: Druide_ (~Druid@p5B1365B2.dip.t-dialin.net)
- # [05:23] * Quits: ap (~ap@2620:149:4:1b01:7d88:7c01:23e9:de30) (Quit: ap)
- # [05:24] * Quits: Druide__ (~Druid@p5B135B6F.dip.t-dialin.net) (Ping timeout: 265 seconds)
- # [05:31] * Quits: tantek (~tantek@50-0-92-247.dsl.dynamic.sonic.net) (Quit: tantek)
- # [05:38] * Quits: twisted` (~twisted@p5DDBB78A.dip.t-dialin.net) (Quit: Computer has gone to sleep.)
- # [05:39] * Joins: Kasey (~kkellydes@cpe-76-181-198-184.columbus.res.rr.com)
- # [05:40] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [05:46] * Quits: rniwa (rniwa@nat/google/x-mquixmkbjxhxuifi) (Quit: rniwa)
- # [05:52] * Joins: krit (~krit@c-24-6-231-253.hsd1.ca.comcast.net)
- # [05:58] * Quits: jryans (~jryans@rrcs-108-178-108-5.sw.biz.rr.com) (Quit: Be back later)
- # [06:02] * Quits: MikeSmith (~MikeSmith@s1106207.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 245 seconds)
- # [06:14] * Joins: timmywil (~timmywil@host-68-169-154-67.WISOLT2.epbfi.com)
- # [06:18] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [06:39] * Quits: Kasey (~kkellydes@cpe-76-181-198-184.columbus.res.rr.com) (Quit: Computer has gone to sleep.)
- # [06:42] * Joins: Kasey (~kkellydes@cpe-76-181-198-184.columbus.res.rr.com)
- # [06:43] * Quits: Kasey (~kkellydes@cpe-76-181-198-184.columbus.res.rr.com) (Client Quit)
- # [06:45] * Quits: krit (~krit@c-24-6-231-253.hsd1.ca.comcast.net) (Quit: Leaving.)
- # [06:56] * Quits: timmywil (~timmywil@host-68-169-154-67.WISOLT2.epbfi.com) (Quit: Computer has gone to sleep.)
- # [06:57] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Quit: dgathright)
- # [06:58] * Quits: jwalden (~waldo@2620:101:8003:200:224:d7ff:fef0:8d90) (Quit: ChatZilla 0.9.87-4.1450hg.fc15 [XULRunner 12.0/20120424092743])
- # [07:03] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [07:07] * Quits: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [07:07] * Joins: othermaciej_ (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [07:07] * Quits: othermaciej_ (~mjs@c-24-6-209-189.hsd1.ca.comcast.net) (Client Quit)
- # [07:09] * Joins: sanjayb (~sanj@122.170.67.108)
- # [07:25] * Joins: LBP (~Mirc@pD9EB057A.dip0.t-ipconnect.de)
- # [07:26] * Quits: espadrine (~espadrine@nat/mozilla/x-zlqscxflzumyvyll) (Quit: espadrine)
- # [07:32] * Joins: dydx (~dydz@76-220-18-65.lightspeed.sntcca.sbcglobal.net)
- # [07:41] * Joins: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net)
- # [08:04] * Quits: dydx (~dydz@76-220-18-65.lightspeed.sntcca.sbcglobal.net) (Quit: dydx)
- # [08:12] * Joins: espadrine (~espadrine@63-235-13-3.dia.static.qwest.net)
- # [08:15] * Joins: dydx (~dydz@76-220-18-65.lightspeed.sntcca.sbcglobal.net)
- # [08:27] * Joins: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [08:29] * Quits: dydx (~dydz@76-220-18-65.lightspeed.sntcca.sbcglobal.net) (Quit: dydx)
- # [08:37] * Quits: Hixie (~ianh@178.255.149.100) (Ping timeout: 252 seconds)
- # [08:38] * Joins: Ms2ger (~Ms2ger@91.181.22.56)
- # [08:38] * Joins: Hixie (~ianh@178.255.149.100)
- # [08:45] * Joins: chayin (quassel@nat/nokia/x-tjnonryzgatxeaoo)
- # [08:47] * Quits: chayin__ (quassel@nat/nokia/x-bnkehibuaxnwycoh) (Ping timeout: 250 seconds)
- # [08:56] * Joins: ehsan (~ehsan@209.20.29.228)
- # [08:57] * Joins: raphc (~rc@ppp-sei21-46-193-160.67.wb.wifirst.net)
- # [08:59] * Joins: tantek (~tantek@70-36-197-110.dsl.dynamic.sonic.net)
- # [08:59] * jernoble is now known as jernoble|afk
- # [08:59] * Joins: danbri (~danbri@athedsl-4563686.home.otenet.gr)
- # [09:01] <tantek> who has admin access to the wiki?
- # [09:01] <tantek> e.g. to install extensions
- # [09:02] <tantek> perhaps annevk?
- # [09:02] <tantek> would be great to get the SemanticHTML extension installed
- # [09:02] <tantek> https://github.com/microformats/mediawiki-semantic-html
- # [09:03] <annevk> I don't think I can ssh into the wiki
- # [09:03] * heycam is now known as heycam|away
- # [09:03] <tantek> it allows use of more semantic HTML markup tags on MediaWIki pages, useful for new tags in particular like <time> and <data>
- # [09:03] <tantek> ah ok
- # [09:03] <tantek> we're running it live on the microformats wiki if anyone wants to experiment
- # [09:04] <tantek> annevk, ok, np. I'll wait til Hixie is official back from vacation and ask him (though I'm sure he's going to be overrun by a lot of pent-up requests).
- # [09:05] <tantek> *officially
- # [09:05] <annevk> Lachy might have access too
- # [09:05] <annevk> but waiting for Hixie works
- # [09:05] <tantek> not in a rush so that's fine
- # [09:06] <tantek> just a nice convenient incremental upgrade
- # [09:06] <tantek> plus, hey, more HTML5 :)
- # [09:06] <tantek> is there an implementations or tools page somewhere where we keep track of HTML5 implementations / tools?
- # [09:07] * Quits: davatron5000 (~dave@cpe-66-25-175-141.austin.res.rr.com) (Quit: davatron5000)
- # [09:07] <annevk> yeah
- # [09:07] <tantek> (I figured I would ask before creating one)
- # [09:07] <annevk> http://wiki.whatwg.org/wiki/Category:Implementations
- # [09:07] <tantek> ok - so any page tagged with that category
- # [09:07] <annevk> all major things are listed from the front page
- # [09:07] <tantek> or would it be better to make a publishing page
- # [09:08] <tantek> for HTML5 publishing tools
- # [09:08] <annevk> at some point I turned a few into categories to make it easier to group stuff
- # [09:08] <tantek> whatever grouping/organization is your preference
- # [09:08] <annevk> I don't think we have quite enough implementation pages to start separating them further
- # [09:09] <tantek> ok
- # [09:11] <Ms2ger> AryehGregor probably also has access
- # [09:13] * Quits: raphc (~rc@ppp-sei21-46-193-160.67.wb.wifirst.net) (Ping timeout: 244 seconds)
- # [09:14] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [09:28] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Quit: dgathright)
- # [09:32] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [09:37] * Joins: tomasf_ (~tomasf@host-95-199-2-14.mobileonline.telia.com)
- # [09:44] * Quits: tantek (~tantek@70-36-197-110.dsl.dynamic.sonic.net) (Quit: tantek)
- # [09:54] * Quits: annevk (~annevk@a82-161-179-17.adsl.xs4all.nl) (Quit: annevk)
- # [09:57] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [10:07] * Quits: danbri (~danbri@athedsl-4563686.home.otenet.gr) (Remote host closed the connection)
- # [10:22] <Stevef> tantek: a heads up, I mentioned <hgroup> to you at TPAC last year, seems like the HTML WG chairs will soon provide some feedback on Issue 164 http://dev.w3.org/html5/status/issue-status.html#ISSUE-164 if you have any interest in keeping hgroup in HTML5 you may want to keep an eye on this issue. there are 5 proposals 4 of which proposae replacing hgroup. As there has been no real data or...
- # [10:22] <Stevef> ...argument from the WHATWG side on keeping hgroup I would be surprised if it survives.
- # [10:25] * Quits: ehsan (~ehsan@209.20.29.228) (Ping timeout: 240 seconds)
- # [10:33] * Quits: NimeshNeema (u2689@gateway/web/irccloud.com/x-kxtvkvrmgxohhrzi) (Quit: Connection closed for inactivity)
- # [10:34] <Stevef> hober: ping re: http://lists.w3.org/Archives/Public/public-html/2012May/0008.html
- # [10:43] * Quits: esc_ (~esc_ape@77.117.247.3) (Ping timeout: 265 seconds)
- # [10:57] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 244 seconds)
- # [11:04] * Joins: tantek (~tantek@50-0-92-247.dsl.dynamic.sonic.net)
- # [11:09] * Quits: carlos_a1tonio (~benway@173.230.152.21) (Ping timeout: 272 seconds)
- # [11:11] * Joins: graememcc (~chatzilla@host86-147-207-41.range86-147.btcentralplus.com)
- # [11:13] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (Ping timeout: 245 seconds)
- # [11:13] * Joins: GPHemsley (~GPHemsley@209-23-243-49-ip-static.hfc.comcastbusiness.net)
- # [11:13] * Quits: GPHemsley (~GPHemsley@209-23-243-49-ip-static.hfc.comcastbusiness.net) (Changing host)
- # [11:13] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
- # [11:14] * Joins: danbri (~danbri@athedsl-4563686.home.otenet.gr)
- # [11:29] * Joins: nesta_ (~nesta_@13.109.219.87.dynamic.jazztel.es)
- # [11:30] * Joins: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk)
- # [11:31] * Joins: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no)
- # [11:33] * Joins: MattWilcox (~MattWilco@elvendil.plus.com)
- # [11:34] * Joins: nonge_ (~nonge@p5B326653.dip.t-dialin.net)
- # [11:35] * Quits: danbri (~danbri@athedsl-4563686.home.otenet.gr) (Ping timeout: 246 seconds)
- # [11:38] * Quits: nonge (~nonge@p50829B42.dip.t-dialin.net) (Ping timeout: 252 seconds)
- # [11:40] * Quits: jernoble|afk (~jernoble@17.212.152.13) (Quit: jernoble|afk)
- # [11:46] * Quits: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 246 seconds)
- # [11:56] * Joins: nesta__ (~nesta_@133.115.219.87.dynamic.jazztel.es)
- # [11:56] * Quits: nesta_ (~nesta_@13.109.219.87.dynamic.jazztel.es) (Read error: Connection reset by peer)
- # [11:56] * nesta__ is now known as nesta_
- # [11:57] * Joins: saba (~foo@unaffiliated/saba)
- # [12:00] * Joins: maikmerten (~maikmerte@port-92-201-61-100.dynamic.qsc.de)
- # [12:00] * Joins: nesta__ (~nesta_@59.102.219.87.dynamic.jazztel.es)
- # [12:03] * Quits: nesta_ (~nesta_@133.115.219.87.dynamic.jazztel.es) (Ping timeout: 246 seconds)
- # [12:03] * nesta__ is now known as nesta_
- # [12:10] * Joins: nesta__ (~nesta_@205.81.219.87.dynamic.jazztel.es)
- # [12:12] * Quits: nesta_ (~nesta_@59.102.219.87.dynamic.jazztel.es) (Ping timeout: 245 seconds)
- # [12:12] * nesta__ is now known as nesta_
- # [12:15] <Ms2ger> Velmont, http://dvcs.w3.org/hg/webapps/rev/ec3740e46700#l8.1 doesn't look like it should have been there
- # [12:21] * Quits: nesta_ (~nesta_@205.81.219.87.dynamic.jazztel.es) (Ping timeout: 246 seconds)
- # [12:32] * Joins: twisted` (~twisted@p5DDBB78A.dip.t-dialin.net)
- # [12:36] * Quits: twisted` (~twisted@p5DDBB78A.dip.t-dialin.net) (Client Quit)
- # [12:39] * Joins: [[zzz]] (~q@node-19rr.pool-125-25.dynamic.totbb.net)
- # [12:43] * Quits: [[zz]] (~q@node-19rs.pool-125-25.dynamic.totbb.net) (Ping timeout: 265 seconds)
- # [12:45] * Joins: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [12:47] * Quits: saba (~foo@unaffiliated/saba) (Ping timeout: 252 seconds)
- # [12:55] * Quits: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk) (Quit: sarspazam)
- # [12:56] * Joins: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk)
- # [12:56] * Quits: nessy (~Adium@124.170.221.202) (Quit: Leaving.)
- # [12:57] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (Quit: rniwa)
- # [13:05] * Quits: richt (richt@nat/opera/x-monrsjlkgulqxtnb) (Remote host closed the connection)
- # [13:15] * Joins: MikeSmith (~MikeSmith@s1106001.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [13:21] * Quits: MikeSmith (~MikeSmith@s1106001.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout: 252 seconds)
- # [13:21] * Joins: MikeSmith (~MikeSmith@s1106130.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [13:23] * Joins: mattlucht (~mattlucht@194.102.13.2)
- # [13:33] * Joins: saba (~foo@unaffiliated/saba)
- # [13:34] * Quits: MikeSmith (~MikeSmith@s1106130.xgsspn.imtp.tachikawa.spmode.ne.jp) (Quit: MikeSmith)
- # [13:37] * [[zzz]] is now known as [[zz]]
- # [13:43] * Quits: mattlucht (~mattlucht@194.102.13.2) (Quit: mattlucht)
- # [13:47] * Joins: tomasf__ (~tomasf@host-95-199-12-125.mobileonline.telia.com)
- # [13:49] * Quits: tomasf_ (~tomasf@host-95-199-2-14.mobileonline.telia.com) (Ping timeout: 256 seconds)
- # [13:55] * Quits: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 246 seconds)
- # [13:55] * Quits: maikmerten (~maikmerte@port-92-201-61-100.dynamic.qsc.de) (Ping timeout: 244 seconds)
- # [13:56] * Joins: jarek (~jarek@bcz37.neoplus.adsl.tpnet.pl)
- # [13:56] * Quits: jarek (~jarek@bcz37.neoplus.adsl.tpnet.pl) (Changing host)
- # [13:56] * Joins: jarek (~jarek@unaffiliated/jarek)
- # [13:57] * Quits: tomasf__ (~tomasf@host-95-199-12-125.mobileonline.telia.com) (Read error: Connection reset by peer)
- # [14:12] * Joins: danbri (~danbri@athedsl-4559652.home.otenet.gr)
- # [14:14] * Joins: sarro (~sarro@i5E865F1A.versanet.de)
- # [14:19] * Joins: sedovsek (~robert@93-103-104-107.dynamic.t-2.net)
- # [14:20] * Quits: danbri (~danbri@athedsl-4559652.home.otenet.gr) (Remote host closed the connection)
- # [14:21] * Joins: erichynds (~ehynds@pool-71-184-234-218.bstnma.fios.verizon.net)
- # [14:28] * Quits: erichynds (~ehynds@pool-71-184-234-218.bstnma.fios.verizon.net)
- # [14:58] * Joins: maikmerten (~maikmerte@port-92-201-61-100.dynamic.qsc.de)
- # [15:01] * Quits: sedovsek (~robert@93-103-104-107.dynamic.t-2.net) (Quit: sedovsek)
- # [15:02] * Quits: jarib (~jarib@unaffiliated/jarib) (Excess Flood)
- # [15:02] * Quits: jarek (~jarek@unaffiliated/jarek) (Quit: Leaving)
- # [15:03] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [15:06] * Quits: sarro (~sarro@i5E865F1A.versanet.de)
- # [15:11] * Joins: NimeshNeema (u2689@gateway/web/irccloud.com/x-gcnfpygvjeudcckd)
- # [15:35] * Joins: ehsan (~ehsan@209.20.29.228)
- # [15:45] * Quits: rworth (~rworth@pool-173-66-213-252.washdc.fios.verizon.net) (Quit: Linkinus - http://linkinus.com)
- # [15:49] * Quits: edwardbc_ (~edward.ba@186.32.50.168) (Remote host closed the connection)
- # [15:49] * Joins: edwardbc (~edward.ba@186.32.50.168)
- # [15:49] * nonge_ is now known as nonge
- # [15:50] * Joins: sedovsek (~robert@93-103-104-107.dynamic.t-2.net)
- # [15:50] * Quits: sedovsek (~robert@93-103-104-107.dynamic.t-2.net) (Client Quit)
- # [15:57] * Quits: ehsan (~ehsan@209.20.29.228) (Remote host closed the connection)
- # [16:02] * Joins: ehsan (~ehsan@209.20.29.228)
- # [16:03] * Joins: sedovsek (~robert@93-103-104-107.dynamic.t-2.net)
- # [16:14] <Velmont> Ms2ger: wtf! grrrrrr.... i am not happy with hg
- # [16:15] <Velmont> sorry about that
- # [16:16] * Quits: MattWilcox (~MattWilco@elvendil.plus.com) (Quit: Leaving.)
- # [16:17] <gsnedders> Velmont: Deep breaths.
- # [16:22] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Ping timeout: 250 seconds)
- # [16:28] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [16:30] * Quits: jochen__ (jochen@nat/google/x-gsaskmdgdrcawusi) (Remote host closed the connection)
- # [16:30] * Joins: jochen__ (jochen@nat/google/x-muqrohprpbpcrnxr)
- # [16:50] * Quits: sedovsek (~robert@93-103-104-107.dynamic.t-2.net) (Quit: sedovsek)
- # [16:51] * Joins: krit (~krit@c-24-6-231-253.hsd1.ca.comcast.net)
- # [16:53] * Joins: izhak (~izhak@194.176.111.7)
- # [17:05] * Quits: onar (~onar@17.216.36.168) (Ping timeout: 244 seconds)
- # [17:06] <Ms2ger> Velmont, (reverted it, btw)
- # [17:11] * Joins: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net)
- # [17:16] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [17:19] * Joins: timmywil (~timmywil@host-68-169-154-67.WISOLT2.epbfi.com)
- # [17:24] * Quits: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net) (Quit: snowfox)
- # [17:27] * Joins: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [17:31] <Velmont> Ms2ger: thanks. yea I am always surprised by hg behaviour. have to be more careful
- # [17:38] * Quits: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 246 seconds)
- # [17:45] * Joins: jdong_bot_ (~jdong_bot@117.79.233.228)
- # [17:46] * Quits: ehsan (~ehsan@209.20.29.228) (Remote host closed the connection)
- # [17:50] * Quits: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no) (Remote host closed the connection)
- # [17:51] * Joins: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no)
- # [17:51] * Joins: MattWilcox (~MattWilco@elvendil.plus.com)
- # [17:53] * Quits: MattWilcox (~MattWilco@elvendil.plus.com) (Client Quit)
- # [17:55] * Quits: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no) (Ping timeout: 246 seconds)
- # [17:59] * Quits: izhak (~izhak@194.176.111.7) (Ping timeout: 246 seconds)
- # [18:08] * Joins: teleject (~christoph@70.116.86.65)
- # [18:10] * Quits: FireFly (~firefly@firefly.xen.prgmr.com) (Excess Flood)
- # [18:17] * Quits: teleject (~christoph@70.116.86.65) (Remote host closed the connection)
- # [18:17] * Joins: FireFly (~firefly@firefly.xen.prgmr.com)
- # [18:17] * Joins: teleject (~christoph@70.116.86.65)
- # [18:24] * Quits: jdong_bot_ (~jdong_bot@117.79.233.228) (Remote host closed the connection)
- # [18:24] * Joins: shwetank (~shwetank@122.173.180.116)
- # [18:24] * Parts: shwetank (~shwetank@122.173.180.116)
- # [18:27] <GPHemsley> If there is a runaway <a> element that is inside a block element like <p> or <div>, shouldn't the closing of that element close the <a>?
- # [18:31] * Joins: MattWilcox (~MattWilco@elvendil.plus.com)
- # [18:38] * Joins: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [18:50] * Joins: JVoracek (~J_Voracek@cpe-76-184-40-47.tx.res.rr.com)
- # [18:51] * Joins: ehsan (~ehsan@209.20.29.228)
- # [18:52] * Joins: dydx (~dydz@76-220-18-65.lightspeed.sntcca.sbcglobal.net)
- # [18:53] * Quits: ehsan (~ehsan@209.20.29.228) (Remote host closed the connection)
- # [18:54] * Quits: JVoracek (~J_Voracek@cpe-76-184-40-47.tx.res.rr.com) (Ping timeout: 248 seconds)
- # [19:00] * Joins: sedovsek (~robert@93-103-104-107.dynamic.t-2.net)
- # [19:03] * Quits: sedovsek (~robert@93-103-104-107.dynamic.t-2.net) (Client Quit)
- # [19:05] * Joins: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net)
- # [19:20] * Quits: dydx (~dydz@76-220-18-65.lightspeed.sntcca.sbcglobal.net) (Quit: dydx)
- # [19:21] * Joins: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net)
- # [19:21] * Quits: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net) (Client Quit)
- # [19:29] <gsnedders> Hate __proto__. Hate it.
- # [19:31] * Joins: JVoracek (~J_Voracek@cpe-76-184-40-47.tx.res.rr.com)
- # [19:33] * Quits: JVoracek (~J_Voracek@cpe-76-184-40-47.tx.res.rr.com) (Client Quit)
- # [19:34] <Ms2ger> Who does e4x again.
- # [19:34] <Ms2ger> ?
- # [19:35] <gsnedders> SpiderMonkey.
- # [19:36] <Ms2ger> How silly of us
- # [19:37] <gsnedders> Non-strict only, IIRC
- # [19:37] <gsnedders> Ms2ger: You and all your ES extensions!
- # [19:37] <Ms2ger> Possible
- # [19:37] <Ms2ger> Pff
- # [19:37] <Ms2ger> I prefer to think of ES as a JS extension ;)
- # [19:38] <gsnedders> ES is a subset of JS :P
- # [19:38] <Ms2ger> After all, Ope^W Mozilla did it first
- # [19:38] <gsnedders> Operabook^W ? :)
- # [19:47] <gsnedders> Why am I writing emails to es-discuss on a Saturday?
- # [19:48] * Quits: MattWilcox (~MattWilco@elvendil.plus.com) (Quit: Leaving.)
- # [19:50] * Quits: edwardbc (~edward.ba@186.32.50.168)
- # [19:55] <Ms2ger> You've got exams coming up?
- # [19:56] <gsnedders> Nah, just going out soon. And it's the weekend, a break is nice at times.
- # [20:03] * Quits: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk) (Quit: sarspazam)
- # [20:05] * Joins: erichynds (~ehynds@pool-71-184-234-218.bstnma.fios.verizon.net)
- # [20:07] * Quits: erichynds (~ehynds@pool-71-184-234-218.bstnma.fios.verizon.net) (Client Quit)
- # [20:16] * Joins: fragile (~fragile@host86-132-138-217.range86-132.btcentralplus.com)
- # [20:24] * Quits: tantek (~tantek@50-0-92-247.dsl.dynamic.sonic.net) (Quit: tantek)
- # [20:26] * Quits: fragile (~fragile@host86-132-138-217.range86-132.btcentralplus.com) (Quit: Linkinus - http://linkinus.com)
- # [20:27] * Joins: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk)
- # [20:30] * Quits: krit (~krit@c-24-6-231-253.hsd1.ca.comcast.net) (Quit: Leaving.)
- # [20:33] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [20:36] * Quits: maikmerten (~maikmerte@port-92-201-61-100.dynamic.qsc.de) (Quit: Leaving)
- # [20:40] * Quits: graememcc (~chatzilla@host86-147-207-41.range86-147.btcentralplus.com) (Remote host closed the connection)
- # [20:41] * Joins: krit (~krit@c-24-6-231-253.hsd1.ca.comcast.net)
- # [20:41] * Quits: krit (~krit@c-24-6-231-253.hsd1.ca.comcast.net) (Client Quit)
- # [20:42] * Quits: Stevef (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 246 seconds)
- # [20:57] * Joins: krit (~krit@c-24-6-231-253.hsd1.ca.comcast.net)
- # [21:03] * Quits: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
- # [21:07] * Joins: dydx (~dydz@76-220-18-65.lightspeed.sntcca.sbcglobal.net)
- # [21:14] * Quits: espadrine (~espadrine@63-235-13-3.dia.static.qwest.net) (Quit: espadrine)
- # [21:20] * Quits: timmywil (~timmywil@host-68-169-154-67.WISOLT2.epbfi.com) (Quit: Computer has gone to sleep.)
- # [21:22] * Quits: krit (~krit@c-24-6-231-253.hsd1.ca.comcast.net) (Quit: Leaving.)
- # [21:24] * Joins: danbri (~danbri@athedsl-4466001.home.otenet.gr)
- # [21:26] * Joins: timmywil (~timmywil@c-76-127-16-172.hsd1.tn.comcast.net)
- # [21:32] * Quits: LBP (~Mirc@pD9EB057A.dip0.t-ipconnect.de) (Quit: Bye, bye! See you on http://leanbackplayer.com)
- # [21:32] * Quits: danbri (~danbri@athedsl-4466001.home.otenet.gr) (Read error: Connection reset by peer)
- # [21:33] * Joins: danbri (~danbri@athedsl-4466001.home.otenet.gr)
- # [21:38] * Quits: danbri (~danbri@athedsl-4466001.home.otenet.gr) (Ping timeout: 244 seconds)
- # [21:38] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 244 seconds)
- # [21:40] * Joins: danbri (~danbri@aldemar4.hrs.forthnet.gr)
- # [21:40] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [21:40] * Quits: Ms2ger (~Ms2ger@91.181.22.56) (Quit: nn)
- # [21:41] * Quits: danbri (~danbri@aldemar4.hrs.forthnet.gr) (Read error: Connection reset by peer)
- # [21:41] * Joins: danbri (~danbri@athedsl-4486336.home.otenet.gr)
- # [21:45] * Joins: tomasf_ (~tomasf@host-95-199-8-59.mobileonline.telia.com)
- # [21:46] * Quits: danbri (~danbri@athedsl-4486336.home.otenet.gr) (Ping timeout: 250 seconds)
- # [21:51] * Joins: danbri (~danbri@athedsl-4490748.home.otenet.gr)
- # [21:55] * Quits: danbri (~danbri@athedsl-4490748.home.otenet.gr) (Ping timeout: 244 seconds)
- # [21:58] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [21:58] * Joins: danbri (~danbri@athedsl-4472601.home.otenet.gr)
- # [22:02] * Joins: silentimp (~silentimp@182-147-133-95.pool.ukrtel.net)
- # [22:11] * Quits: danbri (~danbri@athedsl-4472601.home.otenet.gr) (Ping timeout: 244 seconds)
- # [22:12] * Joins: danbri (~danbri@athedsl-4470711.home.otenet.gr)
- # [22:22] * cbright6062 reads to see if he's missed anything interesting.
- # [22:22] <cbright6062> hm.
- # [22:27] * Quits: danbri (~danbri@athedsl-4470711.home.otenet.gr) (Ping timeout: 250 seconds)
- # [22:38] * Joins: danbri (~danbri@athedsl-4490748.home.otenet.gr)
- # [22:41] * Quits: saba (~foo@unaffiliated/saba) (Quit: leaving)
- # [22:43] * Quits: danbri (~danbri@athedsl-4490748.home.otenet.gr) (Ping timeout: 245 seconds)
- # [22:50] * Joins: MattWilcox (~MattWilco@elvendil.plus.com)
- # [22:58] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [22:59] * Quits: silentimp (~silentimp@182-147-133-95.pool.ukrtel.net) (Read error: No route to host)
- # [23:00] * Joins: silentimp (~silentimp@182-147-133-95.pool.ukrtel.net)
- # [23:10] * Joins: krit (~krit@c-24-6-231-253.hsd1.ca.comcast.net)
- # [23:22] * Quits: MattWilcox (~MattWilco@elvendil.plus.com) (Quit: Leaving.)
- # [23:36] * Quits: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk) (Quit: sarspazam)
- # [23:36] * Joins: sedovsek (~robert@93-103-104-107.dynamic.t-2.net)
- # Session Close: Sun May 27 00:00:00 2012
The end :)