/srv/irclogs.ubuntu.com/2012/03/13/#kubuntu-devel.txt

MountainXjalcine, I was just in #ubuntu+1. No answers there. Also none in ubuntuforums or AskUbuntu.00:00
bulldog98Riddell: what am I doing wrong http://paste.kde.org/438710 it doesn’t give me the data I want01:39
bulldog98mom it’s broken01:40
bulldog98paste01:40
bulldog98http://paste.kde.org/43871601:43
bulldog98apachelogger: ^01:46
tsimpsonbulldog98: execute() is static, so it's basically a wrapper for system()02:12
tsimpsonstart() is probably what you want02:12
bulldog98tsimpson: problem is I want the data that that call is writing to stdout, but if I do a readAll() it gives me ""02:13
tsimpsonbecause execute() isn't operating on an object, it's static02:13
bulldog98tsimpson: hm I’ll try it02:13
tsimpsonnothing is sent to the file, so nothing can be read02:13
tsimpsonyou probably want to call waitForFinished() after start() too, so everything is synchronous02:14
bulldog98tsimpson: I’ll get around that with signal’s and slots02:24
tsimpsonthat's fine then02:24
bulldog98Riddell: PyQt isn’t as bad in qml as I thought first, you can at least do Models and get them into the qml context02:57
=== jalcine is now known as webjadmin_
ronnocThought you guys might appreciate this on programming, in case you missed it. Was reported on Slashdot. Thoughts? http://www.i-programmer.info/news/112-theory/3900-a-better-way-to-program.html03:05
bulldog98Riddell: havae a look at the git repro somehow the QProcess isn’t working as it should03:08
=== fenris is now known as Guest47264
=== jalcine is now known as webjadmin_
Riddellmorning08:28
jussi01Riddell: morning08:30
jussi01Riddell: why does kubuntu mobile on the kubuntu.org get page still point to 11.04 ? did we not release it for 11.10?08:42
Riddelljussi01: dunno I wasn't around08:45
Riddellyou can look on cdimage and see08:46
jussi01Riddell: yeah, I noticed there wasnt one, I was more interested in why08:50
Riddelljussi01: dunno I wasn't around but it has been abandoned upstream08:53
Riddellso there wouldn't be much point08:53
jussi01oh, well that makes sense then08:53
bulldog98Riddell: have youseen my comments from tonight?09:11
Riddellbulldog98: no what did you say and have you had enough sleep?09:11
RiddellPyQt isn't all bad for QML and QProcess isn't working?09:12
bulldog98Riddell: jep09:12
bulldog98Riddell: and yes I had enought sleep :)09:12
Riddellgrep doesn't show anything for QProcess in ubiquity-mockup09:12
bulldog98Riddell: have you done a git pull?09:15
Riddellbulldog98: yes last log item is "Tue Mar 13 04:02:17 2012 +0100" Added a c++ plugin to do the fancy keyboard stuff09:16
Riddellah subdirectories09:16
Riddellthat'll be it09:16
Riddellhmm I don't think I've used QProcess in c++, I've used KProcess09:17
Riddellbulldog98: any output when running the command?09:19
bulldog98Riddell: yes 09:19
Riddellit's so easy to get signals and slots invalid and there's no type safety like you normally get in c++09:19
bulldog98Riddell: how do I tweak a .pro file to link against kdelibs?09:19
Riddellyou don't, you use cmake :)09:20
Riddellthere's not much love for qmake in kde-land09:21
bulldog98Riddell: I’ll do that09:22
bulldog98Riddell: btw is it possible to have an runtime dep for ubiquity against something in universe without breaking any rule?09:22
bulldog98of cause only our frontend09:22
Riddellbulldog98: it might be we can move the kde frontend binary to universe for 12.10 and then a runtime dep is probably fine09:23
Riddelldoes it work if s/QProcess::ExitStatus/ExitStatus/ on the connect() ?09:23
bulldog98Riddell: it builds fine09:24
Riddellbulldog98: also is it missing a final "this" for where the SLOT() should go?09:24
Riddellbulldog98: but signals/slots don't work like normal c++09:24
Riddellthey are not type safe09:24
Riddellthey can compile but not work at runtime09:25
RiddellI heard this might change in Qt 509:25
bulldog98Riddell: no it does not work on runtime09:25
Riddellbulldog98: so what command line output does this slot give?09:26
bulldog98none09:26
bulldog98that’s what bugs me09:26
bulldog98Riddell: the var b has all the data in it, but later there goes something wrong09:30
Riddellso my suggestion is  connect(m_process, SIGNAL( finished(int,ExitStatus) ), this, SLOT(updateCodes()), this);09:30
Riddelloh no, that's nonsense09:30
Riddellso my suggestion is  connect(m_process, SIGNAL( finished(int,ExitStatus) ), this, SLOT(updateCodes()) );09:31
bulldog98Riddell: the slot is called09:32
Riddellbulldog98: so problem solved?09:32
bulldog98Riddell: seems so I’ve been doing something wrong in the foreach condition09:33
Riddellthen I entirely misunderstood your problem?09:34
Riddellliberal use of KProcess is my usual debugging technique although I'm sure learning gdb inside out would be more fruitful09:34
RiddellI've never used a foreach, they were introduced after I got into python :)09:35
=== tazz_ is now known as tazz
grmlshi10:21
Riddellhi10:30
bulldog98_Riddell: how can I convert "U+0044" to the proper utf-8 encoded string10:31
Riddellmm not sure10:36
Riddelluse kcharselect?10:36
Riddellpython will have some way I'm sure10:36
bulldog98_Riddell: I know the python way, but I need a C++ way10:37
bulldog98_whereby both are strings10:37
Riddelloh I'm not sure, ask in #kde-devel or #qt10:39
* Riddell out for a bit10:39
bulldog98_Riddell: found a way10:48
BluesKajHey all12:02
bulldog98_Eureka the drawing works 12:12
bulldog98_now I only need to adapt it to resizing12:12
bulldog98_Riddell: fixed the keyboard drawing -> it works12:14
=== jalcine is now known as webjadmin_
Riddellbulldog98_: awooga!12:40
=== bulldog98_ is now known as bulldog98
bulldog98Riddell: only problem atm is that somehow my personal layout (neo) isn’t displayed correctly12:41
bulldog98but it was with your parser in python12:41
bulldog98Riddell: do you know how I tell a widget that it should repaint it self?12:48
agateaubulldog98: QWidget::update()12:49
bulldog98agateau: kthanks12:49
Riddellbulldog98: you have a personal keyboard layout?12:50
bulldog98Riddell: neo-layout.org12:50
bulldog98Riddell: with personal I meant that I’m using not the Standard one12:51
=== webjadmin_ is now known as jalcine
Riddellbulldog98: but current ubiquity doesn't know it does it?13:01
bulldog98Riddell: yes13:01
bulldog98also ru isn’t working -> I guess some utf-8 stuff is still wrong13:02
bulldog98now it worked after I added a few debug statements13:06
Peace-hola13:38
shadeslayergrrrr, stupid kontify, takes up all the CPU cycles13:40
=== bulldog98_ is now known as bulldog98
=== dantti|2 is now known as dantti
Peace-Riddell: hihii http://kde-look.org/CONTENT/content-pre1/149527-1.jpeg14:17
RiddellPeace-: very nice but I have to say I'm not convinced by icon only task bars14:19
Peace-i am trying to use it everyday Riddell14:20
Peace-i use nowardev panel that is one panel with everything14:21
bulldog98Peace-: how is the dock made?14:28
Peace-bulldog98: http://wstaw.org/m/2012/03/13/plasma-desktopIc1818.png14:29
bulldog98Peace-: is it a plasma-shell script?14:30
Peace-bulldog98: i did plasma panels collections14:31
Peace-you find it on kde apps14:31
Peace-bulldog98: yes it's javascript of course14:31
=== rdieter_laptop is now known as rdieter
bulldog98Peace-: is the KGetHotNew stuff for that?14:33
Peace-bulldog98:  nope because it's not a plasmoid 14:34
Peace-bulldog98: you just need to install it locally 14:34
Peace-bulldog98: copy and paste on the terminal 14:34
Peace-it does for you14:34
Peace-bulldog98: http://kde-apps.org/content/show.php/Plasma+Panels+Collection+?content=14758914:35
Peace-bulldog98: after this sentence OCAL INSTALLATION (you should use this for a safer installation...)14:35
Peace-you will find the stuff14:35
bulldog98Peace-: one time highlight is enougth14:36
bulldog98Peace-: script does not work with z-Shell14:38
Peace-bulldog98: i don't use z.shell14:38
Peace-i use bash14:38
bulldog98how do I add starters for calligra?14:43
Peace-bulldog98: run calligra14:43
bulldog98Peace-: how do I tweak it to also show a list of recent files?14:45
bulldog98and move the possition14:45
Peace-bulldog98: right click and http://wstaw.org/m/2012/03/13/plasma-desktopka6406.png14:45
Peace-bulldog98: i guess with shelf 14:46
bulldog98Peace-: done that all ready14:46
bulldog98Peace-: shelf?14:47
Peace-shelf can be configured to show only recent files14:47
Peace-bulldog98: install lancelot you will get shelf14:47
Peace-sudo apt-get install plasma-widget* = you will get all the stuff14:47
bulldog98Peace-: no I mean the starter to show recend docs14:47
Peace-youneeed14:47
shadeslayerScottK: got a sec?14:47
Peace-ah you mean the kickoff?14:47
bulldog98Peace-: the icon in the chakra like bare14:48
bulldog98-e14:48
Peace-i can't undestand14:48
Peace-what are you trying to do ?14:48
bulldog98Peace-: the libreoffice icon shows you if you rightclick on it a menu option to open recent files. I want that for calligra14:49
shadeslayerScottK: there are two ways to fix bug 947785, one is to patch Digikam CMakeLists and set a explicit link to libdc1394-2214:50
ubottuLaunchpad bug 947785 in digikam (Ubuntu) "Digikam crashes when selecting a camera to import images from" [Undecided,New] https://launchpad.net/bugs/94778514:50
Peace-bulldog98: i guess you can't do that14:50
shadeslayerScottK: the other ( and correct ) fix is to apply this patch : http://sourceforge.net/tracker/?func=detail&atid=308157&aid=3361405&group_id=8157 to libdc1394-2214:50
Peace-bulldog98: the only way i know it's with shelf 14:51
bulldog98Peace-: I guess I could also implement an indicator for calligar14:51
shadeslayerI'm not a expert on libdc1394-22 tho, so can't advise on whether or not the patch is good14:52
Peace-bulldog98: http://wstaw.org/m/2012/03/13/plasma-desktopZj6406.png14:52
Peace-bulldog98: i have seen something like indicator on kde look14:52
shadeslayergah14:53
Peace-bulldog98: sometghing like this http://kde-look.org/content/show.php/Firefox+dockmanager+script?content=14939114:53
shadeslayerlibdc1394-22 is *really* outdated14:53
shadeslayerScottK: needs a FFe now, I'll file a sync request as well as a FFe14:55
shadeslayer( current libdc1394-22 leaks private symbols )14:55
bulldog98Peace-: found a way to manage that15:18
Peace-bulldog98: good then talk with calligra team 15:18
bulldog98Peace-: you have to tweak the desktop files15:19
Peace-:S15:19
=== dantti is now known as dantti-afk-lunch
Mamarokso since a few days plasma-desktop doesn't start automatically anymore on KDE login, is this known?15:38
Mamarokactually since the upgrade to KDE 4.8.1 IIRC15:38
Peace-Mamarok: run it on konsole?15:39
MamarokPeace-: that is not the problem, I know how to start it :)15:40
Peace-Mamarok: ah 15:40
Peace-you mean the upgrade15:40
Mamarokthe problem is that it doesn't start as it should15:40
Peace-Mamarok: but after you have launched it once you need to run it manually again and again ?15:40
Peace-i mean at login time?15:41
Mamarokyes15:42
=== mqr is now known as pvivek
shadeslayerScottK: https://bugs.launchpad.net/ubuntu/+bug/95415415:45
ubottuLaunchpad bug 954154 in Ubuntu "FFe: Please sync new libdc1394-22 from Debian unstable" [Undecided,New]15:45
Peace-Mamarok: bug report :P15:46
Mamarokbut where, upstream I don't think so15:47
=== maco2 is now known as maco
ScottKshadeslayer: Commented.16:02
Peace-Mamarok: i would say launchpad16:03
=== cmagina_ is now known as cmagina
cmaginajust ran into a new issue, the package telepathy-mission-control-5 depends on some gnome packages, which results in kde-telepathy pulling in a good chunk of gnome (control center, session, keyring, and some more)16:17
shadeslayeruhh16:18
Peace-mm16:18
shadeslayercmagina: weird, it shouldn't16:18
Peace- byzanz-record  ??16:18
cmaginashadeslayer: i think the deps were added recently, like today16:19
cmaginasearching lp for anything on it16:19
shadeslayercmagina: nope, I'm on the latest version16:19
cmaginahmmm16:19
shadeslayercmagina: http://paste.ubuntu.com/882014/ << apt-cache depends telepathy-mission-control-516:19
cmaginai installed this system with yesterdays precise daily16:19
cmaginahmmm....nm, something else pulled in all of the gnome-control, etc junk16:21
cmaginathe muon package manager didn't so those deps, but they were installed16:21
cmaginas/so/show/16:21
kubotucmagina meant: "the muon package manager didn't show those deps, but they were installed"16:21
shadeslayer:)16:22
cmaginaexcuse the noise16:22
cmaginai blaimed kde-telepathy because when i went through and purged the gnome bits, it was the only kde package that was removed16:23
cmaginaseems the muon package manager caused some package to pull in recommends or something16:24
shadeslayercmagina: check /var/log/apt/history.log ?16:25
cmaginashadeslayer: will do, thanks16:25
=== jussi01 is now known as jussi
ScottKcmagina: Installing recommends by default has been the standard for Debian and Ubuntu for quite some time right now, so that's to be expected.16:34
shadeslayerScottK: wheee, fixed16:37
shadeslayerno more crashes16:37
ScottKshadeslayer: With the patched one or the new version?16:38
shadeslayerScottK: patched, the entire dir structure had changed, I had to write the new patch instead of taking the one from git16:38
ScottKOK.  Cool.  Please close out the FFe and get that sponsored instead.16:38
shadeslayerBut! I can't get the picture imported16:39
cmaginaScottK: yes, i'll have to dig into it some more to see what caused all of those gnome packages to get installed as i was able to remove all of them without removing any of the packages i had installed16:43
shadeslayerhmm and now it works16:44
shadeslayerweird16:44
shadeslayerScottK: can you test the binary?16:45
ScottKshadeslayer: No.  Talk  to bigjools.  He was the one having the problem.16:45
shadeslayerok16:45
shadeslayerhe's not online I think :)16:46
shadeslayerwell, I can comment on the digikam bug and get them to test16:46
=== pvivek is now known as zzz
=== zzz is now known as zpvivek
yofel_nick yofel16:56
yofel_-.-16:56
=== yofel_ is now known as yofel
=== larva_ is now known as larva
shadeslayeryofel: can you upgrade qemu-user-static on your server?17:01
shadeslayerpbuilder-satisfydepends segfaults when trying to build armel packages17:01
shadeslayer/usr/lib/pbuilder/pbuilder-satisfydepends: line 60:  1462 Segmentation fault      (core dumped) $CHROOTEXEC aptitude -y --without-recommends -o APT::Install-Recommends=false "${PBUILDER_APTITUDE_CHECK_OPTS[@]}" -o Aptitude::ProblemResolver::StepScore=100 -o "Aptitude::ProblemResolver::Hints::KeepDummy=reject pbuilder-satisfydepends-dummy :UNINST" -o Aptitude::ProblemResolver::Keep-All-Level=55000 -o Aptitude::ProblemResolver::Remove17:01
shadeslayer-Essential-Level=maximum install pbuilder-satisfydepends-dummy17:01
shadeslayer( Upgrading  qemu-user-static supposedly solves the issue17:02
shadeslayeryofel: oh and if you have a digital camera to test, please see bug 947785 17:03
ubottuLaunchpad bug 947785 in digikam (Ubuntu) "Digikam crashes when selecting a camera to import images from" [Medium,In progress] https://launchpad.net/bugs/94778517:03
=== allison_ is now known as wendar
=== shadeslayer changed the topic of #kubuntu-devel to: Kubuntu: Friendly Computing | 4.8.1 http://ur1.ca/8kalp | Precise: Feature Freeze -> Bug hunting: http://ur1.ca/8kam4| http://ur1.ca/8kamo TODOs! | http://www.kubuntu.org/news/12.04-lts-announce | wiki.kubuntu.org/Kubuntu/UDSQSeries | Next Meeting: 3.30 PM UTC
=== shadeslayer changed the topic of #kubuntu-devel to: Kubuntu: Friendly Computing | 4.8.1 http://ur1.ca/8kalp | Precise: Feature Freeze -> Bug hunting: http://ur1.ca/8kam4| http://ur1.ca/8kamo TODOs! | http://www.kubuntu.org/news/12.04-lts-announce | wiki.kubuntu.org/Kubuntu/UDSQSeries | Next Meeting: 16th March 3.30 PM UTC
bulldog98Peace-: http://paste.kde.org/439202 see there for how they did in libreoffice17:10
* bulldog98 won’t be on tomorrow17:11
yofelshadeslayer: q-u-s upgraded to version from precise17:15
shadeslayerlets see17:15
* shadeslayer crosses his fingers17:16
shadeslayerargh, no luch17:18
shadeslayer*luck17:18
Peace-bulldog98: mm17:22
Peace-bulldog98: how does it look like ?17:23
=== dantti-afk-lunch is now known as dantti
shadeslayeryofel: can I have permissions to execute sbuild?17:30
yofelshadeslayer: sec17:38
shadeslayercool17:38
* shadeslayer goes about cleaning up digikam bugs17:40
shadeslayerthere are like bugs which are 4 years old17:40
Riddellshadeslayer: did you get it to compile?17:40
shadeslayerRiddell: get what to compile?17:40
Riddelldigikam, didn't you say it had a problem?17:41
shadeslayerdigikam? I'm trying to setup a armel pbuilder17:41
shadeslayerRiddell: yes, still on it17:41
Riddellmm17:41
=== zpvivek is now known as pvivek
shadeslayerI've tried a bazillion things, and everything just explodes17:41
yofelshadeslayer: try17:52
shadeslayerSorry, user shadeslayer is not allowed to execute '/usr/sbin/adduser shadeslayer sbuild' as root on yofel-thinkpad.17:52
yofeloh, yeah, no adduser17:52
yofelshadeslayer: added17:53
shadeslayersame thing17:53
yofelshadeslayer: I added you to the group17:53
shadeslayershould I logout and login?17:53
yofelyes17:53
shadeslayerok17:53
shadeslayerSorry, user shadeslayer is not allowed to execute '/bin/mkdir -p /var/lib/schroot/chroots' as root on yofel-thinkpad.17:54
shadeslayer@_@17:54
yofelwhat command are you running?17:54
shadeslayer mk-sbuild --arch=armel precise17:54
yofel*sigh*17:55
yofelmy fault17:55
shadeslayerhmm .. what do we do with bug 428335 ?17:56
ubottuLaunchpad bug 428335 in digikam (Ubuntu) "Obsolete thumbnails in ~/.thumbnails are not deleted" [Undecided,New] https://launchpad.net/bugs/42833517:56
shadeslayerseems upstream to me17:56
yofelshadeslayer: try again17:57
shadeslayerSorry, user shadeslayer is not allowed to execute '/bin/mkdir -p /var/lib/schroot/chroots' as root on yofel-thinkpad.17:58
yofelok18:01
yofelthis is a bit of a problem18:01
yofelmk-sbuild expects you have sudo permissions for everything18:02
shadeslayerwth18:02
shadeslayerI'll make it on my system then18:03
yofelwell, it runs *using* sudo: apt-get install, adduser, dmsetup, modprobe, tee, vgdisplay, mkdir, lvcreate, mkfs, ......18:03
shadeslayerhahahaha18:03
* shadeslayer is thinking of switching to this awesome 12Mbps plan18:03
shadeslayer12Mbps for the first 25 GB's and 1Mbps for anything above 25GB's18:04
shadeslayerbrb, have to logout18:06
yuriyjust updated to 4.8.1 on oneiric and now gtk apps are unstyled19:03
shadeslayeryuriy: what does ~/.gtkrc-2.0-kde4 say ?19:14
shadeslayerand make sure you have gtk2-engines-oxygen installed19:15
yofelyuriy: is xsettings-kde installed and running?19:17
shadeslayeryofel: oh btw I got pbuilder-dist working on a clean sid install19:18
shadeslayer( for armel )19:19
shadeslayerbuilding digikam right now19:19
yofelyay19:19
shadeslayerNeeds to download 200 Megs of binaries though, that's going to take some time :P19:19
MountainXrekonq does not know how to handle this protocol: <blank>19:22
MountainXwhere should I look to find the cause of this issue?19:22
yofelwhat protocol is used?19:22
yofelor are you trying to use?19:22
MountainXhere are my steps:19:22
MountainXUse Rekonq to download and save a file. I tested with some JPEGs and tar.bz2 files.19:22
MountainXAfter downloading, go to Downloads in Rekonq19:22
MountainXChoose "Open Directory" for a downloaded item.19:22
MountainXOr choose "Open file"19:23
* shadeslayer checks19:23
MountainXeither way, the message above is the result19:23
MountainXthis is with Kubuntu 12.04, btw19:23
shadeslayerderp19:24
shadeslayertesting on master19:25
shadeslayerworks on master19:26
MountainXok, if it works for you, then I think I will reinstall...19:26
shadeslayercommit 16fbc38ebe20c6ee789918fb43540085c0a41dba says "Fix Download page"19:27
MountainXbut, so I understand, what missing file(s) or plugins or libs would cause this issue? Any idea? I may attempt to fix it before I reinstall.19:27
shadeslayerwell19:28
shadeslayerit's really stupid19:28
shadeslayerbut a '/'19:28
shadeslayer+        QString file = dir + QL1C('/') + fName;19:28
shadeslayerthe dir and the filename did not have a '/' in between them19:28
MountainXOK, interesting19:28
shadeslayerI'm trying to figure out if the final release has this fix19:29
MountainXok19:29
yofelshadeslayer: I uploaded 0.9 to precise, so doesn't seem so19:30
shadeslayerwell19:31
shadeslayeryofel: 16fbc38ebe20c6ee789918fb43540085c0a41dba was commited on Feb 1719:31
yofelhm19:31
shadeslayer0.9.0 was released on 1st March19:31
shadeslayerrecompilling the 0.9 branch19:31
shadeslayerwfm19:32
shadeslayer( the package19:32
=== pvivek is now known as mqr
yuriyshadeslayer: include "/usr/share/themes/oxygen-gtk/gtk-2.0/gtkrc"20:37
yuriyshadeslayer: \ngtk-theme-name="oxygen-gtk"20:37
yuriyshadeslayer: yes there is "\n" at the beginning of that line20:38
yofelyuriy: is xsettings-kde running?21:02
yuriyyofel: yes21:17
yofelyuriy: can you go to the gtk settings in system settings, select oxygen-gtk again, apply and see if it works then?21:27
yuriyyofel: yeah that worked. wow didn't even have to restart apps!21:34
yuriy~/.gtkrc-2.0-kde4 is differen now. includes font settings and no weird \n21:35
yofelyuriy: that line has to be added for gtk3, but without \n. I need to change the transition there21:36
BluesKajdinner...BBL21:40
=== tsimpson_ is now known as tsimpson

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