/irc-logs / w3c / #webapps / 2014-09-03 / end

Options:

  1. # Session Start: Wed Sep 03 00:00:00 2014
  2. # Session Ident: #webapps
  3. # [00:00] * Joins: lmclister (~lmclister@public.cloak)
  4. # [00:00] * Quits: lmcliste_ (~lmclister@public.cloak) (Client closed connection)
  5. # [00:00] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
  6. # [00:01] * Joins: lmclister (~lmclister@public.cloak)
  7. # [00:08] * heycam is now known as heycam|away
  8. # [00:10] * heycam|away is now known as heycam
  9. # [00:21] * Joins: marcosc (~marcosc@public.cloak)
  10. # [00:30] * Quits: karl (~karlcow@public.cloak) (":tiuQ tiuq sah woclrak")
  11. # [00:35] * Joins: lmcliste_ (~lmclister@public.cloak)
  12. # [00:35] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
  13. # [00:37] * Joins: igrigorik (~sid16869@public.cloak)
  14. # [00:57] * Joins: karl (~karlcow@public.cloak)
  15. # [00:58] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
  16. # [01:10] * Joins: Lachy (~Lachy@public.cloak)
  17. # [01:25] * Joins: lgombos_ (~gombos@public.cloak)
  18. # [01:25] * Quits: lgombos (~gombos@public.cloak) (lgombos)
  19. # [01:43] * Joins: benjamp (~benjamp@public.cloak)
  20. # [01:51] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
  21. # [01:57] * Quits: sicking (~sicking@public.cloak) (sicking)
  22. # [01:58] * Joins: sicking (~sicking@public.cloak)
  23. # [01:58] * Quits: tantek (~tantek@public.cloak) (tantek)
  24. # [01:58] * Joins: masayuki (~masayuki@public.cloak)
  25. # [02:06] * Joins: Travis (~Travis@public.cloak)
  26. # [02:07] <Travis> Waiting to see if anyone from D3E shows up...
  27. # [02:08] <masayuki> Travis: hi
  28. # [02:10] <Travis> Hi! I trust everything's going well with the Firefox implementation of DOM L3 Events?
  29. # [02:11] <masayuki> Travis: I'm still waiting some spec bugs to be fixed...
  30. # [02:12] * Joins: garykac (~garykac@public.cloak)
  31. # [02:12] * Parts: benjamp (~benjamp@public.cloak) (benjamp)
  32. # [02:13] <Travis> garykac: suggests we figure out where we are.
  33. # [02:13] * Quits: lmcliste_ (~lmclister@public.cloak) ("")
  34. # [02:13] * Joins: Zakim (zakim@public.cloak)
  35. # [02:13] <Travis> zakim, this meeting spans midnight
  36. # [02:13] <Zakim> I don't understand 'this meeting spans midnight', Travis
  37. # [02:13] * Joins: RRSAgent (rrsagent@public.cloak)
  38. # [02:13] <RRSAgent> logging to http://www.w3.org/2014/09/03-webapps-irc
  39. # [02:13] <Travis> rrsagent, this meeting spans midnight
  40. # [02:13] <RRSAgent> ok, Travis; I will not start a new log at midnight
  41. # [02:13] <Travis> Scribe: Travis
  42. # [02:13] <Travis> Present+ Travis
  43. # [02:14] <Travis> Present+ masayuki
  44. # [02:14] <Travis> Present+ garykac
  45. # [02:14] <Travis> Topic: Touch/Mouse soup on the web
  46. # [02:15] <Travis> garykac: Sites basically say, if touch, use touch (don't use mouse). If mouse, don't use touch
  47. # [02:15] <Travis> ... breaks a lot of sites.
  48. # [02:16] <Travis> ... There was a proposal to extend mouse with some touch thing.
  49. # [02:16] <Travis> ...Seems related to input event's "who fired you"?
  50. # [02:17] <Travis> ...adding a boolean to input event for similar reasons could be a solution.
  51. # [02:17] <garykac> For context: http://lists.w3.org/Archives/Public/www-dom/2014JulSep/0100.html
  52. # [02:19] <Travis> (If things are a little scattered, it's because we haven't been at this for a few weeks now... :-)
  53. # [02:22] <garykac> For more context:
  54. # [02:22] <garykac> We had a request recently to include the KeyboardEvent info in the input events.
  55. # [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.
  56. # [02:23] <garykac> The specific example given was distinguishing between input events from key events vs. cut/copy/paste from context menu.
  57. # [02:23] <garykac> We could add 'isDerivedFromTouchEvent' and 'isDerivedFromKeyEvent' boolean properties to handle these cases.
  58. # [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.
  59. # [02:25] <garykac> (edit: I said 'isDerivedFromTouchEvent' above but I meant something like 'isDerivedFromMenuEvent')
  60. # [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.
  61. # [02:26] <garykac> And actually Rick's proposal uses 'derivedFromXxxEvent' -- whatever we choose, we should be consistent with the naming.
  62. # [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.
  63. # [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.
  64. # [02:37] <masayuki> And "menu" is too specific...
  65. # [02:37] <garykac> It's not exactly the same, but the motivation was related: not wanting to double-handle events.
  66. # [02:38] <garykac> I'm not convinced it's important to resolve this, but I wanted to bring it up.
  67. # [02:41] * Quits: ArtB (~abarsto@public.cloak) ("Leaving.")
  68. # [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?
  69. # [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.
  70. # [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).
  71. # [02:45] * Quits: jsbell_ (~jsbell@public.cloak) ("There's no place like home...")
  72. # [02:48] * heycam is now known as heycam|away
  73. # [02:48] <garykac> WRT 26611 (adding Zoom event), I think that we'll need to punt that into UI Events.
  74. # [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.
  75. # [02:49] <masayuki> garykac: I agree.
  76. # [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?
  77. # [02:50] * Travis http://www.w3.org/2014/11/TPAC/
  78. # [02:51] <Travis> Going once?
  79. # [02:51] <garykac> Meet again in 2 weeks?
  80. # [02:51] <garykac> At that time, we should go through the bugs and review our status.
  81. # [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.
  82. # [02:51] <Travis> Works for me; should give me some time to address that D3E bug.
  83. # [02:53] <garykac> OK. We'll look at those first thing next time. I'll try to look them over between now and then.
  84. # [02:53] <garykac> Thansk!
  85. # [02:53] <garykac> s/Thansk/Thanks/
  86. # [02:53] <Travis> See you all in two weeks!
  87. # [02:53] <masayuki> See you!
  88. # [02:54] <Travis> rrsagent, make the minutes
  89. # [02:54] <RRSAgent> I have made the request to generate http://www.w3.org/2014/09/03-webapps-minutes.html Travis
  90. # [02:54] <Travis> rrsagent, make logs public
  91. # [02:54] <RRSAgent> I have made the request, Travis
  92. # [02:55] * Joins: tantek (~tantek@public.cloak)
  93. # [02:56] * heycam|away is now known as heycam
  94. # [02:59] * Quits: Travis (~Travis@public.cloak) ("Page closed")
  95. # [03:04] * Quits: garykac (~garykac@public.cloak) (Ping timeout: 180 seconds)
  96. # [03:08] * Disconnected
  97. # [03:46] * Attempting to rejoin channel #webapps
  98. # [03:46] * Rejoined channel #webapps
  99. # [03:46] * Topic is 'WebAppsWG; this channel is logged: http://krijnhoetmer.nl/irc-logs/webapps/'
  100. # [03:46] * Set by ArtB on Wed Jul 16 22:50:29
  101. # [03:46] * Joins: marcos_home_ (~marcosc@public.cloak)
  102. # [03:46] * Joins: shepazu (schepers@public.cloak)
  103. # [03:46] * Joins: terri (~terri@public.cloak)
  104. # [03:46] * Joins: renoirb (renoirb@public.cloak)
  105. # [03:47] * Joins: mounir (~mounir@public.cloak)
  106. # [03:48] * Joins: gsnedders (~gsnedders@public.cloak)
  107. # [03:48] * Joins: Hixie (~ianh@public.cloak)
  108. # [03:49] * Joins: decadance (~decadance@public.cloak)
  109. # [03:50] * Joins: MikeSmith (~MikeSmith@public.cloak)
  110. # [03:50] * Joins: tantek (~tantek@public.cloak)
  111. # [03:50] * Joins: bryan_ (~uid15860@public.cloak)
  112. # [03:50] * Joins: dcooney__ (~sid20727@public.cloak)
  113. # [03:50] * Joins: FerasM__ (~sid28672@public.cloak)
  114. # [03:50] * Joins: scheib (~sid4467@public.cloak)
  115. # [03:50] * Joins: pdr__ (~sid7901@public.cloak)
  116. # [03:50] * Joins: krit (~sid15081@public.cloak)
  117. # [03:50] * Joins: cabanier (~sid15093@public.cloak)
  118. # [03:50] * Joins: mkwst___ (~sid395@public.cloak)
  119. # [03:50] * Joins: igrigorik (~sid16869@public.cloak)
  120. # [03:50] * Joins: jsbell_ (~sid6276@public.cloak)
  121. # [03:50] * Joins: astearns_ (~sid15080@public.cloak)
  122. # [03:50] * Joins: tyoshino_ (~sid19222@public.cloak)
  123. # [03:50] * Joins: Domenic (~sid10976@public.cloak)
  124. # [03:51] * Joins: cwilso (~sid10206@public.cloak)
  125. # [03:51] * Joins: timeless (~sid4015@public.cloak)
  126. # [03:51] * Joins: hayato_ (~sid20728@public.cloak)
  127. # [03:51] * Joins: tobie (~sid5692@public.cloak)
  128. # [03:53] * Joins: kochi (~kochi@public.cloak)
  129. # [03:54] * Quits: sicking (~sicking@public.cloak) (sicking)
  130. # [04:05] * heycam is now known as heycam|away
  131. # [04:06] * Joins: lgombos (~gombos@public.cloak)
  132. # [04:06] * Quits: lgombos (~gombos@public.cloak) ("Leaving")
  133. # [04:06] * Joins: lgombos_ (~gombos@public.cloak)
  134. # [04:09] * Quits: karl (~karlcow@public.cloak) (":tiuQ tiuq sah woclrak")
  135. # [04:09] * Quits: lgombos_ (~gombos@public.cloak) (Client closed connection)
  136. # [04:25] * Joins: lgombos_ (~gombos@public.cloak)
  137. # [04:42] * Joins: karl (~karlcow@public.cloak)
  138. # [06:02] * heycam|away is now known as heycam
  139. # [06:02] * Joins: wonsuk (~uid27693@public.cloak)
  140. # [07:16] * heycam is now known as heycam|away
  141. # [08:10] * Quits: lgombos_ (~gombos@public.cloak) (Ping timeout: 180 seconds)
  142. # [08:49] * Joins: lgombos (~gombos@public.cloak)
  143. # [09:00] * Joins: dom (dom@public.cloak)
  144. # [09:14] * Quits: wonsuk (~uid27693@public.cloak) ("Connection closed for inactivity")
  145. # [09:18] * Quits: lgombos (~gombos@public.cloak) (Ping timeout: 180 seconds)
  146. # [09:28] * Joins: marcos_h_ (~marcosc@public.cloak)
  147. # [09:31] * Quits: marcos_home_ (~marcosc@public.cloak) (Ping timeout: 180 seconds)
  148. # [10:03] * Zakim excuses himself; his presence no longer seems to be needed
  149. # [10:03] * Parts: Zakim (zakim@public.cloak) (Zakim)
  150. # [10:07] * Joins: Lachy (~Lachy@public.cloak)
  151. # [10:30] * mkwst___ is now known as mkwst
  152. # [11:07] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
  153. # [11:30] * Joins: Lachy (~Lachy@public.cloak)
  154. # [11:32] * Joins: smaug (~chatzilla@public.cloak)
  155. # [11:39] * Parts: kochi (~kochi@public.cloak) (kochi)
  156. # [11:41] * Quits: tantek (~tantek@public.cloak) (tantek)
  157. # [11:44] * Joins: kochi (~kochi@public.cloak)
  158. # [11:44] * Joins: kochi1 (~kochi@public.cloak)
  159. # [12:02] * Quits: Lachy (~Lachy@public.cloak) ("Textual IRC Client: www.textualapp.com")
  160. # [12:23] * Joins: abarsto (~abarsto@public.cloak)
  161. # [12:23] * abarsto is now known as ArtB
  162. # [12:36] * Quits: smaug (~chatzilla@public.cloak) (Client closed connection)
  163. # [12:36] * Joins: smaug (~chatzilla@public.cloak)
  164. # [12:40] * Joins: Lachy (~Lachy@public.cloak)
  165. # [13:13] <ArtB> RRSAgent, bye
  166. # [13:13] <RRSAgent> I see no action items
  167. # [13:13] * Parts: RRSAgent (rrsagent@public.cloak) (RRSAgent)
  168. # [13:20] * Quits: smaug (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
  169. # [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).
  170. # [13:36] <Yves> let me check who is the maintainer
  171. # [13:37] <Yves> ah, plh. let me check if I can approve
  172. # [13:39] <Yves> done
  173. # [13:41] <ArtB> thanks yves!
  174. # [13:42] <Yves> now let's hope plh won't appove them in a different way :)
  175. # [13:56] <ArtB> :-)
  176. # [14:25] * Joins: tantek (~tantek@public.cloak)
  177. # [14:32] * Quits: tantek (~tantek@public.cloak) (Ping timeout: 180 seconds)
  178. # [14:33] * Joins: lgombos (~gombos@public.cloak)
  179. # [14:39] * Joins: smaug (~chatzilla@public.cloak)
  180. # [14:49] * Quits: lgombos (~gombos@public.cloak) (Client closed connection)
  181. # [15:03] * Joins: lgombos (~gombos@public.cloak)
  182. # [15:13] * Quits: lgombos (~gombos@public.cloak) ("Leaving")
  183. # [15:13] * Joins: lgombos (~gombos@public.cloak)
  184. # [15:31] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
  185. # [15:31] * Joins: marcosc (~marcosc@public.cloak)
  186. # [15:32] * Joins: marcosc_ (~marcosc@public.cloak)
  187. # [15:32] * Quits: marcosc (~marcosc@public.cloak) (Client closed connection)
  188. # [16:38] * Joins: anssik (~uid10742@public.cloak)
  189. # [16:46] * Quits: marcosc_ (~marcosc@public.cloak) ("")
  190. # [17:04] * Joins: marcosc (~marcosc@public.cloak)
  191. # [17:06] * Joins: marcosc_ (~marcosc@public.cloak)
  192. # [17:11] * Quits: marcosc (~marcosc@public.cloak) (Ping timeout: 180 seconds)
  193. # [17:11] * Quits: dom (dom@public.cloak) (Ping timeout: 180 seconds)
  194. # [17:36] * Joins: dom (dom@public.cloak)
  195. # [17:43] * Quits: dom (dom@public.cloak) ("")
  196. # [17:53] * Quits: ArtB (~abarsto@public.cloak) ("Leaving.")
  197. # [18:08] * Joins: dka (~dka@public.cloak)
  198. # [18:09] * Joins: hober (~ted@public.cloak)
  199. # [18:09] * Joins: lmclister (~lmclister@public.cloak)
  200. # [18:14] * Joins: abarsto (~abarsto@public.cloak)
  201. # [18:14] * abarsto is now known as ArtB
  202. # [18:23] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
  203. # [18:56] * Joins: tantek (~tantek@public.cloak)
  204. # [19:04] * Joins: lmcliste_ (~lmclister@public.cloak)
  205. # [19:04] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
  206. # [19:08] * Quits: tantek (~tantek@public.cloak) (tantek)
  207. # [19:13] * Joins: jsbell (~jsbell@public.cloak)
  208. # [19:17] * Joins: lmclister (~lmclister@public.cloak)
  209. # [19:17] * Quits: lmcliste_ (~lmclister@public.cloak) (Client closed connection)
  210. # [19:29] * Joins: marcosc (~marcosc@public.cloak)
  211. # [19:31] * Joins: marcosc__ (~marcosc@public.cloak)
  212. # [19:33] * Quits: marcosc_ (~marcosc@public.cloak) (Client closed connection)
  213. # [19:38] * Quits: marcosc (~marcosc@public.cloak) (Ping timeout: 180 seconds)
  214. # [19:49] * Quits: anssik (~uid10742@public.cloak) ("Connection closed for inactivity")
  215. # [20:11] * Joins: sicking (~sicking@public.cloak)
  216. # [20:13] * Quits: sicking (~sicking@public.cloak) (sicking)
  217. # [20:15] * Joins: sicking (~sicking@public.cloak)
  218. # [20:20] * Quits: dka (~dka@public.cloak) (dka)
  219. # [20:35] * Joins: dka (~dka@public.cloak)
  220. # [20:35] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
  221. # [20:36] * Joins: lmclister (~lmclister@public.cloak)
  222. # [20:50] * Joins: lmcliste_ (~lmclister@public.cloak)
  223. # [20:50] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
  224. # [21:01] * Joins: darobin (rberjon@public.cloak)
  225. # [21:07] * Quits: sicking (~sicking@public.cloak) (sicking)
  226. # [21:07] * Joins: lmclister (~lmclister@public.cloak)
  227. # [21:07] * Quits: lmcliste_ (~lmclister@public.cloak) (Client closed connection)
  228. # [21:08] * Joins: sicking (~sicking@public.cloak)
  229. # [21:24] * Quits: sicking (~sicking@public.cloak) (sicking)
  230. # [21:39] * Joins: sicking (~sicking@public.cloak)
  231. # [21:55] * Quits: darobin (rberjon@public.cloak) (Client closed connection)
  232. # [22:03] * Joins: darobin (rberjon@public.cloak)
  233. # [22:21] * Joins: Lachy (~Lachy@public.cloak)
  234. # [22:41] * Quits: dka (~dka@public.cloak) (dka)
  235. # [22:59] * Quits: darobin (rberjon@public.cloak) (Client closed connection)
  236. # [22:59] * Joins: darobin (rberjon@public.cloak)
  237. # [23:06] * Quits: darobin (rberjon@public.cloak) (Ping timeout: 180 seconds)
  238. # [23:15] * Quits: Lachy (~Lachy@public.cloak) ("My MacBook Pro has gone to sleep. ZZZzzz…")
  239. # [23:28] * Joins: Lachy (~Lachy@public.cloak)
  240. # [23:35] * Joins: lmcliste_ (~lmclister@public.cloak)
  241. # [23:35] * Quits: lmclister (~lmclister@public.cloak) (Client closed connection)
  242. # [23:53] * Joins: lmclister (~lmclister@public.cloak)
  243. # [23:53] * Quits: lmcliste_ (~lmclister@public.cloak) (Client closed connection)
  244. # Session Close: Thu Sep 04 00:00:00 2014

The end :)