**** BEGIN LOGGING AT Sat Sep 06 02:59:59 2014 Sep 06 06:00:21 dmanderson: You can either use a TP, Nexus, N4, N7 2012 or VirtualBox ;) Sep 06 06:00:55 VirtualBox is a little buggy currently, but other than that it's fine. Sep 06 06:25:41 morphis: ping Sep 06 07:25:27 morning Sep 06 07:31:18 Herrie, morphis: can you please tell steps to reproduce 575 on tenderloin? I've tried to restart luna-next by ssh over wifi(when screen turned off), and then either screen lock works after power on screen, or tenderloin hangs. I've had 5 hard reboots and never seen 575. Sep 06 07:32:41 btw wifi can't connect if ssid broadcast is disabled Sep 06 08:06:43 Herrie: I noticed it only on N4 for now, didn't test much with TP to be honest recently Sep 06 08:06:50 Tofe: morning Sep 06 08:07:02 Any of you guys who can read C++ properly? I cannot :P Sep 06 08:13:32 I can :) Sep 06 08:13:57 But coffee first. Sep 06 08:16:43 I think I figured it out :P Sep 06 08:32:16 morphis: Seems like UniversalSearch doesn't supports https, did some PR to address this. I know very little C++, so please make sure my changes are correct ;) They should be very straight forward, so I expect them to be OK. Used DCO signoff since I'll PR them to upstream as well (doubt anyone at LGE will do something with it though?) Sep 06 10:56:39 morning Sep 06 10:56:52 Herrie: what do you need help with C++ wise? Sep 06 10:58:00 Garfonso; Think I managed ;) https://github.com/webOS-ports/luna-universalsearchmgr/pull/5 Sep 06 10:58:05 https://github.com/webOS-ports/luna-universalsearchmgr/pull/4 Sep 06 10:58:31 Seems UniversalSearch didn't like that I changed the URL's to https in the JSON with the search engines, seems it checks it to be http Sep 06 10:58:35 So added https ;) Sep 06 10:58:44 hm.. Sep 06 10:59:27 Though I think I might have https://github.com/webOS-ports/luna-universalsearchmgr/pull/4/files wrong :'( Sep 06 10:59:33 I guess I need && there instead of || ? Sep 06 11:01:31 && would be good. But another possibility is to use strncmp instead and only compare the first 4 chars Sep 06 11:01:49 this also prevents buffer overflow related security issues Sep 06 11:03:02 so strcmp(uriScheme, "http") != 0 would become strncmp(uriScheme, "http", 4) != 0 and accept http and https (but also everything else that starts with http ... Sep 06 11:06:22 Not sure we'd be happy with anything else that starts with http, to me that sounds like a security risk? Sep 06 11:06:52 k, make it && then. ;) Sep 06 11:07:21 OK Sep 06 11:07:33 LOL was too early to do C++ on a Saturday ;) Sep 06 11:07:39 Anyway C++ is not my language :P Sep 06 11:08:56 but in the other file || is right. Sep 06 11:09:18 Yeah Sep 06 11:09:21 I noticed that ;) Sep 06 11:09:38 Had C++ ages ago for 1 block, happy I never pursued it ;) Sep 06 13:08:35 the drag'n'drop improvement for cards (drag on long mouse press) is gonna be a real challenge... Thanks Qt for this wonderful MouseArea QML object... Sep 06 15:52:10 Tofe: complain to Digia? Sep 06 15:52:18 Maybe they'll improve it somehow? Sep 06 15:54:41 Maybe; I'm beginning to think about other ways to do it, but one of them implies having a C++ plugin and would mean not having the drag'n'drop working on desktop Sep 06 15:54:57 Which is not a drama, but still annoying for quick testing Sep 06 16:01:36 The wiki is not rendering correctly... Sep 06 16:02:50 ka6sox: Which page? Sep 06 16:03:23 homepage for sure Sep 06 16:03:30 haven't dut deeper yet Sep 06 16:03:39 s/dut/dug/ Sep 06 16:03:54 Hmmz Sep 06 16:03:58 Someone must have touched stuff Sep 06 16:04:01 Was fine here before Sep 06 16:04:37 Looks like some CSS might have been gone wrong or missing? Sep 06 16:05:14 I don't believe that anyone touched it recently Sep 06 16:05:18 a week ago yes... Sep 06 16:05:31 Well it was working hwen put live Sep 06 16:05:37 Also the registration confirmation is gone Sep 06 16:05:38 yup Sep 06 16:05:44 Someone has been playing with stuff Sep 06 16:05:48 that was done a week ago... Sep 06 16:05:57 I see tons of auto approved user registrations in the last 3 days Sep 06 16:06:03 While before they needed manual confirmation Sep 06 16:06:07 Did someone update the wiki? Sep 06 16:06:11 You or Scoutcamper? Sep 06 16:06:44 I mean backend software Sep 06 16:06:50 Because looks all our CSS stuff is gone Sep 06 16:06:58 Which could easily be caused by a software update Sep 06 16:09:14 scout Sep 06 16:09:47 Seems common.css still there Sep 06 16:09:50 And right version :S Sep 06 16:09:53 Not sure what happened Sep 06 16:10:06 Revision as of 04:11, 17 December 2013 by Lowey Sep 06 16:10:10 For common.css Sep 06 16:11:26 okay I'm working on the fix... Sep 06 16:13:05 thnx Sep 06 17:40:59 btw can confirm novacomd can work over tcp with emulator and tenderloin Sep 06 17:52:51 Herrie: ping Sep 06 18:35:24 Tofe: pong Sep 06 18:36:16 Herrie|away: I think I found another way to get "swipeable" cards, using a ListView. I built a small example code to test the feel. Want to try & feedback ? Sep 06 18:36:48 Sure I think I'll get to that in the morning Sep 06 18:36:56 The code of the proto is here: http://paste.ubuntu.com/8272086/ ; just create an empty Qt Quick 2.0 project, and put that in Sep 06 18:37:35 I've already begun integrating it in CardView, so far it's quite fine Sep 06 18:37:52 I hope that it'll help me with the drag'n'drop Sep 06 18:39:42 Let me try now Sep 06 18:39:55 I thought you had a full stack, but small code I can test now Sep 06 18:41:07 full stack will come at some point in time tomorrow, I hope :) Sep 06 18:41:11 :) Sep 06 18:41:39 I get a green card stuck to left side which I can drag up and down, correct? Sep 06 18:41:48 correct Sep 06 18:41:56 swipe up will discard the card Sep 06 18:41:59 OK, seems to work smoothly :) Sep 06 18:42:01 swipe down won't discard it Sep 06 18:42:19 swipe feels ok ? Sep 06 18:42:27 Yeah, just cannot get it off screen? Sep 06 18:42:48 off screen ? with a swipe up ? Sep 06 18:43:04 Yeah, cannot dismiss it I mean Sep 06 18:43:23 you didn't resize the main window, did you Sep 06 18:43:32 Ah wait, in small screen it looks like it dismisses it, but was in full screen mode :P Sep 06 18:43:36 LOL Sep 06 18:43:49 :) I simulated a part of the device's screen Sep 06 18:43:59 a slice, from top to bottom Sep 06 18:45:03 with a ListView it's a fake swipe, but I think it feels exactly the same; and that way the code is much smaller, and uses less javascript, which is always better for the cpu Sep 06 18:45:22 :) Sep 06 18:45:39 ok, you seem happy with that proto, I'll continue to try the full integration Sep 06 18:45:42 This might also help with resizing cards maybe? Sep 06 18:45:58 spread card group ? Sep 06 18:46:02 Yeah also? Sep 06 18:46:07 All these nice features ? Sep 06 18:46:20 That were difficult due to current implementation? Sep 06 18:46:23 that also, yes; though I have found other nice ways to do it Sep 06 18:46:33 :) Sep 06 18:46:58 I've recently discovered the possibilities offered by a VisualDataModel, it's quite wonderful; the reordering of the launchbar is based on it Sep 06 18:47:08 I think an easy to feature to implement would be the "infinite card cycling"? The one where you can go forever through your cards ;) Sep 06 18:47:22 After you reach the rightmost if will automatically continue at the leftmost again Sep 06 18:48:03 that would be possible, but using another trick: replacing the horizontal ListView of the cards with a PathView and a closed path Sep 06 18:48:25 but completely possible, and hack-free too. Sep 06 18:51:39 Anyway off for today ;) Sep 06 18:51:58 Hope to make some progress with browser tomorrow and integrate the separate bits I've been playing with Sep 06 20:13:14 jcsullins, I'm hoping that we can get the new partition to be luneos Sep 06 20:13:32 yes, the -root is more accurate but its doubtful its needed.. Sep 06 22:36:46 Herrie, Garfonso: it's fine to only check uriScheme with strcmp for http/https Sep 06 22:37:02 it's only the scheme, not the whole url Sep 06 22:37:33 and relying on g_uri_parse_scheme for a correct scheme should be ok **** ENDING LOGGING AT Sun Sep 07 02:59:59 2014