/srv/irclogs.ubuntu.com/2014/02/04/#ubuntu-app-devel.txt

shredder_Hello04:19
=== commandoline_ is now known as commandoline
=== Wellark__ is now known as Wellark
nik90kalikiana_: How do I test your u1db MP? Here are the steps I took,08:54
nik90Kaleo: I branches your code, and then cmake .; make08:55
nik90kalikiana_: ^^08:55
nik90kalikiana_: and then sudo make install08:55
nik90kalikiana_: the build and install went well, however for some reason the databases are no longer created in .local/share directory08:55
nik90kalikiana_: I tried reinstalling the original package by sudo apt-get --reinstall install qtdeclarative5-u1db1.008:56
nik90kalikiana_: still I dont get the directories created .local/share...so I am wondering where the files are created :(08:56
=== Guest30957 is now known as JamesTait
=== JamesTait is now known as Guest69661
=== Guest69661 is now known as JamesTait
JamesTaitGood morning all; happy Homemade Soup Day! :-D09:03
nik90aquarius: ping09:47
aquariusnik90, pong09:48
nik90aquarius: hey my timer u1db transition is progressing well..09:48
nik90aquarius: I have one small issue09:49
nik90aquarius: I tried your example 2 in your blog post and did one minor modification09:49
nik90aquarius: i added http://paste.ubuntu.com/6872108/ to your delegate listitem.standard09:49
nik90aquarius: however when I remove an item, it spits out an error09:49
aquariusinteresting. what's the error?09:49
nik90aquarius: QQmlVMEMetaObject: Internal error - attempted to evaluate a function in an invalid context09:50
nik90file:///usr/lib/x86_64-linux-gnu/qt5/qml/Ubuntu/Components/ListItems/Empty.qml:459:9: QML ScriptAction: <Unknown File>:09:50
aquariuscor.09:50
nik90cor. ?09:50
aquariusthat looks suspiciously like a QML problem, not a u1db problem. Let me have a play.09:50
nik90it is not a critical error, since it does delete the doc. however I like to prevent as much error messages as possible :)09:51
aquariusheh. Sorry. English slang. "cor (excl): expression of mild surprise (old-fashioned)"09:51
nik90ah. :)09:52
nik90aquarius: btw my doc looks like { timer: { name: "Timer #1", duration: 600 }}. And this works perfectly :)09:52
aquariusright. I think that the problem here is that the document gets "removed" twice09:54
aquariusyou use removable:true09:54
aquariusthen you do the swipe/delete action to remove it, and QML removes the delegate from the ListView09:54
aquariusthen we remove the actual U1DB document09:54
aquariusand the u1DB ListModel changes09:54
aquariusand so the ListView notices that its model has changed and so tries to remove the delegate again09:55
aquariusbut that delegate has already been removed09:55
aquariusthus: fail.09:55
nik90aquarius: but I do something siimilar with LocalStorage..where I delete the entry and then listview model changes09:57
aquariusah.09:57
=== ogra_` is now known as ogra_
aquariusso ListItem.remove actually calls listModel.remove()09:57
aquariusI suspect that the U1DB ListModel doesn't map remove() to a putDoc("", docid)09:57
aquariuswhich is a bug09:57
* aquarius rtfs of ListItem.Empty09:58
nik90on looking through the old timer code, I noticed it does http://paste.ubuntu.com/6872152/09:59
nik90where the whole thing is a ListModel{}09:59
aquarius*nod*09:59
nik90For now is it okay to ignore the error and continue?10:00
aquariusWhat we want is to tell ListItem this: removable=true, but when someone says to remove the item, call our handler and *don't do anything yourself*10:00
nik90and report a bug at u1db?10:00
nik90+10:00
aquariusannoyingly, there is a bool to say that, but it's an internal property in ListItem.Empty which we can't fiddle with10:01
nik90aquarius: may be I can report a bug to UITK to make that property public?10:01
aquariusI *think* there are two bugs here: Ubuntu.ListItem doesn't allow us to override their removal action, it only allows us to add our own action *after* theirs, and U1DB QML doesn't correctly treat a ListModel.remove action as deleting the document.10:02
aquariusHowever, the U1DB stuff is debateable -- would we really want the action of "remove this document from this query" to mean "delete the document from the entire database"?10:02
aquariusI think report two bugs, one against uitk and one against u1db10:03
aquariusbut it may be worth talking to timp first or kaleo or someone, to talk through this issue10:03
nik90okay10:03
* nik90 makes a copy of this irc conversation to help with the discussion with timp or kaleo10:04
aquariuskalikiana_ may have some thoughts on whether u1db ListModels *should* respond to .remove() with a delete-doc.10:04
nik90on the thought of u1db-qt, how do I test its MP?10:04
nik90I built it and installed it using cmake .; make10:04
nik90and then sudo make install10:05
nik90everything went well.10:05
aquariusI think you have to branch it, build it, and then add it to QML2_IMPORT_PATH10:05
aquariusoh. Or you could actually install it at system level, I suppose10:05
aquariusI never, ever, ever do that. System level belongs to apt ;)10:05
nik90okay can you show me how to do the last step alone10:05
nik90I prefer not installing stuff10:05
aquariusbut I am quite a lot more rigorous than most people in this :)10:05
nik90I know the SDK does this by,10:06
nik90export QML_IMPORT_PATH=$PWD/modules10:06
nik90export QML2_IMPORT_PATH=$PWD/modules10:06
nik90export UBUNTU_UI_TOOLKIT_THEMES_PATH=$PWD/modules10:06
aquarius*nod* that ought to work. Running, say... QML2_IMPORT_PATH=path/to/u1db-qtbranch/modules qmlscene myfile.qml10:07
aquariusshould include the changed version of u1db-qt10:07
nik90awesome10:07
aquariusbe careful with export. Export puts that envar in your environment for hte whole life of that shell, so running any qml from then on (in that shell) will use the envar10:08
aquariusyou may want to be assiduous about unsetting the envar when you're finished10:08
nik90true but if close the terminal and restart, it should be gone10:08
aquariusI personally don't export things and instead just specify them on every command line I need them for, which is a lot more typing but makes me feel safer :)10:08
aquariusyeah, closing that terminal will lose it, because you've ended that shell -- sounds like you're on top of this so no worries. I was just being cautious in case you didn't know :)10:09
m-b-oHi, I have problems installing the ubuntu sdk on saucy. Seems like there's dependency conflict with ubuntu-html5-sdk10:09
nik90I learnt a little about this yesterday :)10:10
nik90m-b-o: I noticed that my qtcreator-plugin-ubuntu has been kept back during an update10:11
nik90m-b-o: are you referring to this?10:11
m-b-onik90: yes10:11
m-b-otried to remove and reinstall qtcreator-plugin-ubuntu, but with no success10:12
nik90m-b-o: usually it gets sorted by the sdk devs, but I think we should let them know none the less10:12
nik90m-b-o: it is not critical10:12
m-b-onik90 sort of, I can't install the sdk anymore..10:12
nik90bzoltan: we are having a small issue where qtcreator-plugin-ubuntu is kept back during an update. The issue started a few days back.10:13
nik90bzoltan: Seems like there's dependency conflict with ubuntu-html5-sdk10:13
nik90bzoltan: on ubuntu 13.1010:13
nik90mhall119: The links on http://developer.ubuntu.com/api/qml/sdk-1.0/U1DB.overview/ are broken. Can you update them when you have some time pls. thnx10:21
nik90aquarius: sry to disturb, but do you know how to add 3 documents (timers) only first time creation only using dynamic document method?10:32
aquariusnik90, I'm not sure I'm following that. Why do you need to add them first-time-only but dynamically?10:33
nik90aquarius: I know I can do that using static document creation, but that would mean I need to define 3 different u1db.document object with the create=true property which results in more code10:33
nik90aquarius: while dynamic doc is a simple putDoc() :)10:33
aquariusya, but dynamic is less declarative and QMLish. However, I see your point :) Note that db has a getDoc method; use it to get the doc by ID, and if it doesn't exist, create it.10:34
nik90aquarius: ooh yes thats the idea I was looking for..thnx10:35
=== hunger_ is now known as hunger
=== chriadam is now known as chriadam|away
dakernik90: it's better to report a bug11:22
nik90daker: to the u1db or sdk dependency issue?11:23
dakernik90: no for the docs https://bugs.launchpad.net/ubuntu-api-website11:24
nik90daker: ah..sure I will report t11:24
nik90s/t/it11:24
dakernik90: since they are in a sprint11:24
nik90true11:25
nik90aquarius: https://code.launchpad.net/~nik90/ubuntu-clock-app/transition-timer-u1db/+merge/20464811:35
nik90aquarius: Timer transition complete11:35
=== PabloRubianes_ is now known as PabloRubianes
aquariusnik90, nice!11:43
nik90aquarius: code reduction by 58% :) loving u1db11:44
aquariussimpler code, too, which is what I like about it.11:44
aquariusbe sure and let people know ;)11:44
nik90+111:44
jo-erlend_Does anyone know if the new file manager will be packaged and available in 14.04 desktop?11:46
nik90jo-erlend_: I think the plan was to make it possible to easily install all core apps using their click packages11:47
ogra_the branch seems to have a debian dir already11:47
nik90jo-erlend_: But no idea on the progress made11:47
jo-erlend_nik90, on the desktop as well?11:47
ogra_jo-erlend_, not by default indeed :)11:47
nik90jo-erlend_: it wont be installed by default..but easily installable from the archive I guess11:48
nik90like Gnome Clocks, Contacts etc11:48
nik90ogra_: True. All core apps have a debian dir, however the ongoing work should help install other touch store app as well using their click packages. A nice prerequisite when unity 8 lands on the desktop11:50
nik90the debian packaging is only used for development and testing purposes through the core apps daily PPA11:50
nik90kalikiana_: https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/127611811:58
ubot2`Launchpad bug 1276118 in Ubuntu UI Toolkit "List Item onItemRemoved signal should provide the option to override its action with a custom one." [Undecided,New]11:58
shookeesHey12:00
shookeesanybody knows why none of http://developer.ubuntu.com/resources/platform/api/12-04/ displayed apis are not found?12:00
shookeessome URL refactoring?12:01
dakershookees: yes12:01
nik90shookees: please report a bug at https://bugs.launchpad.net/ubuntu-api-website12:02
shookeesalright12:02
shookeesmaybe somebody knows where they might be put atm? :D12:02
nik90shookees: are you looking at the Ubuntu SDK API?12:03
nik90s/at/for12:03
shookeesnik90, I'm looking for Application Indicator API for 12.0412:04
nik90shookees: ah .. no idea .. sry.. the developer.ubuntu.com now only shows Qt and HTML5 API12:05
shookeeswell google still links to some of the 12.04 pages, maybe they'll have some in archives12:06
mhall119nik90: fixed the links12:15
nik90mhall119: thnx12:19
nerochiaroom26er: do you know why this MR isn't being run by CI ? https://code.launchpad.net/~amanzi-team/webbrowser-app/webbrowser-app-file-upload/+merge/19576012:45
nerochiaroom26er: is it because it's marked as superseded ?12:45
=== MacSlow is now known as MacSlow|lunch
om26ernerochiaro, yes, ci only runs for 'needs review'12:45
nerochiaroom26er: got it12:46
=== aboudreault_ is now known as aboudreault
nerochiarofginther: om26er: i'm trying to figure out why CI keeps failing on this MR, but I can't really get to the root cause. it seems that autopilot can't find the app on dbus13:21
nerochiarohttps://jenkins.qa.ubuntu.com/job/generic-mediumtests-runner-mako/4847/console13:21
om26ernerochiaro, seems the app is not starting, probably due to unity8 crashing13:29
=== popey_ is now known as popey
om26eryes thats due to unity8 crash, I can see the attached unity8 crash file13:29
nerochiaroom26er: ok, is it something i need to fix or is it a problem in the infrastructure ?13:30
om26ernerochiaro, you can do a retry and hope unity wont crash13:31
om26eranyways its not related to your code13:31
nerochiarofginther: om26er: i did a ton alrady on the same MR in the past and it really didn't help. and in general i believe we should move away from this attitude of "let's run it again and hope it works" and look into what is causing the crash instead ? can we file a bug about this problem ?13:33
om26ernerochiaro, no, the unity8 crash is a known issue, my intent of retry here was if you really want to get the results no13:34
om26er*now13:35
nerochiaroom26er: i see. ok, i've restarted it one more time, but i doubt it will fare any better. is there a bug reported about the issue so at least i can keep an eye on the progress ?13:36
om26ernerochiaro, bug 123652513:40
ubot2`Launchpad bug 1236525 in unity-mir "unity8 killed/crash then restart can result in mir unable "could not unblank display"" [Medium,Triaged] https://launchpad.net/bugs/123652513:40
nerochiaroom26er: thanks13:40
om26ernerochiaro, btw its also currently being discussed on the ubuntu-phone mailing list. titled: "Landing team 31.01.2014"13:41
nerochiaroom26er:great13:41
bzoltannik90:  did you try apt-get dist-upgrade?13:50
nik90bzoltan: yup13:52
nik90bzoltan: it just says the following package (qtcreator-ubuntu-plugin) has been kept back13:53
=== _salem is now known as salem_
=== MacSlow|lunch is now known as MacSlow
m-b-obzoltan, nik90: I removed qtcreator-plugin-ubuntu and tried to reinstall it. But there's a problem with ubuntu-html5-sdk13:59
bzoltanm-b-o: OK, let me look after it14:00
alex-abreunik90, hey ... no extra logs or something about the issue in 13.10?14:07
alex-abreum-b-o, what does it say exactly?14:07
nik90alex-abreu: I can get the toolkit version for you... In the update manager I cannot select it.14:08
m-b-oalex-abreu: qtcreator-plugin-ubuntu : Hängt ab von: ubuntu-html5-sdk soll aber nicht installiert werden14:09
m-b-oalex-abreu: If I try to install ubuntu-html5-sdk, it wants to install qtdeclarative5-ubuntu-webapps-api, which misses ubuntu-html5-container14:11
m-b-oalex-abreu: or ubuntu-html5-sdk misses both, qtdeclarative5-ubuntu-webapps-api and ubuntu-html5-container14:13
bzoltan m-b-o: alex-abreu: I have pushed the webbrowser-app 0.23+14.04.20140122 for Precise to the SDK to work around the same problem14:16
bzoltanon lastt Thursday14:16
alex-abreubzoltan, yeah ... you are missing a few deps now in 13.10 that those packages need14:18
bzoltan alex-abreu:  yes...14:18
alex-abreubzoltan, you need to add unity-webapps-qml which pulls all those14:18
alex-abreuand the webbrowser-app happens to also pull this14:19
alex-abreuwhich indeed should solve the issue14:19
alex-abreubut the "root" package that should be pulled is unity-webapps-qml14:19
alex-abreu(provided that you also have ubuntu-html5-container too"14:19
bzoltan alex-abreu: OK... So I Just need top backport that package to Saucy14:20
alex-abreubzoltan, well yeah just add it in the ppa14:22
bzoltanalex-abreu: sir, yes sir :)14:22
bzoltannik90,  m-b-o, alex-abreu: I have dput the  webbrowser-app for Saucy to the SDK PPA14:29
m-b-obzoltan: when will it be available?14:38
bzoltanm-b-o: whenever these builds are done and the packages are published in the PPA -> https://launchpad.net/~ubuntu-sdk-team/+archive/ppa/+builds?build_text=webbrowser-app&build_state=all14:39
m-b-obzoltan: ah, thanks!14:40
WebbyITSomeone has news about mzanetti? He (his bnc) isn't online since last week, it's weird...14:44
popeyWebbyIT: probably just the stupid freenode outage14:45
popeyWebbyIT: he is online, just not in this channel14:45
WebbyITpopey, ok, thanks :-) He has to fix a MR, I'll write him an email14:46
=== jo-erlend_ is now known as jo-erlend
=== salem_ is now known as _salem
m-b-obzoltan: updated webbrowser-app but still can't install qtcreator-plugin-ubuntu15:44
m-b-obzoltan: ubuntu-html5-sdk wants to install ubuntu-html5-container, but that one removes ubuntu-html5-ui-toolkit. which is also needed by ubuntu-html5-sdk15:46
popeydholbach: http://popey.mooo.com/mirror/clicks/2014-02-04-134025/com.ubuntu.developer.jonobacon.sleepytime_0.4_unknown.click15:52
ogra_new farting app ?15:52
ogra_:)15:52
popeyheh15:53
=== _salem is now known as salem_
dpmhey nik90, look at this: http://ubuntuone.com/5gJMfCItEjcWaj1LVDPeH316:17
WebbyITdpm wow :)16:19
dpm:-)16:20
nik90dpm: omg...16:24
* nik90 runs around the room in excitement!!!!!16:24
* dpm hugs nik9016:24
dpmnik90, so after the teasing, here are the full details... :-)16:24
nik90dpm: :)16:25
nik90dpm: the timing cannot be any better. we had fixes to EDS land in trunk. so alarms are saved better now16:25
dpmnik90, I know, I checked with renato this morning that this landed, which is quite cool :)16:26
nik90dpm: so the details16:27
nik90I am going to share this with the app dev community16:27
dpmnik90, so Thomas Strehl's team is trying to get a landing slot this week16:27
dpmnik90, notifications will be working, but there are two points that will still need to be addressed when that lands:16:28
dpm- Playing a notification sound16:28
dpm- Getting the notifications to work also in the Welcome screen16:28
nik90okay16:28
nik90the alarms API by default uses the default ringtone unless I (user) specifies it16:29
balloonsnik90: so I noticed you didn't want to review the cmake changes :-) Can you confirm at least that they work for you?16:30
balloonshttps://code.launchpad.net/~nskaggs/ubuntu-clock-app/add-cmake/+merge/20432616:30
nik90balloons: if you can tell me how to test them sure16:30
dpmnik90, balloons, once that lands, can we enable the alarm tests? (or are they already enabled for the alarm storage part?)16:31
nik90dpm: erm I will have to review and correct the alarms tests :-) since the UI changes since balloons wrote them16:31
nik90dpm, balloons: But I can make it a high priority over other things16:32
dpmnik90, cool, thanks. Yeah, I think that'd be good16:33
nik90dholbach: hey, I am not sure if you read the email from the dutch loco, but do you know how long a app dev school event is supposed to take?16:34
balloonsnik90: so you should be able to use click buddy now, and do a cmake build16:34
balloonsclick-buddy --dir .16:34
nik90balloons: so I run click-buddy --dir inside the clock app root folder?16:34
balloonsnik90: yep.. it should work, and you should get a nice click pacakge16:35
nik90balloons: I guess it builds the clock app. Does it install on my system somewhere?16:35
nik90balloons: ah okay16:35
balloonsif you run with --provision it should provision a device with the tests as well16:35
dholbachnik90, if you do the hands-on workshop part as well, I'd guess "an afternoon"? like 3-4h?16:35
balloonsnik90: it won't install on the local system16:35
nik90dholbach: shall I reply to them with such details?16:36
nik90balloons:ok ... trying it now16:36
nik90balloons: btw the tests are failing in that MP16:36
dholbachnik90, sure, that'd  be great16:36
dholbachnik90, sorry for not replying earlier, I got a bit busy with things16:36
* dholbach hugs nik9016:37
nik90dholbach: no worries, I figure you are busy with the sprint16:37
nik90s/figure/figured16:37
dholbachkeep up the great work! :)16:37
nik90thnx :)16:37
balloonsnik90: yes.. they are not actually failing.. they are failing to run16:38
nik90balloons: btw I am not sure if you saw the tests code refactor by elopio... it looks awesome..but I will tackle during the alarms AP16:38
balloonsnik90: I just added my review. +1 from me16:38
nik90balloons: cool16:39
nik90balloons: so on running click-buddy (nice name :)) it generated a click package16:40
nik90balloons: so if I have the phone connected and run it with --provision it will run the tests on the phone?16:40
balloonsnik90: that was the idea, but looking at the tool and code it only provisions, not run it16:42
nik90balloons: yeah I got the following output,16:42
nik908 files pushed. 0 files skipped.16:42
nik90129 KB/s (42986 bytes in 0.325s)16:42
nik90Allowing autopilot to play well with apparmor16:42
nik90Ready to run autopilot16:42
balloonsnik90: also working on making this happen from QtCreator this week16:42
balloonsafter it's done I'll probably ping you for some feedback16:43
labsinHi all, I'm trying out a HTML5 app on trusty. Now it seems ubuntu-html5-container is i386 and i'm using amd64. Now I get "error while loading shared libraries: libQt5Core.so.5" when executing the sdk template.16:43
nik90balloons: wow this cmake makes it easy to install the latest clock on phone :)16:43
balloonsnik90: yes.. that is the point16:43
balloonsso you should be able to iterate on code easier16:44
nik90balloons: although when I run it on phone, it shows a white screen16:44
nik90the app doesnt launch16:44
balloonsodd.. I don't have my cable on me to try on my device16:45
om26erbfiller, ping16:48
bfillerom26er: pong16:49
om26erbfiller, can you release a new messaging-app ?16:49
om26erbfiller, including https://code.launchpad.net/~om26er/messaging-app/fix_introspection/+merge/20339216:49
bfillerom26er: yes, just send me a list of MR's that you need16:49
bfillerok16:49
om26erpopey, ping18:08
popeyom26er: pong18:08
om26erpopey, did you find any new bug with today's testing ?18:08
popeyom26er: not tested18:09
popeyam at a sprint18:09
om26erpopey, good, i saw that picture of yours, enjoy ;)18:09
om26erpopey, btw did you report a bug for "Pairs but no audio from headphones during calls." ?18:22
popeyom26er: i think it's already filed, but will check18:28
=== wendar_ is now known as wendar
nik90need someone to review https://code.launchpad.net/~nik90/ubuntu-clock-app/fix-overflowing-column-labels/+merge/204487 pls18:40
WebbyITnik90, I'm testing it. Could you suggest me a long city name to test in clock page? :-P18:51
WebbyITLongest I can think it's "Vigarano Mainarda" :-P18:52
nik90WebbyIT: I couldnt test that..but it uses the same logic so I figured it has to be okay18:53
nik90WebbyIT: actually I did test it18:54
nik90WebbyIT: just reduce the clock app width :)18:54
nik90WebbyIT: and see if it elides at the right18:55
WebbyITnik90, I found a italian city that is too long \o/ "Pino sulla Sponda del Lago Maggiore" litteraly Pine Tree on the Shore of Major Lake18:55
WebbyITApproved and top-approved ;-)18:56
nik90WebbyIT: omg...you know why I implemented it in the clock tab as well..."Just in case" and you just fulfilled that :P18:56
nik90thnx18:56
nik90ahayzen: btw, since you worked me on u1db, I am dumping all related MP to you :P19:00
nik90ahayzen: feel free to return the favour19:00
ahayzennik90, i noticed :)19:00
ahayzennik90, will do when my works19:00
ahayzennik90, i tried tht branch to fix the issue with multiple levels19:01
ahayzennik90, but either my build didn't work as i saw no change in the examples19:02
ahayzennik90, u said there is a .deb tht jenkins produces?19:02
=== JamesTait is now known as Guest38143
ahayzennik90, ping19:45
nik90ahayzen: sorry I was eating19:46
nik90I read19:46
nik90Your messages19:46
ahayzennik90, no worries... i'm just testing ur branch19:46
ahayzennik90, and was wondering if it was expected for *nothing* to happen when trying to delete a timer preset?19:46
nik90ahayzen: I could try that19:47
ahayzennik90, u stated a warning occurs19:47
ahayzennik90, but for me nothing happens19:47
nik90Really you do not see an error when you delete a preset?19:48
ahayzennik90, no :/ but i created a preset with no name beforehand not sure if tht has caused this to occur?19:49
nik90Can you create a new one and then delete it19:50
ahayzennik90, i can create but not delete19:51
ahayzennik90, note this is on 13.10 desktop19:51
nik90ahayzen: I am on 13.10 as well19:52
ahayzennik90, hmm shall i try wiping the db and see if it was tht blank timer name?19:52
ahayzennik90, ...and if so where is ur db stored?19:52
nik90It is .local/share19:56
nik90In com.Ubuntu.com19:57
ahayzennik90, ok so on a blank database i tried to delete one of the existing timers and nothing happened?19:58
nik90As in did it delete the timer?19:59
nik90Or you did not get the error?19:59
ahayzennik90, it didn't delete the timer and there was no output in the console :/20:00
ahayzennik90, the toolbar appears to think tht i'm editing the timer as it shows the option 'Save'20:00
nik90Can you press add a new timer and create one like that20:01
nik90Save is also for saving a new timer20:01
ahayzennik90, looking at the code i would at least expect 'Deleting timer preset' to appear20:01
nik90I have no idea why you don't get it20:02
nik90How is that you are getting no console output20:02
ahayzenmagic :)20:02
ahayzennik90, ah where does Utils.log() go?20:03
nik90It just outputs to console20:04
ahayzennik90, ah20:06
ahayzennik90, i'm running a badly patched UITK :P20:06
nik90Lol20:06
ahayzennik90, there we go! ... i was playing about with swipeDelete last night a forgot to revert back .. sorry for about tht20:07
ahayzennik90, yeah i get the expected error panic over20:07
nik90Finally :)20:09
ahayzennik90, approved :)20:17
nik90ahayzen: thnx20:22
iBelievepopey, ping20:52
popeyiBelieve: yo20:53
iBelievepopey, do you want to review this? https://code.launchpad.net/~mdspencer/ubuntu-filemanager-app/remove-header-verse/+merge/20477720:53
popeyiBelieve: done. Thank you20:55
iBelievepopey, thanks20:55
dpmballoons, dholbach bug 123799220:58
ubot2`Launchpad bug 1237992 in unity-scope-click (Ubuntu) "Need to load translations from .desktop files for click apps" [Medium,Triaged] https://launchpad.net/bugs/123799220:58
=== jackson__ is now known as Noskcaj
ahayzenelopio, if ur around could u retry the merge, it appears to be passing tests for me now :) https://code.launchpad.net/~andrew-hayzen/ubuntu-ui-toolkit/fix-swipe-delete-002/+merge/20217122:08
elopioahayzen: I can't approve your branch, as I23:14
elopio'm not a member of the team. We need timp to review it again.23:14
ahayzenelopio, ... does it pass for u though?23:15
ahayzenelopio, i used the fact resetDrag() sets __mouseArea.drag.target = null to detect when waitingForConfirmation=true/false do u think tht is ok?23:15
elopioI really have no idea about that. If they use it in resetDrag, I'd say it's ok, but I'm totally new to this code.23:17
elopioahayzen: I'll try the tests. But I need to reboot first as I'm having weird qt5.2 issues. I'll be bak soon.23:17
ahayzenelopio, haha thanks :)23:17
ahayzenelopio, just wanted someone else to test as well as mine was done from a VM23:18
nik90ahayzen: btw regarding the u1db-qt MP, it can be installed by,23:42
nik90cmake .; make23:42
ahayzennik90, i think i tried tht ...followed the instructions in HACKING ?23:42
nik90ayup23:43
nik90ahayzen: then you need to do one more thing23:43
nik90export QML2_IMPORT_PATH=$PWD/modules23:43
nik90very similar to the ui-toolkit build23:44
ahayzenah23:44
nik90you dont need to sudo make install :)23:44
ahayzennik90, i was running a copy of ur QML file via... qmltestrunner -import ./modules23:44
nik90ahayzen: btw, I have one last u1db migration which is the world clocks. and then the clock app is completely u1db :)23:44
nik90ahayzen: ah ok23:45
ahayzennik90, oh no this one i think ... qmlscene -I ./modules examples/u1db-qt-example-1.qml23:45
nik90the export command is better since it is then available for the shell23:46
nik90until you exit it23:46
ahayzennik90, this example still has the undefined issue for me https://launchpadlibrarian.net/161718542/u1db2.qml23:47
nik90ahayzen: actually I do notice some improvement over trunk..23:48
nik90ahayzen: for instance the query now returns all the fields23:48
nik90however when sometimes it does not return all the results23:48
ahayzennik90, yeah i see tht too23:48
nik90but you are right23:49
nik90I want to do some more testing before commenting on MP23:49
ahayzenagreed23:50

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!