/irc-logs / w3c / #webapps / 2014-09-03 / end
Options:
- # Session Start: Wed Sep 03 00:00:00 2014
- # Session Ident: #webapps
- # [00:00] * Joins: lmclister (~lmclister@public.cloak)
- # [00:00] * Quits: lmcliste_ (~lmclister@public.cloak) (Client closed connection)
- # [00:00] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
- # [00:01] * Joins: lmclister (~lmclister@public.cloak)
- # [00:08] * heycam is now known as heycam|away
- # [00:10] * heycam|away is now known as heycam
- # [00:21] * Joins: marcosc (~marcosc@public.cloak)
- # [00:30] * Quits: karl (~karlcow@public.cloak) (":tiuQ tiuq sah woclrak")
- # [00:35] * Joins: lmcliste_ (~lmclister@public.cloak)
- # [00:35] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
- # [00:37] * Joins: igrigorik (~sid16869@public.cloak)
- # [00:57] * Joins: karl (~karlcow@public.cloak)
- # [00:58] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [01:10] * Joins: Lachy (~Lachy@public.cloak)
- # [01:25] * Joins: lgombos_ (~gombos@public.cloak)
- # [01:25] * Quits: lgombos (~gombos@public.cloak) (lgombos)
- # [01:43] * Joins: benjamp (~benjamp@public.cloak)
- # [01:51] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [01:57] * Quits: sicking (~sicking@public.cloak) (sicking)
- # [01:58] * Joins: sicking (~sicking@public.cloak)
- # [01:58] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [01:58] * Joins: masayuki (~masayuki@public.cloak)
- # [02:06] * Joins: Travis (~Travis@public.cloak)
- # [02:07] <Travis> Waiting to see if anyone from D3E shows up...
- # [02:08] <masayuki> Travis: hi
- # [02:10] <Travis> Hi! I trust everything's going well with the Firefox implementation of DOM L3 Events?
- # [02:11] <masayuki> Travis: I'm still waiting some spec bugs to be fixed...
- # [02:12] * Joins: garykac (~garykac@public.cloak)
- # [02:12] * Parts: benjamp (~benjamp@public.cloak) (benjamp)
- # [02:13] <Travis> garykac: suggests we figure out where we are.
- # [02:13] * Quits: lmcliste_ (~lmclister@public.cloak) ("")
- # [02:13] * Joins: Zakim (zakim@public.cloak)
- # [02:13] <Travis> zakim, this meeting spans midnight
- # [02:13] <Zakim> I don't understand 'this meeting spans midnight', Travis
- # [02:13] * Joins: RRSAgent (rrsagent@public.cloak)
- # [02:13] <RRSAgent> logging to http://www.w3.org/2014/09/03-webapps-irc
- # [02:13] <Travis> rrsagent, this meeting spans midnight
- # [02:13] <RRSAgent> ok, Travis; I will not start a new log at midnight
- # [02:13] <Travis> Scribe: Travis
- # [02:13] <Travis> Present+ Travis
- # [02:14] <Travis> Present+ masayuki
- # [02:14] <Travis> Present+ garykac
- # [02:14] <Travis> Topic: Touch/Mouse soup on the web
- # [02:15] <Travis> garykac: Sites basically say, if touch, use touch (don't use mouse). If mouse, don't use touch
- # [02:15] <Travis> ... breaks a lot of sites.
- # [02:16] <Travis> ... There was a proposal to extend mouse with some touch thing.
- # [02:16] <Travis> ...Seems related to input event's "who fired you"?
- # [02:17] <Travis> ...adding a boolean to input event for similar reasons could be a solution.
- # [02:17] <garykac> For context: http://lists.w3.org/Archives/Public/www-dom/2014JulSep/0100.html
- # [02:19] <Travis> (If things are a little scattered, it's because we haven't been at this for a few weeks now... :-)
- # [02:22] <garykac> For more context:
- # [02:22] <garykac> We had a request recently to include the KeyboardEvent info in the input events.
- # [02:22] <garykac> The user stated that they wanted the key event info available in the input event so that they could write a single handler, but the real problem was that they couldn't handle both events (key and input) because they would end up double-handling all the key events.
- # [02:23] <garykac> The specific example given was distinguishing between input events from key events vs. cut/copy/paste from context menu.
- # [02:23] <garykac> We could add 'isDerivedFromTouchEvent' and 'isDerivedFromKeyEvent' boolean properties to handle these cases.
- # [02:24] <garykac> The context link I gave earlier was about distinguishing between 'real' mouse events and touch-generated mouse events, but the problem is very similar to our case.
- # [02:25] <garykac> (edit: I said 'isDerivedFromTouchEvent' above but I meant something like 'isDerivedFromMenuEvent')
- # [02:26] <Travis> In general, it looks like there is a problem of not having enough context in a generic 'input' (or even beforeinput) event.
- # [02:26] <garykac> And actually Rick's proposal uses 'derivedFromXxxEvent' -- whatever we choose, we should be consistent with the naming.
- # [02:26] <Travis> It seems that authors want to simplify and use only one event to handle all the types of input modalities from various sources. Naturally, having the right context will be important.
- # [02:36] <masayuki> I think that the mouse event case is useful but I have no idea why it's useful for input event for distinguishing key vs. menu because just handling input event is enough. This is different from mouse vs. touch case.
- # [02:37] <masayuki> And "menu" is too specific...
- # [02:37] <garykac> It's not exactly the same, but the motivation was related: not wanting to double-handle events.
- # [02:38] <garykac> I'm not convinced it's important to resolve this, but I wanted to bring it up.
- # [02:41] * Quits: ArtB (~abarsto@public.cloak) ("Leaving.")
- # [02:42] <masayuki> The mosue events derived from touch device are fired for emulation. So, it could be just |MouseEvent.isEmlated|. And also WheelEvent too?
- # [02:43] <Travis> Gary and I are discussing what one bug I could focus on fixing this week; the "define when it's safe to fire beforeinput" is the one we've selected.
- # [02:45] <garykac> We also need to start thinking about tests and testing since that will inform the spec. We want the spec to document the order in which events fire (as much as we can).
- # [02:45] * Quits: jsbell_ (~jsbell@public.cloak) ("There's no place like home...")
- # [02:48] * heycam is now known as heycam|away
- # [02:48] <garykac> WRT 26611 (adding Zoom event), I think that we'll need to punt that into UI Events.
- # [02:49] <garykac> I like it, but there are a number of small issues that will need to be resolved that will distract us from finishing the core of DOM3Events.
- # [02:49] <masayuki> garykac: I agree.
- # [02:49] <Travis> I have no specific agenda for anything else to discuss as a group. Is there anything else (masayuki) that we should spend our time on today?
- # [02:50] * Travis http://www.w3.org/2014/11/TPAC/
- # [02:51] <Travis> Going once?
- # [02:51] <garykac> Meet again in 2 weeks?
- # [02:51] <garykac> At that time, we should go through the bugs and review our status.
- # [02:51] <masayuki> No. But let me tell about that I'm wating bug 24739, bug 26141 and bug 26218 for updating our D3E implementation.
- # [02:51] <Travis> Works for me; should give me some time to address that D3E bug.
- # [02:53] <garykac> OK. We'll look at those first thing next time. I'll try to look them over between now and then.
- # [02:53] <garykac> Thansk!
- # [02:53] <garykac> s/Thansk/Thanks/
- # [02:53] <Travis> See you all in two weeks!
- # [02:53] <masayuki> See you!
- # [02:54] <Travis> rrsagent, make the minutes
- # [02:54] <RRSAgent> I have made the request to generate http://www.w3.org/2014/09/03-webapps-minutes.html Travis
- # [02:54] <Travis> rrsagent, make logs public
- # [02:54] <RRSAgent> I have made the request, Travis
- # [02:55] * Joins: tantek (~tantek@public.cloak)
- # [02:56] * heycam|away is now known as heycam
- # [02:59] * Quits: Travis (~Travis@public.cloak) ("Page closed")
- # [03:04] * Quits: garykac (~garykac@public.cloak) (Ping timeout: 180 seconds)
- # [03:08] * Disconnected
- # [03:46] * Attempting to rejoin channel #webapps
- # [03:46] * Rejoined channel #webapps
- # [03:46] * Topic is 'WebAppsWG; this channel is logged: http://krijnhoetmer.nl/irc-logs/webapps/'
- # [03:46] * Set by ArtB on Wed Jul 16 22:50:29
- # [03:46] * Joins: marcos_home_ (~marcosc@public.cloak)
- # [03:46] * Joins: shepazu (schepers@public.cloak)
- # [03:46] * Joins: terri (~terri@public.cloak)
- # [03:46] * Joins: renoirb (renoirb@public.cloak)
- # [03:47] * Joins: mounir (~mounir@public.cloak)
- # [03:48] * Joins: gsnedders (~gsnedders@public.cloak)
- # [03:48] * Joins: Hixie (~ianh@public.cloak)
- # [03:49] * Joins: decadance (~decadance@public.cloak)
- # [03:50] * Joins: MikeSmith (~MikeSmith@public.cloak)
- # [03:50] * Joins: tantek (~tantek@public.cloak)
- # [03:50] * Joins: bryan_ (~uid15860@public.cloak)
- # [03:50] * Joins: dcooney__ (~sid20727@public.cloak)
- # [03:50] * Joins: FerasM__ (~sid28672@public.cloak)
- # [03:50] * Joins: scheib (~sid4467@public.cloak)
- # [03:50] * Joins: pdr__ (~sid7901@public.cloak)
- # [03:50] * Joins: krit (~sid15081@public.cloak)
- # [03:50] * Joins: cabanier (~sid15093@public.cloak)
- # [03:50] * Joins: mkwst___ (~sid395@public.cloak)
- # [03:50] * Joins: igrigorik (~sid16869@public.cloak)
- # [03:50] * Joins: jsbell_ (~sid6276@public.cloak)
- # [03:50] * Joins: astearns_ (~sid15080@public.cloak)
- # [03:50] * Joins: tyoshino_ (~sid19222@public.cloak)
- # [03:50] * Joins: Domenic (~sid10976@public.cloak)
- # [03:51] * Joins: cwilso (~sid10206@public.cloak)
- # [03:51] * Joins: timeless (~sid4015@public.cloak)
- # [03:51] * Joins: hayato_ (~sid20728@public.cloak)
- # [03:51] * Joins: tobie (~sid5692@public.cloak)
- # [03:53] * Joins: kochi (~kochi@public.cloak)
- # [03:54] * Quits: sicking (~sicking@public.cloak) (sicking)
- # [04:05] * heycam is now known as heycam|away
- # [04:06] * Joins: lgombos (~gombos@public.cloak)
- # [04:06] * Quits: lgombos (~gombos@public.cloak) ("Leaving")
- # [04:06] * Joins: lgombos_ (~gombos@public.cloak)
- # [04:09] * Quits: karl (~karlcow@public.cloak) (":tiuQ tiuq sah woclrak")
- # [04:09] * Quits: lgombos_ (~gombos@public.cloak) (Client closed connection)
- # [04:25] * Joins: lgombos_ (~gombos@public.cloak)
- # [04:42] * Joins: karl (~karlcow@public.cloak)
- # [06:02] * heycam|away is now known as heycam
- # [06:02] * Joins: wonsuk (~uid27693@public.cloak)
- # [07:16] * heycam is now known as heycam|away
- # [08:10] * Quits: lgombos_ (~gombos@public.cloak) (Ping timeout: 180 seconds)
- # [08:49] * Joins: lgombos (~gombos@public.cloak)
- # [09:00] * Joins: dom (dom@public.cloak)
- # [09:14] * Quits: wonsuk (~uid27693@public.cloak) ("Connection closed for inactivity")
- # [09:18] * Quits: lgombos (~gombos@public.cloak) (Ping timeout: 180 seconds)
- # [09:28] * Joins: marcos_h_ (~marcosc@public.cloak)
- # [09:31] * Quits: marcos_home_ (~marcosc@public.cloak) (Ping timeout: 180 seconds)
- # [10:03] * Zakim excuses himself; his presence no longer seems to be needed
- # [10:03] * Parts: Zakim (zakim@public.cloak) (Zakim)
- # [10:07] * Joins: Lachy (~Lachy@public.cloak)
- # [10:30] * mkwst___ is now known as mkwst
- # [11:07] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [11:30] * Joins: Lachy (~Lachy@public.cloak)
- # [11:32] * Joins: smaug (~chatzilla@public.cloak)
- # [11:39] * Parts: kochi (~kochi@public.cloak) (kochi)
- # [11:41] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [11:44] * Joins: kochi (~kochi@public.cloak)
- # [11:44] * Joins: kochi1 (~kochi@public.cloak)
- # [12:02] * Quits: Lachy (~Lachy@public.cloak) ("Textual IRC Client: www.textualapp.com")
- # [12:23] * Joins: abarsto (~abarsto@public.cloak)
- # [12:23] * abarsto is now known as ArtB
- # [12:36] * Quits: smaug (~chatzilla@public.cloak) (Client closed connection)
- # [12:36] * Joins: smaug (~chatzilla@public.cloak)
- # [12:40] * Joins: Lachy (~Lachy@public.cloak)
- # [13:13] <ArtB> RRSAgent, bye
- # [13:13] <RRSAgent> I see no action items
- # [13:13] * Parts: RRSAgent (rrsagent@public.cloak) (RRSAgent)
- # [13:20] * Quits: smaug (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [13:21] <ArtB> shepazu, yves, xiaoqian - would you please check the www-dom email for an e-mail from Robert Kroeger? The following email implies Robert's e-mail was not sent to the www-dom list: http://lists.w3.org/Archives/Public/www-dom/2014JulSep/0113.html (and thus is perhaps awaiting `moderator` action).
- # [13:36] <Yves> let me check who is the maintainer
- # [13:37] <Yves> ah, plh. let me check if I can approve
- # [13:39] <Yves> done
- # [13:41] <ArtB> thanks yves!
- # [13:42] <Yves> now let's hope plh won't appove them in a different way :)
- # [13:56] <ArtB> :-)
- # [14:25] * Joins: tantek (~tantek@public.cloak)
- # [14:32] * Quits: tantek (~tantek@public.cloak) (Ping timeout: 180 seconds)
- # [14:33] * Joins: lgombos (~gombos@public.cloak)
- # [14:39] * Joins: smaug (~chatzilla@public.cloak)
- # [14:49] * Quits: lgombos (~gombos@public.cloak) (Client closed connection)
- # [15:03] * Joins: lgombos (~gombos@public.cloak)
- # [15:13] * Quits: lgombos (~gombos@public.cloak) ("Leaving")
- # [15:13] * Joins: lgombos (~gombos@public.cloak)
- # [15:31] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
- # [15:31] * Joins: marcosc (~marcosc@public.cloak)
- # [15:32] * Joins: marcosc_ (~marcosc@public.cloak)
- # [15:32] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
- # [16:38] * Joins: anssik (~uid10742@public.cloak)
- # [16:46] * Quits: marcosc_ (~marcosc@public.cloak) ("")
- # [17:04] * Joins: marcosc (~marcosc@public.cloak)
- # [17:06] * Joins: marcosc_ (~marcosc@public.cloak)
- # [17:11] * Quits: marcosc (~marcosc@public.cloak) (Ping timeout: 180 seconds)
- # [17:11] * Quits: dom (dom@public.cloak) (Ping timeout: 180 seconds)
- # [17:36] * Joins: dom (dom@public.cloak)
- # [17:43] * Quits: dom (dom@public.cloak) ("")
- # [17:53] * Quits: ArtB (~abarsto@public.cloak) ("Leaving.")
- # [18:08] * Joins: dka (~dka@public.cloak)
- # [18:09] * Joins: hober (~ted@public.cloak)
- # [18:09] * Joins: lmclister (~lmclister@public.cloak)
- # [18:14] * Joins: abarsto (~abarsto@public.cloak)
- # [18:14] * abarsto is now known as ArtB
- # [18:23] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [18:56] * Joins: tantek (~tantek@public.cloak)
- # [19:04] * Joins: lmcliste_ (~lmclister@public.cloak)
- # [19:04] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
- # [19:08] * Quits: tantek (~tantek@public.cloak) (tantek)
- # [19:13] * Joins: jsbell (~jsbell@public.cloak)
- # [19:17] * Joins: lmclister (~lmclister@public.cloak)
- # [19:17] * Quits: lmcliste_ (~lmclister@public.cloak) (Client closed connection)
- # [19:29] * Joins: marcosc (~marcosc@public.cloak)
- # [19:31] * Joins: marcosc__ (~marcosc@public.cloak)
- # [19:33] * Quits: marcosc_ (~marcosc@public.cloak) (Client closed connection)
- # [19:38] * Quits: marcosc (~marcosc@public.cloak) (Ping timeout: 180 seconds)
- # [19:49] * Quits: anssik (~uid10742@public.cloak) ("Connection closed for inactivity")
- # [20:11] * Joins: sicking (~sicking@public.cloak)
- # [20:13] * Quits: sicking (~sicking@public.cloak) (sicking)
- # [20:15] * Joins: sicking (~sicking@public.cloak)
- # [20:20] * Quits: dka (~dka@public.cloak) (dka)
- # [20:35] * Joins: dka (~dka@public.cloak)
- # [20:35] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
- # [20:36] * Joins: lmclister (~lmclister@public.cloak)
- # [20:50] * Joins: lmcliste_ (~lmclister@public.cloak)
- # [20:50] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
- # [21:01] * Joins: darobin (rberjon@public.cloak)
- # [21:07] * Quits: sicking (~sicking@public.cloak) (sicking)
- # [21:07] * Joins: lmclister (~lmclister@public.cloak)
- # [21:07] * Quits: lmcliste_ (~lmclister@public.cloak) (Client closed connection)
- # [21:08] * Joins: sicking (~sicking@public.cloak)
- # [21:24] * Quits: sicking (~sicking@public.cloak) (sicking)
- # [21:39] * Joins: sicking (~sicking@public.cloak)
- # [21:55] * Quits: darobin (rberjon@public.cloak) (Client closed connection)
- # [22:03] * Joins: darobin (rberjon@public.cloak)
- # [22:21] * Joins: Lachy (~Lachy@public.cloak)
- # [22:41] * Quits: dka (~dka@public.cloak) (dka)
- # [22:59] * Quits: darobin (rberjon@public.cloak) (Client closed connection)
- # [22:59] * Joins: darobin (rberjon@public.cloak)
- # [23:06] * Quits: darobin (rberjon@public.cloak) (Ping timeout: 180 seconds)
- # [23:15] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
- # [23:28] * Joins: Lachy (~Lachy@public.cloak)
- # [23:35] * Joins: lmcliste_ (~lmclister@public.cloak)
- # [23:35] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
- # [23:53] * Joins: lmclister (~lmclister@public.cloak)
- # [23:53] * Quits: lmcliste_ (~lmclister@public.cloak) (Client closed connection)
- # Session Close: Thu Sep 04 00:00:00 2014
The end :)