00:13:55 RRSAgent has joined #webapps 00:13:55 logging to http://www.w3.org/2013/07/31-webapps-irc 00:14:02 RRSAgent: this is dom3 00:14:02 I'm logging. I don't understand 'this is dom3', Travis. Try /msg RRSAgent help 00:14:19 RRSAgent, this meeting spans midnight 00:15:13 Spec should define the order of keydown, beforeinput, keypress and input for a key press and of keydown, compositionstart, beforeinput compositionupdate, compositionend, input. 00:15:29 for IME. 00:15:57 I like the order which I wrote above. 00:16:07 Masayuki: agreed 00:16:14 sounds good 00:16:28 Do we have any disagreement on the current proposal for beforeinput? 00:16:29 Excellent, that was my next question. I was going to ask you about a preferred event order. ^_^ 00:16:43 where is the definitive 'beforinput' proposal? 00:17:02 Travis: only what's in 22070 and from our last teleconf 00:19:03 I mentioned at last teleconf. Is the beforeinput is a good name? I mean that input is fired for *any* change of editor. However, before input should be fired only for the user input. 00:19:41 The beforeinput event is supposed to be general. 00:19:43 E.g., it shouldn't be fired for "Undo", "Redo" and "Paste". 00:19:51 Yes 00:19:51 I honestly can't think of a better name for it. 00:20:22 "keyinput"? 00:20:32 chaals has joined #webapps 00:20:37 yeah, speech or hand writing 00:20:49 I think "userinput"? 00:21:27 The textinput event is a special case of beforeinput. 00:21:58 The name beforeinputevent was specified elsewhere (I forget which spec makes mention of it). 00:22:51 I imagine that there was a big discussion before they came to consensus on beforeinputevent... 00:23:48 What are people's preferences for beforeinputevent vs. textinput? 00:24:13 https://dvcs.w3.org/hg/editing/raw-file/tip/editing.html mentions something on beforeInputEvent. 00:24:14 If we have textinput, do we need to always have beforeinput? 00:24:25 Is that generating too many events? 00:25:58 textinput is already implemented on IE and WebKit by different way (IIRC). So, not using "textinput" doesn't cause any compatibility issues. 00:26:23 WebKit implements 'textInput' 00:28:16 Yeah, I was confused by the case of "I" at writing testcase :( 00:28:32 What are the differences between the proposals for textinput and beforeinput? 00:28:46 textInput: 00:28:50 beforeinput is cancellable. 00:29:01 textInput is not cancellable 00:30:46 beforeinput doesn't give any indication of *what* has changed. 00:30:54 What event interface does each use? 00:31:23 IE had a "TextEvent" interface for "textInput" with fields for "data", "inputMethod", "locale". 00:32:15 beforeinput would use what? KeyboardEvent? 00:32:21 Event? 00:33:00 beforeinput _will_ need an event interface that contains the data that _will be_ inserted (if not cancelled) 00:33:56 I think that beforeinput should have attributes which stores inputting text, modifier key state and whether it's fired for key or composition. 00:34:03 textinput = i'm only interested in keyboard event 00:34:17 beforeinput = i'm interested for all user input 00:34:20 Is this right? 00:35:05 Travis: agree for the beforeinput 00:35:24 If we merge these two together into beforeinput, does that cover most scenarios? 00:36:21 Masayuki raised an issue in the bug about cutting/pasting. 00:37:13 I understood that the main purpose of beforeinput is replacing keypress event and it's available for composition too. 00:37:44 keypress is cancellable? 00:37:51 garykac: Yes 00:37:56 Travis: yes 00:38:44 Our solution to replace keypress must be cancellable. 00:38:45 marcosc has joined #webapps 00:40:01 If we made textinput cancelable, then it does effectively replace the keypress. 00:41:34 Travis: it might be possible, but I worry about the compatibility issue with older textinput (textInput). 00:41:56 Note to self: we can't just standardize keypress because we would need to change its behavior in a few areas (the return value for keyCode/charCode/firingorder?/) and those would break the web. 00:42:21 yeah, on WebKit textInput event is dispatched after DOM modification 00:42:46 Masayuki: textInput was intended as a replacement for keypress (because keypress is not consistent across browsers). beforeinput is a general way of handling input events like textinput. 00:43:15 Masayuki: Hence, it would be nice if we could merge textinput into beforeinput (to reduce the number of events fired). 00:43:32 Do we really need both textinput and beforeinput to fullfill all scenarios? 00:43:37 garykac: I don't think so. 00:43:48 garykac: yes, therefore, I believe that defining new event, beforeinput, is the best way. 00:47:12 Here's where I think we are: 00:47:16 I think that we don't need to worry about the cost of firing textinput (textInput). If the cost is expensive, the browsers should check whether there is one or more event listeners for it. 00:47:23 Add a definition for beforeinput into DOM3Events 00:47:31 Make beforeinput cancellable 00:48:02 Make beforeinput be associated with a new Event interface (BeforeInputEvent), which has at least one field for the "data" 00:48:11 Travis: but it should NOT be cancellable while composition. 00:48:29 Hmm, why? 00:48:47 (Maybe "value" or "input" -- since "data" may already be in use) 00:48:48 Masayuki: why not? what problems does it cause? 00:49:05 Travis: because we have no way to cancel only one compositionupdate of native IME on any platforms. 00:49:56 We can just make it cancelable immediately before compositionend, though. 00:50:22 Could beforeinput be fired after compositionend? 00:50:57 smaug has joined #webapps 00:52:29 typically on windows key events will be VK_PROCESS while IME is on 00:52:49 compositionend is just a notification of the result of composition. 00:53:27 I assume the each beforeinput should be followed by an 'input' event. 00:54:20 So it seems that the events should be : keydown, ... compositionbegin/update/end ... beforeinput, input 00:54:57 garykac: agree 00:54:58 Does that work? Not allowing beforeInput to fire until compositionend has signaled the end of the composition? 00:55:19 That way we could cancel beforeinput without impacting the IME events 00:55:26 garykac: If so, web apps cannot check the modified value with compositionupdate event, is it OK? 00:56:07 If they want to see the modified IME events, can't they get that info from the composition events? That seems reasonable to me. 00:56:50 I think that beforeinput should be fired immediately before compositionupdate (not cancellable) and immediately after compositionend (cancellable). 00:57:45 What's the value of firing beforeinput before compositionupdate? Can't you get everything you need from the compositionupdate event? 00:58:10 masayuki: firing beforeinput before compositionupdate, and if the beforeinput event is cancelled, user agent doesn't fire compositionupdate and doesn't update .value either? 00:58:48 That way, we don't have to define beforeinput as sometimes cancelable, but other times not-cancelable. 00:59:17 garykac: I believe that it's worthwhile web apps can handle all user input only with beforeinput even during composition. 01:00:13 masayuki: yes, I agree 01:00:35 kochi_ho_: I don't think so, even if preventDefault() of beforeinput before compositionupdate is called, browser don't change the later behavior. 01:01:08 masayuki: so compositionupdate will be dispatched anyway? 01:01:14 During compositionupdate, no input is being proposed - it's just a candidate at that point. It's not about to be inserted until the compositionend event fires. 01:01:28 So, technically, it doesn't seem like it's "input" yet. 01:01:39 kochi_ho_: I think so. 01:02:27 garykac: "input" event is also fired after compositionupdate. 01:02:36 masayuki: if beforeinput before compositionupdate is cancelled, that means the app doesn't want the .value to be modified, so if any DOM modification doesn't occur, compositionupdate won't fire either? no? 01:03:20 (if chrome/ff follow the order of composition update as IE9+) 01:03:26 Masayuki: does it make sense for 'input' to fire after each compositionupdate? I'm not sure it does. what use cases does that support? 01:04:08 garykac: apps like google suggest can only have to handle input event? 01:04:32 I think that the spec becomes a lot easier if the beforeinput/input events don't fire until after all the composition events are done. 01:04:53 kochi_ho_: If browser doesn't modify compostion string in their editor, IME has modified composition string. Such difference shouldn't occur. 01:05:47 masayuki: ah, ok, so IME has the modified string anyway. 01:06:04 kochi_ho: but apps should be able to ignore compositionevents if they're not interested in them. If beforeinput fires during the middle of composition, then I receive these extra beforeinput/input events that I'm not necessarily expecting. 01:06:11 garykac: yes. like google suggest needs the input events after compositionupdate. 01:06:50 I'm not sure it *needs* them. It could just have an eventhandler for compositonupdate events. 01:07:15 kochi_ho: yes. If we allow such state, composition string and candidate list will be different. 01:07:22 It seems like a slight convenience for an edge case at the cost of a much more complex event specification. 01:07:24 (I personally wish we have a spec that forbids modifying .value during composition...) 01:08:32 garykac: anyway, currently, all browsers fire input event after compositionupdate, IIRC. 01:09:00 But the 'input' event isn't specified anywhere! 01:09:04 masayuki: my idea for IME API is to allow js apps to draw composition string for composition update event, so beforeinput.preventDefault() can be used for the case. 01:10:52 I'm unfortable having beforeinput *sometimes* not cancellable. 01:11:47 kochi_ho_: if IME supports cancelling a compositionupdate, I don't think beforeinput before compositionupdate shouldn't be cancellable. But native IMEs are not cancellable per compositionupdate. 01:12:38 kochi_ho: So calling beforeinput.preventDefault would stop the 'input' event. would it affect any of the composition events? 01:13:02 garykac: yes 01:15:41 kochi_ho_: Hmm, sounds like browsers need to change the behavior whether the IME is native's or JS's. 01:17:36 masayuki: could you let me know the deatails offline (about native vs JS)? 01:17:42 kochi_ho_: or JS IME API should have a method whether editor draws composition string automatically. 01:18:23 kochi_ho_: Sure. 01:18:34 masayuki: ah, I meant the current state of IME API, which dropped the spec for writing IME in Javascript. 01:18:54 It would be nice if JS IME's behaved the same as native IMEs. I don't know if that's reasonable... 01:20:32 garykac: Applications (browsers) cannot touch composition if there is no API. 01:21:30 We're going to need to wrap up. 01:21:44 Sadly, we need to wrap up for today. I'm going to draft a doc that explores the different events being fired (and cancelled). I'll share this out so that we can discuss pros/cons. 01:22:07 Thanks Gary. 01:22:29 thanks 01:22:35 thanks 01:22:46 We meet again on the phone in 2 weeks. 01:22:57 Kochi_ho/masayuki: Thanks for your input/expertise. 01:23:03 Perhaps we could have Gary's doc in 1 week over email to begin looking through? 01:23:11 garykac: you're welcome. 01:23:31 See you all next time: Aug 13, 2013! 01:23:38 See you then! 01:23:42 Ah, wait. 01:23:54 The week is holiday week of Japan. 01:24:06 i'm available on that day 01:24:15 I'm not :-( 01:24:20 aha! 01:25:03 Let's find a time when we can all meet. 01:25:23 masayuki: when will work better? +/- a week? 01:25:42 Does August 6th work for everyone? 01:25:47 Travis: Yes, and either is OK. 01:25:49 ok for me 01:25:58 OK. 01:26:18 Let's try for Aug. 6th! 01:26:23 Done. 01:26:28 Hurray. August 6th it is. 01:26:28 Thank you! 01:27:00 rrsagent, this is DOM3 01:27:00 I'm logging. I don't understand 'this is DOM3', Travis. Try /msg RRSAgent help 01:27:46 zakim, this was DOM3 01:27:46 I don't understand 'this was DOM3', Travis 01:28:10 RRSAgent, set logs public 01:29:29 Zakim, what conferences are active? 01:29:29 I see no active conferences and none scheduled to start in the next 15 minutes 01:29:58 zakim, this conference is "DOM3" 01:29:58 sorry, Travis, I do not see a conference named '"DOM3"' in progress or scheduled at this time 01:30:27 RRSAgent, make the minutes 01:30:27 I have made the request to generate http://www.w3.org/2013/07/31-webapps-minutes.html Travis 01:30:58 RRSAgent, set minutes public 01:30:58 I'm logging. I don't understand 'set minutes public', Travis. Try /msg RRSAgent help 01:31:19 RRSAgent, set logs public 01:32:54 marcosc has joined #webapps 01:52:10 kochi_home has joined #webapps 02:27:03 marcosc has joined #webapps 03:21:12 marcosc has joined #webapps 04:03:17 cabanier has joined #webapps 04:32:53 cabanier1 has joined #webapps 05:09:30 marcosc has joined #webapps 06:03:39 marcosc has joined #webapps 06:57:48 marcosc has joined #webapps 07:20:57 Lachy has joined #webapps 07:25:25 Ms2ger has joined #webapps 07:28:15 tobie has joined #webapps 07:32:43 Zakim has left #webapps 07:40:31 marcosc has joined #webapps 07:53:08 skddc_ has joined #webapps 08:01:48 tobie has joined #webapps 09:45:54 marcosc_ has joined #webapps 10:12:49 smaug has joined #webapps 10:59:53 chaals has joined #webapps 11:20:44 abarsto has joined #webapps 11:23:35 cabanier has joined #webapps 11:31:31 ArtB: do you have a list of test facilitators somewhere? 11:31:31 (and ideally, their github handles) 11:32:03 tobie: http://www.w3.org/2008/webapps/wiki/PubStatus 11:32:25 ArtB: duh. 11:32:27 Thanks. 11:32:52 I think I asked them to send you their GH logins 11:33:26 Oh. Well. I don't recall this happening. (Which doesn't mean it hasn't) 11:34:20 ArtB, now that we've got a rec, can we deprecate it? 11:35:58 ms2ger, I don't know if their is a way to 'deprecate' a W3C REC 11:36:31 Add warning notices, like we did to the DOM2 spe... Oh wait 11:37:09 marcosc has joined #webapps 11:47:13 ArtB / Ms2ger: I've seen specs marked as obsoleted (at least in /tr.rdf) 11:48:47 I think we have been able to agree on some type of warning and get it added so it should be possible to do something like that for webstorage. 12:02:46 marcosc has joined #webapps 12:03:01 jeffh has joined #webapps 12:29:10 smaug has joined #webapps 12:45:46 skddc has joined #webapps 12:57:07 chaals1 has joined #webapps 13:01:52 skddc_ has joined #webapps 13:02:39 smaug has joined #webapps 13:13:38 chaals has joined #webapps 13:14:47 jeffh has joined #webapps 13:18:13 chaals1 has joined #webapps 13:18:24 chaals has joined #webapps 13:31:47 skddc has joined #webapps 14:10:30 skddc has joined #webapps 14:44:31 skddc has joined #webapps 14:48:17 skddc_ has joined #webapps 15:25:25 jeffh has joined #webapps 15:34:56 chaals has joined #webapps 15:55:06 sgalineau has joined #webapps 15:57:36 glenn has joined #webapps 15:59:12 lmclister has joined #webapps 16:07:03 tantek has joined #webapps 16:15:20 cabanier has joined #webapps 16:33:49 cwilso has joined #webapps 16:35:52 Domenic_ has joined #webapps 16:39:01 divya has joined #webapps 17:09:45 chaals has joined #webapps 17:21:40 jsbell has joined #webapps 17:30:16 divya1 has joined #webapps 17:30:33 divya2 has joined #webapps 17:44:36 tantek has joined #webapps 19:28:18 divya has joined #webapps 19:42:25 divya has joined #webapps 19:44:55 abarsto has joined #webapps 19:52:47 Lachy has joined #webapps 20:52:41 tantek has joined #webapps 21:28:26 tantek_ has joined #webapps 21:28:32 sicking has joined #webapps 21:33:24 tantek has joined #webapps 22:01:13 sicking has joined #webapps 22:02:02 marcosc_ has joined #webapps 22:09:49 divya has joined #webapps 22:41:55 marcosc has joined #webapps 23:01:05 skddc has joined #webapps 23:15:10 lmclister has joined #webapps 23:36:05 marcosc has joined #webapps 23:39:09 divya has joined #webapps 23:42:57 karl has joined #webapps 00:04:47 divya has joined #webapps 00:06:49 lmclister has joined #webapps 00:26:16 marcosc has joined #webapps 00:56:50 marcosc has joined #webapps 01:26:34 marcosc has joined #webapps 01:42:43 richt has joined #webapps 01:56:55 marcosc has joined #webapps 01:56:57 marcosc has joined #webapps 02:05:32 cabanier has joined #webapps 02:53:41 marcosc has joined #webapps 03:48:05 marcosc has joined #webapps 04:02:20 sicking has joined #webapps 04:42:14 marcosc has joined #webapps 05:36:24 marcosc has joined #webapps 06:30:33 marcosc has joined #webapps 06:37:22 glenn has joined #webapps 07:07:39 tobie has joined #webapps 07:15:04 Lachy has joined #webapps 07:16:34 jeffh has joined #webapps 07:24:42 marcosc has joined #webapps 07:32:17 tobie has joined #webapps 08:09:27 Ms2ger has joined #webapps 08:11:02 marcosc has joined #webapps 08:23:07 skddc has joined #webapps 09:07:46 marcosc has joined #webapps 09:30:24 marcosc has joined #webapps 09:42:05 skddc has joined #webapps 10:00:09 jeffh has joined #webapps 10:02:12 marcosc_ has joined #webapps 10:27:09 marcosc_ has joined #webapps 10:33:35 abarsto has joined #webapps 10:37:36 smaug has joined #webapps 11:14:01 marcosc_ has joined #webapps 11:26:22 jeffh has joined #webapps 12:26:32 marcosc_ has joined #webapps 13:15:17 krijnh has joined #webapps 13:15:37 marcosc_ has joined #webapps 13:15:54 shepazu has joined #webapps 13:16:58 Dashiva has joined #webapps 13:17:57 tobie has joined #webapps 13:18:10 abarsto has joined #webapps 13:18:12 decadance has joined #webapps 13:18:13 gsnedders has joined #webapps 13:18:33 jgraham has joined #webapps 13:19:06 cabanier has joined #webapps 13:19:20 karl has joined #webapps 13:20:32 gavin has joined #webapps 13:21:39 yoichio has joined #webapps 13:23:03 Ms2ger has joined #webapps 13:24:32 paul___irish has joined #webapps 13:25:19 schuki has joined #webapps 13:26:39 smaug has joined #webapps 13:26:51 MikeSmith has joined #webapps 13:31:01 Hixie has joined #webapps 13:31:42 mounir has joined #webapps 13:35:48 skddc has joined #webapps 13:52:01 marcosc has joined #webapps 14:34:09 chaals has joined #webapps 14:44:51 tantek has joined #webapps 14:57:47 chaals has joined #webapps 14:59:42 cabanier1 has joined #webapps 15:00:41 glenn has joined #webapps 15:14:28 hober has joined #webapps 15:19:03 jeffh has joined #webapps 15:33:49 cabanier has joined #webapps 15:40:18 marcosc has joined #webapps 15:40:22 skddc has joined #webapps 15:44:53 sgalineau has joined #webapps 15:46:28 lmclister has joined #webapps 15:48:53 chaals has joined #webapps 16:08:14 sicking has joined #webapps 16:08:22 tantek has joined #webapps 16:26:11 cabanier has joined #webapps 16:47:10 Lachy has joined #webapps 16:48:35 jeffh has joined #webapps 17:28:39 marcosc has joined #webapps 17:45:43 skddc has joined #webapps 18:03:01 sicking has joined #webapps 18:03:35 divya has joined #webapps 18:03:42 sgalineau has joined #webapps 18:06:32 sicking has joined #webapps 18:22:48 marcosc has joined #webapps 18:38:01 glenn_ has joined #webapps 18:56:47 sgalineau has joined #webapps 18:59:28 marcosc has joined #webapps 19:16:06 sicking has joined #webapps 19:21:02 sgalineau has joined #webapps 19:30:56 sgalineau has joined #webapps 20:31:46 sicking has joined #webapps 20:52:28 glenn has joined #webapps 21:08:57 karl has joined #webapps 21:30:18 tobie has joined #webapps 21:34:13 jsbell has joined #webapps 21:45:01 marcosc has joined #webapps 21:53:58 abarsto has joined #webapps 22:21:13 tobie has joined #webapps 22:22:13 sgalineau has joined #webapps 22:24:31 sgalineau has joined #webapps 22:28:02 sicking has joined #webapps 22:30:49 shepazu has joined #webapps 22:32:42 Dashiva has joined #webapps 22:33:06 glenn has joined #webapps 22:34:21 krijn has joined #webapps 22:34:30 tobie has joined #webapps 22:35:06 decadance has joined #webapps 22:36:37 Lachy has joined #webapps 22:37:16 schuki has joined #webapps 22:37:28 sicking has joined #webapps 22:37:46 gavin has joined #webapps 22:38:34 paul___irish has joined #webapps 22:39:06 smaug has joined #webapps 22:39:10 marcosc has joined #webapps 22:39:45 MikeSmith has joined #webapps 22:40:20 gsnedders has joined #webapps 23:08:45 skddc has joined #webapps 23:15:43 sicking has joined #webapps 23:22:08 cabanier has joined #webapps 23:23:14 chaals has joined #webapps 23:32:39 sicking has joined #webapps 23:51:01 sicking has joined #webapps 00:15:37 jsbell has joined #webapps 00:27:27 marcosc has joined #webapps 00:33:24 slightlyoff has joined #webapps 00:42:10 cabanier has joined #webapps 01:21:37 marcosc has joined #webapps 01:46:33 cabanier has joined #webapps 02:15:46 marcosc has joined #webapps 02:46:00 sicking has joined #webapps 02:57:57 karl has joined #webapps 03:09:55 marcosc has joined #webapps 04:02:28 yoichio has joined #webapps 04:04:19 krijnh has joined #webapps 04:04:22 gavin has joined #webapps 04:04:46 schuki has joined #webapps 04:05:09 Dashiva has joined #webapps 04:05:46 shepazu has joined #webapps 04:52:24 karl has joined #webapps 04:58:13 marcosc has joined #webapps 05:21:09 marcosc has joined #webapps 05:30:06 heycam has joined #webapps 06:05:21 cabanier has joined #webapps 06:30:57 Ms2ger has joined #webapps 06:51:22 jeffh has joined #webapps 06:58:45 Lachy has joined #webapps 08:06:29 marcosc has joined #webapps 08:18:09 slightlyoff has joined #webapps 09:24:10 smaug has joined #webapps 09:47:04 chaals has joined #webapps 10:38:06 abarsto has joined #webapps 10:40:42 chaals has joined #webapps 12:55:34 jeffh has joined #webapps 14:00:05 glenn has joined #webapps 14:39:04 jeffh has joined #webapps 16:07:30 divya has joined #webapps 16:13:35 sgalineau has joined #webapps 16:16:47 cabanier has joined #webapps 16:21:05 abarsto has joined #webapps 16:21:11 cabanier has joined #webapps 16:21:20 Dashiva has joined #webapps 16:25:46 paul___irish has joined #webapps 16:26:25 Dashiva has joined #webapps 16:27:48 schuki has joined #webapps 16:28:12 ed has joined #webapps 16:28:16 gavin has joined #webapps 16:28:30 MikeSmith has joined #webapps 16:28:32 heath has joined #webapps 16:28:34 krijnh has joined #webapps 16:28:50 cabanier has joined #webapps 16:28:53 lmclister has joined #webapps 16:28:55 odinho has joined #webapps 16:28:58 divya has joined #webapps 16:28:59 Ms2ger has joined #webapps 16:29:07 smaug has joined #webapps 16:29:25 decadance has joined #webapps 16:29:43 paul___irish has joined #webapps 16:30:07 Hixie has joined #webapps 16:30:25 mounir has joined #webapps 16:31:13 jgraham has joined #webapps 16:31:27 jeffh has joined #webapps 16:31:28 logbot has joined #webapps 16:34:08 gsnedders has joined #webapps 16:42:41 abarsto has joined #webapps 17:03:09 karl has joined #webapps 17:37:17 Lachy has joined #webapps 18:17:02 Domenic_ has joined #webapps 18:17:03 slightlyoff has joined #webapps 18:17:23 timeless has joined #webapps 18:21:30 dfreedm has joined #webapps 18:21:32 richt has joined #webapps 18:21:33 cwilso has joined #webapps 18:21:49 scheib has joined #webapps 18:25:30 glenn has joined #webapps 18:48:19 divya has joined #webapps 19:05:58 chaals has joined #webapps 19:06:06 chaals1 has joined #webapps 19:20:26 sicking has joined #webapps 19:28:11 divya has joined #webapps 19:48:16 sicking has joined #webapps 19:49:08 divya has joined #webapps 20:34:04 divya1 has joined #webapps 20:57:59 hober has joined #webapps 21:21:33 divya has joined #webapps 21:31:17 divya has joined #webapps 21:32:24 divya1 has joined #webapps 21:50:24 divya has joined #webapps 22:53:11 sicking has joined #webapps 23:11:39 divya has joined #webapps 23:39:08 lmclister has joined #webapps 00:16:26 heycam|away has joined #webapps 00:31:01 cabanier has joined #webapps 01:34:14 chaals has joined #webapps 02:49:19 sicking has joined #webapps 03:08:04 sicking has joined #webapps 03:36:56 glenn has joined #webapps 06:14:59 glenn has joined #webapps 07:53:05 jeffh has joined #webapps 08:21:01 smaug has joined #webapps 08:43:38 Ms2ger has joined #webapps 09:24:00 decadance has joined #webapps 10:46:14 glenn has joined #webapps 11:18:46 Dashiva has joined #webapps 11:23:48 paul___irish has joined #webapps 11:25:49 mounir has joined #webapps 11:25:50 cabanier has joined #webapps 11:25:55 schuki has joined #webapps 11:26:02 MikeSmith has joined #webapps 11:27:46 gavin has joined #webapps 11:30:06 Lachy has joined #webapps 12:47:23 skddc has joined #webapps 16:39:44 karl has joined #webapps 17:33:57 shepazu has joined #webapps 18:28:16 shepazu has joined #webapps 18:29:25 shepazu has joined #webapps 19:10:19 lmclister has joined #webapps 19:14:55 lmclister has joined #webapps 20:16:07 smaug has joined #webapps 21:07:58 lmclister has joined #webapps 21:09:58 cabanier has joined #webapps 21:54:19 lmclister has joined #webapps 22:18:52 shepazu has joined #webapps 22:45:37 glenn_ has joined #webapps 01:08:46 skddc has joined #webapps 02:50:55 sicking has joined #webapps 07:37:00 hober has joined #webapps 07:52:43 glenn has joined #webapps 08:44:51 Ms2ger has joined #webapps 10:22:59 Lachy has joined #webapps 10:49:42 skddc has joined #webapps 11:35:27 abarsto has joined #webapps 11:53:08 MikeSmith - yt? Can you confirm if the WebSockets jetty server is `alive and well` (or not)? http://w3c-test.org/web-platform-tests/master/websockets/Close-0.htm 12:02:20 Yves has joined #webapps 12:02:34 from what I see, jetty is not running, not sure it has to run though (no trace of a startup script in init.d) 14:38:58 skddc has joined #webapps 15:29:53 smaug has joined #webapps 15:38:37 glenn has joined #webapps 15:42:11 skddc has joined #webapps 16:17:55 smaug has joined #webapps 16:48:50 skddc has joined #webapps 17:13:13 shepazu has joined #webapps 17:15:13 Lachy has joined #webapps 17:21:30 Lachy_ has joined #webapps 17:42:51 gavin has joined #webapps 19:08:45 cabanier has joined #webapps 20:12:43 smaug has joined #webapps 21:05:41 Lachy has joined #webapps 23:24:59 skddc_ has joined #webapps 00:18:51 Lachy has joined #webapps 03:43:13 jeffh has joined #webapps 06:32:47 dom has joined #webapps 08:13:56 Lachy has joined #webapps 08:36:12 dom_ has joined #webapps 08:41:13 smaug has joined #webapps 09:03:12 skddc has joined #webapps 10:02:07 abarsto has joined #webapps 10:24:56 darobin has joined #webapps 10:27:40 skddc has joined #webapps 11:26:18 darobin_ has joined #webapps 11:32:38 skddc_ has joined #webapps 13:02:13 chaals has joined #webapps 13:27:10 skddc has joined #webapps 14:03:51 tobie has joined #webapps 14:57:49 glenn has joined #webapps 15:12:09 jeffh has joined #webapps 15:39:37 skddc_ has joined #webapps 15:56:26 divya has joined #webapps 16:02:16 lmclister has joined #webapps 16:05:40 sicking has joined #webapps 16:10:19 sgalineau has joined #webapps 16:48:08 darobin has joined #webapps 16:49:16 chaals1 has joined #webapps 17:07:01 skddc has joined #webapps 17:59:54 divya has joined #webapps 18:03:19 sgalineau has joined #webapps 18:04:28 cabanier has joined #webapps 18:04:50 divya1 has joined #webapps 18:15:40 chaals has joined #webapps 18:29:00 divya has joined #webapps 18:31:14 sgalineau has joined #webapps 18:32:15 Ms2ger has joined #webapps 18:36:49 chaals1 has joined #webapps 19:16:06 chaals has joined #webapps 19:17:39 skddc has joined #webapps 19:23:46 chaals1 has joined #webapps 19:28:12 chaals has joined #webapps 20:02:30 Lachy has joined #webapps 20:29:58 sgalineau has joined #webapps 20:36:17 chaals has joined #webapps 20:37:56 abarsto has joined #webapps 20:47:55 darobin_ has joined #webapps 21:31:48 divya has joined #webapps 21:46:03 tobie has joined #webapps 21:56:53 skddc_ has joined #webapps 23:00:33 divya has joined #webapps 23:01:46 divya1 has joined #webapps 23:25:42 divya has joined #webapps 23:47:40 darobin has joined #webapps 23:49:43 divya has joined #webapps 23:59:51 sicking has joined #webapps 01:56:48 sicking has joined #webapps 02:31:30 cabanier has joined #webapps 03:27:09 jeffh has joined #webapps 03:53:29 lmclister has joined #webapps 06:31:20 lmcliste_ has joined #webapps 07:14:46 dom has joined #webapps 08:01:26 chaals has joined #webapps 08:09:26 skddc has joined #webapps 08:21:29 Ms2ger has joined #webapps 08:35:56 Lachy has joined #webapps 08:58:47 smaug has joined #webapps 09:54:36 darobin has joined #webapps 10:36:06 abarsto has joined #webapps 10:48:28 darobin has joined #webapps 11:26:49 darobin_ has joined #webapps 12:25:48 glenn has joined #webapps 13:08:44 davidb has joined #webapps 13:10:32 davidb has joined #webapps 13:14:23 davidb has joined #webapps 13:30:53 MikeSmith - yt? Did you get the websockets jetty server running? 13:31:09 I still get NotRun + Fail on the two tests in http://w3c-test.org/web-platform-tests/master/websockets/Close-1000-reason.htm 13:31:48 ArtB: will try to get it running within the next hour 14:46:30 jeffh has joined #webapps 14:56:25 fjh has joined #webapps 15:22:08 lmclister has joined #webapps 15:40:14 jeffh has joined #webapps 15:48:40 cabanier has joined #webapps 16:05:23 divya has joined #webapps 16:11:27 divya1 has joined #webapps 17:18:54 skddc has joined #webapps 17:41:38 tantek has joined #webapps 17:53:10 sicking has joined #webapps 18:21:48 tantek has joined #webapps 18:26:46 Lachy has joined #webapps 18:30:15 divya has joined #webapps 18:30:27 divya1 has joined #webapps 18:31:43 glenn has joined #webapps 18:31:49 divya has joined #webapps 18:40:43 tantek has joined #webapps 19:03:28 tantek has joined #webapps 19:06:23 sicking has joined #webapps 19:29:01 Dashiva has joined #webapps 19:30:00 gavin has joined #webapps 19:32:21 divya has joined #webapps 19:42:37 tantek has joined #webapps 19:54:32 divya1 has joined #webapps 21:41:37 sicking has joined #webapps 21:46:39 divya has joined #webapps 21:51:26 skddc has joined #webapps 22:32:31 skddc_ has joined #webapps 22:55:54 sicking has joined #webapps 22:56:24 divya has joined #webapps 22:57:41 lmclister has joined #webapps 23:53:07 glenn has joined #webapps 23:59:08 kochi_home has joined #webapps 23:59:25 Morning 23:59:45 masayuki has joined #webapps 00:04:45 garykac has joined #webapps 00:04:54 kochi_home: Maybe for you ;) 00:06:41 hi jgraham 00:07:42 Travis should have scheduled DOM L3 telcon Aug 6 00:07:56 http://www.w3.org/2008/webapps/wiki/30-July-2013 00:08:17 > Let's try for Aug. 6th! 00:08:35 Indeed. I saw an email that he got it scheduled for now. 00:08:42 Let me look it up. 00:09:45 Arthur said that we now have this meeting scheduled weekly so that we can us it during odd weeks. 00:18:03 Kochi asks: What should preventDefault do when set for compositionevent? 00:20:00 bug 18030 00:20:08 no 00:20:12 18931 00:20:14 And suggests that it setting preventDefault to true should result in the DOM not being updated. 00:20:50 www.w3.org/Bugs/Public/show_bug.cgi?id=18931 00:22:51 It seems that we don't need beforeinput for compositionupdate. 00:24:18 Yes, if beforeinput cannot be canceled, then it doesn't seem to do anything useful. 00:24:36 But that means that we would have input events firing with out having a beforeinput event. 00:25:14 So we wouldn't be able to write the spec as "input events are always preceded by beforeinput events" 00:25:41 For IME API's perspective, preventDefault()'ing beforinput event 00:25:45 I think that it's not problem. beforeinput and input are really different event even their names are smililar. 00:26:09 I'd rather get rid of input events during composition, but it sounds like the consensus is that we need to keep them around. 00:26:12 can give Javascript chance to draw composition text itself and modify .value 00:27:10 kochi: Ah. So calling preventDefault wouldn't cancel the compositionupdate, it would just say that the client is going to update the DOM itself. 00:27:40 yes, it is my idea. 00:27:41 kochi_home: Isn't JS IME handles only key event? I mean that shouldn't be native IME disabled for JS IME? 00:29:21 Sounds odd to me that JS IME works with native IME. 00:29:27 hmm, yes, if JS IME comes into place, 00:29:42 mm 00:29:57 masayuki: I think I now understand. 00:30:59 at this point with IME API you can't provide IME API, but you can talk to native system IME 00:31:28 So what I mentioned above is talking about interacting system IME by Javascript 00:31:31 I think that there should be an API to disable native IME which can be used by JS IME. 00:31:53 cabanier has joined #webapps 00:32:21 kochi_home: like Google suggest? 00:32:49 masayuki: like google docs, which wants to draw composition text itself 00:33:08 without using a hack to listen to composition update in a hidden textarea 00:33:58 kochi_home: I understand. 00:34:38 in that case, if DOM is modified before compositionupdate event, drawing composition text is too late 00:35:02 but if Javascript code can trap beforeInput, it would be a perfect timing to do that 00:36:12 masayuki: (about having an API to disable native IME to switch JS IME - yes, we should have one once we provide APIs to implement IME in Javascript) 00:36:46 So, you're suggesting that beforeinput during composition would allow preventDefault (to skip updating the DOM), but not be cancelable? Not updating the DOM could be considered canceling, couldn't it? What's the advantage of using preventDefault for this instead of cencel? 00:38:01 my gut feeling is that canceling a beforInput event for composition udpate mean cancellation of the composition session 00:38:50 while preventDefault is just canceling what browsers would do when it get updates from IME 00:39:49 but if the behavior for preventDefault() is different for key events and composition events, spec would be very messy. That is my concern. 00:40:29 But we could define "cancel" to mean don't update the DOM, but stay in the IME. Do we need (is it possible) to cancel the IME from within JS handler? 00:40:45 I'll have to review how preventDefault is spec'ed for key events... 00:41:27 okay, it is another option (define "cancel" to mean don't update the DOM) 00:42:39 kochi_home: Even if a call of peventDefault() of beforeinput prevents to update composition string, doesn't modifying editor content cause committing the composition on most browsers? 00:43:35 yes, currently most browsers cancel composition if .value is modified... 00:45:40 kochi_home: So, I'm not sure if your idea is actually useful... 00:47:13 I think that javascript can draw composition string is a useful for some application, but how to realize it, which events to use is a difficult question. 00:48:20 How about to make compositionupdate cancelable for such purpose? 00:49:00 If cancelable just means that we don't update the DOM (rather than canceling the IME), then we could have beforeinput do that. 00:49:09 so when compositionupdate is cancelled, DOM is already modified but screen is not updated? 00:49:40 However, I'm not sure if it's valuable to have compositionupdate + beforeinput. 00:49:49 (I assume bug 18931 is resolved and compositionupdate is sent after DOM modification) 00:50:26 compositionupdate could be defined to not have the DOM already modified. That's consistent with Chrome/FF already. 00:50:42 kochi_home: If compositionupdate is cancelable, dispatching compositionupdate before DOM modification is good timing. 00:51:16 yeah, if IE12+ can follow the behavior ... :) 00:52:22 That sounds reasonable to me. It also means that we wouldn't need beforeinput in that case. 00:52:36 garykac: yes 00:52:54 While it would be nice to have beforeinput for consistency, it's also nice to have fewer events firing. 00:53:08 if it is more consistent with beforeInput for non-composition event, that sounds a good idea 00:53:54 OK. I'll update the document to organize it into the various specific issues we've been discussing. 00:54:24 garykac: thanks 00:54:31 We won't be meeting next week (since some people are not available), but we can still discuss this via the document. 00:54:45 I'll send out another email once I've incorporated all the feedback from everyone. 00:54:46 garykac: sure 00:55:06 It feels like we're making some progress here... 00:55:26 thanks garykac, masayuki! 00:56:00 Thank you. 00:56:07 When is the next tie everyone is available? 00:56:25 Next week doesn't work, but what about the week after that? 00:56:54 I'm available both 20 and 27. 00:56:56 I'm available for Aug 13, 20, 27, 00:57:22 OK. Let's meetup again on the 20th. 00:57:39 We already have Zakim setup for us each week at this time. 00:57:42 yup, let's keep Travis updated. 00:57:48 Indeed. 00:58:01 I'm going to head out now. Thank you everyone! 00:58:10 Thanks! 00:58:13 Thank you! 01:05:46 chaals has joined #webapps 04:03:43 lmclister has joined #webapps 07:38:57 Lachy has joined #webapps 08:21:24 Ms2ger has joined #webapps 09:09:22 smaug has joined #webapps 09:13:14 Lachy has joined #webapps 09:50:00 skddc has joined #webapps 09:54:31 skddc has joined #webapps 10:22:25 abarsto has joined #webapps 10:23:37 chaals has joined #webapps 11:27:09 darobin_ has joined #webapps 11:43:41 dom has joined #webapps 12:22:08 abarsto has joined #webapps 12:33:48 MikeSmith - thanks for getting websocket test server running again! 12:34:14 ArtB: yw 12:34:16 seems like we should put some type of Warning or "Run Me First" file/flag in http://w3c-test.org/web-platform-tests/master/websockets/ 12:34:51 is there a precedence for something like that? 12:35:16 ArtB: none that I know of 12:36:02 ms2ger, jgraham, all - wdyt re a warning for websocket server? 12:40:05 MikeSmith - are the steps you used to get the jetty server started documented somewhere so that tobie, plh, darobin or someone else can start it if/when you aren't available? 12:41:40 that's not how we do things around here ArtB 12:42:02 we would much rather leave completely cryptic scripts in dark corners of various places for one another to discover when we need to fix something 12:42:32 I do that to MikeSmith, like, all the time — it's fun! 12:42:45 rofl 12:43:56 darobin, is websockets the only web-platform-tests test suite that has a dependency server? 12:44:28 I could be forgetting about something, but I believe so 12:44:56 that said, we're talking about having a single server handle everything for WPT 12:45:03 seems like it would be useful to have some type of 'the test suite require service X and if X isn't working, don't bother running the tests [and btw, to see if service X is running do Y]' 12:45:17 that way there's no need to worry about what's running or not, you just start the test server and get cranking 12:45:56 yeah, in fact it's not just server dependencies that need be handled there; right now some things require PHP, or Apache, or specific configurations 12:46:16 as it exists, the test suite is not trivially portable yet 12:46:29 at least not the bits that might rely on some form of specific server behaviour 12:46:32 we're fixing that 12:46:51 re jetty I have no idea how to start it, but ISTR MikeSmith saying earlier here that he'd get it started or something like that 12:47:04 ok, thanks for that update [and I can see there are higher prio tasks …] 12:47:34 btw, darobin, what's the status/plan for some type of automatic test runner? 12:47:45 I think the old one is now obsolete? 12:47:47 wait... ArtB, in #wam MikeSmith said it was running again, no? 12:47:57 the old one is obsolete for sure 12:48:06 the problem is that the plan to get funding didn't work out 12:48:08 yes, websockets server is now running 12:48:10 so tobie's on a plan b 12:48:17 oh dear 12:48:26 websockets has ~200 test files 12:48:29 * 4 impls 12:48:36 is a LOT of monkey work 12:48:44 I will need a runner pretty soon to start producing implementation reports for HTML anyway 12:48:58 so it wouldn't be surprising if I ended up just writing one 12:49:39 hahaha 12:51:22 if you're looking for a `test bed`, please consider websockets ;-) 12:52:15 chaals has joined #webapps 12:53:34 I think my test bed will be HTML, but I'll keep that in mind :) 12:59:06 ArtB: I'll try to work with Yves and darobin to just get some init scripts for the jetty server installed on the w3c-test.org 12:59:28 so that when the server reboots or whatever, they'll just automatically restart 12:59:38 excellent MikeSmith! 13:00:26 part of the problem with that is though that by default they sorta need to be run under a screen instance to work correctly 13:01:52 darobin, speaking of the old test runner, it might be useful to put some type Obsolete flag/warning @ http://w3c-test.org/framework/app/suite 13:02:14 ArtB: anyway for now if you want to copy this down for next time to tell Yves or darobin if I'm not around, the script for running the echo server is at /opt/jetty/webapps/echo-test/00_run 13:02:48 and there's a second thing that Microsoft contributed that's at /opt/jetty/webapps/control-test/00_run 13:03:33 it's not clear to me whether any of the existing tests are actually using that "control" thing or not. But they asked me to set it up so I did 13:05:41 MikeSmith, I created a "MikeSmith's How to start/run WebSockets Jetty Server Guide" -> http://krijnhoetmer.nl/irc-logs/webapps/20130807 13:06:01 hahah :) 13:06:12 ArtB you got the magic 13:07:13 ;) 13:10:28 for now I added that info to the /etc/motd on w3c-test.org 13:30:57 fjh has joined #webapps 13:35:22 skddc has joined #webapps 13:37:50 jungkees has joined #webapps 13:43:02 smaug has joined #webapps 13:52:46 darobin, hmm? I've got a runner, if you want one 13:53:31 Ms2ger: yeah, looking at yours and deploying it on a w3c box if I like it was to be my first port of call :) 13:54:00 darobin, it even has json and xml output :) 13:54:06 whoa! 13:55:18 chaals has joined #webapps 13:57:54 it would be great to set up an instance of Ms2ger test runner 15:08:00 jeffh has joined #webapps 15:12:33 fjh has left #webapps 15:16:14 chaals has joined #webapps 15:45:10 lmclister has joined #webapps 15:47:05 divya has joined #webapps 15:55:10 tantek has joined #webapps 15:56:21 divya has joined #webapps 16:00:21 chaals has joined #webapps 16:02:05 sgalineau has joined #webapps 16:12:29 sicking has joined #webapps 16:32:26 Lachy has joined #webapps 16:37:02 cabanier has joined #webapps 16:53:42 skddc has joined #webapps 16:55:29 divya has joined #webapps 17:01:50 divya has joined #webapps 17:07:23 smaug has joined #webapps 17:25:41 fjh has joined #webapps 17:33:59 tantek has joined #webapps 17:53:24 gavin has joined #webapps 18:02:14 tantek has joined #webapps 18:10:13 tantek_ has joined #webapps 18:22:13 abarsto has joined #webapps 18:22:19 lmclister has joined #webapps 18:42:47 chaals has joined #webapps 19:01:12 sicking has joined #webapps 19:20:45 sicking has joined #webapps 19:30:00 divya has joined #webapps 19:48:22 smaug has joined #webapps 19:49:25 divya has joined #webapps 20:15:31 divya has joined #webapps 20:18:18 divya has joined #webapps 20:31:48 divya has joined #webapps 20:45:42 chaals has joined #webapps 20:46:11 divya1 has joined #webapps 20:48:03 divya1 has joined #webapps 20:53:54 sicking has joined #webapps 20:54:52 tantek has joined #webapps 21:02:02 divya has joined #webapps 21:04:35 chaals has joined #webapps 21:05:24 tantek has joined #webapps 21:24:29 tantek_ has joined #webapps 22:03:02 divya has joined #webapps 22:08:10 tobie has joined #webapps 22:17:30 sicking has joined #webapps 22:21:35 smaug has joined #webapps 22:23:50 tobie has joined #webapps 22:27:10 chaals has joined #webapps 22:57:40 karl has joined #webapps 22:58:32 divya1 has joined #webapps 22:58:54 sicking has joined #webapps 23:00:16 divya has joined #webapps 23:28:03 divya has joined #webapps 23:59:48 sicking has joined #webapps 00:46:44 smaug has joined #webapps 00:48:18 cabanier has joined #webapps 01:21:17 sicking has joined #webapps 01:55:22 divya has joined #webapps 02:24:42 skddc has joined #webapps 02:33:11 chaals has joined #webapps 02:40:13 kochi has joined #webapps 03:06:23 chaals has joined #webapps 03:26:37 tantek has joined #webapps 03:50:54 cabanier1 has joined #webapps 04:12:58 cabanier has joined #webapps 04:26:25 tantek has joined #webapps 06:16:01 chaals1 has joined #webapps 06:30:12 Lachy has joined #webapps 06:49:24 Ms2ger has joined #webapps 07:09:08 glenn_ has joined #webapps 07:20:24 chaals has joined #webapps 07:28:25 Lachy has joined #webapps 08:07:25 tobie has joined #webapps 08:10:10 krijnh has joined #webapps 09:08:56 smaug has joined #webapps 10:23:21 abarsto has joined #webapps 10:40:51 skddc_ has joined #webapps 11:26:43 darobin_ has joined #webapps 11:56:32 dom has joined #webapps 12:18:43 smaug has joined #webapps 13:52:20 tantek has joined #webapps 13:54:40 tantek has joined #webapps 14:43:39 chaals has joined #webapps 14:59:50 cabanier has joined #webapps 15:01:16 chaals has joined #webapps 15:01:26 cabanier1 has joined #webapps 15:31:19 jeffh has joined #webapps 15:34:41 skddc has joined #webapps 15:38:57 lmclister has joined #webapps 15:45:34 divya has joined #webapps 15:58:38 divya1 has joined #webapps 16:05:06 smaug has joined #webapps 16:11:30 tantek has joined #webapps 16:13:00 abarsto has joined #webapps 16:29:49 Lachy has joined #webapps 16:30:34 tantek has joined #webapps 17:03:11 cabanier has joined #webapps 17:15:29 divya has joined #webapps 17:30:02 skddc has joined #webapps 17:42:09 tobie has joined #webapps 18:00:04 sicking has joined #webapps 18:05:59 chaals has joined #webapps 18:59:01 yaso has joined #webapps 19:08:53 tantek has joined #webapps 19:24:57 tobie has joined #webapps 19:31:06 divya has joined #webapps 19:50:48 divya has joined #webapps 20:01:32 divya1 has joined #webapps 20:07:29 lmclister has joined #webapps 20:42:09 sicking has joined #webapps 20:54:06 chaals has joined #webapps 20:55:49 divya has joined #webapps 21:31:23 Lachy has joined #webapps 21:51:48 smaug has joined #webapps 22:03:24 tobie has joined #webapps 22:44:44 skddc_ has joined #webapps 22:47:48 smaug has joined #webapps 23:17:15 divya has joined #webapps 23:20:12 divya has joined #webapps 23:42:10 smaug has joined #webapps 00:13:33 divya has joined #webapps 00:15:42 tantek_ has joined #webapps 00:21:43 divya has joined #webapps 00:32:04 glenn has joined #webapps 02:42:17 jeffh has joined #webapps 02:57:41 karl has joined #webapps 04:59:52 glenn has joined #webapps 06:45:00 Ms2ger has joined #webapps 07:00:50 cabanier has joined #webapps 07:19:23 tobie has joined #webapps 08:08:17 skddc has joined #webapps 08:12:17 tobie has joined #webapps 08:43:50 Lachy has joined #webapps 09:39:49 tobie has joined #webapps 09:55:48 chaals has joined #webapps 10:10:28 smaug has joined #webapps 10:34:32 abarsto has joined #webapps 10:55:03 tobie has joined #webapps 11:26:26 chaals has joined #webapps 11:27:03 darobin_ has joined #webapps 11:28:01 Ms2ger has joined #webapps 12:35:02 paul___irish has joined #webapps 12:58:48 hober has joined #webapps 13:13:39 krijnh has joined #webapps 13:17:13 Dashiva has joined #webapps 13:17:52 logbot has joined #webapps 13:19:05 darobin, do you know heycam|away plan for https://github.com/heycam/web-platform-tests/tree/submission/heycam/WebIDL-tests-1/WebIDL/tests/submissions/heycam 13:19:17 I didn't notice a PullRequest for them 13:19:47 although his PR-106 includes some of the files https://github.com/w3c/web-platform-tests/pull/106 13:19:48 if they aren't in a PR they should be put in a PR 13:20:02 ah, well that's probably the bits that he was planning on submitting 13:20:09 I ned to talk to Lachy about reviewing 13:20:12 *need 13:21:23 ok, I'll ask heycam to clarify this 13:34:53 jungkees has joined #webapps 13:44:04 darobin, yes, I've been waiting for you to ping me about that 13:44:16 Lachy: yeah, sorry, just back from vacations 13:44:23 I'll put an email together 15:05:03 chaals has joined #webapps 15:15:09 smaug has joined #webapps 15:17:49 chaals has joined #webapps 15:21:05 jeffh has joined #webapps 15:35:25 glenn has joined #webapps 16:02:11 divya has joined #webapps 16:19:07 cabanier has joined #webapps 16:19:15 divya has joined #webapps 16:30:01 sgalineau has joined #webapps 17:04:20 jkomoros has joined #webapps 17:36:22 lyle has joined #webapps 17:47:14 tobie has joined #webapps 17:53:18 sicking has joined #webapps 17:53:27 glenn has joined #webapps 18:36:47 sicking has joined #webapps 18:44:20 tobie has joined #webapps 19:06:02 fjh has joined #webapps 19:47:54 Lachy has joined #webapps 19:59:04 tobie has joined #webapps 20:45:14 Lachy has joined #webapps 21:04:59 sicking has joined #webapps 21:24:42 tantek has joined #webapps 22:02:11 sicking has joined #webapps 22:11:50 lmclister has joined #webapps 22:13:01 lmcliste_ has joined #webapps 23:15:40 cabanier has joined #webapps 00:28:37 cabanier has joined #webapps 01:36:49 chaals has joined #webapps 01:42:48 lmclister has joined #webapps 01:48:13 trackbot has joined #webapps 04:04:39 lmcliste_ has joined #webapps 04:15:37 lmclister has joined #webapps 05:23:13 chaals has joined #webapps 07:10:38 Lachy has joined #webapps 09:06:03 kochi has joined #webapps 09:22:03 smaug has joined #webapps 10:56:09 Ms2ger has joined #webapps 12:48:26 tobie has joined #webapps 15:04:19 lyle has joined #webapps 16:07:05 shepazu has joined #webapps 18:43:51 Lachy has joined #webapps 20:41:56 lmclister has joined #webapps 21:51:27 tantek has joined #webapps 00:35:22 jeffh has joined #webapps 02:43:19 lmclister has joined #webapps 09:23:23 Ms2ger has joined #webapps 10:19:23 smaug has joined #webapps 10:50:36 karl has joined #webapps 12:55:34 schuki has joined #webapps 12:56:04 hober has joined #webapps 13:34:58 smaug has joined #webapps 13:38:04 marcosc has joined #webapps 14:40:51 marcosc has joined #webapps 14:56:26 timeless has joined #webapps 14:57:53 karl has joined #webapps 19:34:54 smaug has joined #webapps 20:19:17 Lachy has joined #webapps 21:08:27 lmclister has joined #webapps 23:00:26 jeffh has joined #webapps 23:22:32 jeffh has joined #webapps 00:54:47 jeffh has joined #webapps 01:26:49 karl has joined #webapps 05:02:10 shepazu has joined #webapps 06:43:43 cabanier has joined #webapps 08:04:50 dom has joined #webapps 08:35:05 Ms2ger has joined #webapps 08:36:54 darobin has joined #webapps 08:45:32 Lachy has joined #webapps 09:21:32 skddc has joined #webapps 09:24:53 smaug has joined #webapps 10:26:04 abarsto has joined #webapps 10:30:06 tobie has joined #webapps 11:45:40 skddc has joined #webapps 13:56:44 trackbot has joined #webapps 14:00:51 tantek has joined #webapps 14:25:31 Jonadabe has joined #webapps 15:34:41 jeffh has joined #webapps 16:05:20 cabanier has joined #webapps 16:06:01 Jonadabe has left #webapps 16:12:45 krijnh has joined #webapps 16:16:54 skddc has joined #webapps 16:18:29 sicking has joined #webapps 16:24:18 jsbell has joined #webapps 16:27:08 trackbot has joined #webapps 17:02:18 sicking has joined #webapps 17:06:18 jeffh has joined #webapps 17:44:09 Lachy has joined #webapps 18:02:33 sicking has joined #webapps 18:12:05 timeless has joined #webapps 18:14:01 jeffh has joined #webapps 18:18:15 divya has joined #webapps 18:33:19 divya1 has joined #webapps 18:46:10 sicking has joined #webapps 19:04:48 karl has joined #webapps 19:47:46 divya has joined #webapps 20:08:05 tobie has joined #webapps 20:11:58 cabanier has joined #webapps 20:22:24 skddc has joined #webapps 20:34:21 abarsto has joined #webapps 20:36:01 divya has joined #webapps 21:03:08 sicking has joined #webapps 21:49:29 smaug has joined #webapps 21:50:24 smaug has joined #webapps 21:51:58 divya has joined #webapps 22:02:02 cabanier has joined #webapps 22:13:42 skddc has joined #webapps 22:19:58 jeffh has joined #webapps 22:24:29 sicking has joined #webapps 22:32:21 divya has joined #webapps 22:42:44 skddc has joined #webapps 22:52:18 jeffh has joined #webapps 23:08:00 sicking has joined #webapps