Options:
- # Session Start: Wed Jul 25 00:00:01 2012
- # Session Ident: #whatwg
- # [00:00] * Quits: wakaba (~wakaba@75.22.102.121.dy.bbexcite.jp) (Read error: Connection reset by peer)
- # [00:00] <Hixie> define an interface (or preferred, use an existing interface if there is one) for each event that needs a particular set of data sent with the event
- # [00:00] <Hixie> most events don't need any data and can just use Event
- # [00:00] * Joins: wakaba (~wakaba@75.22.102.121.dy.bbexcite.jp)
- # [00:00] <Hixie> (the HTML spec has many examples if you want to crib from that)
- # [00:01] <TabAtkins> The html spec no longer has the event index.
- # [00:01] <Hixie> search for [Init : Event]
- # [00:01] <Hixie> or [eventInit]
- # [00:01] <Ms2ger> Interface / type are orthogonal, really
- # [00:02] <Hixie> btw you can make a property not existing in WebIDL, just define it as a named property
- # [00:02] <Hixie> and then say when it's in the list of supported property names or not
- # [00:02] <Hixie> pretty unusual and ugly though
- # [00:02] <TabAtkins> heycam just now said that's okay. ^_^
- # [00:03] <Hixie> generally speaking you want the property to be present so you can set it
- # [00:03] <Ms2ger> Matches how those are usually represented in CSSOM
- # [00:03] <Hixie> a property being present doesn't mean the underlying field is present
- # [00:04] <Hixie> it's pretty standard in apis to expose all the possible fields and have a value that means "no value", namely, null
- # [00:04] <Hixie> "undefined" is more of a JS thing meaning "this property doesn't exist"
- # [00:04] <Hixie> really only applicable where other languages would refuse to compile :-)
- # [00:05] * Joins: JohnAlbin_ (~JohnAlbin@114-24-49-32.dynamic.hinet.net)
- # [00:05] <zewt> well, i like how Lua does it; there's no distinction between a nil item in a dictionary and not existing
- # [00:06] <zewt> setting a value to nil is how you remove it from a dictionary
- # [00:06] * Quits: JohnAlbin (~JohnAlbin@114-42-59-194.dynamic.hinet.net) (Ping timeout: 255 seconds)
- # [00:06] * JohnAlbin_ is now known as JohnAlbin
- # [00:06] * Joins: TabAtkins_ (c0961637@gateway/web/freenode/ip.192.150.22.55)
- # [00:07] * Quits: TabAtkins (c0961637@gateway/web/freenode/ip.192.150.22.55) (Ping timeout: 245 seconds)
- # [00:08] * TabAtkins_ is now known as TabAtkins
- # [00:09] * Quits: dbaron (~dbaron@nat/mozilla/x-rhjkqlfmwmobdtzd) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [00:09] * Quits: danbri (~danbri@host86-153-168-172.range86-153.btcentralplus.com) (Remote host closed the connection)
- # [00:09] * Joins: roc_ (~chatzilla@60.234.54.74)
- # [00:09] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [00:11] <TabAtkins> Ms2ger: Why, in the how2spec example, does "type" show up both as the first argument to the constructor, and in the init dictionary?
- # [00:12] <Ms2ger> Wait, type in the dictionary?
- # [00:12] <Ms2ger> Sounds like a bug
- # [00:13] * Quits: Ms2ger (~Ms2ger@91.181.17.154) (Quit: nn)
- # [00:14] <TabAtkins> Okay, cool.
- # [00:15] * Joins: gwillen (~gwillen@unaffiliated/gwillen)
- # [00:15] <TabAtkins> Is the "type" in the attributes a bug too, since it should be inheriting that from Event already?
- # [00:16] * Quits: drublic (~drublic@frbg-5f73349d.pool.mediaWays.net) (Remote host closed the connection)
- # [00:17] <Hixie> what's the url to this page so i can go clean it up
- # [00:20] * Quits: lowcraft (~lowcraft@rep44-1-82-246-39-199.fbx.proxad.net) (Ping timeout: 248 seconds)
- # [00:21] * Quits: TabAtkins (c0961637@gateway/web/freenode/ip.192.150.22.55) (Ping timeout: 245 seconds)
- # [00:21] * Joins: TabAtkins (c0961637@gateway/web/freenode/ip.192.150.22.55)
- # [00:21] <TabAtkins> http://wiki.whatwg.org/wiki/Howto_spec#Events_implementing_their_own_interface
- # [00:22] <TabAtkins> (Damn adobe network temporarily drops about every 20 minutes.)
- # [00:22] * Quits: hswe (~hswe@vpn.space150.com) (Remote host closed the connection)
- # [00:23] <Hixie> ah, i think whoever wrote that just got confused and used "type" because they forgot about Event.type
- # [00:24] <Hixie> it's not meant to be related
- # [00:24] <Hixie> reload now
- # [00:24] * Joins: danbri (~danbri@host86-153-168-172.range86-153.btcentralplus.com)
- # [00:25] <Hixie> the event handler stuff is out of date
- # [00:25] <Hixie> let me fix that too
- # [00:25] * abstractj|away is now known as abstractj
- # [00:27] <gsnedders> Hixie: Tied to a device isn't the relevant point. It's about having a centralized store for contacts — it doesn't matter whether the contacts API works by delegating to some web service or whether it stores it on the device directly
- # [00:28] <Hixie> should just be implemented as a web service, imho
- # [00:28] <Hixie> possibly delegated using something like intents
- # [00:28] <gsnedders> But what web service?
- # [00:28] <gsnedders> The point is to have prefs set in one place, across the device, that can control where the prefs are stored.
- # [00:28] <TabAtkins> Hixie: Thanks for the update. Much less confusing now. ^_^
- # [00:28] <Hixie> TabAtkins: updated the next bit too
- # [00:29] <TabAtkins> Okay, so even if I plan to have only a single event in this category, I still need to have a type attribute?
- # [00:30] <Hixie> there's no type attribute
- # [00:30] <Hixie> what do you mean
- # [00:30] <Hixie> i'm confused
- # [00:30] <Hixie> what?
- # [00:30] <TabAtkins> So, like "new FontFaceEvent('load')" rather than "new FontFaceLoadEvent()"
- # [00:30] * Quits: sedovsek (~robert@93-103-104-107.dynamic.t-2.net) (Quit: sedovsek)
- # [00:30] <Hixie> oh, yes, because anyone can create an event that uses this interface
- # [00:30] <Hixie> the Event-inheriting interface and the event type are entirely orthogonal
- # [00:31] <Hixie> gsnedders: imho a Contacts API should define a common API mediated over something like MessagePorts and initiated via something like intents, which both the OS and any Web sites can offer to implement and provide
- # [00:31] <TabAtkins> Okay, so we're back to what I was trying to say, that the interface defines a group of events, with type used to distinguish specifically which event from the group is being sent.
- # [00:31] <Hixie> gsnedders: and the web browser doesn't need to know anything about it
- # [00:32] <Hixie> TabAtkins: more or less. pedantically, the interface defines a set of fields that events can use, there's no formal grouping of events into event types.
- # [00:32] * gsnedders knows little of web intents
- # [00:32] <TabAtkins> Right. Okay, that makes sense then.
- # [00:32] <Hixie> TabAtkins: and when you fire an event, you pick the interface it should use.
- # [00:32] <Hixie> TabAtkins: and the event type name
- # [00:32] * Quits: jryans (~jryans@office.massrel.com) (Quit: Be back later)
- # [00:36] * Joins: Bonob0h (~bonob0h@pro75-3-82-229-184-177.fbx.proxad.net)
- # [00:37] * Quits: Bonob0h (~bonob0h@pro75-3-82-229-184-177.fbx.proxad.net) (Read error: Connection reset by peer)
- # [00:44] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [00:45] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [00:46] * Quits: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk) (Quit: sarspazam)
- # [00:49] * Joins: mye (~mye@p4FD91A89.dip.t-dialin.net)
- # [00:51] * Quits: TabAtkins (c0961637@gateway/web/freenode/ip.192.150.22.55) (Quit: Page closed)
- # [00:55] * padenot is now known as padenot|away
- # [01:04] * Quits: timeless (users.4015@firefox/developer/timeless) (Remote host closed the connection)
- # [01:05] * Joins: timeless (users.4015@firefox/developer/timeless)
- # [01:08] * Joins: carlos_antonio (~benway@173.230.152.21)
- # [01:08] * Quits: carlos_antonio (~benway@173.230.152.21) (Changing host)
- # [01:08] * Joins: carlos_antonio (~benway@unaffiliated/disusered)
- # [01:08] * Joins: jryans (~jryans@67-198-70-13.dyn.grandenetworks.net)
- # [01:13] * Joins: Delapouite (~Delapouit@dsl-58-6-19-17.wa.westnet.com.au)
- # [01:16] * Quits: ^esc (~esc_ape@178.115.249.198.wireless.dyn.drei.com) (Ping timeout: 265 seconds)
- # [01:18] * padenot|away is now known as padenot
- # [01:18] * abstractj is now known as abstractj|away
- # [01:20] * padenot is now known as padenot|away
- # [01:21] * Quits: dainbrain (~dain@nat.corp.mediatemple.net) (Quit: http://mediatemple.net)
- # [01:34] * padenot|away is now known as padenot
- # [01:35] * jonlee|afk is now known as jonlee
- # [01:48] * Quits: WeirdAl (~chatzilla@g2spf.ask.info) (Quit: ChatZilla 0.9.88.2 [Firefox 14.0.1/20120713134347])
- # [01:50] * Quits: wakaba (~wakaba@75.22.102.121.dy.bbexcite.jp) (Read error: Connection reset by peer)
- # [01:52] * Joins: wakaba (~wakaba@75.22.102.121.dy.bbexcite.jp)
- # [01:53] * Quits: ehsan (~ehsan@66.207.208.98) (Remote host closed the connection)
- # [01:54] * Joins: ehsan (~ehsan@66.207.208.98)
- # [01:55] * Quits: ehsan (~ehsan@66.207.208.98) (Remote host closed the connection)
- # [02:01] * Quits: carlos_antonio (~benway@unaffiliated/disusered) (Quit: leaving)
- # [02:04] * Quits: bckenny (bckenny@nat/google/x-yyejijmpklehwxgv) (Remote host closed the connection)
- # [02:07] * Joins: ^esc (~esc_ape@77.117.246.114.wireless.dyn.drei.com)
- # [02:10] * Joins: bckenny (bckenny@nat/google/x-yxsojjctyidixaxt)
- # [02:16] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [02:19] * Joins: ehsan (~ehsan@209.20.29.228)
- # [02:20] * Quits: shepazu (~shepazu@192.150.22.55) (Quit: shepazu)
- # [02:22] * heycam is now known as heycam|away
- # [02:22] * Joins: jryans_ (~jryans@67-198-70-13.dyn.grandenetworks.net)
- # [02:25] * Quits: jryans (~jryans@67-198-70-13.dyn.grandenetworks.net) (Ping timeout: 244 seconds)
- # [02:27] * Quits: sicking (~chatzilla@nat/mozilla/x-kdoiknjhhyjympme) (Ping timeout: 246 seconds)
- # [02:32] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [02:38] * Joins: nessy (~Adium@124-168-183-82.dyn.iinet.net.au)
- # [02:49] * Quits: jsbell (jsbell@nat/google/x-fpfwkxhhfrxkdinr) (Quit: There's no place like home...)
- # [02:54] * Quits: ap (~ap@17.212.155.184) (Quit: ap)
- # [02:54] * Joins: tawhuac (~tawhuac@190.71.254.34)
- # [02:56] * Quits: pablof (~pablof@144.189.101.1) (Quit: ^z)
- # [02:56] * Joins: jernoble_ (~jernoble@67.218.110.49)
- # [03:01] * Quits: jernoble_ (~jernoble@67.218.110.49) (Ping timeout: 250 seconds)
- # [03:14] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Quit: ERC Version 5.3 (IRC client for Emacs))
- # [03:15] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [03:17] * Quits: imrobert (~robert@88.80.28.39) (Read error: Operation timed out)
- # [03:22] * Joins: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net)
- # [03:26] * Joins: jernoble_ (~jernoble@mobile-198-228-213-042.mycingular.net)
- # [03:30] * Joins: imrobert (~robert@88.80.28.39)
- # [03:34] * jernoble is now known as jernoble|afk
- # [03:34] * jernoble|afk is now known as jernoble
- # [03:34] * Quits: rwaldron (~rwaldron@131.107.32.25) (Quit: Leaving...)
- # [03:36] * Joins: jochen___ (jochen@nat/google/x-wwuvjxawakrsskql)
- # [03:36] * Quits: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net) (Quit: tantek)
- # [03:39] * boaz is now known as boaz|away
- # [03:40] * Quits: jochen__ (jochen@nat/google/x-eknjokjrmxnqlvmg) (Ping timeout: 240 seconds)
- # [03:40] * jochen___ is now known as jochen__
- # [03:40] * Quits: jernoble_ (~jernoble@mobile-198-228-213-042.mycingular.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [03:41] * Joins: mye_ (~mye@p4FD91A89.dip.t-dialin.net)
- # [03:43] * Quits: tomasf (~tom@2002:55e5:db36:0:c516:f59e:aeb1:f597) (Quit: tomasf)
- # [03:44] * Quits: mye (~mye@p4FD91A89.dip.t-dialin.net) (Ping timeout: 246 seconds)
- # [03:47] * Quits: mye_ (~mye@p4FD91A89.dip.t-dialin.net) (Ping timeout: 255 seconds)
- # [03:50] * Quits: smaug____ (~chatzilla@212-226-66-222-nat.elisa-mobile.fi) (Ping timeout: 245 seconds)
- # [03:53] * Quits: bckenny (bckenny@nat/google/x-yxsojjctyidixaxt) (Remote host closed the connection)
- # [03:54] * jonlee is now known as jonlee|afk
- # [03:55] * Quits: jryans_ (~jryans@67-198-70-13.dyn.grandenetworks.net) (Ping timeout: 265 seconds)
- # [04:01] * Quits: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net) (Remote host closed the connection)
- # [04:04] * Joins: pablof (~pablof@c-98-207-157-89.hsd1.ca.comcast.net)
- # [04:08] * Quits: pablof (~pablof@c-98-207-157-89.hsd1.ca.comcast.net) (Client Quit)
- # [04:09] * Joins: AJ528 (~AJ528@c-24-15-46-194.hsd1.in.comcast.net)
- # [04:09] * Parts: AJ528 (~AJ528@c-24-15-46-194.hsd1.in.comcast.net)
- # [04:09] * Quits: ^esc (~esc_ape@77.117.246.114.wireless.dyn.drei.com) (Ping timeout: 265 seconds)
- # [04:10] * Quits: dgathright (~dgathrigh@nat/yahoo/x-ijpsqafmmojkabze) (Quit: dgathright)
- # [04:12] * Joins: pablof (~pablof@c-98-207-157-89.hsd1.ca.comcast.net)
- # [04:15] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [04:17] * Quits: pablof (~pablof@c-98-207-157-89.hsd1.ca.comcast.net) (Quit: ^z)
- # [04:29] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (Ping timeout: 248 seconds)
- # [04:30] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [04:41] * Joins: MikeSmith (~MikeSmith@s1106042.xgsspn.imtp.tachikawa.spmode.ne.jp)
- # [04:53] * Joins: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net)
- # [04:59] * Joins: tantek (~tantek@67.103.42.62)
- # [04:59] * Quits: tawhuac (~tawhuac@190.71.254.34) (Quit: Leaving)
- # [05:01] * gwicke is now known as gwicke_away
- # [05:09] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [05:28] * boaz|away is now known as boaz
- # [05:40] <zewt> i'm declaring the most useless often-used feature of HTML: copying/pasting HTML
- # [05:40] <zewt> every single time I copy text from one webpage and paste it into something like gmail or evernote I have to paste it into vim and copy it to get rid fo styling, or it pastes in some gigantic font or something else equally useless
- # [05:44] * Joins: tomasf (~tom@c-36dbe555.024-204-6c6b7012.cust.bredbandsbolaget.se)
- # [06:05] * Joins: jacobolus (~jacobolus@199-188-193-145.PUBLIC.monkeybrains.net)
- # [06:12] * Joins: shepazu (~shepazu@174-24-164-14.tukw.qwest.net)
- # [06:18] * gwicke_away is now known as gwicke
- # [06:21] * Joins: sicking (~chatzilla@c-67-180-8-184.hsd1.ca.comcast.net)
- # [06:25] * Quits: tantek (~tantek@67.103.42.62) (Quit: tantek)
- # [06:32] * Quits: jacobolus (~jacobolus@199-188-193-145.PUBLIC.monkeybrains.net) (Remote host closed the connection)
- # [06:38] * Quits: gwicke (~gabriel@wikimedia/gwicke) (Ping timeout: 264 seconds)
- # [06:39] * Quits: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net) (Quit: linclark)
- # [06:40] * Joins: brandon_c (~brandon@ool-182fa8f5.dyn.optonline.net)
- # [06:41] * Quits: moo-_- (miohtama@lakka.kapsi.fi) (Ping timeout: 250 seconds)
- # [06:49] * Quits: nw (nw@kapsi.fi) (Ping timeout: 252 seconds)
- # [06:49] * Quits: brandon_c (~brandon@ool-182fa8f5.dyn.optonline.net) (Read error: Connection reset by peer)
- # [06:51] * Joins: jochen___ (jochen@nat/google/x-rsweyahejdijohuu)
- # [06:55] * Quits: jochen__ (jochen@nat/google/x-wwuvjxawakrsskql) (Ping timeout: 248 seconds)
- # [06:55] * jochen___ is now known as jochen__
- # [06:59] * Joins: brandon_c (~brandon@ool-182fa8f5.dyn.optonline.net)
- # [07:02] * Joins: izhak (~izhak@213.87.240.198)
- # [07:02] * Quits: brandon_c (~brandon@ool-182fa8f5.dyn.optonline.net) (Read error: Connection reset by peer)
- # [07:04] * Joins: jacobolus (~jacobolus@199-188-193-145.PUBLIC.monkeybrains.net)
- # [07:05] * Quits: shepazu (~shepazu@174-24-164-14.tukw.qwest.net) (Quit: shepazu)
- # [07:11] * Joins: brandon_c (~brandon@ool-182fa8f5.dyn.optonline.net)
- # [07:20] * Joins: nw (nw@kapsi.fi)
- # [07:22] * Joins: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [07:22] * Quits: brandon_c (~brandon@ool-182fa8f5.dyn.optonline.net) (Read error: Connection reset by peer)
- # [07:22] * Joins: moo-_- (miohtama@lakka.kapsi.fi)
- # [07:23] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 250 seconds)
- # [07:23] * Quits: nw (nw@kapsi.fi) (Client Quit)
- # [07:23] * Joins: nw (nw@kapsi.fi)
- # [07:32] * Joins: brandon_c (~brandon@ool-182fa8f5.dyn.optonline.net)
- # [07:35] * Quits: espadrine` (~thaddee_t@2620:101:8003:200:2677:3ff:fe6c:1be0) (Ping timeout: 246 seconds)
- # [07:35] * Quits: brandon_c (~brandon@ool-182fa8f5.dyn.optonline.net) (Read error: Connection reset by peer)
- # [07:41] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [07:41] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [07:44] * Joins: brandon_c (~brandon@ool-182fa8f5.dyn.optonline.net)
- # [07:45] * Quits: imrobert (~robert@88.80.28.39) (Quit: leaving)
- # [07:45] * Quits: brandon_c (~brandon@ool-182fa8f5.dyn.optonline.net) (Client Quit)
- # [07:46] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Ping timeout: 276 seconds)
- # [07:51] * Quits: jacobolus (~jacobolus@199-188-193-145.PUBLIC.monkeybrains.net) (Remote host closed the connection)
- # [07:54] * Quits: roc_ (~chatzilla@60.234.54.74) (Ping timeout: 255 seconds)
- # [07:55] * Joins: espadrine` (~thaddee_t@63-235-13-3.dia.static.qwest.net)
- # [08:07] * Joins: SonicX (~quassel@116.203.5.233)
- # [08:08] * Joins: silverroots (~silverroo@144.187.180.11)
- # [08:10] * Joins: maikmerten (~merten@ls5dhcp200.cs.uni-dortmund.de)
- # [08:11] * Joins: jacobolus (~jacobolus@199-188-193-145.PUBLIC.monkeybrains.net)
- # [08:14] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [08:20] * Joins: dirkpennings (~dirkpenni@82-148-199-218.adsl.unet.nl)
- # [08:28] * Joins: Martin_L (~Martin_L@194.18.12.26)
- # [08:29] * Joins: SimonSapin (~simon@ip-222.net-80-236-80.issy.rev.numericable.fr)
- # [08:30] * Joins: Ducki (~Ducki@pD9E39B8C.dip0.t-ipconnect.de)
- # [08:37] * Joins: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net)
- # [08:40] * Quits: snowfox (~benschaaf@c-98-243-88-119.hsd1.mi.comcast.net) (Quit: snowfox)
- # [08:54] <benschwarz> Hixie: !ping
- # [08:58] * Quits: [[zz]] (~q@node-19z2.pool-101-109.dynamic.totbb.net) (Read error: Connection reset by peer)
- # [09:04] * Quits: jacobolus (~jacobolus@199-188-193-145.PUBLIC.monkeybrains.net) (Remote host closed the connection)
- # [09:07] * Quits: sicking (~chatzilla@c-67-180-8-184.hsd1.ca.comcast.net) (Ping timeout: 246 seconds)
- # [09:12] * Joins: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net)
- # [09:13] * Joins: drublic (~drublic@frbg-5f7325c2.pool.mediaWays.net)
- # [09:15] * Joins: [[zz]] (~q@node-inu.pool-101-108.dynamic.totbb.net)
- # [09:27] <annevk> the new memes cracked me up
- # [09:28] * Quits: NimeshNeema (u2689@gateway/web/irccloud.com/x-wboxenzezwuqwhyz) (Quit: Connection closed for inactivity)
- # [09:31] <annevk> http://golem.ph.utexas.edu/~distler/blog/archives/002545.html <video poster> implementations are kind of bad when it comes to small videos
- # [09:33] * Joins: lowcraft (~lowcraft@rep44-1-82-246-39-199.fbx.proxad.net)
- # [09:35] * Joins: Stevef_ (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [09:36] * Quits: Lachy (~Lachy@cm-84.215.193.125.getinternet.no) (Quit: Computer has gone to sleep.)
- # [09:38] * Joins: raphc (~quassel@153-107-190-109.dsl.ovh.fr)
- # [09:44] * Quits: SonicX (~quassel@116.203.5.233) (Read error: Connection reset by peer)
- # [09:45] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [09:59] * Joins: Lachy (~Lachy@office.oslo.opera.com)
- # [10:09] <hsivonen> annevk: I observe that Jacques Distler's blog is not using MathML-in-text/html yet :-/
- # [10:10] <annevk> what's the benefit for him?
- # [10:11] <hsivonen> no benefit, I suppose, at the point where all XML bugs have been fixed and everything works
- # [10:12] <hsivonen> well, at least we carefully engineered the parsing algorithm to cater to the use cases seen on his blog
- # [10:13] <annevk> :)
- # [10:14] <annevk> the main benefit of HTML I guess is that you can use math entities and they will always work
- # [10:14] <annevk> whereas in XML it depends on whether the DTD is loaded
- # [10:15] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 245 seconds)
- # [10:15] <hsivonen> also, with current implementations, the page might load a tiny bit faster as HTML thanks to speculative loading on the HTML code path
- # [10:16] <annevk> but I think he normalizes them away
- # [10:18] <hsivonen> http://98.245.80.27/tcpc/OSCON2011/gbu.html is interesting
- # [10:20] <annevk> pretty positive over Go
- # [10:22] * Joins: jacobolus (~jacobolus@50-0-133-210.dsl.static.sonic.net)
- # [10:25] * Joins: smaug____ (~chatzilla@212-226-66-222-nat.elisa-mobile.fi)
- # [10:26] * Joins: mpt (~mpt@faun.canonical.com)
- # [10:26] * Quits: mpt (~mpt@faun.canonical.com) (Changing host)
- # [10:26] * Joins: mpt (~mpt@canonical/mpt)
- # [10:26] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [10:27] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [10:28] <hsivonen> http://html5.org/tools/web-apps-tracker?from=7201&to=7202 isn't a particularly useful response to the email hober sent. Basically, it kicks the problem the validator developers' court
- # [10:28] <MikeSmith> hsivonen: indeed
- # [10:28] * Quits: raphc (~quassel@153-107-190-109.dsl.ovh.fr) (Remote host closed the connection)
- # [10:29] * Quits: SimonSapin (~simon@ip-222.net-80-236-80.issy.rev.numericable.fr) (Quit: Leaving.)
- # [10:29] <annevk> hsivonen: only if you decide it's worth the additional UI
- # [10:29] <MikeSmith> hsivonen: have you seen http://validator.keegan.st/ yet?
- # [10:31] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Ping timeout: 246 seconds)
- # [10:32] <hsivonen> MikeSmith: I haven't
- # [10:32] * hsivonen looks
- # [10:33] * Joins: drublic_ (~drublic@frbg-5f7325c2.pool.mediaWays.net)
- # [10:34] * Quits: drublic (~drublic@frbg-5f7325c2.pool.mediaWays.net) (Ping timeout: 276 seconds)
- # [10:35] <hsivonen> MikeSmith: supporting CORS without a specific use case seems to have paid off
- # [10:36] <MikeSmith> yeah
- # [10:36] <MikeSmith> think it would be worthwhile to upstream that filter feature?
- # [10:40] * Joins: shwetank (~shwetank@122.173.195.188)
- # [10:40] * Quits: victrola` (~decadance@204.93.201.197) (Ping timeout: 248 seconds)
- # [10:40] <hsivonen> potentially, yes. need to play with it some more to have a proper opinion
- # [10:41] * Joins: drublic (~drublic@frbg-5f7325c2.pool.mediaWays.net)
- # [10:41] * Quits: drublic (~drublic@frbg-5f7325c2.pool.mediaWays.net) (Remote host closed the connection)
- # [10:43] * Joins: raphc (~quassel@153-107-190-109.dsl.ovh.fr)
- # [10:44] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [10:45] * Joins: nonge_ (~nonge@p5082BF5B.dip.t-dialin.net)
- # [10:46] * Quits: drublic_ (~drublic@frbg-5f7325c2.pool.mediaWays.net) (Ping timeout: 276 seconds)
- # [10:46] * Joins: drublic (~drublic@p5DC2628E.dip0.t-ipconnect.de)
- # [10:48] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [10:48] * Quits: maknz (~Mak@unaffiliated/makx) (Quit: Computer has gone to sleep.)
- # [10:49] * Quits: nonge (~nonge@p5B32699C.dip.t-dialin.net) (Ping timeout: 248 seconds)
- # [10:51] * Joins: SimonSapin (~simon@2a01:e35:2e8d:b5f0:6166:6779:51a5:98cb)
- # [10:52] * Quits: danbri (~danbri@host86-153-168-172.range86-153.btcentralplus.com) (Remote host closed the connection)
- # [10:54] * Joins: maknz (~Mak@unaffiliated/makx)
- # [10:56] * Quits: silverroots (~silverroo@144.187.180.11) (Ping timeout: 246 seconds)
- # [10:57] * Joins: ^esc (~esc_ape@77.117.246.52.wireless.dyn.drei.com)
- # [10:57] * Joins: Ms2ger (~Ms2ger@91.181.17.154)
- # [11:12] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Remote host closed the connection)
- # [11:12] * Joins: mattgifford (~mattgiffo@108.161.20.199)
- # [11:13] * Joins: silverroots (~silverroo@144.187.180.12)
- # [11:16] * Quits: drublic (~drublic@p5DC2628E.dip0.t-ipconnect.de) (Remote host closed the connection)
- # [11:17] * Quits: mattgifford (~mattgiffo@108.161.20.199) (Ping timeout: 276 seconds)
- # [11:19] * Joins: drublic (~drublic@frbg-5f7325c2.pool.mediaWays.net)
- # [11:20] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [11:23] * Joins: dUh (~dUh@poczta.eltar.com.pl)
- # [11:23] * dUh is now known as Guest36888
- # [11:25] * Parts: Guest36888 (~dUh@poczta.eltar.com.pl)
- # [11:25] * Joins: _dUh_ (~dUh@poczta.eltar.com.pl)
- # [11:29] * Joins: roc (~chatzilla@121.98.230.221)
- # [11:29] * Joins: __dUh__ (~dUh@poczta.eltar.com.pl)
- # [11:32] * Quits: _dUh_ (~dUh@poczta.eltar.com.pl) (Ping timeout: 246 seconds)
- # [11:32] * Joins: dgathright_ (~dgathrigh@nat/yahoo/x-svxffcssmuacrrkg)
- # [11:36] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Ping timeout: 244 seconds)
- # [11:36] * dgathright_ is now known as dgathright
- # [11:36] * Quits: yuuki_ (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp) (Ping timeout: 240 seconds)
- # [11:39] * Joins: yuuki (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp)
- # [11:40] * Quits: Lachy (~Lachy@office.oslo.opera.com) (Ping timeout: 246 seconds)
- # [11:42] * Joins: Lachy (~Lachy@pat-tazdevil.opera.com)
- # [11:49] * Quits: jochen__ (jochen@nat/google/x-rsweyahejdijohuu) (Remote host closed the connection)
- # [11:50] * Joins: _dUh_ (~dUh@poczta.eltar.com.pl)
- # [11:51] * Joins: SonicX (~quassel@116.203.5.233)
- # [11:52] * Quits: __dUh__ (~dUh@poczta.eltar.com.pl) (Ping timeout: 250 seconds)
- # [11:54] * Quits: roc (~chatzilla@121.98.230.221) (Ping timeout: 255 seconds)
- # [11:54] * Joins: jochen__ (jochen@nat/google/x-kepxdeectgsxzuzn)
- # [11:57] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (Quit: rniwa)
- # [12:04] <annevk> heh http://www.netmagazine.com/interviews/ian-hickson-html5-vs-html
- # [12:04] <annevk> they still use the same old picture
- # [12:07] <annevk> http://my.opera.com/hallvors/blog/2012/07/25/sometimes-it-helps-to-speak-norwegian-in-new-zealand sounds fucked up
- # [12:08] * Joins: adactio (~adactio@host213-123-197-180.in-addr.btopenworld.com)
- # [12:08] <annevk> an <input type=submit> always has a value?
- # [12:09] * Quits: Druide__ (~Druid@p5B05D0A0.dip.t-dialin.net) (Ping timeout: 265 seconds)
- # [12:12] * Joins: Druide_ (~Druid@p5B137F7D.dip.t-dialin.net)
- # [12:14] * Quits: jarib (~jarib@unaffiliated/jarib) (Excess Flood)
- # [12:15] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [12:18] * Joins: dgathright_ (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net)
- # [12:18] * Quits: dgathright (~dgathrigh@nat/yahoo/x-svxffcssmuacrrkg) (Ping timeout: 244 seconds)
- # [12:18] * dgathright_ is now known as dgathright
- # [12:19] * Quits: dgathright (~dgathrigh@c-67-169-92-165.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [12:20] * Quits: smaug____ (~chatzilla@212-226-66-222-nat.elisa-mobile.fi) (Ping timeout: 255 seconds)
- # [12:20] * Joins: dgathright (~dgathrigh@nat/yahoo/x-hgfuuwchfpyzhwrc)
- # [12:22] * Quits: dgathright (~dgathrigh@nat/yahoo/x-hgfuuwchfpyzhwrc) (Client Quit)
- # [12:23] * Joins: smaug____ (~chatzilla@212-226-67-159-nat.elisa-mobile.fi)
- # [12:34] <jgraham> Sweet jesus someone has to find a better picture of Hixie
- # [12:37] * Quits: Kolombiken (~Adium@217.13.228.226) (Quit: Leaving.)
- # [12:44] <tantek> the netmagazine article was pretty decent
- # [12:44] <tantek> obligatory troll commentary aside
- # [12:44] <tantek> s/troll/trollish
- # [12:45] <tantek> jgraham - what's wrong with the picture of Hixie - is it too old?
- # [12:46] <tantek> annevk - that *is* an odd bug re: submit.
- # [12:48] <Stevef_> tantek: what is trollish about the comment?
- # [12:49] <tantek> Stevef_ not comment, just some trollish commentary in the article itself.
- # [12:49] <tantek> I didn't notice anything trollish about your comment.
- # [12:49] <Stevef_> tantek: OK just checking
- # [12:52] <tantek> Stevef_ if you're curious, the "quicksand" comparison was what I was referring to.
- # [12:52] * Joins: Kolombiken (~Adium@217.13.228.226)
- # [12:52] <Stevef_> tantek: ah OK
- # [12:53] <Stevef_> tantek: missed mention of shelley previoulsy...
- # [13:02] * Quits: adactio (~adactio@host213-123-197-180.in-addr.btopenworld.com) (Ping timeout: 276 seconds)
- # [13:03] <odinho> ;-)
- # [13:04] * Joins: adactio (~adactio@host213-123-197-180.in-addr.btopenworld.com)
- # [13:05] * Ms2ger thinks it better not to comment on Shelley
- # [13:11] * Joins: richt_ (~richt@pat-tazdevil.opera.com)
- # [13:13] * Quits: richt (~richt@office.oslo.opera.com) (Ping timeout: 260 seconds)
- # [13:22] * Quits: ehsan (~ehsan@209.20.29.228) (Remote host closed the connection)
- # [13:28] <hsivonen> What's new in Opera Mobile for Android: 'Improved handling of meta-tag "format detection"'
- # [13:28] <hsivonen> what does that really mean?
- # [13:29] * Quits: raphc (~quassel@153-107-190-109.dsl.ovh.fr) (Remote host closed the connection)
- # [13:30] * Joins: raphc (~quassel@153-107-190-109.dsl.ovh.fr)
- # [13:34] * Joins: raph (~quassel@153-107-190-109.dsl.ovh.fr)
- # [13:34] * Quits: raphc (~quassel@153-107-190-109.dsl.ovh.fr) (Ping timeout: 244 seconds)
- # [13:34] * raph is now known as Guest65061
- # [13:34] * Guest65061 is now known as raphhc
- # [13:35] * Joins: dUh (~dUh@poczta.eltar.com.pl)
- # [13:35] * dUh is now known as Guest47276
- # [13:35] * Quits: Ducki (~Ducki@pD9E39B8C.dip0.t-ipconnect.de) (Quit: ;))
- # [13:37] <tantek> hsivonen - plenty of "formats" have been proposed recently (the past year + ) that use meta-tags (e.g. Facebook OGP, Twitter Cards), perhaps they're referring to some of those.
- # [13:37] * Quits: _dUh_ (~dUh@poczta.eltar.com.pl) (Ping timeout: 255 seconds)
- # [13:40] * Joins: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net)
- # [13:41] <MikeSmith> so never took time to count up myself how many specs for Web APIs are in development in various working groups, but Erik Wilde did: http://dret.typepad.com/dretblog/html5-api-overview.html
- # [13:41] <MikeSmith> so we have on the order of 50 different specs
- # [13:41] * boaz is now known as boaz|away
- # [13:43] * Joins: Ducki (~Ducki@pD9E39B8C.dip0.t-ipconnect.de)
- # [13:43] * Quits: Ducki (~Ducki@pD9E39B8C.dip0.t-ipconnect.de) (Read error: Connection reset by peer)
- # [13:44] * Joins: richt (~richt@office.oslo.opera.com)
- # [13:48] * Joins: scor (~scor@c-98-216-97-72.hsd1.ma.comcast.net)
- # [13:48] * Quits: scor (~scor@c-98-216-97-72.hsd1.ma.comcast.net) (Changing host)
- # [13:48] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [13:48] * Quits: richt_ (~richt@pat-tazdevil.opera.com) (Ping timeout: 245 seconds)
- # [13:50] * Joins: _dUh_ (~dUh@poczta.eltar.com.pl)
- # [13:50] * Joins: emailshwetank (~shwetank@122.173.203.44)
- # [13:52] <hsivonen> It would be interesting to do a analysis 'Who ISSUEs HTML5?' and tabulate stats about whose grievances have been raised as ISSUEs, who writes CPs, whose CPs get accepted and whose accepted CPs also got accepted in WHATWG HTML and whose not
- # [13:53] * Quits: Guest47276 (~dUh@poczta.eltar.com.pl) (Ping timeout: 246 seconds)
- # [13:53] * Quits: shwetank (~shwetank@122.173.195.188) (Ping timeout: 248 seconds)
- # [13:54] * Quits: emailshwetank (~shwetank@122.173.203.44) (Client Quit)
- # [13:56] * Quits: yuuki (~kobayashi@58x158x182x50.ap58.ftth.ucom.ne.jp) (Quit: Leaving...)
- # [14:04] * Quits: smaug____ (~chatzilla@212-226-67-159-nat.elisa-mobile.fi) (Ping timeout: 250 seconds)
- # [14:06] <odinho> hsivonen: No idea.
- # [14:07] <hsivonen> odinho: ok. not the clearest release note line item
- # [14:08] <odinho> hsivonen: You could say that. :] I asked if anyone knew.
- # [14:08] <odinho> I could search around but I'm not that interested :P
- # [14:14] * Joins: NimeshNeema (u2689@gateway/web/irccloud.com/x-pbmtdgfpwuzsmenq)
- # [14:23] * Quits: lowcraft (~lowcraft@rep44-1-82-246-39-199.fbx.proxad.net) (Ping timeout: 248 seconds)
- # [14:24] <MikeSmith> hmm I guess it would be useful to make an alphabetical list list of specs like http://dret.typepad.com/dretblog/html5-api-overview.html but also include the CSS3 specs and the non-W3C ones that Erik omits from that
- # [14:24] <MikeSmith> with those included it's more on the order of 60 specs
- # [14:27] * Joins: lowcraft (~lowcraft@rep44-1-82-246-39-199.fbx.proxad.net)
- # [14:30] * Joins: dUh (~dUh@poczta.eltar.com.pl)
- # [14:31] * dUh is now known as Guest37008
- # [14:31] <hsivonen> dealing with some of my least favorite parts of the platform: session history and window.open
- # [14:33] * Quits: _dUh_ (~dUh@poczta.eltar.com.pl) (Ping timeout: 244 seconds)
- # [14:36] * Joins: _dUh_ (~dUh@poczta.eltar.com.pl)
- # [14:38] * abstractj|away is now known as abstractj
- # [14:38] * Quits: Guest37008 (~dUh@poczta.eltar.com.pl) (Ping timeout: 246 seconds)
- # [14:39] * Joins: Ducki (~Ducki@pD9E39B8C.dip0.t-ipconnect.de)
- # [14:40] <odinho> hsivonen: Found this in the bugtracker (for that changelog entry): The other problem worth to mention is Google Play limiting number of characters in changelogs, so we always need to be as short as possible ;)
- # [14:41] <odinho> hsivonen: But it's not linking to the real bug, so I still don't know what it means, but now know why the log entry is so criptic :P
- # [14:41] <hsivonen> odinho: thanks
- # [14:42] <odinho> hsivonen: FOUND IT!
- # [14:43] <odinho> http://developer.apple.com/library/safari/#featuredarticles/iPhoneURLScheme_Reference/Articles/PhoneLinks.html#//apple_ref/doc/uid/TP40007893-SW1 ---> <meta name = "format-detection" content = "telephone=no">
- # [14:43] <odinho> this here thing
- # [14:44] * abstractj is now known as abstractj|mtg
- # [14:46] <hsivonen> odinho: thanks. totally non-obvious from the relnotes
- # [14:46] * Quits: scor (~scor@drupal.org/user/52142/view) (Quit: scor)
- # [14:46] * boaz|away is now known as boaz
- # [14:47] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [14:47] <odinho> hsivonen: yes, agreed. But probably because Play store had a length limit on changelogs. Should've been a link to something bigger though.
- # [14:47] * Quits: Martin_L (~Martin_L@194.18.12.26) (Remote host closed the connection)
- # [15:00] <hsivonen> hmm. I don't see an invitation to bring <picture> to the HTML WG on the Responsive Images GC's mailing list
- # [15:00] <hsivonen> I wonder who did the invitation and why
- # [15:02] <hsivonen> I suspect the Responsive Images folks are going to face more of http://w3cmemes.tumblr.com/post/23122022271
- # [15:02] * Quits: Necrathex (~Necrathex@195-240-192-16.ip.telfort.nl) (Quit: Ik ga weg)
- # [15:02] <hsivonen> "And then we told them ... to submit a proposal to the HTML WG"
- # [15:02] * Quits: JohnAlbin (~JohnAlbin@114-24-49-32.dynamic.hinet.net) (Quit: HTTP/1.1 404 JohnAlbin Not Found)
- # [15:03] * Quits: Kolombiken (~Adium@217.13.228.226) (Quit: Leaving.)
- # [15:03] * Joins: JohnAlbin (~JohnAlbin@114-24-49-32.dynamic.hinet.net)
- # [15:05] <odinho> lol, the tantek one is pure gold :D
- # [15:08] * Quits: _dUh_ (~dUh@poczta.eltar.com.pl) (Read error: Connection reset by peer)
- # [15:10] * Ms2ger looks around http://www.cs.helsinki.fi/u/pettay/moztests/xmlevents/
- # [15:11] * Joins: Kolombiken (~Adium@94.234.170.161)
- # [15:15] * Joins: danbri (~danbri@host86-153-168-172.range86-153.btcentralplus.com)
- # [15:16] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [15:16] <hsivonen> at times, fixing about:blank feels hopeless
- # [15:17] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [15:24] * Quits: izhak (~izhak@213.87.240.198) (Ping timeout: 252 seconds)
- # [15:24] * Joins: erichynds (~ehynds@64.206.121.41)
- # [15:24] * Joins: gavin___ (~gavin@76.14.87.162)
- # [15:26] * Quits: silverroots (~silverroo@144.187.180.12) (Ping timeout: 252 seconds)
- # [15:26] * Joins: silverroots (~silverroo@144.187.180.12)
- # [15:26] * Joins: tawhuac (~tawhuac@190.71.254.34)
- # [15:26] * Quits: Ducki (~Ducki@pD9E39B8C.dip0.t-ipconnect.de) (Quit: ;))
- # [15:26] * Quits: chayin (quassel@nat/nokia/x-ejepyqmiamefomte) (Read error: Connection reset by peer)
- # [15:27] * Joins: chayin (quassel@nat/nokia/x-byaxyaffcnjeuqto)
- # [15:27] * Joins: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net)
- # [15:27] * Quits: gavin__ (~gavin@76.14.87.162) (Ping timeout: 264 seconds)
- # [15:30] * Joins: smaug____ (~chatzilla@212-226-67-159-nat.elisa-mobile.fi)
- # [15:30] * Joins: yodasw16 (~dgillhesp@ql1fwhide.rockfin.com)
- # [15:35] * Joins: david_carlisle (~chatzilla@86.188.197.189)
- # [15:35] * Joins: MacTed (~Thud@63.119.36.36)
- # [15:41] <hsivonen> I wish the testing staff funded by Adobe, Microsoft and Google writes some good session history tests
- # [15:42] * Joins: JohnAlbin_ (~JohnAlbin@209.41.114.202)
- # [15:44] * nonge_ is now known as nonge
- # [15:46] * Quits: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net) (Quit: linclark)
- # [15:46] * Quits: JohnAlbin (~JohnAlbin@114-24-49-32.dynamic.hinet.net) (Ping timeout: 252 seconds)
- # [15:46] * JohnAlbin_ is now known as JohnAlbin
- # [15:55] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [15:58] * Joins: Gaunt (~Ragnar@g225026058.adsl.alicedsl.de)
- # [15:58] * boaz is now known as boaz|away
- # [16:02] <hsivonen> am I the only one who read Maciej's advice about how to proceed with the era attribute as "Don't bother, but if you want a formal rejection, do this."?
- # [16:10] * abstractj|mtg is now known as abstractj
- # [16:13] * Joins: izhak (~izhak@188.244.181.162)
- # [16:13] * Joins: rworth (~rworth@pool-72-66-13-241.washdc.fios.verizon.net)
- # [16:13] * heycam|away is now known as heycam
- # [16:13] * heycam is now known as heycam|away
- # [16:14] * Joins: richt_ (~richt@pat-tazdevil.opera.com)
- # [16:16] * Quits: richt (~richt@office.oslo.opera.com) (Ping timeout: 272 seconds)
- # [16:21] * heycam|away is now known as heycam
- # [16:23] * Joins: linclark (~clark@128.237.112.74)
- # [16:26] * Quits: silverroots (~silverroo@144.187.180.12) (Quit: Leaving...!)
- # [16:26] * Quits: wakaba (~wakaba@75.22.102.121.dy.bbexcite.jp) (Read error: Connection reset by peer)
- # [16:26] * Joins: wakaba (~wakaba@75.22.102.121.dy.bbexcite.jp)
- # [16:31] * Quits: smaug____ (~chatzilla@212-226-67-159-nat.elisa-mobile.fi) (Ping timeout: 246 seconds)
- # [16:37] * Quits: Delapouite (~Delapouit@dsl-58-6-19-17.wa.westnet.com.au) (Remote host closed the connection)
- # [16:39] * Joins: JohnAlbin_ (~JohnAlbin@114-24-49-32.dynamic.hinet.net)
- # [16:41] * Quits: JohnAlbin (~JohnAlbin@209.41.114.202) (Disconnected by services)
- # [16:41] * JohnAlbin_ is now known as JohnAlbin
- # [16:41] * Quits: Kolombiken (~Adium@94.234.170.161) (Quit: Leaving.)
- # [16:44] * Joins: smaug____ (~chatzilla@212-226-67-159-nat.elisa-mobile.fi)
- # [16:46] <AryehGregor> http://www.w3.org/TR/SVG11/svgdom.html#__svg__SVG_MATRIX_NOT_INVERTABLE
- # [16:46] <AryehGregor> Really?
- # [16:46] <AryehGregor> INVERTABLE?
- # [16:46] <AryehGregor> That made it into a spec?
- # [16:46] <AryehGregor> "Referer" is one thing, I'd like to think we're more professional now . . .
- # [16:47] * Joins: jarek (~jarek@bcv1.neoplus.adsl.tpnet.pl)
- # [16:47] * Quits: jarek (~jarek@bcv1.neoplus.adsl.tpnet.pl) (Changing host)
- # [16:47] * Joins: jarek (~jarek@unaffiliated/jarek)
- # [16:49] * Joins: ksweeney (~Kevin_Swe@nyv-exweb.iac.com)
- # [16:49] * Parts: ksweeney (~Kevin_Swe@nyv-exweb.iac.com)
- # [16:49] <Ms2ger> Well
- # [16:49] <Ms2ger> SVGDOM
- # [16:50] * Joins: shepazu (~shepazu@192.150.22.55)
- # [16:51] <odinho> Referer <3
- # [16:55] * Joins: ehsan (~ehsan@66.207.208.98)
- # [17:01] * Quits: erichynds (~ehynds@64.206.121.41) (Ping timeout: 244 seconds)
- # [17:01] * Quits: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 244 seconds)
- # [17:08] * Joins: gavinc (~gavin@50.0.77.3)
- # [17:09] * Joins: toyoshiAw (~toyoshim@yuri.twintail.org)
- # [17:09] * toyoshiAw is now known as toyoshim
- # [17:09] * Joins: Ducki (~Ducki@pD9E39B8C.dip0.t-ipconnect.de)
- # [17:10] * Quits: maikmerten (~merten@ls5dhcp200.cs.uni-dortmund.de) (Remote host closed the connection)
- # [17:11] * Quits: Areks (~Areks@rs.gridnine.com) (Ping timeout: 272 seconds)
- # [17:12] <heycam> AryehGregor, sorry about that, I added a note to SVG 1.1 Second Edition pointing out the unconventional spelling :)
- # [17:12] <heycam> AryehGregor, (we're moving to Web IDL exception types soon anyway)
- # [17:12] <AryehGregor> Yay!
- # [17:12] <AryehGregor> Wait, WebIDL and not DOM?
- # [17:12] <heycam> AryehGregor, oh using the DOM ones
- # [17:12] <AryehGregor> Ah.
- # [17:12] <heycam> I don't think we need any specific SVG ones
- # [17:13] * Quits: Lachy (~Lachy@pat-tazdevil.opera.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
- # [17:13] <Ms2ger> Oh
- # [17:13] <Ms2ger> I thought you guys did that ages ago
- # [17:17] <jarek> SVG DOM is awful
- # [17:18] * Joins: rwaldron (~rwaldron@63.64.64.178)
- # [17:18] <jarek> anyone here thinks that SVGPathSegCurvetoQuadraticSmoothRel is a good name?
- # [17:19] <jarek> looks a bit over-descriptive :/
- # [17:20] * Joins: drublic_ (~drublic@frbg-5f7325c2.pool.mediaWays.net)
- # [17:23] * Joins: dydx (~dydz@76-220-18-65.lightspeed.sntcca.sbcglobal.net)
- # [17:23] * Joins: gkellogg_ (~gregg@c-98-248-150-91.hsd1.ca.comcast.net)
- # [17:24] * Quits: drublic (~drublic@frbg-5f7325c2.pool.mediaWays.net) (Ping timeout: 276 seconds)
- # [17:29] * Quits: dirkpennings (~dirkpenni@82-148-199-218.adsl.unet.nl) (Ping timeout: 246 seconds)
- # [17:41] * Joins: jreading (~Adium@204.56.125.50)
- # [17:43] * Quits: rwaldron (~rwaldron@63.64.64.178) (Quit: Leaving...)
- # [17:45] * Quits: Ducki (~Ducki@pD9E39B8C.dip0.t-ipconnect.de) (Read error: Connection reset by peer)
- # [17:47] <odinho> jarek: Looks like Objective-C/Apple API's.
- # [17:48] * Joins: erichynds (~ehynds@64.206.121.42)
- # [17:50] * Joins: richt (~richt@office.oslo.opera.com)
- # [17:51] * Quits: drublic_ (~drublic@frbg-5f7325c2.pool.mediaWays.net) (Remote host closed the connection)
- # [17:54] * Quits: gkellogg_ (~gregg@c-98-248-150-91.hsd1.ca.comcast.net) (Quit: gkellogg_)
- # [17:54] * Quits: richt_ (~richt@pat-tazdevil.opera.com) (Ping timeout: 252 seconds)
- # [18:01] * Joins: JohnAlbin_ (~JohnAlbin@114-24-49-32.dynamic.hinet.net)
- # [18:01] * Quits: dydx (~dydz@76-220-18-65.lightspeed.sntcca.sbcglobal.net) (Quit: dydx)
- # [18:02] * Quits: JohnAlbin (~JohnAlbin@114-24-49-32.dynamic.hinet.net) (Quit: HTTP/1.1 404 JohnAlbin Not Found)
- # [18:02] * JohnAlbin_ is now known as JohnAlbin
- # [18:04] <gsnedders> jarek: It's an awesome name!
- # [18:05] * Quits: jarib (~jarib@unaffiliated/jarib) (Excess Flood)
- # [18:05] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [18:07] * Quits: SimonSapin (~simon@2a01:e35:2e8d:b5f0:6166:6779:51a5:98cb) (Ping timeout: 246 seconds)
- # [18:13] * Quits: nessy (~Adium@124-168-183-82.dyn.iinet.net.au) (Quit: Leaving.)
- # [18:13] * Joins: nick_evans (~nicholas@static-98-113-167-42.nycmny.fios.verizon.net)
- # [18:19] * Joins: Areks|2 (~Areks@93-80-234-158.broadband.corbina.ru)
- # [18:19] * Joins: jernoble_ (~jernoble@mobile-198-228-213-042.mycingular.net)
- # [18:22] * Quits: jarek (~jarek@unaffiliated/jarek) (Quit: jarek)
- # [18:22] * Quits: globbot (~logbot@lump.glob.com.au) (Remote host closed the connection)
- # [18:22] * Joins: globbot (~logbot@lump.glob.com.au)
- # [18:23] * Joins: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no)
- # [18:23] * Joins: JohnAlbin_ (~JohnAlbin@114-24-49-32.dynamic.hinet.net)
- # [18:24] * Quits: JohnAlbin (~JohnAlbin@114-24-49-32.dynamic.hinet.net) (Quit: HTTP/1.1 404 JohnAlbin Not Found)
- # [18:24] * JohnAlbin_ is now known as JohnAlbin
- # [18:24] * Joins: jarek (~jarek@unaffiliated/jarek)
- # [18:24] * Joins: ap__ (~ap@2620:149:4:1b01:ac17:933d:e4a6:942f)
- # [18:25] * Joins: sicking (~chatzilla@nat/mozilla/x-xqfrmkwjbjfrbyby)
- # [18:26] * ap__ is now known as ap
- # [18:29] * Joins: drublic (~drublic@frbg-5f7325c2.pool.mediaWays.net)
- # [18:35] * Quits: sedovsek (~robert@lk.92.63.17.253.dc.cable.static.lj-kabel.net) (Quit: sedovsek)
- # [18:35] * Quits: jarek (~jarek@unaffiliated/jarek) (Quit: jarek)
- # [18:36] <Hixie> MikeSmith: to be fair, seven of those are fragments of the HTML spec
- # [18:37] <Hixie> and several of them are "native api" specs that really don't belong on the web in the first place imho
- # [18:38] <Hixie> or should be done as intent-driven web apis not implemented by the browser
- # [18:38] <Hixie> and he lists xhr and xhr2 as separate specs
- # [18:38] <Hixie> and media capture twice
- # [18:38] <Hixie> would be nice to have platform.html5.org updated to include any that were missed though
- # [18:40] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [18:43] * Quits: drublic (~drublic@frbg-5f7325c2.pool.mediaWays.net) (Ping timeout: 276 seconds)
- # [18:46] * Quits: abarth (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net) (Quit: abarth)
- # [18:51] * Joins: pablof (~pablof@144.189.101.1)
- # [18:53] <annevk> Hixie: maybe we need meta@whatwg.org? http://www.codinghorror.com/blog/2012/02/listen-to-your-community-but-dont-let-them-tell-you-what-to-do.html
- # [18:54] <annevk> on the other hand, we've been mostly good for eight years
- # [18:55] * Quits: jernoble_ (~jernoble@mobile-198-228-213-042.mycingular.net) (Quit: Computer has gone to sleep.)
- # [18:57] * Joins: drublic (~drublic@frbg-5f73101a.pool.mediaWays.net)
- # [19:00] * Joins: mye (~mye@p4FD935FE.dip.t-dialin.net)
- # [19:01] * Joins: scor_ (~scor@drupal.org/user/52142/view)
- # [19:01] * Quits: linclark (~clark@128.237.112.74) (Read error: Operation timed out)
- # [19:02] * Quits: karlcow (~karl@nerval.la-grange.net) (Excess Flood)
- # [19:02] * Quits: scor (~scor@drupal.org/user/52142/view) (Ping timeout: 255 seconds)
- # [19:02] * scor_ is now known as scor
- # [19:02] * Joins: linclark (~clark@128.237.112.74)
- # [19:03] * Joins: gwicke (~gabriel@wikimedia/gwicke)
- # [19:03] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [19:06] * Quits: karlcow (~karl@nerval.la-grange.net) (Client Quit)
- # [19:06] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [19:06] * karlcow weird
- # [19:06] * karlcow wonders what is the correct term instead of INVERTABLE?
- # [19:06] <annevk> INVERTIBLE
- # [19:06] <karlcow> annevk: thanks
- # [19:06] * Joins: jzaefferer (~jzaeffere@205.186.165.147)
- # [19:09] <jzaefferer> The spec is pretty ambigous about popstate event being fired on pageload: http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html - now we have Chrome doing that, Firefox not. I'd like to see that fixed before we get stuck with that mess forever. Looking for some guidance how.
- # [19:09] * Quits: annevk (~annevk@a82-161-179-17.adsl.xs4all.nl) (Remote host closed the connection)
- # [19:10] * Quits: david_carlisle (~chatzilla@86.188.197.189) (Ping timeout: 255 seconds)
- # [19:10] * Joins: Kolombiken (~Adium@c80-216-10-244.bredband.comhem.se)
- # [19:10] <jzaefferer> from the MDN article https://developer.mozilla.org/en/DOM/window.onpopstate - "Browsers tend to handle the popstate event differently on page load. Chrome and Safari always emit a popstate event on page load, but Firefox doesn't." - that sucks for users
- # [19:11] * Joins: sarspazam (~sarspazam@78-105-183-7.zone3.bethere.co.uk)
- # [19:12] <jzaefferer> MikeSmith: as my goto-whatwg person, any comment on the above?
- # [19:13] * Joins: mattgifford (~mattgiffo@70.102.199.158)
- # [19:13] <Ms2ger> jzaefferer, file a bug to get it defined
- # [19:14] <jzaefferer> Ms2ger: okay, which tracker would be the right one?
- # [19:15] <Ms2ger> https://www.w3.org/Bugs/Public/enter_bug.cgi?product=WHATWG&component=HTML
- # [19:16] <jzaefferer> okay, thanks
- # [19:18] <Ms2ger> Np
- # [19:24] * Joins: jsbell (jsbell@nat/google/x-ithokqfogmzdqelr)
- # [19:24] <tantek> annevk - the meta topic is interesting from a community management perspective.
- # [19:25] <tantek> however, it tends to eventually be dominated by people that don't love a community (as Atwood suggests), but by people that love meta for meta's sake.
- # [19:25] <tantek> prime example: the amount of time spent discussing, arguing, and trying to meet the steps for "process" at W3C.
- # [19:26] <tantek> so no, I don't think we need meta@whatwg.org
- # [19:27] <tantek> I mean unless you want to create a support group ;) for people who love meta for meta's sake *and* somehow found themselves involved with whatwg. It could be an interesting honeypot, to keep meta talk out of other fora.
- # [19:29] <hober> it could be useful as a honeypot
- # [19:29] * Quits: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no) (Remote host closed the connection)
- # [19:30] * Parts: adactio (~adactio@host213-123-197-180.in-addr.btopenworld.com)
- # [19:30] * Quits: Areks|2 (~Areks@93-80-234-158.broadband.corbina.ru) (Read error: Connection reset by peer)
- # [19:30] * Joins: Areks (~Areks@93-80-234-158.broadband.corbina.ru)
- # [19:30] * Joins: rwaldron (~rwaldron@131.107.32.25)
- # [19:32] * Joins: sedovsek (~robert@93-103-104-107.dynamic.t-2.net)
- # [19:33] * karlcow is not subscribing to meta ☺ ever
- # [19:33] <karlcow> already enough of nonsense everywhere
- # [19:34] * Joins: annevk (~annevk@80.187.201.33)
- # [19:36] <annevk> tantek: fair enough
- # [19:37] <tantek> karlcow - but you *love* discussing process :)
- # [19:37] <Ms2ger> tantek, well, the point is to keep them away from the productive people ;)
- # [19:38] <annevk> tantek: I wasn't quite sure what we'd use it for either, just thought I'd suggest it so it could be considered
- # [19:40] <tantek> I feel like #whatwg provides a sufficient meta-forum. Perhaps consider meta@ lazily, that is, avoid it until someone makes a strong case+demand for it, and then give it to them.
- # [19:40] * Quits: jreading (~Adium@204.56.125.50) (Read error: Connection reset by peer)
- # [19:40] * jonlee|afk is now known as jonlee
- # [19:40] * Joins: jreading (~Adium@204.56.125.50)
- # [19:40] <karlcow> tantek: not really ☺ I love understanding/observing communities. I do not think there is one solution for all. I have the gut feeling that all Process often fails at having an annotated version with links to historical references.
- # [19:40] <tantek> +1 on Process often fails at having an annotated version with links to historical references
- # [19:40] * Joins: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no)
- # [19:41] * Quits: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no) (Remote host closed the connection)
- # [19:42] <tantek> karlcow - in addition, I think the bigger failure of most process documentation is that it fails to document what's specifically been avoided/rejected (and why).
- # [19:42] * Quits: Areks (~Areks@93-80-234-158.broadband.corbina.ru) (Read error: Connection reset by peer)
- # [19:43] * Joins: Areks (~Areks@93-80-234-158.broadband.corbina.ru)
- # [19:46] * Quits: annevk (~annevk@80.187.201.33) (Remote host closed the connection)
- # [19:50] * karlcow is still thinking about that last sentence from Tantek
- # [19:50] <Hixie> tantek++ re not neeting a meta mailing list
- # [19:50] <Hixie> and re #whatwg being it
- # [19:50] <Hixie> needing, even
- # [19:51] <Hixie> that typo bodes poorly for the day's activities
- # [19:51] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [19:52] <karlcow> hmmm lightly to heavily documented https://en.wikipedia.org/wiki/Stare_decisis#Civil_law_systems differences depending on countries
- # [19:52] <Ms2ger> Hixie, might give you a nice set of easy typo-bugs tomorrow :)
- # [19:53] <Hixie> hah
- # [19:53] <Hixie> got plenty of those already
- # [19:54] * Quits: sicking (~chatzilla@nat/mozilla/x-xqfrmkwjbjfrbyby) (Ping timeout: 255 seconds)
- # [19:57] <Hixie> volkmar: yt?
- # [20:01] <volkmar> Hixie: yes
- # [20:03] <Hixie> volkmar: do you know much abotu setMessageHandler()? as in https://groups.google.com/forum/?fromgroups#!topic/mozilla.dev.webapi/o8bkwx0EtmM
- # [20:04] * Joins: bde (~bde@rrcs-24-105-154-181.nyc.biz.rr.com)
- # [20:04] * Parts: bde (~bde@rrcs-24-105-154-181.nyc.biz.rr.com)
- # [20:07] * Joins: espadrine (~espadrine@63-235-13-3.dia.static.qwest.net)
- # [20:08] * Joins: maikmerten (~maikmerte@port-92-201-93-203.dynamic.qsc.de)
- # [20:14] * Joins: abarth (~abarth@173-164-128-209-SFBA.hfc.comcastbusiness.net)
- # [20:14] * Quits: espadrine (~espadrine@63-235-13-3.dia.static.qwest.net) (Quit: espadrine)
- # [20:14] * Quits: drublic (~drublic@frbg-5f73101a.pool.mediaWays.net) (Remote host closed the connection)
- # [20:14] <volkmar> damn, I was going to send you that link :)
- # [20:15] <volkmar> what do you want to know?
- # [20:18] * jonlee is now known as jonlee|afk
- # [20:22] * Joins: sicking (~chatzilla@nat/mozilla/x-dwwktrkkbhtbfked)
- # [20:22] * Joins: ksweeney (~Kevin_Swe@nyv-exweb.iac.com)
- # [20:23] * Parts: ksweeney (~Kevin_Swe@nyv-exweb.iac.com)
- # [20:24] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 276 seconds)
- # [20:27] * Quits: nephyrin (~nephyrin@nat/mozilla/x-bxghstxkpcdlawvw) (Read error: Connection reset by peer)
- # [20:29] * Quits: tawhuac (~tawhuac@190.71.254.34) (Read error: Operation timed out)
- # [20:29] * Joins: nephyrin (~nephyrin@nat/mozilla/x-rhgdjrbnlkjzpyeq)
- # [20:35] * Joins: pyrsmk (~pyrsmk@2a01:e35:2f52:ead0:216:6fff:fe0c:cfd5)
- # [20:38] * Quits: linclark (~clark@128.237.112.74) (Quit: linclark)
- # [20:39] * Joins: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no)
- # [20:42] * Quits: jonlee|afk (~jonlee@2620:149:4:1b01:3043:c33f:e833:e0ba) (Remote host closed the connection)
- # [20:43] * Joins: jonlee (~jonlee@2620:149:4:1b01:8894:fcfc:d428:ca6a)
- # [20:43] * Quits: gwicke (~gabriel@wikimedia/gwicke) (Read error: Connection reset by peer)
- # [20:43] * Joins: gwicke (~gabriel@wikimedia/gwicke)
- # [20:43] * Quits: Areks (~Areks@93-80-234-158.broadband.corbina.ru) (Read error: Connection reset by peer)
- # [20:44] * Joins: Areks (~Areks@93-80-234-158.broadband.corbina.ru)
- # [20:47] * Quits: espadrine` (~thaddee_t@63-235-13-3.dia.static.qwest.net) (Ping timeout: 244 seconds)
- # [20:48] * Quits: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no) (Remote host closed the connection)
- # [20:54] * Quits: raphhc (~quassel@153-107-190-109.dsl.ovh.fr) (Ping timeout: 246 seconds)
- # [20:55] * Quits: yodasw16 (~dgillhesp@ql1fwhide.rockfin.com) (Quit: yodasw16)
- # [20:56] * Quits: maikmerten (~maikmerte@port-92-201-93-203.dynamic.qsc.de) (Remote host closed the connection)
- # [20:57] <Hixie> tantek: do you have an ETA for the autocomplete feedback you were going to send btw? (for planning purposes)
- # [21:00] * Joins: dgathright (~dgathrigh@nat/yahoo/x-yjdwimwpauhzkqkx)
- # [21:01] * Joins: annevk (~annevk@212.238.236.229)
- # [21:02] <Hixie> for anyone who is interested, my current (incomplete and in parts wrong) strawman proposal for merging all the various content handlers, web intents, web activities, system messages, etc, proposals is: http://www.whatwg.org/specs/web-apps/current-work/scratch
- # [21:06] * Joins: espadrine` (~thaddee_t@63-235-13-3.dia.static.qwest.net)
- # [21:11] * Joins: david_carlisle (~chatzilla@dcarlisle.demon.co.uk)
- # [21:13] * Joins: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net)
- # [21:17] * jonlee is now known as jonlee|afk
- # [21:18] * Quits: sedovsek (~robert@93-103-104-107.dynamic.t-2.net) (Quit: sedovsek)
- # [21:20] * Quits: lowcraft (~lowcraft@rep44-1-82-246-39-199.fbx.proxad.net) (Ping timeout: 248 seconds)
- # [21:22] * abstractj is now known as abstractj|lunch
- # [21:23] * Joins: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [21:28] * Joins: attiks|away (~chatzilla@d5153136D.static.telenet.be)
- # [21:31] * JohnAlbin is now known as JohnAlbin_zzzzzz
- # [21:39] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [21:40] <Wilto> hsivonen: Ian Jacobs reached out to me on behalf of the HTML WG chairs, to the best of my knowledge.
- # [21:41] <Wilto> hsivonen: That is, simply to post the proposal to the list.
- # [21:44] * Quits: Gaunt (~Ragnar@g225026058.adsl.alicedsl.de)
- # [21:45] * Joins: rniwa (rniwa@nat/google/x-wanssxfpypzntood)
- # [21:47] <annevk> http://html5.org/r/7203 lol
- # [21:47] * Quits: sicking (~chatzilla@nat/mozilla/x-dwwktrkkbhtbfked) (Ping timeout: 246 seconds)
- # [21:47] <Hixie> :-P
- # [21:48] <annevk> haven't seen requests for XMLHttpRequest yet
- # [21:48] <Hixie> weird
- # [21:49] * Quits: Stevef_ (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 246 seconds)
- # [21:49] * Joins: imrobert (~robert@88.80.28.39)
- # [21:49] * Quits: imrobert (~robert@88.80.28.39) (Client Quit)
- # [21:49] * Joins: imrobert (~robert@88.80.28.39)
- # [21:49] * boaz|away is now known as boaz
- # [21:51] <hober> Hixie: what's the use case for having "new" AND "reuse"?
- # [21:51] <Hixie> most intents won't be able to handle the same page being used for two intents
- # [21:51] <Hixie> think, e-mail compose window intent handler
- # [21:52] <Hixie> so for those, you'd want "new"
- # [21:52] <Ms2ger> annevk, count this as a request :)
- # [21:52] <Hixie> "reuse" is for the cases where the app can in fact handle multiple things at once
- # [21:52] <Hixie> hober: does that make sense?
- # [21:52] <annevk> Ms2ger: you don't count :p
- # [21:52] <Hixie> hober: (btw, your input on this in general is very welcome, i'm very interested in safari and opera input on this since it has mostly been a mozilla and chrome thing so far)
- # [21:53] <hober> I suppose. Being stupid or lossy under the "reuse" behavior seems like a bad way to code an intent handler.
- # [21:53] <Hixie> (also interested in IE feedback, should any Microsoft people be lurking here or reading the logs)
- # [21:53] * jonlee|afk is now known as jonlee
- # [21:53] <Hixie> hober: right, hence why you'd say you're a "new" handler, then you don't have to worry about it
- # [21:53] <Hixie> hober: you wouldn't want all your e-mail compose intents to end up in the same tab :-)
- # [21:54] <Hixie> or all your "open PDF in new window" intents :-)
- # [21:54] <hober> why would "open pdf in new window" have anything to do with this mechanism? :)
- # [21:55] <Hixie> PDF viewing sites might well call registerContentHandler() for application/pdf
- # [21:55] <hober> "PDF viewing sites" *shudder*
- # [21:55] <Hixie> ok, 3D Model Viewing Sites
- # [21:55] <Hixie> whatever :-)
- # [21:56] <Hixie> think of Pages as a web page
- # [21:56] <Hixie> it handles the "open Pages app" intent
- # [21:56] <Hixie> er
- # [21:56] <Hixie> "open Pages doc" intent
- # [21:56] <Hixie> but each Pages doc ends up in a new Window
- # [21:56] <Hixie> so it's like "new"
- # [21:57] * Joins: Stevef_ (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [21:57] <Hixie> but then consider the "open MP3 doc" intent that iTunes supports
- # [21:57] <Hixie> it handles all of them in the same window
- # [21:57] <Hixie> so it's like "reuse"
- # [22:01] * abstractj|lunch is now known as abstractj
- # [22:01] <hober> *nod*
- # [22:01] * Joins: Necrathex (~Necrathex@195-240-192-16.ip.telfort.nl)
- # [22:03] <annevk> oh hober
- # [22:03] <annevk> poor you
- # [22:03] <annevk> I mean, have the funnest time
- # [22:03] <hober> On the plus side, I don't have to think much about what my Halloween costume will be at TPAC this year
- # [22:03] <annevk> haha
- # [22:04] <Hixie> because you'll have given up and become an alpaca farmer by then? :-)
- # [22:04] <hober> (Zoidberg, obviously)
- # [22:05] <Hixie> do you know when the four of you will begin editing?
- # [22:05] <annevk> I considered alpaca farming, but then the tent froze over during the night and I decided not to
- # [22:05] * Quits: gavin___ (~gavin@76.14.87.162) (Read error: Connection reset by peer)
- # [22:05] * Quits: timeless (users.4015@firefox/developer/timeless) (Remote host closed the connection)
- # [22:05] <hober> hahahaha
- # [22:05] * Joins: timeless_ (users.4015@gateway/web/irccloud.com/x-stelpxhhybqmuivy)
- # [22:05] * Joins: gavin____ (~gavin@76.14.87.162)
- # [22:05] <Hixie> hober: (i'm mainly curious about when i should bother approaching y'all to see how you want to handle getting new bugs to both teams)
- # [22:07] <Ms2ger> I guess I could see that coming
- # [22:09] * heycam is now known as heycam|away
- # [22:11] <hober> Hixie: the initial meeting hasn't even happened, so "not this week" is probably a safe answer.
- # [22:12] <Hixie> you're going to have meetings?
- # [22:12] <Hixie> oh poor poor hober
- # [22:12] <Hixie> lunch, bbiab
- # [22:18] * Joins: Lachy (~Lachy@cm-84.215.193.125.getinternet.no)
- # [22:22] * Joins: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no)
- # [22:27] * gwicke is now known as gwicke_away
- # [22:28] * toyoshim is now known as toyoshiAw
- # [22:29] * Quits: annevk (~annevk@212.238.236.229) (Remote host closed the connection)
- # [22:29] * Joins: roc_ (~chatzilla@121.98.230.221)
- # [22:31] * gwicke_away is now known as gwicke
- # [22:31] * Quits: erichynds (~ehynds@64.206.121.42)
- # [22:34] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [22:37] * Quits: Stevef_ (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 276 seconds)
- # [22:37] * Joins: bckenny (bckenny@nat/google/x-wxcyvoipvbwyiltw)
- # [22:39] * jonlee is now known as jonlee|afk
- # [22:39] * Quits: roc_ (~chatzilla@121.98.230.221) (Ping timeout: 276 seconds)
- # [22:41] * attiks|away is now known as attiks
- # [22:42] * espadrine` is now known as espadrine
- # [22:48] * jonlee|afk is now known as jonlee
- # [22:58] * jonlee is now known as jonlee|afk
- # [22:59] * Quits: cheron (~cheron@unaffiliated/cheron) (Quit: Leaving.)
- # [23:03] * Quits: Areks (~Areks@93-80-234-158.broadband.corbina.ru) (Ping timeout: 244 seconds)
- # [23:04] * Quits: Bass10 (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 276 seconds)
- # [23:05] * Quits: david_carlisle (~chatzilla@dcarlisle.demon.co.uk) (Ping timeout: 244 seconds)
- # [23:05] * Quits: tomasf (~tom@c-36dbe555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Quit: tomasf)
- # [23:06] * Joins: sicking (~chatzilla@nat/mozilla/x-hrjdwfuhecgwnekf)
- # [23:09] * Quits: Lachy (~Lachy@cm-84.215.193.125.getinternet.no) (Quit: Computer has gone to sleep.)
- # [23:09] * Quits: Ms2ger (~Ms2ger@91.181.17.154) (Quit: nn)
- # [23:10] * Joins: Lachy (~Lachy@cm-84.215.193.125.getinternet.no)
- # [23:11] * jonlee|afk is now known as jonlee
- # [23:19] * Joins: roc_ (~chatzilla@60.234.66.20)
- # [23:26] <tantek> Hixie - re: autocomplete feedback completion ETA, good estimate would be next Monday, though I plan to work on it a bunch today.
- # [23:26] <tantek> I'll be basing my feedback on editing in real-time the hcard-input page in case anyone is interested in stalking/following along (edit notifications also go to #microformats) http://microformats.org/wiki/hcard-input#next_actions
- # [23:26] * Quits: SonicX (~quassel@116.203.5.233) (Remote host closed the connection)
- # [23:27] * Quits: MacTed (~Thud@63.119.36.36)
- # [23:28] * Quits: snowfox (~benschaaf@50-77-199-197-static.hfc.comcastbusiness.net) (Read error: Operation timed out)
- # [23:29] * Joins: Bass10 (~Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [23:34] * Joins: Stevef_ (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com)
- # [23:41] * Quits: tantek (~tantek@70-36-139-86.dsl.dynamic.sonic.net) (Quit: tantek)
- # [23:43] * Quits: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no) (Remote host closed the connection)
- # [23:44] * Joins: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no)
- # [23:45] * abstractj is now known as abstractj|brb
- # [23:45] * Quits: linclark (~clark@c-67-186-35-246.hsd1.pa.comcast.net) (Quit: linclark)
- # [23:48] * Quits: hasather_ (~hasather_@cm-84.208.71.130.getinternet.no) (Ping timeout: 255 seconds)
- # [23:52] * Quits: Stevef_ (~chatzilla@cpc20-nmal18-2-0-cust76.19-2.cable.virginmedia.com) (Ping timeout: 276 seconds)
- # [23:55] * Quits: gwicke (~gabriel@wikimedia/gwicke) (Ping timeout: 250 seconds)
- # [23:55] * Joins: gwicke (~gabriel@wikimedia/gwicke)
- # [23:55] * Joins: tomasf (~tom@2002:55e5:db36:0:8851:539c:69b7:5340)
- # [23:56] <Hixie> Any quirks mode spec people around?
- # [23:57] * jonlee is now known as jonlee|afk
- # Session Close: Thu Jul 26 00:00:00 2012
The end :)