Options:
- # Session Start: Sat Mar 24 00:00:00 2012
- # Session Ident: #whatwg
- # [00:11] * heycam|away is now known as heycam
- # [00:21] * Quits: ehsan_ (~ehsan@66.207.208.98) (Remote host closed the connection)
- # [00:22] * jonlee is now known as jonlee|afk
- # [00:24] <Hixie> hmm, i suppose if path is null and we're using the current default path i should throw if a transform is provided to addHitRegion...
- # [00:26] <Hixie> any dom core editors around?
- # [00:26] <Hixie> actually i guess MouseEvent isn't in DOM Core
- # [00:27] <Hixie> what spec defines the MouseEvent constructor these days?
- # [00:28] * Quits: chriseppstein (~chrisepps@209.119.65.162) (Quit: chriseppstein)
- # [00:31] <paul_irish> http://html5labs.com/dom4events/#constructors-mouseevent maybe?
- # [00:31] <Hixie> ah, cool, thanks
- # [00:32] <jwalden> anyone have a recent copy of IE10 to test something for me? I need to know what |Object.create(new DataView(new ArrayBuffer(8))).setUint8(2, 5)| in http://www.squarefree.com/shell/shell.html produces there
- # [00:32] <Hixie> heycam: can i do "partial dictionary Foo { foo myNewMember }" ?
- # [00:33] <heycam> you cannot, sorry
- # [00:33] <heycam> did you ask that recently, or was that someone else?
- # [00:34] <heycam> one problem with allowing it is that we need to have a defined order for dictionary members, so that the properties can be got in a fixed order
- # [00:34] <heycam> with partials, you don't have any ordering between the different fragments
- # [00:34] <jwalden> specifying property enumeration order? :-(
- # [00:35] <Hixie> heycam: hmm
- # [00:35] <heycam> jwalden, nah, just order of fetching properties from an object that's being used as a dictionary
- # [00:35] <jwalden> heycam: oh, you mean like for Object.defineProperty(..., ..., { enumerable: true, configurable: true }) what order enumerable/configurable are gotten?
- # [00:36] <jwalden> that ordering I am happy to have spec'd :-)
- # [00:36] <heycam> jwalden, yeah
- # [00:36] <jwalden> good, good
- # [00:36] <Hixie> heycam: i think it's going to become almost necessary given events
- # [00:36] <heycam> hmm really?
- # [00:36] <Hixie> heycam: and their constructors
- # [00:36] <heycam> why's that?
- # [00:36] <Hixie> brb
- # [00:37] * Quits: pablof (~pablof@c-98-207-157-89.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [00:38] <jwalden> event constructors taking dictionaries means you have to say what order the properties are retrieved, so that getters can have effects in the proper order and all, I think
- # [00:38] <jwalden> and I understand the event ctors to go crazy with dictionaries, because passing all of 'em as arguments is cracktastic
- # [00:38] <heycam> yeah, it's a much nicer pattern to use
- # [00:39] <heycam> still not sure why partial dictionaries are required though
- # [00:39] * Joins: pablof (~pablof@c-98-207-157-89.hsd1.ca.comcast.net)
- # [00:40] <Hixie> heycam: sorry, back
- # [00:40] <Hixie> heycam: say i want to add a member to MouseEvent
- # [00:41] <heycam> and you don't want to ask annevk to do it? :)
- # [00:41] <Hixie> heycam: how do i do that, assuming i'm not a mainstream spec (i.e. who can convince microsoft ot add it)
- # [00:41] <heycam> fork the spec? :)
- # [00:42] <Hixie> that seems like a bit of a heavyweight for one extra member :-P
- # [00:42] <heycam> how are you going to use this extra member?
- # [00:42] <heycam> I mean, what function is going to look at it?
- # [00:43] <Hixie> i would want to add a member to the dictionary so that it can be passed to the constructor so that it can set a new member i would also add to the MouseEvent interface
- # [00:43] <Hixie> same way as all the other members on event init dictionaries
- # [00:44] <heycam> I see, so you wouldn't need to redefine the constructor, because it's already written in terms of whatever members exist on the dictionary
- # [00:44] <Hixie> right
- # [00:45] <heycam> if we have two partial dictionary definitions, how do we decide how they are ordered?
- # [00:45] <heycam> currently dictionary members are defined to be got in the order they appear in the IDL
- # [00:46] <heycam> with ones on ancestors got before ones on descendants
- # [00:46] <Hixie> change the definition to be alphabetical :-)
- # [00:46] <heycam> yeah that's one way! :)
- # [00:48] <paul_irish> jwalden: browserstack has ie10pp2 to play with
- # [00:48] <jwalden> paul_irish: ooh, it does? good to know for next time (I got an answer in #developers a second ago)
- # [00:49] <jwalden> although, I think pp2 is before they went to only-available-with-a-new-OS system, and I actually have that preview installed
- # [00:49] <paul_irish> correctomundo
- # [00:49] * jwalden is not interested in blowing away his working OS solely to test IE10 :-)
- # [00:49] <heycam> Hixie, I guess we could even be consistent with current ordering (in case there is a reliance on order already, which I guess is unlikely) by doing the alphabetical thing only for the partial-included dictionary members
- # [00:51] <Hixie> heycam: we could do that, yeah. though generally i'm a bit suspicious of making partial dicts or interfaces having detectable results since the idea is that 'partial' is just an editorial aid
- # [00:51] * Joins: abarth_ (u5294@gateway/web/irccloud.com/x-grbdcdufaenwuuby)
- # [00:51] <heycam> Hixie, yeah I guess so
- # [00:52] * Joins: bentruyman_ (~bentruyma@li159-104.members.linode.com)
- # [00:52] <heycam> the alphabetical order just seems a bit funny to me
- # [00:53] <WeirdAl> [partial] Dictionary
- # [00:53] <Hixie> could order it by the sum of the unicode codepoints of the characters in the name, it's even more silly :-P
- # [00:53] <WeirdAl> extra attributes ftw :p
- # [00:53] <heycam> heh
- # [00:54] <jwalden> normatively order it depending on the phase of the moon
- # [00:54] <heycam> mint a uuid for each partial dictionary, order based on that
- # [00:55] * Quits: einSelbst (~sly@cable-82-119-14-173.cust.telecolumbus.net) (Remote host closed the connection)
- # [00:55] <Hixie> that goes back to the editorial details having normative effects
- # [00:56] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [01:02] * Joins: jcarbaugh (~jcarbaugh@216-15-37-167.c3-0.gth-ubr1.lnh-gth.md.cable.rcn.com)
- # [01:02] * Quits: KillerX (~anant@nat/mozilla/x-yeytusgudhvfjhve) (*.net *.split)
- # [01:02] * Quits: mpt (~mpt@canonical/mpt) (*.net *.split)
- # [01:02] * Quits: hasather (davidh@nat/opera/x-rsknjhbitszspuwq) (*.net *.split)
- # [01:02] * Quits: abarth (u5294@gateway/web/irccloud.com/x-vjjffgueoipqoeqw) (*.net *.split)
- # [01:02] * Quits: oal (u4126@gateway/web/irccloud.com/x-bocpmaqzcejzjuqf) (*.net *.split)
- # [01:02] * Quits: bentruyman (~bentruyma@li159-104.members.linode.com) (*.net *.split)
- # [01:02] * Quits: tonsofpcs (~tonsofpcs@cpe-72-230-192-8.stny.res.rr.com) (*.net *.split)
- # [01:02] * Quits: ivan`` (~ivan@unaffiliated/ivan/x-000001) (*.net *.split)
- # [01:02] * Quits: rektide (~rektide@deneb.eldergods.com) (*.net *.split)
- # [01:02] * Quits: volkmar (~volkmar@rps1542.ovh.net) (*.net *.split)
- # [01:02] * abarth_ is now known as abarth
- # [01:02] * bentruyman_ is now known as bentruyman
- # [01:04] * Joins: oal (u4126@gateway/web/irccloud.com/x-oxtozshdbldiknvq)
- # [01:06] * Quits: sedovsek (robert.sed@93-103-104-107.dynamic.t-2.net)
- # [01:06] * Quits: WeirdAl (~chatzilla@g2spf.ask.info) (Quit: ChatZilla 0.9.88.1 [Firefox 11.0/20120312181643])
- # [01:08] * Quits: jacobolus (~jacobolus@adsl-99-25-40-28.dsl.pltn13.sbcglobal.net) (Remote host closed the connection)
- # [01:08] * Quits: necolas (~necolas@5ade73f0.bb.sky.com) (Remote host closed the connection)
- # [01:18] * Joins: jdong_bot_ (~jdong_bot@117.79.233.232)
- # [01:28] * Quits: ap (~ap@17.212.155.203) (Quit: ap)
- # [01:33] <heycam> Hixie, added partial dictionaries
- # [01:42] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 246 seconds)
- # [01:42] * Joins: temp02 (~temp01@unaffiliated/temp01)
- # [01:47] * Joins: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net)
- # [01:47] * Quits: aklein (u4454@gateway/web/irccloud.com/x-pkzqtjipevefzyyh)
- # [01:50] * Quits: dave_levin (dave_levin@nat/google/x-gjqnkbppkojtfhcv) (Quit: dave_levin)
- # [01:51] * Quits: Druid_ (~Druid@p5B05DBA6.dip.t-dialin.net) (Ping timeout: 265 seconds)
- # [01:53] * Quits: jsbell (jsbell@nat/google/x-lxzkxusvdhkkrdhs) (Quit: There's no place like home...)
- # [01:55] * Joins: Druid_ (~Druid@p5B135794.dip.t-dialin.net)
- # [01:56] * Quits: temp02 (~temp01@unaffiliated/temp01) (Read error: Connection reset by peer)
- # [01:59] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [02:01] * Joins: jacobolus (~jacobolus@70-36-215-74.dsl.dynamic.sonic.net)
- # [02:04] * Quits: tomasf (~tom@c-b7dbe555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Quit: tomasf)
- # [02:12] * Quits: plutoniix (~plutoniix@101.108.127.12) (Quit: Leaving)
- # [02:13] * Joins: karega (karega@cpe-76-184-236-100.tx.res.rr.com)
- # [02:18] * Quits: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
- # [02:20] * Joins: nonge (~nonge@p5082A8C6.dip.t-dialin.net)
- # [02:24] * Quits: sarro (~sarro@i5E864001.versanet.de) (Ping timeout: 248 seconds)
- # [02:24] * Joins: sarro (~sarro@i5E8642BB.versanet.de)
- # [02:31] * ojan is now known as ojan_away
- # [02:37] * jonlee|afk is now known as jonlee
- # [02:37] * Joins: wycats (~wycats@enginey-9.border1.sfo002.pnap.net)
- # [02:40] <wycats> I have a question https://gist.github.com/2177079
- # [02:40] <wycats> I wrote it in a gist for clarity
- # [02:40] <wycats> has to do with the tokenizer spec and something HTML5lib's tests say is a ParseError, but doesn't look like it to me
- # [02:44] * Quits: sicking (~chatzilla@nat/mozilla/x-itgcgxwtzhqeroty) (Ping timeout: 260 seconds)
- # [02:47] * jonlee is now known as jonlee|afk
- # [02:54] * Quits: danbri (~danbri@cpc6-aztw25-2-0-cust83.aztw.cable.virginmedia.com) (Remote host closed the connection)
- # [02:56] * Quits: pablof (~pablof@c-98-207-157-89.hsd1.ca.comcast.net) (Quit: ^z)
- # [03:07] * Joins: Sirisian (~Sirisian@adsl-68-72-9-56.dsl.klmzmi.ameritech.net)
- # [03:07] <Sirisian> I'm looking for annevk2
- # [03:08] <Sirisian> Anne van Kesteren <-- that guy
- # [03:08] * Quits: jcarbaugh (~jcarbaugh@216-15-37-167.c3-0.gth-ubr1.lnh-gth.md.cable.rcn.com)
- # [03:13] * Joins: tomasf (~tom@2002:55e5:dbb7:0:817d:f7d1:9c26:5190)
- # [03:19] <Hixie> heycam: wow, that's good service. thanks dude!
- # [03:23] * Joins: sicking (~chatzilla@c-98-210-152-4.hsd1.ca.comcast.net)
- # [03:23] <wycats> Hixie: any thoughts on the above?
- # [03:23] <wycats> is the test just wrong?
- # [03:27] * Quits: ParadoX- (parad0x@hades.spexhost.com) (Ping timeout: 276 seconds)
- # [03:32] * Quits: sarro (~sarro@i5E8642BB.versanet.de) (Ping timeout: 264 seconds)
- # [03:36] * Quits: eric_carlson (~ericc@adsl-67-112-12-110.dsl.anhm01.pacbell.net) (Ping timeout: 264 seconds)
- # [03:37] <Hixie> wycats: end tags aren't allowed to have attribute
- # [03:37] <Hixie> s
- # [03:37] <Hixie> wycats: search for "When an end tag token is emitted with attributes, that is a parse error."
- # [03:40] * Quits: sicking (~chatzilla@c-98-210-152-4.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [03:41] <wycats> Hixie: ah
- # [03:41] <wycats> so the parse error happens when the end tag is being emitted
- # [03:44] * Quits: wycats (~wycats@enginey-9.border1.sfo002.pnap.net) (Quit: wycats)
- # [03:48] * Quits: jwalden (~waldo@2620:101:8003:200:224:d7ff:fef0:8d90) (Quit: ChatZilla 0.9.87-4.1450hg.fc15 [XULRunner 10.0.1/20120216115618])
- # [03:52] * Joins: jcarbaugh (~jcarbaugh@216-15-37-167.c3-0.gth-ubr1.lnh-gth.md.cable.rcn.com)
- # [03:59] * Quits: LBP (~Mirc@pD9EB186C.dip0.t-ipconnect.de) (Ping timeout: 246 seconds)
- # [04:00] * Joins: LBP (~Mirc@pD9EB047E.dip0.t-ipconnect.de)
- # [04:23] * Quits: tndrH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com) (Ping timeout: 246 seconds)
- # [04:36] * jonlee|afk is now known as jonlee
- # [04:51] * Joins: Evanescence (~Evanescen@60.183.197.71)
- # [04:56] * Joins: wycats (~wycats@173.247.200.5)
- # [05:03] * Joins: ParadoX- (parad0x@hades.spexhost.com)
- # [05:11] * jonlee is now known as jonlee|afk
- # [05:39] * Quits: wycats (~wycats@173.247.200.5) (Read error: Connection reset by peer)
- # [05:45] * Joins: wycats (~wycats@173.247.200.5)
- # [06:00] * Quits: MikeSmith (~MikeSmith@p15181-obmd01.tokyo.ocn.ne.jp) (Read error: Connection reset by peer)
- # [06:06] * Joins: onar_ (~onar@17.216.36.168)
- # [06:06] * Joins: jonlee (~jonlee@2620:149:4:1b01:25d4:f20c:e668:a939)
- # [06:07] * Quits: jacobolus (~jacobolus@70-36-215-74.dsl.dynamic.sonic.net) (Remote host closed the connection)
- # [06:08] * Quits: onar (~onar@17.216.36.168) (Ping timeout: 240 seconds)
- # [06:08] * onar_ is now known as onar
- # [06:09] * Quits: jonlee|afk (~jonlee@2620:149:4:1b01:8c87:aa37:33a2:4a14) (Ping timeout: 260 seconds)
- # [06:12] * Quits: rniwa (rniwa@nat/google/x-lxzcwvnrisqudxmj) (Quit: rniwa)
- # [06:25] * Quits: wookiehangover (~wookiehan@c-67-161-138-118.hsd1.co.comcast.net) (Quit: i'm out)
- # [06:37] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [06:41] * Joins: dydx (~dydz@adsl-76-199-101-60.dsl.pltn13.sbcglobal.net)
- # [06:42] * Joins: wookiehangover (~wookiehan@c-67-161-138-118.hsd1.co.comcast.net)
- # [06:45] <Hixie> Sirisian: anne's often around. he's in the CET timezone.
- # [06:46] <Sirisian> Ah thanks. :)
- # [06:48] <Sirisian> It's kind of funny. I have a friend that believes it's impossible to get things added to specs and it's pointless to try so I'm going around against getting his change implemented in the spec and all browsers to prove him wrong. :P
- # [06:48] <Sirisian> Basically this bug: https://www.w3.org/Bugs/Public/show_bug.cgi?id=16502
- # [06:54] * Quits: dbaron (~dbaron@173-228-85-36.dsl.dynamic.sonic.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [07:00] * Quits: hij1nx (~hij1nx@cpe-98-14-168-178.nyc.res.rr.com) (Quit: hij1nx)
- # [07:10] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 244 seconds)
- # [07:12] <Hixie> heh
- # [07:12] <Hixie> i wish Mac OS did something sane with multiple monitors
- # [07:13] <Hixie> their fullscreen thing drives me crazy
- # [07:13] * Quits: karega (karega@cpe-76-184-236-100.tx.res.rr.com) (Ping timeout: 252 seconds)
- # [07:28] * Quits: wycats (~wycats@173.247.200.5) (Quit: wycats)
- # [07:35] * Quits: jochen__ (jochen@nat/google/x-dcccodbywldfngqy) (Remote host closed the connection)
- # [07:35] * Joins: jochen__ (jochen@nat/google/x-lldheayrbdwvqrov)
- # [07:35] * Joins: diraol (~diraol@189.38.131.49)
- # [07:37] * Joins: jryans (~jryans@cpe-70-124-81-135.austin.res.rr.com)
- # [07:59] * Quits: izhak (1000@188.168.203.198) (Remote host closed the connection)
- # [08:15] * Quits: dydx (~dydz@adsl-76-199-101-60.dsl.pltn13.sbcglobal.net) (Quit: dydx)
- # [08:18] * Joins: dydx (~dydz@adsl-76-199-101-60.dsl.pltn13.sbcglobal.net)
- # [08:18] * Quits: dydx (~dydz@adsl-76-199-101-60.dsl.pltn13.sbcglobal.net) (Read error: Connection reset by peer)
- # [08:18] * Joins: drdt (~dydz@adsl-76-199-101-60.dsl.pltn13.sbcglobal.net)
- # [08:20] * Quits: jcarbaugh (~jcarbaugh@216-15-37-167.c3-0.gth-ubr1.lnh-gth.md.cable.rcn.com)
- # [08:24] * Quits: jryans (~jryans@cpe-70-124-81-135.austin.res.rr.com) (Quit: Leaving...)
- # [08:49] * Quits: jdong_bot_ (~jdong_bot@117.79.233.232) (Remote host closed the connection)
- # [08:57] * Quits: drdt (~dydz@adsl-76-199-101-60.dsl.pltn13.sbcglobal.net) (Quit: drdt)
- # [09:01] * Joins: jdong_bot_ (~jdong_bot@118.186.197.65)
- # [09:02] * Joins: wycats (~wycats@c-69-181-215-45.hsd1.ca.comcast.net)
- # [09:08] * Joins: Ms2ger (~Ms2ger@33.178-242-81.adsl-dyn.isp.belgacom.be)
- # [09:21] * Quits: [[zz]] (~q@101.108.127.12) (Ping timeout: 246 seconds)
- # [09:22] * Quits: wycats (~wycats@c-69-181-215-45.hsd1.ca.comcast.net) (Quit: wycats)
- # [09:28] * Joins: krijn (u2319@gateway/web/irccloud.com/x-sxkrrygkcbexuvrh)
- # [09:33] * Quits: Sirisian (~Sirisian@adsl-68-72-9-56.dsl.klmzmi.ameritech.net) (Ping timeout: 244 seconds)
- # [09:33] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [09:35] * Joins: [[zz]] (~q@125.25.35.95.adsl.dynamic.totbb.net)
- # [10:00] * jonlee is now known as jonlee|afk
- # [10:11] * Joins: MikeSmith (~MikeSmith@p15181-obmd01.tokyo.ocn.ne.jp)
- # [10:23] * Joins: danbri (~danbri@cpc6-aztw25-2-0-cust83.aztw.cable.virginmedia.com)
- # [10:25] * Joins: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no)
- # [11:13] * Joins: Lachy (~Lachy@cm-84.215.13.244.getinternet.no)
- # [11:24] * Quits: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no) (Remote host closed the connection)
- # [11:35] * Joins: maikmerten (~maikmerte@port-92-201-60-101.dynamic.qsc.de)
- # [11:46] * Quits: Ms2ger (~Ms2ger@33.178-242-81.adsl-dyn.isp.belgacom.be) (Ping timeout: 246 seconds)
- # [11:51] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [11:55] * Joins: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no)
- # [12:01] * Joins: Ms2ger (~Ms2ger@33.178-242-81.adsl-dyn.isp.belgacom.be)
- # [12:05] * Joins: nonge_ (~nonge@p5B32698B.dip.t-dialin.net)
- # [12:08] * Quits: nonge (~nonge@p5082A8C6.dip.t-dialin.net) (Ping timeout: 244 seconds)
- # [12:11] * Quits: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no) (Remote host closed the connection)
- # [12:13] * Quits: Ms2ger (~Ms2ger@33.178-242-81.adsl-dyn.isp.belgacom.be) (Ping timeout: 246 seconds)
- # [12:14] * Joins: Ms2ger (~Ms2ger@33.178-242-81.adsl-dyn.isp.belgacom.be)
- # [12:24] * Quits: jdong_bot_ (~jdong_bot@118.186.197.65) (Remote host closed the connection)
- # [12:24] * Joins: drublic (~drublic@wlan.datenwelt.net)
- # [12:24] * Joins: jdong_bot_ (~jdong_bot@114.112.45.167)
- # [12:25] * Quits: drublic (~drublic@wlan.datenwelt.net) (Remote host closed the connection)
- # [12:28] * Quits: jdong_bot_ (~jdong_bot@114.112.45.167) (Ping timeout: 252 seconds)
- # [12:35] * Joins: Neocortex (~niels@82-170-160-25.ip.telfort.nl)
- # [12:40] * Joins: izhak (1000@188.168.76.52)
- # [13:14] * Joins: schnoomac (~schnoomac@27-32-229-194.static.tpgi.com.au)
- # [13:16] * Joins: onar_ (~onar@17.216.36.168)
- # [13:16] * Joins: jonlee (~jonlee@2620:149:4:1b01:25d4:f20c:e668:a939)
- # [13:19] * Quits: onar (~onar@17.216.36.168) (Ping timeout: 244 seconds)
- # [13:19] * onar_ is now known as onar
- # [13:19] * Quits: jonlee|afk (~jonlee@2620:149:4:1b01:25d4:f20c:e668:a939) (Ping timeout: 260 seconds)
- # [13:25] * Quits: Lachy (~Lachy@cm-84.215.13.244.getinternet.no) (Quit: Computer has gone to sleep.)
- # [13:43] * Joins: erichynds (~ehynds@pool-71-184-234-218.bstnma.fios.verizon.net)
- # [13:52] <Ms2ger> jgraham, localStorage.key(-1) === undefined in Opera
- # [13:53] * Joins: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no)
- # [14:00] * Quits: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no) (Remote host closed the connection)
- # [14:06] * Joins: Lachy (~Lachy@cm-84.215.13.244.getinternet.no)
- # [14:10] * Quits: twisted` (~twisted@p5DDBA0D7.dip.t-dialin.net) (Ping timeout: 245 seconds)
- # [14:12] * Quits: erichynds (~ehynds@pool-71-184-234-218.bstnma.fios.verizon.net)
- # [14:13] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [14:19] <Ms2ger> MikeSmith, ping
- # [14:21] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Ping timeout: 260 seconds)
- # [14:33] * Joins: drublic (~drublic@wlan.datenwelt.net)
- # [14:34] <Ms2ger> MikeSmith, thanks
- # [14:44] * Quits: drublic (~drublic@wlan.datenwelt.net) (Remote host closed the connection)
- # [14:51] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 246 seconds)
- # [14:56] * Joins: hij1nx (~hij1nx@cpe-98-14-168-178.nyc.res.rr.com)
- # [14:58] * Joins: smaug____ (~chatzilla@GZYMMMDCCCXXXII.gprs.sl-laajakaista.fi)
- # [15:01] * Quits: schnoomac (~schnoomac@27-32-229-194.static.tpgi.com.au) (Quit: schnoomac)
- # [15:27] <smaug____> Um, Web Audio draft still doesn't say what various AudioNode types actually do
- # [15:28] <hsivonen> hmm. http://www.fsf.org/news/announcing-js-labels
- # [15:31] * Quits: hij1nx (~hij1nx@cpe-98-14-168-178.nyc.res.rr.com) (Quit: hij1nx)
- # [15:31] * Joins: GlitchMr (~glitchmr@77-254-48-151.adsl.inetia.pl)
- # [15:33] <hsivonen> I wonder if RMS had a position about non-free PostScript programs back in the day when *nix-minded people sent .ps files over the network
- # [15:40] * Joins: joancreus (~chatzilla@46.27.17.89)
- # [15:41] <smaug____> how can anyone test web audio
- # [15:41] <smaug____> if it doesn't define what is the expected output of audionodes :/
- # [15:49] * Joins: hij1nx (~hij1nx@static-64-61-115-26.isp.broadviewnet.net)
- # [15:51] * Quits: Lachy (~Lachy@cm-84.215.13.244.getinternet.no) (Quit: Computer has gone to sleep.)
- # [15:52] * Quits: joancreus (~chatzilla@46.27.17.89) (Ping timeout: 272 seconds)
- # [15:54] * Quits: hij1nx (~hij1nx@static-64-61-115-26.isp.broadviewnet.net) (Quit: hij1nx)
- # [16:03] <Dashiva> hsivonen: Or word macros :P
- # [16:13] * Quits: Zauberfisch (Zauberfisc@venus.zauberfisch.at) (Quit: Leaving)
- # [16:14] * Joins: Zauberfisch (Subject619@venus.zauberfisch.at)
- # [16:17] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [16:38] <hsivonen> Dashiva: I expect RMS not to read Word files
- # [16:39] * Joins: esc_ (~esc_ape@77.116.93.37.wireless.dyn.drei.com)
- # [16:50] * Joins: sarro (~sarro@i5E8642BB.versanet.de)
- # [16:50] * Joins: volkmar (~volkmar@rps1542.ovh.net)
- # [16:50] * Joins: mpt (~mpt@canonical/mpt)
- # [16:50] * Joins: hasather (davidh@nat/opera/x-rsknjhbitszspuwq)
- # [16:50] * Joins: tonsofpcs (~tonsofpcs@cpe-72-230-192-8.stny.res.rr.com)
- # [16:50] * Joins: ivan`` (~ivan@unaffiliated/ivan/x-000001)
- # [16:50] * Joins: rektide (~rektide@deneb.eldergods.com)
- # [16:50] * Quits: tonsofpcs (~tonsofpcs@cpe-72-230-192-8.stny.res.rr.com) (Max SendQ exceeded)
- # [16:51] * Joins: tonsofpcs (~tonsofpcs@cpe-72-230-192-8.stny.res.rr.com)
- # [16:55] * Joins: Lachy (~Lachy@cm-84.215.13.244.getinternet.no)
- # [17:04] * Quits: GlitchMr (~glitchmr@77-254-48-151.adsl.inetia.pl) (Read error: Connection reset by peer)
- # [17:04] * nonge_ is now known as nonge
- # [17:09] * Joins: tomasf_ (~tom@c-b7dbe555.024-204-6c6b7012.cust.bredbandsbolaget.se)
- # [17:10] * Quits: tomasf (~tom@2002:55e5:dbb7:0:817d:f7d1:9c26:5190) (Read error: Connection reset by peer)
- # [17:10] * tomasf_ is now known as tomasf
- # [17:15] * Joins: drublic (~drublic@wlan.datenwelt.net)
- # [17:16] * Joins: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no)
- # [17:20] * Joins: GlitchMr (~glitchmr@77-254-48-151.adsl.inetia.pl)
- # [17:21] * Joins: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net)
- # [17:29] * Quits: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no) (Remote host closed the connection)
- # [17:47] * Quits: Neocortex (~niels@82-170-160-25.ip.telfort.nl) (Remote host closed the connection)
- # [17:50] * Joins: jcarbaugh (~jcarbaugh@216-15-37-167.c3-0.gth-ubr1.lnh-gth.md.cable.rcn.com)
- # [17:53] * Quits: drublic (~drublic@wlan.datenwelt.net) (Remote host closed the connection)
- # [18:00] * Joins: hij1nx (~hij1nx@host-216-220-114-135.dsl.bway.net)
- # [18:01] * Quits: temp01 (~temp01@unaffiliated/temp01) (Read error: Connection reset by peer)
- # [18:04] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (Quit: Leaving)
- # [18:10] <Dashiva> hsivonen: He doesn't use javascript either, since he reads web pages in emacs
- # [18:19] * Quits: fhaevr (~quassel@nat/transgaming/x-vvdcqjrtrwqryayw) (Ping timeout: 255 seconds)
- # [18:21] * Joins: wycats (~wycats@c-69-181-215-45.hsd1.ca.comcast.net)
- # [18:26] * Quits: jcarbaugh (~jcarbaugh@216-15-37-167.c3-0.gth-ubr1.lnh-gth.md.cable.rcn.com)
- # [18:27] * Quits: Ms2ger (~Ms2ger@33.178-242-81.adsl-dyn.isp.belgacom.be) (Ping timeout: 246 seconds)
- # [18:32] * Quits: onar (~onar@17.216.36.168) (Read error: Connection reset by peer)
- # [18:33] * Joins: jonlee_ (~jonlee@2620:149:4:1b01:25d4:f20c:e668:a939)
- # [18:33] * Quits: jonlee (~jonlee@2620:149:4:1b01:25d4:f20c:e668:a939) (Ping timeout: 260 seconds)
- # [18:33] * jonlee_ is now known as jonlee
- # [18:33] * Joins: onar (~onar@17.216.36.168)
- # [18:39] * Joins: Ms2ger (~Ms2ger@21.161-242-81.adsl-dyn.isp.belgacom.be)
- # [18:40] * Joins: samol (~samol@cjd177.neoplus.adsl.tpnet.pl)
- # [18:53] * Quits: izhak (1000@188.168.76.52) (Remote host closed the connection)
- # [18:53] * Quits: ParadoX- (parad0x@hades.spexhost.com) (Quit: ZNC - http://znc.sourceforge.net)
- # [18:53] * Joins: ParadoX- (parad0x@hades.spexhost.com)
- # [19:03] * Quits: ParadoX- (parad0x@hades.spexhost.com) (Read error: Connection reset by peer)
- # [19:07] * Joins: ParadoX- (parad0x@hades.spexhost.com)
- # [19:09] * Joins: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no)
- # [19:10] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [19:10] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Client Quit)
- # [19:11] * Quits: hij1nx (~hij1nx@host-216-220-114-135.dsl.bway.net) (Quit: hij1nx)
- # [19:12] * Quits: hasather_ (~hasather_@cm-84.208.108.107.getinternet.no) (Remote host closed the connection)
- # [19:17] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [19:20] * Joins: dydx (~dydz@adsl-76-199-101-60.dsl.pltn13.sbcglobal.net)
- # [19:33] * Quits: matijsb (u2278@gateway/web/irccloud.com/x-uuzormsvqbsacrro)
- # [19:33] * Joins: matijsb (u2278@gateway/web/irccloud.com/x-ncpsgjnfdnmixrps)
- # [19:36] * Joins: saba (~foo@unaffiliated/saba)
- # [19:48] * Quits: maikmerten (~maikmerte@port-92-201-60-101.dynamic.qsc.de) (Quit: Leaving)
- # [20:00] * Joins: yuhong (~chatzilla@76.178.171.153)
- # [20:00] <yuhong> <jgraham> I think you are making the erroneous assumption that calling something a "standard" makes it magical
- # [20:01] <yuhong> I think this would be good: http://hsivonen.iki.fi/almost-precedent/
- # [20:01] <yuhong> "Mode Switches are a Product of Their Time" section, in particular.
- # [20:07] * Quits: ParadoX- (parad0x@hades.spexhost.com) (Quit: ZNC - http://znc.sourceforge.net)
- # [20:07] * Quits: danbri (~danbri@cpc6-aztw25-2-0-cust83.aztw.cable.virginmedia.com) (Remote host closed the connection)
- # [20:09] * Joins: ParadoX- (parad0x@hades.spexhost.com)
- # [20:17] * Quits: diraol (~diraol@189.38.131.49) (Quit: Leaving.)
- # [20:27] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [20:39] * Joins: jcarbaugh (~jcarbaugh@216-15-37-167.c3-0.gth-ubr1.lnh-gth.md.cable.rcn.com)
- # [20:43] * Quits: samol (~samol@cjd177.neoplus.adsl.tpnet.pl) (Quit: Wychodzi)
- # [20:46] * Joins: Sirisian (~Sirisian@ppp-69-214-10-208.dsl.klmzmi.ameritech.net)
- # [21:10] * Quits: saba (~foo@unaffiliated/saba) (Quit: leaving)
- # [21:17] * Joins: hij1nx (~hij1nx@NYUFGA-GUESTS-01.NATPOOL.NYU.EDU)
- # [21:20] * Quits: yuhong (~chatzilla@76.178.171.153) (Ping timeout: 276 seconds)
- # [21:21] * Quits: hij1nx (~hij1nx@NYUFGA-GUESTS-01.NATPOOL.NYU.EDU) (Client Quit)
- # [21:22] * Joins: hij1nx (~hij1nx@NYUFGA-GUESTS-01.NATPOOL.NYU.EDU)
- # [21:25] * Quits: wycats (~wycats@c-69-181-215-45.hsd1.ca.comcast.net) (Quit: wycats)
- # [21:28] * Quits: hij1nx (~hij1nx@NYUFGA-GUESTS-01.NATPOOL.NYU.EDU) (Quit: hij1nx)
- # [21:30] * Quits: GlitchMr (~glitchmr@77-254-48-151.adsl.inetia.pl) (Read error: Connection reset by peer)
- # [21:31] * Quits: temp01 (~temp01@unaffiliated/temp01) (Read error: Connection reset by peer)
- # [21:36] * Joins: hij1nx (~hij1nx@NYUFGA-GUESTS-01.NATPOOL.NYU.EDU)
- # [21:42] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [21:45] * Joins: diraol (~diraol@189.38.131.49)
- # [21:46] * Quits: diraol (~diraol@189.38.131.49) (Read error: Connection reset by peer)
- # [21:49] * Joins: jonlee_ (~jonlee@2620:149:4:1b01:25d4:f20c:e668:a939)
- # [21:49] * Joins: onar_ (~onar@17.216.36.168)
- # [21:50] * Quits: onar (~onar@17.216.36.168) (Read error: Operation timed out)
- # [21:50] * onar_ is now known as onar
- # [21:50] * Parts: jcarbaugh (~jcarbaugh@216-15-37-167.c3-0.gth-ubr1.lnh-gth.md.cable.rcn.com)
- # [21:50] * Joins: joancreus (~chatzilla@46.27.17.89)
- # [21:51] * Quits: jonlee (~jonlee@2620:149:4:1b01:25d4:f20c:e668:a939) (Ping timeout: 260 seconds)
- # [21:51] * jonlee_ is now known as jonlee
- # [21:58] * Quits: hij1nx (~hij1nx@NYUFGA-GUESTS-01.NATPOOL.NYU.EDU) (Quit: hij1nx)
- # [22:13] * Quits: smaug____ (~chatzilla@GZYMMMDCCCXXXII.gprs.sl-laajakaista.fi) (Ping timeout: 244 seconds)
- # [22:16] * Joins: hij1nx (~hij1nx@NYUFGA-GUESTS-01.NATPOOL.NYU.EDU)
- # [22:17] * Quits: carlos_antonio (~benway@173.230.152.21) (Quit: Lost terminal)
- # [22:17] * Joins: carlos_antonio (~benway@173.230.152.21)
- # [22:21] * Joins: jacobolus (~jacobolus@75-144-246-6-SFBA.hfc.comcastbusiness.net)
- # [22:22] * Joins: sedovsek (robert.sed@93-103-104-107.dynamic.t-2.net)
- # [22:22] * Joins: dbaron (~dbaron@173-228-85-36.dsl.dynamic.sonic.net)
- # [22:26] * Quits: hij1nx (~hij1nx@NYUFGA-GUESTS-01.NATPOOL.NYU.EDU) (Quit: hij1nx)
- # [22:26] * Joins: karega (~karegaani@dcccdpat8.dcccd.edu)
- # [22:34] * Quits: temp01 (~temp01@unaffiliated/temp01) (Read error: Connection reset by peer)
- # [22:36] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [22:40] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [22:40] * Joins: dbaron_ (~dbaron@173-228-85-36.dsl.dynamic.sonic.net)
- # [22:41] * Joins: twisted` (~twisted@p5DDB9D19.dip.t-dialin.net)
- # [22:43] * Quits: dbaron (~dbaron@173-228-85-36.dsl.dynamic.sonic.net) (Ping timeout: 244 seconds)
- # [22:51] * Quits: joancreus (~chatzilla@46.27.17.89) (Quit: ChatZilla 0.9.88.1 [Firefox 11.0/20120310011224])
- # [22:56] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [22:57] * Joins: hij1nx (~hij1nx@NYUFGA-GUESTS-01.NATPOOL.NYU.EDU)
- # [23:01] * Joins: demet8 (~demet8@67.8.186.94)
- # [23:02] * Quits: chriseppstein (~chrisepps@99-6-85-4.lightspeed.sntcca.sbcglobal.net) (Quit: chriseppstein)
- # [23:02] * Quits: Obvious (tachikoma@188.226.74.2) (Ping timeout: 252 seconds)
- # [23:02] * Parts: demet8 (~demet8@67.8.186.94)
- # [23:06] * Joins: onar_ (~onar@17.216.36.168)
- # [23:07] * Joins: jonlee_ (~jonlee@2620:149:4:1b01:25d4:f20c:e668:a939)
- # [23:07] * Quits: onar (~onar@17.216.36.168) (Ping timeout: 244 seconds)
- # [23:07] * onar_ is now known as onar
- # [23:09] * Quits: jonlee (~jonlee@2620:149:4:1b01:25d4:f20c:e668:a939) (Ping timeout: 260 seconds)
- # [23:09] * jonlee_ is now known as jonlee
- # [23:09] * Joins: diraol (~diraol@189.38.131.49)
- # [23:11] * Quits: sedovsek (robert.sed@93-103-104-107.dynamic.t-2.net) (Ping timeout: 244 seconds)
- # [23:18] * Quits: karega (~karegaani@dcccdpat8.dcccd.edu) (Ping timeout: 250 seconds)
- # [23:29] * Quits: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com) (Remote host closed the connection)
- # [23:30] * Joins: zewt (~foo@ec2-50-17-220-142.compute-1.amazonaws.com)
- # [23:41] * Quits: hij1nx (~hij1nx@NYUFGA-GUESTS-01.NATPOOL.NYU.EDU) (Ping timeout: 240 seconds)
- # [23:44] * Joins: jcarbaugh (~jcarbaugh@216-15-37-167.c3-0.gth-ubr1.lnh-gth.md.cable.rcn.com)
- # [23:49] * Quits: diraol (~diraol@189.38.131.49) (Quit: Leaving.)
- # [23:59] * Quits: Ms2ger (~Ms2ger@21.161-242-81.adsl-dyn.isp.belgacom.be) (Quit: nn)
- # Session Close: Sun Mar 25 00:00:00 2012
The end :)