**** BEGIN LOGGING AT Fri Sep 12 02:59:58 2014 Sep 12 07:24:53 morning Sep 12 07:47:18 Tofe: I think you can base the app menu + settings page on current browser code. Once those are added I'll take it from there :) Sep 12 07:51:35 Tofe: Been thinking, might be good to give visual feedback to user on right swipe, similar to TP when making screenshot? Sep 12 08:12:50 Herrie|Veer: yes, could be a good idea, and quite easy actually. Sep 12 11:00:20 Herrie: merry x-mas https://github.com/webOS-ports/org.webosports.app.browser/commit/9572e763f36bfd59d5909f93d318cf4c56ad7673 Sep 12 11:00:58 (not tested on device!) Sep 12 12:38:11 Tofe: Thnx, works on device. Need to tweak it a bit but that's fine. Sep 12 12:40:25 Morphis: ping Sep 12 12:41:33 Tofe/Garfonso/morphis: Do we have WebService available? If yes, how can I call this? Looking into adding search suggestions as well but seems that was done using WebService on legacy Sep 12 12:42:16 what the hell is webservice? Sep 12 12:43:30 Seems like some way to do async webcalls on 3.0.x Sep 12 12:43:45 For example to query Google for search suggestions Sep 12 12:43:49 Like some ajax call Sep 12 12:44:52 enyo.WebService it seems :P Sep 12 12:45:58 Herrie|Veer: as for 609 maybe it is caused by https://github.com/webOS-ports/luna-universalsearchmgr/blob/master/Src/UniversalSearchService.cpp#L2516 Sep 12 12:49:24 Grr I'm sure I patched that one :s Sep 12 12:49:32 Somehow must have fallen off PR :s Sep 12 12:50:41 thnx for spotting, will do another check to make sure all are covered and do a new PR Sep 12 12:53:08 ah.. enyo.webservice is just a ls2 service call. Sep 12 12:53:29 behind t hat it does the same as your db8 calls for history and bookmarks Sep 12 12:53:52 OK how should I call it from ls2? Sep 12 12:53:59 ah. no.. it an ajax call. Sep 12 12:54:03 Can try to get that implemented too ;) Sep 12 12:54:28 wait a minute. Sep 12 12:55:20 ok.. now got it straight. Webservice is for ajax requests ( https://developer.palm.com/content/api/reference/enyo/enyo-api-reference.html#base/services/WebService.js ). Sep 12 12:55:38 so not ls2 but out of device. Sep 12 12:56:02 which makes sense, because you have to ask the server for search suggestions ;) Sep 12 12:56:34 enyo 1 & 2 have webservices (or similar stuff), which obviously does not help you for QML.. hm Sep 12 12:57:50 but ajax requests (or more technically correct xhtmlrequests) seem to be possible from qml: http://qt-project.org/doc/qt-5/qtqml-javascript-qmlglobalobject.html Sep 12 12:58:13 nizovn: That was it indeed, did PR for that now... Had that in a combined PR last week but that one didn't get merged. Closed that one now and did new PR :) Sep 12 12:58:31 ok :) Sep 12 13:00:01 Did you try latest browser code? Should solve most existing bugs :D Sep 12 13:01:30 do you support basic auth? ;) Sep 12 13:01:57 Basic auth? For what? Sep 12 13:02:35 not yet, but want to see now working vkb :) Sep 12 13:03:43 Yeah that bug seems gone now :D Sep 12 13:04:14 We also have UA manipulation borrowed from Ubuntu so we can "fix" sites that don't render properly :P Sep 12 13:05:15 go here http://garfonso.darktech.org/dvbviewer/ does it ask for a PW or just say 401? :p Sep 12 13:07:10 Hmmz 401 still :P Sep 12 13:08:58 it should pop up some input dialog and ask for a username / password... Sep 12 13:09:25 I'd expect that you get some "signal" from the rendering component. But I don't know if that is true ;) Sep 12 13:15:16 I guess if you put good old user:pass@website it might work? Sep 12 13:26:49 Seems like I need to enable it ;) Let me try something :P Sep 12 13:27:50 No, you're not allowed to try things Sep 12 13:27:51 :P Sep 12 13:33:32 OK got necessary bits implemented now pushing to test Sep 12 13:50:21 Garfonso: No luck yet but also no errors on device need to test a bit more in the weekend Sep 12 13:54:46 OK get the dialog, seems I need to add the last / Sep 12 13:54:58 Just dialog is no good layout wise yet :P Sep 12 13:59:01 Herrie|Veer: XHttpRequests are definitely possible in QML, quite easy actually Sep 12 14:05:50 Herrie|Veer: Here's a little example: http://qt-project.org/doc/qt-4.8/declarative-xml-xmlhttprequest-xmlhttprequest-example-qml.html but it's almost identical to what we usually do in JS Sep 12 14:16:53 Thnx will play with that sometime when I got other stuff working :P Sep 12 15:45:13 openwebosproject.org is timing out or taking a long time to load for all of its pages Sep 12 15:45:16 -_- Sep 12 15:54:27 GodGinrai you should poke Roy__Away for this :P Sep 12 15:54:41 * GodGinrai pokes Roy__away Sep 12 15:59:27 Tofe: ping Sep 12 15:59:47 Tofe|Away that is :P Sep 12 17:02:17 Herrie|Veer: pong Sep 12 17:09:57 I got an error in QML sure it's me.... Let me post it in a few mins Sep 12 17:15:41 Tofe: Sep 12 15:49:10 mako LunaAppManager[1263]: file:///usr/palm/applications/org.webosports.app.browser/qml/NavigationBar.qml:839:23: Unable to assign QVariantList to QString Sep 12 17:16:33 Herrie|Laptop: yes, I've seen that too, I thought it was desktop-specific Sep 12 17:19:00 ah, yes, your result is [ '{}' ], but the json should be a string Sep 12 17:19:56 so you maybe meant property string searchResultsAll: "[ '{}' ]" ? Sep 12 17:21:55 ah no, I see; you meant either "[ {} ]", or "[]", depending on if you want an empty array, or an array with one empty object. Sep 12 17:22:35 Looking at line 162, I'd say the latter. Sep 12 17:22:48 no no, not the latter, the former. Sep 12 17:23:03 property string searchResultsAll: "[]" Sep 12 17:27:34 Tofe, where does QML get its "CSS" elements from and are they something we can add to? Sep 12 17:28:55 ka6sox: unfortunately, currently QML doesn't use CSS at all, afaik; it uses a style object, described in a JSON syntax, so quite near, but not the same Sep 12 17:30:39 ka6sox: it's something very annoying for us, as we get two sources of style; I'll look again to see if we can get CSS to be applied somehow to a QML object Sep 12 17:36:16 I'll try a bit :) Sep 12 17:36:19 Thnx Tofe :) Sep 12 17:36:48 Making progress with Settings already too :D Sep 12 17:36:56 Resizing and styling stuff now Sep 12 17:37:27 THen onto adding the various options UI wise and back end (which is easiest part here I guess) Sep 12 17:39:36 Tofe, thanks! Sep 12 18:08:38 have you considered using ubuntu-touch as a basis for luneos? Sep 12 18:52:10 anpok: I think we did before but moved away from that. morphis can tell you more about why etc ;) Sep 12 19:08:20 GodGinrai: Yeah, something is wrong with that site. I will rattle the folks responsible for it. Sep 12 19:10:18 k Sep 12 19:10:20 thanks Sep 12 19:28:57 Herrie: intersting.. because the way ubuntu is structured with .. qt compositor libhybris.. usage of hwc and running on now a lot of android socs might simplify the task Sep 12 21:05:55 anpok: there are still a lot of differences: the build system, the whole UI -- including Wayland/Mer... not sure it would save us a lot of time, as we already are using the same upstream for libhybris **** BEGIN LOGGING AT Fri Sep 12 22:40:38 2014 Sep 12 22:42:18 is there any difference in building against cm 10.1 or cm 11? **** BEGIN LOGGING AT Fri Sep 12 23:15:27 2014 Sep 12 23:55:20 and... is there a way to make a PR to update a file from a CM repo? Sep 12 23:58:06 mcgeek87, the file is from a CM repo where? Sep 12 23:59:33 android_system_core Sep 13 00:00:20 mcgeek87, got a url? Sep 13 00:01:02 https://github.com/CyanogenMod/android_system_core/blob/dc2c124d1dbc3127f3a5f33ec275b108e92b8faa/include/system/audio.h Sep 13 00:01:31 audio_format_flac isn't defined in the wop-11.0 version, so build breaks Sep 13 00:01:56 you could send one against that file and see if the CM folks pick it up Sep 13 00:02:58 mcgeek87, what build is breaking? Sep 13 00:03:51 ka6sox: "libaudiopolicy_legacy <= hardware/libhardware_legacy/audio/AudioPolicyManagerBase.cpp" Sep 13 00:04:33 this is a webOS Ports build or a CM build? I'm trying to understand. Sep 13 00:04:49 ka6sox: building webOS Sep 13 00:04:55 kk Sep 13 00:05:16 we can create our own patches that we can apply thru the bbfiles we ahve Sep 13 00:05:43 you can also try to get the CM folks to fix it but submitting a PR to them Sep 13 00:06:24 ka6sox: i probably misstated something. CM's version is newer than webOS Ports Sep 13 00:06:46 mcgeek87, if yu can say…what target? Sep 13 00:06:58 target device? evita Sep 13 00:07:45 easiest way would be to create a patch that you add thru the bbfile for that recipe Sep 13 00:08:09 while waiting for CM to fix it Sep 13 00:08:15 .... it's fixed in CM Sep 13 00:08:23 webOS needs the fix Sep 13 00:08:52 the webOS version needs to be updated from CM Sep 13 00:08:52 right, the way to fix that for the earlier version we have it to create a patch that we can apply for that recipe. Sep 13 00:12:19 mcgeek87, what TZ are you in? Sep 13 00:13:20 -5 Sep 13 00:20:03 ka6sox: i'm in texas Sep 13 00:28:21 mcgeek87, sorry, IRC has been a little less than stable Sep 13 00:37:34 that's fine, ka6sox. i'm just a little confused by why the wop-11.0 branch can't be updated Sep 13 00:38:49 okay...np **** BEGIN LOGGING AT Sat Sep 13 01:26:41 2014 **** ENDING LOGGING AT Sat Sep 13 02:59:58 2014