00:06:17 RRSAgent has joined #webapps 00:06:17 logging to http://www.w3.org/2015/07/08-webapps-irc 00:06:35 RRSAgent, this meeting spans midnight 00:07:30 Hello. I'm not on the call because I forgot my laptop today... :-( 00:07:59 But at least I'm here. ^_^ 00:08:26 Hi! 00:09:23 Excellent. 00:09:39 If you want to use a regular phone to dial in: +1-617-324-0000 00:09:59 Code is: 647 802 277 00:10:18 So... agenda? 00:10:32 Testing. Specifically, the doc that you sent out. 00:10:51 I commited the code to web-platform-tests this past week. 00:11:13 I'd also like to have a set of short-term goals. Targetting something around end of September. 00:11:31 Ok. Anything else? 00:11:38 For example, test a few events. Verify in multiple browsers. et al. 00:12:11 My important issue is https://www.w3.org/Bugs/Public/show_bug.cgi?id=21120 00:14:16 OK. So: 00:14:26 1. Goals (short term & testing) 00:14:39 2. Bug 21120 00:14:51 3. Testing framework (Travis) 00:14:56 Anything else? 00:15:54 Alright. Topic #1. 00:15:59 That's probably enough for today. 00:16:24 Gary you mentioned targetting something for end of Sept. 00:16:38 Were you thinking of a re-publication of the spec, or something else? 00:16:57 Getting a new spec published would be rather ambitious. 00:17:12 I was thinking more in terms of tracking progress on the testing front. 00:17:55 Clearly the major effort for us will be on the interactions and order of different events in relation to each other. 00:18:01 It would be nice to start picking off a few bugs as well. E.g., the ones that Masayuki wants prioritized. 00:19:19 Re: event ordering. I didn't see support for ambiguous ordering -- events can occur in either A>B or B>A order. 00:19:48 Do we have situations where we have a sequence of events, but a few of them don't have a strictly defined order? 00:20:18 Something like ABCDE nad ABDCE both being valid. 00:20:36 We may in regards to composition events or key/down up pairs. 00:20:45 I'm not sure if that's needed. We probably won't know until we start digging into the testing. 00:20:55 When you say "support" what do you mean? 00:21:16 I think it sounds like something that could be added later, but I wanted to bring it up. 00:21:56 by support: I mean creating a single test that accepts either ABCDE or ABDCE as correct event order. 00:22:49 That shouldn't be a problem. 00:23:18 The framework I wrote just records what happens, it doesn't prescribe a "right" or "wrong" answer--that logic still needs to be authored by the test author. 00:23:44 In regards to bugs, I counted 9 bugs that are related to key names/processing. 00:23:59 We could set a goal to work through all those 9 bugs by Sept.? 00:24:15 that sounds good. 00:24:36 Sounds good to me too. 00:24:39 I haven't yet updated the spec now that it lives in the new location. 00:25:00 I need to get set up to do that... 00:25:11 I find it a bit easier to work with--you can even update directly through the Github website if you wish :) 00:25:45 Yeah, I'm sure it's not that hard - it's just doing it the first time. 00:26:12 Q: regarding new keys... do we need to add low-level mapping key/code values for any new "key-like" think that exists in all the world? 00:26:26 (e.g., new TVs and remote controls in Asia, etc.?) 00:26:37 It seems like an intractable (and never ending) problem. 00:27:05 We *don't* want to say the people can add whatever codes they want. 00:27:26 The only alternative is to specify all the keys that people would be tempted to add. 00:27:50 We don't have to do them now, but we can play whack-a-mole as they come up. 00:28:09 [edit] We don't have to do them *all* now... 00:28:30 It seems like for some specific scenarios, should it be OK to overload some kind of user-defined key/code values? 00:29:00 Hardware people are coming up with new buttons with new labels and associated control codes all the time. 00:29:28 Is it the responsibility of our spec to define everything that could eventually, maybe, be used in a browser? 00:30:09 It seems like we are going the wrong direction--all these key codes make it _harder_ to author websites that will just work across a variety of platforms... 00:30:34 At least web apps installed into such device need to distinguish what button in remote control is pressed. 00:30:52 Yes, but we don't care about vendor-specific buttons on remotes. But once they're defined in something like Android or iOS, it starts to make sense to think about including them. 00:31:11 I'm assuming that anything defined by (say) Android can occur in an Android browser. 00:31:20 But perhaps that's a mistaken assumption. 00:31:43 Android (the OS) is larger in scope than Chrome right? 00:32:19 Yes. 00:32:20 Hmmm.... 00:32:31 Well, if the OS can generate the key code from some supported hardward, then it probably goes to the browser as-is... 00:32:47 Perhaps I'm just complaining about all the keys and codes that I'll never user. 00:32:55 It's a valid concern. 00:33:17 I'd like to only add keys that can be generated by a virtual keyboard (and thus, can make it into the browser). 00:33:57 Thinking about it now, I'm not sure if all of those keys satisfy that constraint. 00:34:25 Well, let's evaluate the set of 9 bugs we have on the subject, and see if we can get resolutions in the bugs for what we want and don't. It doesn't make sense to speculate here. 00:34:55 What would be a good goal for testing? 00:35:30 Have a framework (kinda done) 00:35:43 Write some number of tests (probably small to start with0 00:35:54 Well, today we now officially have 1. 00:35:56 Make sure we're evaluating on multiple browsers 00:36:03 I'll transition to my topic. 00:36:07 http://w3c-test.org/uievents/ 00:36:08 Get feedback from the browser vendors about our approach. 00:36:24 We now have an official home in web-platform-tests. 00:36:47 I've created some basic directory structure based on Gary and I's initial brainstorming. 00:37:39 First test to validate the framework script I proposed last week: http://w3c-test.org/uievents/order-of-events/mouse-events/ 00:37:57 You can view the source to see what I did. 00:38:24 I made the mistake of direct-checkin to master on web-platform-tests (and broke the build as a result). 00:38:39 Subsequent commits will be done via pull-request. 00:38:42 :-) 00:39:03 This mouse events tests was the simplest that I could conceive. 00:39:13 I also looked briefly at the web-driver tests. 00:39:42 It seems that we should be able to hook up webdriver to automate a large portion of our manual tests. 00:40:38 I'm still unsure how webdriver will handle input like dead-key simulation, crillic keyboard layouts, etc. 00:40:39 The mouse-event passes even if you enter/leave box 1 multiple times and then enter box 2 (from outside box 1). I would have expected the event order to be different enough to complain. 00:41:33 Yeah, we can change that. Just need to add handlers to the space around the boxes. 00:42:06 It was originally done by including the raw test in an iframe, but it didn't seem strictly necessary, so I merged the test container and the iframe together. 00:42:21 Is the pattern appropriate for testing? 00:42:50 I expected multiple mouseenter/mouseleave pairs for box 1 to be enough to make the test unhappy. 00:42:57 In any case, it looks great! 00:43:05 It's nice to have this as a starting point for the tests. 00:43:55 Yes, you bring an interesting point--the test only tests mousemove in isolation--no other events are tested--yet you almost need to test ALL the related events in sequence to make sure it's all working correctly. 00:44:08 (Start small) 00:44:52 Gary, want to try writing a followup test using this framework this week? 00:45:00 Since this is a manual test, it would be nice to have the user do something (like move the mouse) and then run a whole bunch of event order tests. 00:45:29 But we also would like each test to be small and self contained. 00:45:46 Both options are available. 00:45:57 I kept it simple with one test in one file. 00:46:07 Perhaps: Test groups as associated with a single user action (moving the mouse between boxes). and we have a number of tests for that particular group. 00:46:43 Sounds good to me. Nothing like getting your hands dirty to see what works and what doesn't. 00:46:44 That keeps tests small, and the user/tester doesn't have to repeat the same tedious action for each test. 00:46:51 Yeah. 00:47:01 Anyway, I'm out later this week. 00:47:07 :-( 00:47:12 I won't be able to play with this until Aug. 00:47:30 (although I want to) 00:47:47 Perhaps I can make some more progress on the 'test group' concept. 00:47:55 How about we set that as a goal for end of Sept. 00:48:08 OK. 00:48:12 masayuki: are you interested in contributing? 00:48:19 ... you are welcome to. 00:48:26 A user-action-group with a small set of associated tests. 00:48:36 Proposed goals for Sept.: 00:48:45 * A user-action-group with a small set of associated tests. 00:48:58 Hmm, I'd like to do that, but I have a lot of bugs to be fixed by the end of Sept... 00:49:06 * Resolve 9 bugs dealing with adding new keys/codes. 00:49:30 Gary has been sending ideas for tests--thanks Gary. 00:49:32 masayuki: The most important thing would be to get feedback on the tests. 00:49:37 I'd like to also capture those somewhere. 00:50:09 Goal: * Get initial feedback on tests from browser vendors 00:50:38 I think those 3 things capture what we can reasonably expect to fix in the time (since we have a variety of vacations during this period) 00:50:48 garykac: So, you mean, I should check the tests you will create? Then, perhaps, I could. 00:51:15 I can have some folks from MS look over it. The fella that wrote some of the original events tests is still here :-) 00:51:40 masayuki: yes, any feedback on the tests (once we have some) would be great. 00:52:01 Between the three of us, we can have feedback from Mozilla, Microsoft, and Google. :) Have any good contacts at Apple? 00:52:17 rniwa might be helpful 00:52:27 How to post feedback for them? bugzilla? github? ML? 00:52:34 No, but I can ask around once we have something to show. 00:52:50 Yeah, Ryousuke might be a good person. 00:53:28 On feedback: if we use Github issues for Web-platform-tests they might get lost in the crowd. 00:53:29 (err... that wasn't intended to be a general comment on goodness....) 00:54:21 At this point, we can track issues in a single doc (or bug if you prefer). Once things have stablized, then github issues will be more apprpriate. 00:54:22 But, github issues are the standard way to go. You can also tag people in them to get our attention. 00:55:07 We have this bug we could use for initial feedback: https://www.w3.org/Bugs/Public/show_bug.cgi?id=25967 00:55:09 I don't feel strongly either way. We can play it by ear. 00:55:35 For checking if each test is tested, managing with single document (like Google document) isn't so bad way. 00:56:31 We were also thinking of cross-linking tests into our spec to keep better track of them. 00:56:41 Well, we can work out those details later. 00:56:55 When are we all available to meet next time? 00:57:38 Gary, what is your vacation plans? Back in August? 00:57:48 14 and 21 is avaialbe, but not so 28. 00:58:09 sicking has joined #webapps 00:58:46 I'll be out until late Aug 00:59:04 Aug 25 might be the next time... 00:59:28 I'm gone from next monday to the 23rd, so 28th would be my soonest. 00:59:39 But you could meet earlier... 01:00:06 I could meet Aug. 3, or 25th. 01:01:04 Aug 4, 11, 18, 25. 01:01:35 Uh, 4th or 25th. 01:01:36 Currently, I have no plan in Aug, so, I must be available every week in Aug. 01:02:00 I'll talk to you all on Aug 25. If you decide to meet earlier, I'll catch up by reading the log. 01:02:23 Well, can we check in on the 4th? We won't have Gary, but it will help force me to work on the testing. 01:02:29 sgtm 01:02:36 ^_^ 01:02:41 OK. 01:03:01 OK. I'm checking out now. I'll talk to you all later. 01:03:15 Thanks Gary! 01:03:26 masayuki: hear from you again on the 4th. 01:03:44 Travis: yeah, see you. 01:04:03 (starting another meeting now...) 01:04:29 rrsagent, make the minutes 01:04:29 I have made the request to generate http://www.w3.org/2015/07/08-webapps-minutes.html Travis 01:04:40 rrsagent, make logs public 01:20:38 Florian has joined #webapps 01:25:53 rniwa has joined #webapps 02:09:33 marcosc has joined #webapps 03:10:48 sicking has joined #webapps 03:22:15 Florian has joined #webapps 03:55:34 estellevw has joined #webapps 04:45:17 marcosc has joined #webapps 05:25:27 Florian has joined #webapps 05:26:18 jyasskin has joined #webapps 05:48:12 sicking has joined #webapps 06:37:56 marcosc has joined #webapps 06:40:43 darobin has joined #webapps 06:45:06 estellevw has joined #webapps 06:52:54 dom has joined #webapps 07:25:57 darobin has joined #webapps 07:30:58 Florian has joined #webapps 08:17:53 jmajnert has joined #webapps 08:27:47 chaals has joined #webapps 10:20:27 Florian has joined #webapps 10:59:34 Florian has joined #webapps 11:06:56 darobin has joined #webapps 11:10:31 darobin has joined #webapps 11:25:31 marcosc has joined #webapps 12:14:30 darobin has joined #webapps 12:18:30 marcosc_ has joined #webapps 12:41:52 dom has joined #webapps 13:31:28 fjh has joined #webapps 13:50:27 estellevw has joined #webapps 13:52:49 Florian has joined #webapps 14:09:22 fjh has joined #webapps 14:28:28 fjh has joined #webapps 14:33:19 chaals has joined #webapps 14:45:47 fjh has joined #webapps 14:51:55 jyasskin has joined #webapps 15:00:41 fjh has joined #webapps 15:56:58 tantek has joined #webapps 16:24:32 estellevw has joined #webapps 17:05:38 sicking has joined #webapps 17:15:30 chaals has joined #webapps 17:39:03 darobin has joined #webapps 18:24:59 jyasskin has joined #webapps 18:36:55 Florian has joined #webapps 18:44:35 jyasskin has joined #webapps 19:35:03 darobin has joined #webapps 19:35:23 darobin has joined #webapps 19:54:56 paul___irish has joined #webapps 20:30:08 darobin has joined #webapps 20:32:15 sicking has joined #webapps 20:40:16 darobin has joined #webapps 20:43:10 sicking has joined #webapps 20:54:44 jsbell has joined #webapps 21:40:30 Florian has joined #webapps 21:40:38 darobin has joined #webapps 21:45:25 sicking has joined #webapps 21:51:58 <|orion> |orion has joined #webapps 23:01:23 smaug has joined #webapps 23:01:33 <|orion> |orion has left #webapps 23:02:53 smaug has joined #webapps 23:34:15 darobin has joined #webapps 23:40:59 smaug has joined #webapps 00:21:10 smaug has joined #webapps 01:14:24 rniwa has joined #webapps 01:26:06 estellevw has joined #webapps 01:27:54 Florian has joined #webapps 03:29:44 sicking has joined #webapps 04:14:26 kochi has joined #webapps 05:30:20 estellevw has joined #webapps 05:31:31 Florian has joined #webapps 05:49:44 darobin has joined #webapps 06:18:57 sicking has joined #webapps 06:24:57 marcosc has joined #webapps 06:49:49 jmajnert has joined #webapps 06:52:40 sicking has joined #webapps 07:08:14 chaals has joined #webapps 07:12:18 dom has joined #webapps 07:13:13 Florian has joined #webapps 08:04:03 Florian has joined #webapps 08:31:17 chaals has joined #webapps 08:31:39 darobin has joined #webapps 08:47:32 gavin has joined #webapps 09:06:32 marcosc has joined #webapps 09:06:38 Florian has joined #webapps 09:13:02 Florian has joined #webapps 09:20:40 Florian has joined #webapps 09:48:29 smaug has joined #webapps 10:34:41 Florian has joined #webapps 10:46:04 chaals has joined #webapps 11:19:20 chaals has joined #webapps 11:22:47 chaals has joined #webapps 12:19:40 Florian_ has joined #webapps 13:07:29 smaug has joined #webapps 13:23:38 marcosc has joined #webapps 13:59:51 smaug has joined #webapps 14:02:01 glenn has joined #webapps 14:16:36 chaals has joined #webapps 14:33:21 jyasskin has joined #webapps 15:11:18 smaug_ has joined #webapps 15:34:14 sicking has joined #webapps 15:36:11 chaals has joined #webapps 15:48:13 glenn has joined #webapps 15:49:19 glenn_ has joined #webapps 15:56:11 estellevw has joined #webapps 16:10:40 sicking has joined #webapps 16:11:36 sicking has joined #webapps 16:44:27 sicking has joined #webapps 17:16:54 chaals has joined #webapps 17:28:19 Florian has joined #webapps 17:46:23 Florian has joined #webapps 18:06:47 rniwa_ has joined #webapps 18:10:17 jyasskin has joined #webapps 19:07:32 Florian has joined #webapps 19:27:02 Florian has joined #webapps 19:30:32 jsbell has joined #webapps 19:53:18 rniwa has joined #webapps 20:30:50 jsbell has joined #webapps 20:34:29 sicking has joined #webapps 23:03:32 sicking has joined #webapps 23:06:48 estellevw has joined #webapps 23:35:55 estellevw has joined #webapps 23:53:27 sicking has joined #webapps 00:28:53 smaug has joined #webapps 00:48:13 chaals has joined #webapps 03:20:30 marcosc has joined #webapps 03:46:42 sicking has joined #webapps 03:46:53 estellevw has joined #webapps 05:03:35 estellevw has joined #webapps 05:23:52 sicking has joined #webapps 05:35:01 sicking has joined #webapps 06:21:26 marcosc has joined #webapps 06:47:54 marcosc_ has joined #webapps 06:49:28 marcosc__ has joined #webapps 07:47:03 dom has joined #webapps 08:06:50 Lachy has joined #webapps 08:32:05 chaals has joined #webapps 08:54:51 Lachy_ has joined #webapps 09:20:54 Florian has joined #webapps 09:23:54 Florian has joined #webapps 09:32:09 Florian has joined #webapps 09:40:14 Florian has joined #webapps 10:31:59 Florian has joined #webapps 11:04:49 Florian has joined #webapps 11:23:42 Florian has joined #webapps 11:37:04 Florian has joined #webapps 11:46:08 Florian has joined #webapps 12:04:47 Florian has joined #webapps 12:29:15 smaug has joined #webapps 13:00:55 marcosc has joined #webapps 15:09:15 jyasskin has joined #webapps 15:17:13 marcosc has joined #webapps 15:39:54 estellevw has joined #webapps 15:43:19 shepazu has joined #webapps 16:01:04 shepazu has joined #webapps 16:04:12 fjh has joined #webapps 16:07:29 jyasskin has joined #webapps 16:29:01 Lachy has joined #webapps 16:31:55 Lachy has joined #webapps 17:32:26 Lachy has joined #webapps 17:36:21 smaug has joined #webapps 17:52:35 fjh has joined #webapps 18:02:46 jsbell has joined #webapps 18:19:25 Florian has joined #webapps 18:23:06 Lachy has joined #webapps 18:36:20 Florian has joined #webapps 18:48:28 fjh has joined #webapps 18:51:25 fjh has joined #webapps 18:54:54 fjh has joined #webapps 18:55:13 Florian has joined #webapps 19:27:39 Florian has joined #webapps 19:32:16 fjh has joined #webapps 19:36:11 Florian has joined #webapps 19:43:12 Lachy has joined #webapps 19:44:12 jsbell has joined #webapps 19:46:06 smaug has joined #webapps 19:49:38 Florian has joined #webapps 20:07:49 Florian has joined #webapps 20:14:35 Florian has joined #webapps 20:37:15 fjh has joined #webapps 20:43:46 sicking has joined #webapps 20:50:11 rniwa has joined #webapps 21:54:41 chaals has joined #webapps 22:13:25 estellevw has joined #webapps 22:32:02 fjh has joined #webapps 22:55:49 fjh has joined #webapps 00:17:42 sicking has joined #webapps 02:56:22 marcosc has joined #webapps 02:59:21 fjh has joined #webapps 03:02:08 jyasskin has joined #webapps 03:50:37 marcosc has joined #webapps 04:09:27 gavin_ has joined #webapps 04:26:26 marcosc has joined #webapps 05:04:28 jyasskin has joined #webapps 05:16:20 gavin has joined #webapps 06:22:37 Lachy has joined #webapps 06:43:10 chaals has joined #webapps 07:03:39 Florian has joined #webapps 07:19:39 Florian_ has joined #webapps 10:04:25 Florian has joined #webapps 10:33:30 smaug has joined #webapps 10:57:46 smaug has joined #webapps 11:38:00 Florian has joined #webapps 12:58:50 smaug has joined #webapps 13:23:26 fjh has joined #webapps 13:41:53 smaug has joined #webapps 13:55:37 Florian has joined #webapps 14:14:06 marcosc has joined #webapps 15:10:26 Florian has joined #webapps 16:04:46 estellevw has joined #webapps 17:28:27 marcosc has joined #webapps 17:53:43 Florian has joined #webapps 18:39:08 smaug has joined #webapps 19:12:47 estellevw has joined #webapps 19:46:26 smaug has joined #webapps 20:23:08 smaug has joined #webapps 20:38:14 smaug has joined #webapps 20:53:27 fjh has joined #webapps 21:06:18 Florian has joined #webapps 22:58:36 chaals has joined #webapps 23:37:31 krijnhoetmer has joined #webapps 23:37:51 chaals has joined #webapps 00:00:23 estellevw has joined #webapps 00:08:25 Florian has joined #webapps 02:29:43 marcosc has joined #webapps 03:08:28 estellevw has joined #webapps 04:12:30 Florian has joined #webapps 05:12:31 hgl has joined #webapps 06:16:47 krijnhoetmer has joined #webapps 06:46:32 chaals has joined #webapps 07:16:40 Florian has joined #webapps 09:56:37 smaug has joined #webapps 10:28:14 smaug has joined #webapps 12:39:36 Florian has joined #webapps 15:10:09 smaug has joined #webapps 15:10:18 fjh has joined #webapps 15:43:42 Lachy has joined #webapps 15:59:08 estellevw has joined #webapps 16:16:47 fjh has joined #webapps 16:23:14 Florian has joined #webapps 16:34:44 smaug has joined #webapps 16:45:09 chaals has joined #webapps 18:46:07 jyasskin has joined #webapps 19:05:33 estellevw has joined #webapps 19:40:51 smaug has joined #webapps 20:08:55 Lachy has joined #webapps 21:22:54 smaug has joined #webapps 22:01:12 chaals has joined #webapps 22:11:46 estellevw has joined #webapps 22:42:19 smaug has joined #webapps 00:02:19 marcosc has joined #webapps 02:26:11 estellevw has joined #webapps 05:01:42 sicking has joined #webapps 05:31:50 estellevw has joined #webapps 06:25:23 marcosc has joined #webapps 08:08:07 Lachy has joined #webapps 09:38:19 smaug has joined #webapps 09:52:03 Florian has joined #webapps 10:18:28 geheimnis` has joined #webapps 10:56:27 Florian has joined #webapps 11:01:12 ArtB has joined #webapps 11:49:22 chaals has joined #webapps 11:55:56 hgl has joined #webapps 12:29:12 marcosc has joined #webapps 12:57:52 smaug has joined #webapps 13:12:04 krijnhoetmerbot has joined #webapps 14:05:45 marcosc has joined #webapps 14:39:25 marcosc_ has joined #webapps 14:41:42 marcosc has joined #webapps 15:34:16 jyasskin has joined #webapps 16:04:58 jyasskin has joined #webapps 16:19:39 sicking has joined #webapps 16:22:22 sicking has joined #webapps 16:39:17 jyasskin has joined #webapps 16:56:22 sicking_ has joined #webapps 17:19:47 estellevw has joined #webapps 17:32:47 jyasskin has joined #webapps 17:43:53 jyasskin has joined #webapps 17:52:30 chaals has joined #webapps 18:26:08 jyasskin has joined #webapps 19:01:37 sicking has joined #webapps 19:35:46 gavin_ has joined #webapps 19:46:17 jyasskin has joined #webapps 19:59:34 smaug has joined #webapps 20:00:20 Florian has joined #webapps 20:06:28 sicking has joined #webapps 20:12:36 Florian has joined #webapps 20:14:33 rniwa has joined #webapps 20:22:40 smaug has joined #webapps 20:58:55 chaals has joined #webapps 22:01:02 estellevw_ has joined #webapps 22:29:20 chaals1 has joined #webapps 23:01:07 sicking has joined #webapps 23:38:39 chaals has joined #webapps 23:39:57 chaals has joined #webapps 23:44:39 chaals1 has joined #webapps 00:19:05 hgl has joined #webapps 00:22:36 jyasskin has joined #webapps 01:21:19 chaals has joined #webapps 01:52:49 ArtB has joined #webapps 01:59:11 sicking has joined #webapps 02:01:08 marcosc has joined #webapps 04:11:14 estellevw has joined #webapps 04:27:40 sicking has joined #webapps 04:38:15 Mr has joined #webapps 05:32:15 Hey guys. I had an issue with one of my webapps not working on iOS but it has inexplicably started working again now for seemingly no reason at all. :) Yay. 05:32:48 On a side note, making webapps is so much fun, I'm surprised I hadn't got into it before now. :o 05:57:38 marcosc has joined #webapps 06:15:10 sicking has joined #webapps 07:28:50 Florian has joined #webapps 07:28:51 Florian has joined #webapps 07:43:20 marcosc has joined #webapps 08:01:01 Florian has joined #webapps 08:02:33 Florian has joined #webapps 08:50:56 dka has joined #webapps 09:23:54 dka has joined #webapps 10:12:16 ArtB has joined #webapps 10:49:17 marcosc has joined #webapps 11:26:00 smaug has joined #webapps 11:40:51 dka has joined #webapps 11:50:49 marcosc has joined #webapps 12:57:16 marcosc has joined #webapps 13:06:57 chaals has joined #webapps 13:15:08 dka has joined #webapps 13:27:43 chaals has joined #webapps 13:38:39 ArtB has joined #webapps 13:52:21 chaals has joined #webapps 13:58:52 smaug has joined #webapps 14:48:41 estellevw has joined #webapps 15:06:18 Lachy has joined #webapps 15:15:10 jyasskin has joined #webapps 15:23:56 Lachy has joined #webapps 15:24:38 sicking has joined #webapps 15:26:13 estellevw has joined #webapps 15:37:25 chaals has joined #webapps 15:58:02 tantek has joined #webapps 16:03:34 dka has joined #webapps 16:16:26 chaals has joined #webapps 16:17:23 chaals1 has joined #webapps 16:21:34 chaals2 has joined #webapps 16:23:48 chaals has joined #webapps 16:25:17 tantek has joined #webapps 16:48:13 chaals has joined #webapps 16:53:22 tantek has joined #webapps 17:27:37 jyasskin has joined #webapps 17:54:53 jsbell has joined #webapps 18:01:51 rniwa has joined #webapps 18:02:22 rniwa_ has joined #webapps 18:39:44 jyasskin has joined #webapps 18:42:21 estellevw has joined #webapps 18:50:36 shepazu has joined #webapps 18:52:52 tantek has joined #webapps 19:44:40 sicking has joined #webapps 19:57:01 sicking has joined #webapps 20:02:00 sicking has joined #webapps 20:52:03 dka has joined #webapps 21:00:57 marcosc has joined #webapps 21:03:30 sicking has joined #webapps 22:22:14 hgl has joined #webapps 22:27:19 ArtB has joined #webapps 23:33:32 estellevw has joined #webapps 23:59:31 sicking has joined #webapps 00:07:25 hgl has joined #webapps 00:32:12 sicking has joined #webapps 00:46:18 sicking has joined #webapps 00:54:02 sicking has joined #webapps 00:55:06 marcosc has joined #webapps 04:34:43 sicking has joined #webapps 04:48:32 Lachy has joined #webapps 04:53:47 sicking has joined #webapps 04:55:32 sicking has joined #webapps 05:17:41 marcosc has joined #webapps 05:23:18 marcosc has joined #webapps 05:31:27 dka has joined #webapps 05:34:03 Lachy has joined #webapps 05:39:40 marcosc has joined #webapps 05:50:25 Lachy has joined #webapps 05:51:39 jyasskin has joined #webapps 06:00:20 shepazu has joined #webapps 06:05:57 dka has joined #webapps 06:43:40 dka has joined #webapps 06:50:03 chaals has joined #webapps 06:58:24 dka has joined #webapps 07:04:01 Lachy has joined #webapps 07:20:00 dka has joined #webapps 07:36:00 dom has joined #webapps 07:43:37 dka has joined #webapps 07:58:07 dka has joined #webapps 08:25:20 marcosc has joined #webapps 08:33:35 dka has joined #webapps 08:53:10 sicking has joined #webapps 08:56:35 dka has joined #webapps 09:10:13 chaals has joined #webapps 09:17:49 jmajnert has joined #webapps 09:50:14 smaug has joined #webapps 09:51:46 Lachy has joined #webapps 09:52:38 Florian has joined #webapps 09:56:08 dka has joined #webapps 10:07:12 dka has joined #webapps 10:44:30 ArtB has joined #webapps 10:55:44 Florian has joined #webapps 11:37:49 dka has joined #webapps 11:42:51 chaals has joined #webapps 12:43:19 dom has joined #webapps 12:52:18 Florian has joined #webapps 13:16:46 Florian has joined #webapps 13:18:47 Florian has joined #webapps 13:21:25 Florian_ has joined #webapps 13:32:40 Florian has joined #webapps 13:38:59 Florian_ has joined #webapps 13:40:11 Florian__ has joined #webapps 13:42:23 dka has joined #webapps 13:52:45 chaals has joined #webapps 13:53:01 dom has joined #webapps 13:59:39 wilsonpage has joined #webapps 14:38:26 smaug has joined #webapps 14:41:12 estellevw has joined #webapps 14:53:39 fjh has joined #webapps 15:14:06 jyasskin has joined #webapps 15:23:55 ArtB has joined #webapps 15:27:14 Florian_ has joined #webapps 15:38:41 marcosc has joined #webapps 15:46:24 estellevw has joined #webapps 15:53:18 jyasskin has joined #webapps 15:55:07 Florian has joined #webapps 16:00:47 tantek has joined #webapps 16:03:16 hgl has joined #webapps 16:06:59 marcosc has joined #webapps 16:31:40 estellevw has joined #webapps 16:43:31 Florian_ has joined #webapps 16:44:50 jyasskin has joined #webapps 16:50:32 chaals has joined #webapps 16:57:01 chaals has joined #webapps 16:59:23 wilsonpa_ has joined #webapps 17:03:12 jyasskin has joined #webapps 17:08:01 jcraig has joined #webapps 17:24:31 Florian has joined #webapps 17:32:22 Florian_ has joined #webapps 17:43:11 Florian has joined #webapps 17:55:43 jsbell has joined #webapps 18:36:55 Florian has joined #webapps 18:37:48 user1234 has joined #webapps 18:55:02 jcraig has joined #webapps 19:04:40 chaals has joined #webapps 19:27:24 Florian has joined #webapps 19:39:51 rniwa has joined #webapps 19:44:13 Florian_ has joined #webapps 20:33:58 wilsonpage has joined #webapps 20:51:09 sicking has joined #webapps 22:43:56 smaug has joined #webapps 23:01:14 marcosc has joined #webapps 23:12:44 estellevw has joined #webapps 23:38:29 estellevw has joined #webapps 23:42:34 marcosc_ has joined #webapps 00:16:30 estellevw has joined #webapps 00:49:00 estellevw has joined #webapps 00:53:59 marcosc has joined #webapps 01:15:04 koji has joined #webapps 02:15:22 rniwa has joined #webapps 02:29:59 kochi has left #webapps 03:00:08 kochi has joined #webapps 03:00:48 sicking has joined #webapps 03:21:28 kochi has joined #webapps 03:26:04 sicking has joined #webapps 03:28:10 jyasskin has joined #webapps 03:52:51 sicking_ has joined #webapps 03:54:13 tyoshino_ has joined #webapps 03:55:13 hgl has joined #webapps 03:56:16 slightlyoff has joined #webapps 03:57:14 othree has joined #webapps 03:57:33 koji has joined #webapps 03:59:11 tobie has joined #webapps 03:59:35 igrigorik has joined #webapps 04:01:07 mihnea_____ has joined #webapps 04:07:03 gavin has joined #webapps 04:07:55 kochi has joined #webapps 04:07:55 igrigorik has joined #webapps 04:08:11 mihnea_____ has joined #webapps 04:08:11 tyoshino_ has joined #webapps 04:08:12 othree has joined #webapps 04:10:26 ebryn has joined #webapps 04:11:24 mkwst has joined #webapps 04:11:26 scheib has joined #webapps 04:17:51 gavin has joined #webapps 04:17:59 igrigorik has joined #webapps 04:18:04 dfreedm has joined #webapps 04:18:05 mihnea_____ has joined #webapps 04:18:07 hayato has joined #webapps 04:18:09 tyoshino_ has joined #webapps 04:18:09 othree has joined #webapps 04:18:57 esprehn has joined #webapps 04:19:05 adrianba has joined #webapps 04:23:03 dcooney____ has joined #webapps 04:23:26 timeless has joined #webapps 04:24:15 mstriemer has joined #webapps 04:26:24 Domenic_ has joined #webapps 04:27:52 jkomoros has joined #webapps 04:28:29 ebryn has joined #webapps 04:28:43 scheib has joined #webapps 04:28:46 mkwst has joined #webapps 04:28:57 pdr has joined #webapps 04:29:13 ElijahLynn has joined #webapps 04:32:59 jsbell__ has joined #webapps 04:36:32 krit has joined #webapps 04:37:38 cwilso has joined #webapps 04:42:19 cabanier has joined #webapps 04:46:37 koji has joined #webapps 04:46:56 slightlyoff has joined #webapps 04:47:00 tobie has joined #webapps 05:05:20 sicking has joined #webapps 05:06:00 estellevw has joined #webapps 05:49:41 gavin has joined #webapps 05:50:57 gavin_ has joined #webapps 06:00:21 shepazu_ has joined #webapps 06:35:11 marcosc has joined #webapps 07:02:16 chaals has joined #webapps 07:08:45 dka has joined #webapps 07:36:19 marcosc_ has joined #webapps 08:05:15 dom has joined #webapps 08:25:38 wilsonpage has joined #webapps 08:52:49 smaug has joined #webapps 09:03:12 dka has joined #webapps 09:28:05 chaals has joined #webapps 09:54:49 darobin has joined #webapps 10:23:51 wilsonpage has joined #webapps 10:45:04 smaug has joined #webapps 11:16:32 chaals has joined #webapps 11:23:13 ArtB has joined #webapps 11:31:24 darobin has joined #webapps 11:42:22 dka has joined #webapps 11:46:26 chaals has joined #webapps 12:14:23 darobin has joined #webapps 13:13:02 marcosc has joined #webapps 14:07:35 dka_ has joined #webapps 15:01:57 jyasskin has joined #webapps 15:05:35 estellevw has joined #webapps 15:09:35 dka has joined #webapps 15:14:57 chaals has joined #webapps 15:28:25 darobin has joined #webapps 15:37:11 darobin has joined #webapps 15:40:42 dka has joined #webapps 15:44:35 darobin has joined #webapps 17:01:13 sicking has joined #webapps 17:09:55 jyasskin has joined #webapps 17:19:48 jsbell has joined #webapps 17:29:28 darobin has joined #webapps 17:56:03 estellevw has joined #webapps 18:19:01 jyasskin has joined #webapps 18:52:46 smaug has joined #webapps 20:12:09 sicking has joined #webapps 20:45:42 sicking has joined #webapps 22:34:27 gavin has joined #webapps 22:50:36 smaug has joined #webapps 23:00:50 marcosc has joined #webapps 23:03:36 marcosc has joined #webapps 23:23:18 sicking has joined #webapps 23:53:28 sicking has joined #webapps 00:02:23 sicking has joined #webapps 00:24:44 estellevw has joined #webapps 00:46:42 estellevw has joined #webapps 01:54:50 estellevw has joined #webapps 02:14:05 richt has joined #webapps 02:16:02 gavin has joined #webapps 02:45:30 hgl has joined #webapps 03:28:31 sicking has joined #webapps 06:14:03 estellevw has joined #webapps 06:16:37 chaals has joined #webapps 06:53:40 dka has joined #webapps 07:34:00 dka has joined #webapps 07:39:53 chaals has joined #webapps 08:09:11 Lachy has joined #webapps 08:58:21 dka has joined #webapps 09:30:04 wilsonpage has joined #webapps 09:35:11 darobin has joined #webapps 09:53:53 dka has joined #webapps 10:26:17 smaug has joined #webapps 10:52:33 ArtB has joined #webapps 11:51:41 dka has joined #webapps 11:52:51 chaals has joined #webapps 12:08:31 darobin has joined #webapps 12:10:08 dom has joined #webapps 12:42:33 Lachy has joined #webapps 13:19:04 smaug_ has joined #webapps 14:03:36 smaug_ has joined #webapps 14:07:39 dka has joined #webapps 15:41:13 estellevw has joined #webapps 15:52:48 wilsonpage has joined #webapps 16:29:10 marcosc has joined #webapps 16:52:39 jyasskin has joined #webapps 17:07:32 darobin has joined #webapps 17:48:41 wilsonpa_ has joined #webapps 18:12:18 sicking has joined #webapps 18:47:12 marcosc has joined #webapps 19:31:40 darobin has joined #webapps 20:31:21 jsbell has joined #webapps 20:33:10 darobin has joined #webapps 20:48:16 darobin has joined #webapps 21:14:40 sicking has joined #webapps 22:07:39 Lachy has joined #webapps 23:49:42 jyasskin has joined #webapps 23:58:31 jyasskin has joined #webapps 00:50:08 jyasskin_ has joined #webapps 00:55:37 jyasskin has joined #webapps 01:43:24 estellevw has joined #webapps 03:07:50 hgl has joined #webapps 03:29:52 marcosc has joined #webapps 03:44:00 estellevw has joined #webapps 06:21:10 jyasskin has joined #webapps 06:27:17 jyasskin has joined #webapps 08:41:47 Lachy has joined #webapps 09:45:52 wilsonpage has joined #webapps 10:27:14 smaug has joined #webapps 10:45:53 wilsonpage has joined #webapps 10:48:54 smaug has joined #webapps 11:01:58 ArtB has joined #webapps 11:24:22 smaug has joined #webapps 11:46:21 smaug has joined #webapps 12:00:28 smaug has joined #webapps 12:10:25 wilsonpage has joined #webapps 12:32:36 smaug has joined #webapps 12:56:47 smaug has joined #webapps 13:03:55 Lachy has joined #webapps 13:59:25 smaug has joined #webapps 15:15:56 smaug has joined #webapps 17:02:47 jyasskin has joined #webapps 18:21:25 Lachy has joined #webapps 18:51:26 smaug has joined #webapps 19:15:50 smaug has joined #webapps 21:05:33 Lachy has joined #webapps 21:47:13 Lachy has joined #webapps 22:22:27 Lachy has joined #webapps 23:22:29 rniwa has joined #webapps 05:53:00 hgl has joined #webapps 06:05:49 jgraham has joined #webapps 06:33:58 jyasskin has joined #webapps 09:27:55 smaug has joined #webapps 10:48:42 Lachy has joined #webapps 11:01:16 hgl has joined #webapps 11:48:14 ArtB has joined #webapps 12:42:18 smaug has joined #webapps 13:12:49 smaug has joined #webapps