[00:00] bla [00:00] yeah, most likely :( [00:01] meh [00:01] just when I had an easy bug on my assigned list :( [00:02] JontheEchidna++ [00:02] beautiful code :) [00:02] :) [00:02] awesome to read this after days of ugly codes [00:02] which class are you admiring, if I may ask? [00:03] installevent [00:03] not the largest of classes though ;) [00:03] just beautiful to look at [00:03] * apachelogger doenst dare looking at the hook ^^ [00:04] heh [00:04] hook got better, thanks to amachai [00:04] inocnsistency! [00:04] JontheEchidna: hook sometimes puts oneline if's into brackets and sometimes not [00:04] whiles are all without breakets [00:05] * apachelogger notes that in his opinion it is much easier to read with brackets [00:05] hook is also the only class to have 3 authors :P [00:06] JontheEchidna: some emtpy lines in the large if monsters would probably help wonders [00:06] JontheEchidna: take a look at astyle [00:06] wonderful tool [00:06] they use it on kdelibs [00:06] you can find the kdelibs options somewhere in techbase I think [00:06] * apachelogger will use that on the date&time kcm soon [00:07] I think what we're using is pretty close to what amarok's doing, but amarok does that spaces-inside-parenthesis thing, and we don't [00:07] because that also got like 3 authors, but like 5 different code styles ;) [00:07] JontheEchidna: how about specing a kubuntu code style guide? [00:08] for UDS? [00:08] yep [00:08] or for maverick in general? [00:08] kk [00:08] well [00:08] UDS == UDS + general [00:08] I'm not quite sure how to get a blueprint to be a "UDS-official" spec [00:08] and we really should brainstorm on getting rid of the installevent stuff and move it to kde(libs) [00:09] JontheEchidna: mark it for that sprint [00:09] and get it discussed by someone ;) [00:09] how do I get it on the schedule, I suppose is the question [00:10] JontheEchidna: I think there is a wiki page on blueprinting [00:10] IMHO blueprinting is way too much limited on usage in UDS context though [00:10] then again the lp UI is so crappy you wouldnt want to use it every day ;) [00:15] omg [00:15] the screensaver configuration stuff dates back to 1996 [00:17] that means it was written in KDE2 and forgotten [00:18] no, KDE 1!!! [00:18] and then got ported along :) [00:18] old != bad [00:18] probably ported with qt1to2 [00:18] then promptly forgotten ;) [00:18] no [00:19] knetworkconf is an example of that happening with qt3to4 [00:19] well, a bad example [00:19] TBH the screensaver kcm is a good example of how code can be maintained for that long [00:19] some compability libs are used [00:20] but other than that it doesnt look THAT bad [00:20] oh [00:20] our mm patches are still bugged [00:21] * apachelogger totally forgot about that [00:22] * apachelogger loves it how the systray goes bonkers when you restart kded ^^ [00:35] * apachelogger thinks the installevent hates him [00:50] apachelogger: https://wiki.kubuntu.org/Kubuntu/Specs/MaverickCodestylePolicy [01:01] JontheEchidna: I think we should only use // style comments [01:02] that /**/ stuff is odd IMHO [01:02] that's apidocs stuff [01:02] also limiting to // helps with consistent code appearance a bit [01:02] you'll only see /**/ in headers [01:02] JontheEchidna: what is apidocs stuff? [01:02] /**/ [01:03] no, those are C multiline comments :P [01:03] and in the presented code examples they are used outside headers [01:03] which are used as doxygen syntax in headers [01:03] ooh, the AmarokProcIO one [01:03] JontheEchidna: that sure can be configured [01:03] doxygen can use // comments too :) [01:04] see :P [01:04] * apachelogger would opt for // only, and only that [01:04] the only time I think /* */ is justified is for large comment blocks, like the license block in a header [01:04] simply because it's easier when writing it [01:05] no one writes license blocks though :D [01:05] they get copied [01:05] apidocs can get a bit long winded, depending on what's being documented [01:06] but I agree that in .cpp files there should never be any non-license /**/ [01:06] well, by "writing" I mean /*\nCtrl-V\n*/ [01:07] JontheEchidna: ok, so lets go for // except for api documentation which must be /**/ [01:07] I think doxygen defaults to /** for C, and /** or /// for C++ [01:08] so both could work, although writing api docs with /** is a little easier [01:08] JontheEchidna: ideally /*\n [3 space indent] blah\n [3 space indent ]blahblah\hn */ [01:09] JontheEchidna: that said, maybe api documentation should be enforced too? [01:09] I'm all for that [01:10] groovy [01:11] http://people.ubuntu.com/~apachelogger/screencasts/kscreensaverinstall.ogv [01:11] also note how the name is nicely localized in the notifications (unlike the other implemetations of the patch ;) [01:12] ;) [01:12] question is if we want to break string freeze for that [01:13] kdesudo is huge liek xbox localized [01:13] its not the most prominent string though ... only the name of the thing to be installed [01:13] JontheEchidna: there is a bug in kdesudo too [01:13] it doesnt render the command for some reason [01:13] that always happens in combination with kdesudo --- foo -- I think [01:13] yeah, it gets cut off after a few args [01:14] MaverickCodestylePolicy updated [01:14] maybe it tries to parse te first -- or something [01:14] * apachelogger notes that kdesudo needs some love to get rocking with the codestyle ;) [01:15] ;) [01:15] did you see what I did with the use case names ;D [01:16] // Default constructor [01:16] Queuelist(QWidget *parent, const char *name = 0); [01:16] // Default destructor [01:16] ~QueueList(); [01:16] policy violation :P [01:17] /* [01:17] Default constructor [01:17] */ [01:17] and the like for destructor [01:17] probably needs @param in there too for the constructor [01:17] yeah [01:17] JontheEchidna: the slots format is messed up [01:18] carriage return in the wrong place, my fault [01:19] JontheEchidna: I should be contributor ;) [01:19] apachelogger: done [01:19] JontheEchidna: the copyright part implies that we create gpl-only software [01:20] apachelogger: do we want a specific licensing policy? [01:20] + it should be ensured that for each used license there is a complete copy stored along the source [01:20] too easy to forget [01:21] JontheEchidna: well, we could enforce KDE licensing [01:21] 'specially since Riddell's a big part of the KDE licensing policy team [01:21] yep [01:21] "Use KDE licensing policy, beotches [01:21] " [01:21] ^^ [01:22] you should probably specify if(...) vs. if (...), that's always a favourite :) [01:22] http://techbase.kde.org/Policies/Licensing_Policy [01:22] true [01:22] if () [01:22] works way better for long conditions [01:23] JontheEchidna: what do you think? [01:23] Personally I like if () [01:23] and the same for "for", "while" and "case" [01:23] yeah, applies to all that funky stuff [01:23] er "switch", not "case" [01:23] on a related note [01:24] zomg, the examples there use if() [01:24] brackets for oneliners, or not? [01:24] * apachelogger finds it much better to use brackets all and everywhere [01:24] my rule is, no brackets unless there is an else [01:24] brackets for consistency, imo [01:24] well, you need the brackets > 1 line anyway :S [01:25] *brackets everywhere for consistency [01:25] JontheEchidna: it also is quicker to add stuff [01:25] and one cant forget about making them [01:25] plus it makes it clear what belongs to that statement [01:25] I man one-line if's, but you could but it all one one line anyway, if (foo) bar(); [01:25] instead of relying on whitespace [01:25] s/man/mean/ [01:25] tsimpson: ah [01:26] apachelogger and JontheEchidna: Doesn't KDE have a coding style guide? Can we just use that? [01:26] ScottK: no they dont [01:26] well [01:26] Oh. [01:26] only for kdelibs [01:26] for kdelibs they have [01:26] But this is very similar [01:26] OK. Why not use that? [01:26] not suited for apps IMHO [01:26] Instead of merely being "similar" [01:26] Why? [01:26] ScottK: because amarok also derived from it ;) [01:27] for example IIRC it features a 2 space indent, which IMHO is just horrible [01:27] no indeed it is 4 ^^ [01:27] Much easier when upstream just provides standard advice everyone can use (e.g. Python and PEP-8) [01:28] Our style is fully compliant with kdelibs, just with some more things specified [01:28] http://techbase.kde.org/Policies/Kdelibs_Coding_Style [01:28] ScottK: ours is more complete [01:28] indeed it implements the kdelibs style by a 100% [01:28] OK. [01:28] actually, kdelibs is using 4 space indent from the astyle command they give [01:29] JontheEchidna: [02:27:49] no indeed it is 4 ^^ [01:29] :P [01:29] oh [01:29] ^_^ [01:29] though I think it was 2 at some point or maybe I am confusing projects here [01:29] anyhow [01:29] kdelibs also gives an opinion on one-line if statements [01:29] JontheEchidna: it has some explicit statements that are worth adding to our style [01:29] apachelogger: yeah, like Qt includes [01:29] Use blank lines to group statements [01:29] Use only one empty line [01:30] No space after a cast [01:30] all very sensible things :) [01:30] Each variable declaration on a new line [01:30] JontheEchidna: ^^ [01:30] uberimportant to mention [01:31] eek, using endl in a kDebug() statement is not good practice. must fix the example [01:31] why must amarok use it's custom debug class? :( [01:31] * apachelogger notes that a team member from his most recent cpp exercise had a line that was like ... foo* bar, foobar, blah; [01:31] * apachelogger almost fell over from that [01:32] JontheEchidna: it doesnt anymore I think [01:32] in KDE 3 they had one because KDebug was essentially crap and mxcl came up with a much better thingy [01:32] I think that debug class is now also used in the lastfm client [01:33] they were using it in recent kde4 times, I know [01:33] * apachelogger notes to create an astyle script once the spec is accepted [01:33] JontheEchidna: then I really dont know, there must be some fancy advantage to it though [01:33] well, it's not beyond 'em to... overengineer things a tad from time to time ;) [01:34] but that's why it's Amarok, ya love it or hate it [01:34] ^^ [01:35] nothing compared to lancelot though [01:36] apachelogger: lancelot has a python meta-ui compiler. :S [01:36] combining the crappiness of .ui-like systems and python [01:37] lol, awesome :D [01:37] JontheEchidna: http://paste.ubuntu.com/410789/ [01:37] I made you addPackages function useful :P [01:37] \o/ [01:37] + m_screensaverPackages["kscreensaver"] = i18n("Set of default screensavers"); [01:37] a teeny tiny string... [01:37] hrm [01:37] decisions [01:38] IMHO getting one more item of my assigned list is worth that string :P [01:38] + chances are that most users will not see it anyway, systemsettings is a way too scary name ^^ [01:38] as long as you can get the red tape out of the way, I'm fine with it [01:38] it has the potential for awesome [01:39] well, once the freeze is over [01:39] * apachelogger also needs to fix the other patches anyway [01:39] they need to obtain the translated programName somehow [01:40] hardcoding that stuff scared me quite a bit last time I stumbled upon them [01:40] in fact [01:40] I think last time == when I implemented that stuff for konqueror [01:40] * apachelogger checks the konq patch [01:41] + dbusargs.append(KonqFactory::aboutData()->programName()); [01:42] see, I am a magician ;) [01:42] ;) [01:42] well, if implemented that properly, maybe I fixed dragon on the way [01:42] dbusargs.append("Dragon Player"); [01:42] omg [01:43] kaffeine also carries that patch? [01:43] epic phail [01:43] then I think amarok, dragon and kaffeine need fixing [01:43] dbusargs.append("Dragon Player"); [01:43] er [01:43] * apachelogger is not going to care about arora which probably also got that patch [01:43] dbusargs.append("Kaffeine"); [01:43] yeah [01:43] stupid klipper [01:43] will fix that after freeze [01:44] does amarok have localized names? [01:44] no [01:44] not too big of a deal then, but it wouldn't hurt to fix it [01:45] So what does the kdelibs style lack? [01:45] I probably wont be able to sleep becaue of this :P [01:45] kubotu: time [01:45] apachelogger: Europe - Vienna - Thu Apr 08 02:45 CEST [01:45] * apachelogger is sure going t be glad when he can upload all the stuff fixed in https://bugs.edge.launchpad.net/~apachelogger/+assignedbugs [01:47] ScottK: how to name member variables, general function-naming guidelines, header include order, const correctness guidelines [01:47] OK. [01:47] Instead of replicating much of the kdelibs style, how about making the spec kdelibs style, plus this stuff. [01:48] Any of that stuff a candidate for adding to the kdelibs style? [01:49] I think there are advantages to having it all listed out in one location [01:51] Riddell: I posted my brainstorming ideas under your name :) ... didn't notice that before [01:51] also.. did ya get my ui file? [01:52] shtylman: actually, a lot of that stuff probably isn't Riddell. I saw a lot of other peeps in the last-edited field that dont' have a name listed [01:53] well, maybe not a lot, but [01:53] a few anyways [01:53] JontheEchidna: good...im not alone :) [01:57] JontheEchidna: That's true, but I can also imagine it being more work to maintain [01:58] Good style is good style. Can't change too much, I don't think [01:58] http://www.madatoms.com/site/blog/lost-spin-offs <-this [01:59] I'd totally watch "Rulers" and "Pros and Cons" [01:59] Clucks 'n Bucks too, since Hurley is awesome === dendro-afk is now known as dendrobates [04:38] apachelogger: The krandrtray thing doesn't revert either here. [09:37] Riddell: ping [09:39] hi agateau [09:39] Riddell: two things I'd like to see with you [09:39] 1. I noticed krandrtray uses non-standard entries in its ksni menu [09:39] it uses bold to indicate selected resolutions instead of radio buttons [09:40] but bold is not supported with dbusmenu, so there is no way to tell which menu item is selected [09:40] is it too late to include a fix for that? [09:40] where fix can be either: [09:41] port to radio buttons [09:41] disable dbusmenu for krandrtray (like I did for knm) [09:42] Riddell: what do you think? [09:46] may as well do it properly and port to radio buttons I'd think [09:46] ok [09:47] if it's possible to get it into lucid, I am going to work on it [09:47] yes it would be possible [09:47] great [09:47] unless nixternal has UI freeze issues but I doubt it's something we have explicitly documented [09:48] ok [09:48] I guess I can work on it anyway, the worse thing which could happen is having it only in kde 4.5 [09:50] Riddell: 2. have you seen the gsoc messages from Daniel Holbach? [09:50] Riddell: I am not sure I am the right person to answer them [09:50] (meaning, you are probably more qualified ;) ) [09:51] Riddell, agateau: mind the patch policy [09:51] no that knradrtray had much of an active upstream from what I saw :( [09:51] s/no/not [09:51] apachelogger: patch policy? [09:51] * agateau feels like he is about to learn about something he should know [09:52] agateau: https://wiki.kubuntu.org/Kubuntu/Specs/LucidPackaging [09:52] see Design part [09:52] you just confirmed my statement that it is not visible nough though ^^ [09:53] :) [09:53] ok, no problem with this [09:53] I would expect this patch to be easily upstreamed [09:54] agateau: just apply it there as well ;) [09:54] the code there is so ugly no one would care if you rm the whole thing ^^ [09:54] code in krandrtray? [09:55] krandr* as a whole [09:55] I've seen much worse [09:55] no doubt [09:55] but I have an easly upset stomach [09:55] :) [09:55] * agateau has too many scars from ugly code to be easily upset [09:55] agateau: if you get a minute or two please have a look at https://wiki.kubuntu.org/Kubuntu/Specs/MaverickCodestylePolicy [09:56] Riddell: ^ too please [09:56] it's mostly a combination of the kdelibs and amarok policies with some additional explicit requirements [09:57] it really looks like a copy of kdelibs coding style [09:58] Only I am not sure about kdelibs policy wrt indenting Q_OBJECT and public: blocks in classes [09:58] our spec says 90chars/line, kdelibs says 100 ;) [09:59] sounds like bike shedding (90 vs 100) :/ [09:59] dont be silly :P [09:59] * apachelogger wants 80 [09:59] ! [09:59] ^^ [09:59] yeah, and max 5 lines per function! [10:00] 50 [10:00] I would be bribable to go up to 75 for C-only code ;) [10:00] ugh, I can't read amarok source, there's way too much whitespace in it [10:00] vertical whitespace, mostly [10:00] that's why you need the 5 line limit! [10:02] agateau: yes I'll handle the gsoc e-mails [10:02] Riddell: ok great [10:04] apachelogger: I'm not sure why we need a code style policy, if we're modifying existing code then go with the existing codestyle, else use Qt policy same as KDE [10:05] Riddell: for our stuff only ... Qt and KDE styles feel to unprecise [10:05] I agree with Riddell [10:05] If it's good enough for kdelibs, it should be good enough for Kubuntu, no ? [10:08] Riddell, agateau: ScottK suggested that we coudl reference the kdelibs style and add addtional stuff (instead of currently reproducing it mostly) [10:08] JontheEchidna thought it might be good to have the list all in one place [10:09] Sput: you could run sed before reading ;) [10:09] * agateau would make the page a link to kdelibs page [10:09] apachelogger: or just not read such badly formatted code :P [10:09] lol [10:09] if you have the choice [10:10] * apachelogger never has and constantly ends up crying [10:10] * agateau hugs apachelogger [10:13] ok, krandrtray is more standard now [10:13] testing all options hurts the eyes =( [10:14] * apachelogger rehugs agateau [10:16] is it just me or doesn't krandrtray save the settings anymore? it doesn't even use the auto resolution by default :( [10:27] debfx: needs rewrite [10:28] debfx: or rather, needs to be changed to use kephal [10:28] though I am not exactly sure what kephal is meant to do , since it doesnt do anything right now [10:28] well, nothing other than watching for xrandr changes and emitting signals about that ^^ [10:30] Riddell: what have you decided to do with the brightness patch? [10:30] I'd like to upstream it but I don't know where to put the osdwidget class so it can be used by kmix and the battery applet [10:35] debfx: yes it should be upstreamed [10:36] debfx: since there's no obvious upstream to attend to it I suggest just posting to kde-core-devel [10:48] Riddell: ok, what about lucid? either the old patch should be dropped or updated to the new one [11:01] \o/ [11:01] * apachelogger just spent 94 EUR on train tickets === michaelk is now known as Guest58382 [11:02] emonkey: on may 20 I am from 7:20 until sometime in the afternoon in zurich! [11:02] after traveling for 12 hours or so :D [11:07] debfx: I'd like to update it but only after there's been agreement on kde-core-devel that it's a good thing [11:13] apachelogger: even better: bring emonkey to Randa :) [11:13] emonkey: be prepared to get kidnapped [11:14] Riddell: bug 558333 please [11:14] Launchpad bug 558333 in kubuntu-notification-helper "freeze exception for kscreensaver installation recommendation" [Undecided,New] https://launchpad.net/bugs/558333 [11:17] apachelogger: that only recommends screensavers from the screensaver module? it doesn't recommend to install screensavers from amarok? [11:17] Riddell: right [11:17] groovy [11:18] the screensavers from a whole different set of install types, so one needs to call the dbus interface with a package from that set to trigger recommendatin of the set :) [11:18] * Riddell approves [11:18] thanks [11:23] * Mamarok wonders what screensavers from Amarok would be... [11:24] Mamarok: nothing, it is just that one can easily use that code in a wrong way and end up with amarok recommending installation of screensavers ;) [11:24] sounds funny :) [11:25] well, currently it recommends installation of libdvdread which is not too sensible either IMHO [11:26] hm [11:26] JontheEchidna: I have but one question ... why does the current knh from lucid contain a build dir? :P [11:26] anyhow [11:27] not in sync with bzr :( [11:37] kubuntu: Harald Sitter * rapachelogger@ubuntu.com-20100408103733-3c7fu52g92svzf5n kdebase-workspace/debian/ (3 files in 2 dirs): [11:37] kubuntu: Add kubuntu_02_screensaver_restricted_install.diff to recommend installation [11:37] kubuntu: of kscreensaver package via k-n-h (LP: #273667) [11:42] kubuntu: Harald Sitter * rapachelogger@ubuntu.com-20100408104238-2odrc2rx5abo9em3 kdebase-workspace/debian/ (7 files in 2 dirs): merge with parent [12:03] mhhh [12:04] ahhhh [12:04] meeh [12:04] :( [12:05] oh well, kickoff doesnt like me either [12:05] curel world [12:35] Riddell: anyone tried lucid on arm yet? [12:37] freeflying: not as far as I know [12:38] Riddell: the experience was too bad [12:58] apachelogger, may 20? 7.20 am? [12:59] damn early ... what are you doing here? [12:59] freeflying: I saw a demo in February with Kubuntu Netbook that seemed to run, but I didn't see any interaction. [13:01] emonkey: Multimedia Sprint in Randa :) [13:01] Randa? Don't know that ... [13:01] emonkey: check here: http://community.kde.org/Multimedia/Sprint2010 [13:01] mom [13:01] Randa is close to Zermatt [13:01] persia: it could be run, but you know the experice is too bad [13:02] uh Zermatt? that's not that close ... [13:02] freeflying: That's annoying. Does something not work, or is it just slow? [13:03] persia: at the first boot up time, nepomuk used too much resources, make other application keep on crash [13:03] Hey guys I get a weird flashy effect the first time I click on Kicker (is it) the K menu. after that it's fine. [13:04] emonkey: much closer for you than all the people coming to the sprint [13:04] persia: I tried karmic on imx51, its not that bad [13:04] but yeah, as usual, the Swiss think far away when it's not the next town :) [13:04] Mamarok, true ... but I don't think that I've got enough money to get there ... [13:05] emonkey: well, check the prices, you might be astonished [13:06] freeflying: Sounds like a bug in nepomuk to me, but worth profiling. I suspect there's a way to make it work better. [13:07] ryanakca: how about updating "User of the moment" with that e-mail from Jay Franklin? [13:07] persia: :) actually, Qt4.6 shall perform better than gtk on arm [13:08] freeflying: I'm generally against competitive library comparison, but why? Do we know that it's compiled optimally in Ubuntu? [13:09] Mamarok, 113.- do you know how much that is for me? ;-) [13:10] emonkey: well, I sent a mail to various LUG lists talking about the SPrint in December, you could have been sponsored if you reigstered earlier [13:10] persia: well, forget what I've said :P [13:10] registered* [13:11] freeflying: But seriously, I expect that it needs a bug with some profiling information. Could be poor optimisation, non-optimal compiler flags, memory issues, etc. [13:11] Mamarok, But I think I'm not really that helpful there, that a sponsoring makes sense [13:11] why do you think that? [13:12] persia: if I can find another reference board, I will try more [13:13] freeflying: Board doesn't matter so much. If you can figure out why nepomuk consumes so many resources on your board, it can be fixed for your board. [13:14] Mamarok, no deep coding skills, no idea about this summit, nearly no knowledge about multimedia [13:15] * Mamarok has no deep coding skills neither :) [13:16] nepomuk could generally benifit from consuming less resources. [13:18] Mamarok, the biggest motivation to be there would be to see apachelogger, markey and you. ;-) [13:18] emonkey: isn't that motivation enough? You can give a hand in Edu, too, that is a combined sprint [13:18] heh yeah thats what im thinking about going there and seeing them in real life in real time [13:18] :D [13:18] and then poking apachelogger through the swiss alps [13:18] :D [13:18] Mario will be there, and annma [13:19] heh [13:19] ghostcube: the alps are very high, and one ca fall deep... [13:19] can* [13:19] yeah only the smaller hills [13:19] hes old [13:19] i dont wanna jkill him [13:19] :D [13:19] Mamarok, I think it we'll be only possible to be there if I'm able to join someone who drive's with a car. [13:22] emonkey: I am driving from Fribourg... [13:22] but there are a few Germans driving down there, too [13:43] Riddell: will the printer config ui fixes hit for beta? or no? [13:44] I am guessing that the cd's arn't gonna be respun? [13:48] shtylman: not beta no [13:48] ;( [13:48] Riddell: will we have the new logo on the CD sleeves? I hope so :) [13:49] more importantly... will there be new stickers... and how can I get them :) [13:50] rgreening_: I need to speek to them about what's happening with CD designs [13:51] shtylman: I expect the whole of shop.canonical will be redone [13:54] oooo [13:55] no nixternal this week? [13:59] Riddell: His house had some kind of storm damage, so no power. [13:59] oh, erk [13:59] It's somewhere in your backscroll ~ maybe 30 hours ago. [14:00] Between him and Tm_T (who's also not here) there go my hopes for powerpc testing. === dendrobates is now known as dendro-afk [14:44] ghostcube: no poking!! [14:44] that makes me grumpy [14:44] hehehe [14:45] * ghostcube is looking at the iPhone 4G pics o.O [14:45] apachelogger prefers to be peeked. [14:45] emonkey: see, that is why I am going to be damn early in the next town so you dont have to go that far ;) [14:45] * apachelogger is very considering [14:46] * apachelogger is wondering why he is making tea when coffee is so much more appropriate [14:47] cause teein and coffein is the same o.O [14:47] emonkey: re joining someone that drives ... I read that someone from german is going by car and offered to pick up people along the way [14:47] somewhere in the wiki [14:47] ghostcube: it is fruit tea [14:47] oh ... [14:47] then i have no idea :D [14:49] * apachelogger just when HR7 south - R49 west - R2 north - R23 east - R7 south on http://www.opencyclemap.org/?zoom=13&lat=47.04557&lon=15.44626&layers=B000 [14:49] that was quite the trip [14:56] Riddell: is m.i plasma applet 0.5.4 in your TODO list? [14:56] * evilshadeslayer watches his karma jump to ~1500... [14:57] hm [14:57] are we unfrozen yet? [14:57] don't know [14:58] doesnt look like it :( [14:58] was just wondering if it would be there after unfreeze [14:58] ok [14:58] apachelogger: where do you go to check this? [15:00] agateau: https://lists.ubuntu.com/archives/ubuntu-announce/2010-March/thread.html [15:00] apachelogger: No, but if you upload stuff it'll just sit in the queue. No need to wait. [15:01] * apachelogger doenst like queues :P [15:01] + if we hadnt our lovely bzr branches that approach would be bound to fail I suppose [15:01] apachelogger: thanks [15:02] agateau: it's up next [15:02] agateau: its probably also indicated on some lp page [15:02] but since lp is a black whole for information :P [15:03] agateau: https://edge.launchpad.net/ubuntu/lucid [15:03] see Status: [15:03] :) [15:03] also the /ubuntu/ page show frozeneness [15:05] canonical should start marketing certification for LP browsing :) [15:06] canonical certified launchpad browser operator [15:06] sounds good! [15:06] cclpbo [15:06] * apachelogger is wondering if this could be a whole new business opportunity [15:08] hm, workspace really needs a testbuild [15:08] so many changes [15:08] awful [15:11] me@osiris:~/src/bzr$ get-branches kubuntu-members [15:11] The team 'kubuntu-members' does not have any branches on Launchpad. [15:11] that does not look right [15:14] indeed [15:14] "me" is a very weird username [15:14] * agateau hides [15:15] hehe... [15:15] https://wiki.kubuntu.org/Kubuntu/10.10/Brainstorm#preview << This has grown :D [15:17] agateau, apachelogger: did you guys work out what to do about moving message indicator on upgrade? [15:18] yus [15:18] Riddell: yes, that's the reason we need m.i 0.5.4 :) [15:18] only need changes from agateau on the indicator package [15:18] kds part of changes is waiting for unfreeze [15:18] does it also need his patch to kconf_upgrade? [15:18] Riddell: no [15:19] groovy [15:19] Riddell: I need to find time to get this into kde trunk, because I think it is an improvement on the existing code, but there is no need for it in Lucid [15:21] btw if i make a wiki page of myself,anyone can edit it? [15:21] s/of/describing [15:26] agateau: but I do want kdebase-workspace-4.4.1-20100406.diff don't I? [15:26] Riddell: you do yes [15:27] Riddell: to help poor krandrtray menu showing on the screen [15:27] apachelogger: "Don't adblock by default." that's a notable change in policy and needs discussion [15:28] Riddell: this is a no-one-cared-to-maintan-that-crap-dropping-change [15:31] apachelogger: what actual problem does it cause? bug 372379 doesn't mention any [15:31] Launchpad bug 372379 in kubuntu-default-settings "Konqueror ships ancient EasyList blocklist" [Low,Fix committed] https://launchpad.net/bugs/372379 [15:32] Riddell: a bogus filter could block stuff that should not be blocked, and by the fact that there is no such thing as perfection there ought to be bogus filters that block stuff it shouldnt block [15:32] e.g. in some forum I read that a user couldnt play youtube videos until he turned off the adblocking [15:33] apachelogger: do we have a bug squad? [15:33] not sure if that is related, but messing with website content at runtime is a tourblesome thing to do eitherway [15:33] evilshadeslayer: jontheechidna is the bug squad ;) [15:33] haha.... [15:34] apachelogger: yes but we've had this discussion ages ago (more than once) and the result was it's something we want, if that's to change it needs more discussion [15:34] Riddell: also, adblocking that only blocks 10% fo the stuff it could block with an up-to-date blocklist is not really worth anything IMHO [15:35] Riddell: if you update the blocklist I am alll for bringin it back and discussion is, until then I consider this an outdated patch that is at best causing problems [15:35] hence my reference to KDE 4.5 in which we can provide a sensible solution to this [15:36] since khtml provides auto-update magi et al [15:36] apachelogger, i wrote it in my agenda, so if nothing goes wrong I'll be in zurich. [15:36] cool [15:41] BANG! There went my sponsorship :P [15:42] * Quintasan is on "stand-by" [15:44] apachelogger: "at best causing problems"? it's an outright useful feature, helps me every day. yes there are traidoffs but we're aware of that. useful features can't be removed without discussion [15:44] well then, please revert [15:48] thanks apachelogger [15:48] Quintasan: that's not unlikely to happen mind, people do drop out [15:50] ikonia: ping [15:50] ah..afk [15:58] Quintasan: why on stand-by? [15:58] Is it appropriate to advocate for my particular bug here? lol [15:58] As long as you don't over do it. [15:58] bipolar: and as long as its a valid bug :) [15:58] ok. bug 557449 [15:58] Launchpad bug 557449 in modemmanager "Wrong data port used on Sierra Wireless 885" [Undecided,New] https://launchpad.net/bugs/557449 [15:59] shtylman: more kubuntu people applied than we have spaces for [15:59] ahh [16:01] hehe... im planning to apply... in the next 4-5 years :D [16:04] apachelogger: http://imagebin.ca/view/BuO88P.html << Weird thing is that it was displaying 2 wired n/w before... i have manually specified one of them in the manager [16:05] apachelogger: like this one : http://imagebin.ca/view/xhnoKJ.html [16:07] evilshadeslayer: that you need to tell sebas :) [16:08] apachelogger: ive put into the ML [16:08] +it [16:09] ok bye all :) [16:13] Riddell: Would you mind doing the sync in Bug 554975? It's a huge package and it'd be nice to get it built now while we're in freeze and the buildds are idle. [16:13] Launchpad bug 554975 in axiom "Sync axiom 20091101-6 (universe) from Debian unstable (main)" [Wishlist,Confirmed] https://launchpad.net/bugs/554975 [16:14] onto it [16:14] Thanks. [16:17] ScottK: 20091101-7 is in unstable not -6 [16:17] let me know if I should flush or not [16:17] Looking [16:18] Riddell: Yes. Please go ahead. [16:19] good thing compiling amarok takes forever [16:20] ScottK: done [16:20] Thanks. [16:27] anyone heard from nixternal [16:27] ? [16:28] ofirk: he's offline due to flooding [16:28] Riddell: I just testbuilt workspace, any other pending changes around? [16:28] apachelogger: good to upload I'd say [16:28] k [16:29] * apachelogger makes package [16:29] apachelogger: assuming you have the updated patch from agateau I committed [16:29] apachelogger: Did you fix the netbook widgets overlapping? [16:30] ScottK: no [16:30] hmm that's a point [16:30] I fixed the desktop widgets overlapping [16:30] Riddell: yes [16:30] we could just remove lockout from kubuntu_106_netbook_layout.diff [16:30] Riddell: how would people logout? then :/ [16:30] * ScottK waves his hands at Riddell and apachelogger and says "Please fix." === dendro-afk is now known as dendrobates [16:31] lol [16:31] apachelogger: upstream's view is they should use the hardware power switch [16:31] ScottK: I tought upstream was working on a fix? [16:31] Riddell: what does seele think about that? [16:31] I don't think it's upstream's problem. [16:31] I disagree and that's why I added the lockout widget but it causes problems [16:31] * apachelogger is not sure if that is ver intuitive [16:32] erm.. what now? [16:32] ScottK: it is if their stuff doesnt obey size constraints [16:32] which it does not [16:32] Well I don't think we filed that bug exactly. [16:32] It would be good to have that on b.k.o [16:32] seele: do you think it is good to have no visual way to turn off the computer? i.e. only wayt to turn it off or log out is to press the hardware power button [16:32] If you file it, I'll talk to upstream about it. [16:32] * apachelogger notes that even implies that said button works, which is at times not the case [16:33] apachelogger: ack upstream is doing that? [16:33] keep in mind that i rely on kubuntu to figure out what is in kde. i dont compile svn [16:33] ScottK: IMHO it is caused by the same issue that leads to widgets jumping around in the nebook panel [16:33] they took the logout buttons out of the KMenu? [16:33] seele: upstream plasma-netbook is yes [16:33] er, kickoff [16:33] seele: netbook only, not desktop [16:33] oh plasma-netbook but not desktop [16:33] did they put a power button on the taskbar? [16:34] apachelogger: Yes. I find it works sometimes and not others. No idea why. [16:34] It was very reliable in Karmic. [16:34] no, Riddell did that [16:34] there is a widget for that. [16:34] I did but it causes layout problems [16:34] upstreams thinks there should be no widget either [16:34] yeah, that's silly [16:34] so we can try and fiddle and hope we fix the layout issues, or not add it [16:34] theyre probably basing it off of "oh well people are mobile so they'll just put it to sleep when they are done [16:34] weird that adding a widget breaks layout [16:34] apachelogger: Widgets jumping is fixed. [16:35] Riddell: I think they just need to be added it different order or something, it seems as if some widget is resized after its neighbors already were at final size [16:35] * apachelogger finds plasmas rect magic quite scary TBH [16:36] ok let's try and fiddle with it [16:36] I've no time today, needs to be next week [16:36] apachelogger: so go ahead and upload unless you're in a mood for plasma widget fiddling [16:37] not really, I am fixing our restrictedInstall scripts right now :) [16:37] * apachelogger uploads === JontheEchidna changed the topic of #kubuntu-devel to: Kubuntu Developer Channel | Test ISO images! | Support in #kubuntu | Beta 2 Freeze, UI Freeze, String Freeze, Feature Freeze | https://wiki.kubuntu.org/Kubuntu/Todo | milestoned bugs marked as kubuntu http://tinyurl.com/yjybcx9 [16:38] JontheEchidna: topicdiff? [16:38] Riddell: took away the "only 9 left" bit [16:38] ah aye, betas add bugs don't they :) [16:39] and of course ,they weren't there until the isos appeared ;) [16:40] Easiest way to have no bugs is not test. [16:40] Actually not true. Even easier is have no bug tracker. [16:40] ^and also not release [16:41] oh well, should go back down to 12 after beta freeze [16:41] Riddell: about your language notification bug. Do you know when that hook shows up in the hook dir? [16:43] JontheEchidna: during distro install I think [16:44] Riddell: is it designed to show up during install? [16:44] after install [16:44] on first boot [16:45] Ok, so then it's a bug that k-n-h isn't seeing it at boot time. I can put your hook on my computer and the notification pops right up [16:45] ah, yeah. we don't do a startup check for hooks [16:46] QTimer::singleshot to the rescue [16:46] Error: uploading files for distribution UNRELEASED to ubuntu not allowed. [16:46] meh. [16:47] kubuntu: Harald Sitter * rapachelogger@ubuntu.com-20100408154719-smhxpt0vqlqainis kdebase-workspace/debian/changelog: releasing version 4:4.4.2-0ubuntu7 [16:48] apachelogger: is there something I have to do to have my commits picked up by kubotu? [16:48] install cia-something [16:48] bzr cia-project kubuntu [16:49] then it will send the commits to cia [16:49] it being bzr [16:50] kubuntu: Jonathan Thomas (The man) * rechidnaman@gmail.com-20100408155010-pg5ng1vqo9xv3hxf kubuntu-notification-helper/ (debian/changelog src/daemon/notificationhelpermodule.cpp): [16:50] kubuntu: Do a one-time check for hooks on startup, so that hooks meant for the [16:50] kubuntu: first boot actually show up. (LP: #557217) [16:50] hmm, it does that when I commit, not when I push. strangeish [16:50] JontheEchidna: you could bribe jr into rejecting my earlier upload of knh and merge that with your change [16:50] That's because it's a local hook. Use a bound-branch for everything to be sane. [16:50] JontheEchidna: that is bzr ;) [16:51] apachelogger: still sez unreleased in bzr [16:51] oh [16:51] then I might have forgotten to push [16:51] JontheEchidna: all the better [16:51] * apachelogger does the looky looky [16:52] indeed it would seem as if I didnt upload ^^ [16:52] ^^ [16:52] * apachelogger is wondering what he uploaded then ^^ [16:52] so it'd be neat if ubottu could handle LP: #557217 [16:53] tsimpson: ^ [16:53] * apachelogger places a basekt filled with cookies on tsimpson for being such a nice bot master ^^ [16:53] hm [16:53] I should have placed that on the desk ^^ [16:54] bbl, lunch [16:58] workspace queued [16:58] multimedia queued [16:58] * apachelogger QAs amarok [16:58] apachelogger: I'll upload k-d-s [17:00] Riddell: the same thing was last year so I don't think I will get it :P [17:00] shtylman: beats me :O [17:01] Riddell: k [17:01] sweet [17:01] * apachelogger uploads amarok === dendrobates is now known as dendro-afk [17:21] http://2.bp.blogspot.com/_RBtmZ4RxC4M/St9mVWQ31aI/AAAAAAAAAAU/0oMFd6hK3yc/s400/maths+joke!.jpg [17:21] kubuntu: Harald Sitter * rapachelogger@ubuntu.com-20100408162155-tyv1dmzontk1tkn0 ubuntu/debian/ (changelog patches/kubuntu/03_restricted_install.diff): [17:21] kubuntu: * In kubuntu/03_restricted_install.diff send the translated programName [17:21] kubuntu: to the restrictedInstall interface instead of a hardcoded name [17:21] kubuntu: + Get rid of unused var warning due to this patch [17:23] amichair: ping === dendro-afk is now known as dendrobates [17:35] amichair: I can't recreate bug 555228 software-properties-kde starts in using pt_BR for me [17:35] Launchpad bug 555228 in software-properties "software-properties-kde crashed with UnicodeDecodeError in init_distro() (dup-of: 545927)" [Undecided,New] https://launchpad.net/bugs/555228 [17:35] Launchpad bug 545927 in software-properties "Can not open the Edit Software Sources window from KPackageKit " [Undecided,Fix released] https://launchpad.net/bugs/545927 [17:36] kubuntu: Harald Sitter * rapachelogger@ubuntu.com-20100408163653-1d7p6kg07bbgoook ubuntu/debian/ (2 files in 2 dirs): [17:36] kubuntu: * In kubuntu_02_dragon_restricted_install.diff send the translated programName [17:36] kubuntu: to the restrictedInstall interface instead of a hardcoded name [17:36] kubuntu: + Get rid of unused var warning due to this patch [17:39] kubuntu: Harald Sitter * rapachelogger@ubuntu.com-20100408163918-1elgi2gko5h100jj kubuntu-debug-installer/debian/changelog: releasing version 10.04ubuntu4 === yofel_ is now known as yofel [17:43] meh [17:43] kaffeine_1.0~pre3-0ubuntu2.dsc: Version older than that in the archive. 1.0~pre3-0ubuntu2 <= 1.0~pre3-1ubuntu1 [17:43] JontheEchidna: ^ [17:46] kubuntu: Harald Sitter * rapachelogger@ubuntu.com-20100408164553-u3t3ihmo4flu7953 kdenetwork/debian/changelog: releasing version 4:4.4.2-0ubuntu1 [17:50] apachelogger: (LP: #557217) [17:50] Launchpad bug 557217 in kubuntu-notification-helper "incomplete language notification not shown" [Undecided,Fix committed] https://launchpad.net/bugs/557217 [17:50] tsimpson: thanks :) [17:50] JontheEchidna: ^ [17:53] apachelogger->startCooking(supper); === dendrobates is now known as dendro-afk === dendro-afk is now known as dendrobates [18:25] Is it possible to start a KDE app minimized? Would have expected something in --help-kde or --help-qt [18:40] blueyed: you can use the kstart helper app: kstart --iconify [18:41] debfx: thanks, just found it myself: http://fixunix.com/x/267800-how-start-application-minimized.html [18:42] seems odd though. Is it working in every DE? sounds like it'll work in KDE only. [18:42] debfx: doing the merge now btw [18:44] also, this sounds like it should be a flag in the .desktop file for ~/.kde/Autostart or ~/.config/autostart rather (used by KDE after all?) [18:45] blueyed: if you want something that works on gnome and kde, maybe alltray? [18:51] blueyed: looking at the source code it should work on other DEs [19:10] Riddell: that's the bug with the merge question... it might be that the user's installation was borked which is why his reported version doesn't match the code in the trace [19:11] Riddell: the current working theory is that it is indeed a duplicate of the fixed bug. If he gets back to us with new info, we'll look further into it. For now it's marked as dup. [19:33] plymouths is scary [19:41] when is beta2 out? [19:43] Today. [19:43] When testing is done. [19:43] mgraesslin: hey, can bug 212796 be implemented upstream? [19:43] Launchpad bug 212796 in kubuntu-default-settings "Kubuntu lacks default key bindings for Switch One Desktop Down/Up/etc" [Undecided,Incomplete] https://launchpad.net/bugs/212796 [19:44] ScottK: Gracias. [19:44] http://iso.qa.ubuntu.com/qatracker/build/all/all hints at more Kubuntu testing needed [19:46] it could but I don't know if it is a good idea to enable those shortcuts by default [19:46] kwin has many, many shortcuts and if we enable too many of them by default app developers start to complain [19:48] mgraesslin: well, as I understand it those short cuts are used by compiz anyway, so I wonder... [19:49] yeah I know, we get complaints about our shortcuts being different to Compiz again and again ;-) [19:51] so either get complaints or complaints ^^ [19:53] mgraesslin: I will mark that wontfix and tell the report to go complain to you :P [19:53] fine with me [19:54] you could wontfix send him to compiz asking that they shall remove those shortcuts I imagine [19:54] :-D [20:00] ScottK: what to do with bug 477922 [20:00] Launchpad bug 477922 in kubuntu-meta "kubuntu-netbook Dell Mini 10v touchpad motion on click area" [Undecided,New] https://launchpad.net/bugs/477922 [20:00] it defenitely doesnt belong to kubuntu-meta [20:11] freeflying, NCommander: is bug 364519 still valid? [20:12] Launchpad bug 364519 in kubuntu-meta "kubuntu fails to install on armel" [Medium,Triaged] https://launchpad.net/bugs/364519 [20:12] apachelogger: we only build kubuntu-netbook on ARM now [20:12] NCommander: close wontfix? [20:12] apachelogger: let me confirm [20:13] The i386 iso has a "666" hiding in the checksum! and a "aaa" scream too! It must not be released! [20:14] apachelogger: close invalid; as 1. we don't support kubuntu on ARM (just KNE), and 2. thats really stale bug [20:14] NCommander: k, thx [20:16] apachelogger: NP, I'll be testing kubuntu-netbook on armel today on dove (hopefully), its been looking sexy right along [20:17] apachelogger: I'm not sure. It's almost impossible for that to be different between UNE and KNR. [20:18] JontheEchidna: could you poke some upstream on bug 289092 [20:18] Launchpad bug 289092 in kubuntu-meta "kubuntu should include kolourpaint" [Wishlist,Confirmed] https://launchpad.net/bugs/289092 [20:18] kolourpaint doesn't have an upstream. unmaintained [20:18] NCommander: hehe [20:18] apachelogger: if I bring ARM hardware to UDS, I'll show you first hand [20:18] JontheEchidna: if it was officially unmaintained it would be dropped from kde [20:19] apachelogger: well, supposedly knetworkconf is also maintained [20:19] JontheEchidna: so ultimately you will have to poke aseigo since he is responsible for kdegraphics [20:19] JontheEchidna: if software is unmaintained, then file a complaint with the release coordinator of the parenting module and the release team [20:20] ScottK: did you test it on UNR? [20:21] maybe there is some hack they have in there to make such crappy touchpads behave better [20:21] apachelogger: No, but it's controlled by X, not the DE. [20:21] the DE can always override the settings [20:21] There's already a hack and it's in X. [20:21] that is what kcm-touchpad does after all [20:21] perhaps [20:21] tseliot would be the one to ask. [20:21] If there is another such hack, we should have it. [20:21] * apachelogger is sure ScottK will ask ^^ [20:22] ScottK: and while you are at it bug 553567 also needs tseliot's attention ;) [20:22] Launchpad bug 553567 in kdebase-workspace "transition from plymouth to kdm not smooth" [Medium,Confirmed] https://launchpad.net/bugs/553567 [20:23] That one should be done now. [20:25] ScottK: not last I checked [20:25] can try again if you wish [20:25] Please. [20:25] hm hm hm [20:25] JontheEchidna: bug 289092 could be wontfix, since the report closed his lp account anyway ;) [20:25] Launchpad bug 289092 in kubuntu-meta "kubuntu should include an image editor by default" [Wishlist,Confirmed] https://launchpad.net/bugs/289092 [20:26] * JontheEchidna likes the sound of that [20:26] Doesn't gwenview have some basic capability now? [20:27] The only things I ever used a paint-like program for were for saving screenshots and making minor photo edits/crops. [20:27] This is covered by gwenview and ksnapshot, imo [20:28] though, I did use kolourpaint last night to help illustrate an upcoming blog post [20:28] I'd vote "Fix Released" [20:29] someone close it :P [20:29] * apachelogger doesnt care as what :P [20:30] close'd [20:42] ScottK: still there [20:42] ScottK: upping video [20:44] Oh. [20:45] ScottK: http://people.ubuntu.com/~apachelogger/screencasts/plymouth-uglyness.ogv [20:56] hm [20:57] there is a bit of a problem with that mount-permission-blah-use-sudo-patch [20:57] a) it asks me to sudo for moutning a device that worked just fine before the patch was fixed? [20:57] b) it asks me referencing this device [20:57] this device I do not know however [20:58] it might be that device, or that, but this i do not see [20:58] :/ [20:58] * apachelogger finds that this reference especially horrible === ScottK changed the topic of #kubuntu-devel to: Kubuntu Developer Channel | Test ISO images! | Support in #kubuntu | Beta 2 Released!, UI Freeze, String Freeze, Feature Freeze | https://wiki.kubuntu.org/Kubuntu/Todo | milestoned bugs marked as kubuntu http://tinyurl.com/yjybcx9 [21:00] oh dear [21:00] * apachelogger starts triaging ktorrent a bit [21:18] Is beta2 link on the way to homepage? [21:18] * ScottK looks at Riddell [21:20] JontheEchidna: did you upload knh? [21:21] apachelogger: nope [21:21] JontheEchidna: can you please? [21:21] apachelogger: sure [21:21] thx [21:21] kubuntu: Jonathan Thomas (The man) * rechidnaman@gmail.com-20100408202144-aft51hflk4yy2rca kubuntu-notification-helper/debian/changelog: releasing version 10.04ubuntu3 [21:26] ^^ [21:27] apachelogger, JontheEchidna: just looked at the diff, and noticed a few other uses of iterator started with constBegin() and ending with end(). This was related to nixternal's crash - it should end with constEnd(). [21:27] aah, so that's what it was [21:28] (silly me forgot to check other instances of this bug when I fixed the reported one :-( ) [21:28] oops, accidentally uploaded my build dir :( [21:28] JontheEchidna: bzr-buildpackage -S is your friend :P [21:30] kubotu: np [21:30] apachelogger is listening to "Outside (Bonus Track)" by Staind With Fred Durst -- see http://www.last.fm/user/apachelogger for more [21:30] very awesome [21:30] * apachelogger dances with Nightrose [21:31] yay dancing [21:31] \o/ [21:31] http://simplest-image-hosting.net/i0-plasma-desktopth1587-jpg.jpg [21:31] Nightrose: when is gsoc propsal thing deadline btw? [21:32] in 22 h and 30 mins [21:32] oh dear ^^ [21:32] not much time to come up with something epic [21:32] Nightrose: thanks :) [21:32] apachelogger: !!! [21:32] you wanna be a student this year? [21:33] wanna is a strong word ... but I figured it would be less work than writing applications for some sort of employment in summer [21:33] though yes, I am lookingto being student [21:33] hehe [21:33] cool [21:33] well then hush hush [21:33] write write write [21:33] maybe redoing khelpcenter would be a good diea [21:34] it defenitely needs work, like a lot, and there is so many cool things we could do ^^ [21:34] JontheEchidna: what do we see in this screenshot? [21:34] other than pointless iocn usage and pixly icons and bad UI design [21:34] [21:34] apachelogger: QApt backend working [21:35] ohhhh [21:35] cool [21:35] JontheEchidna: you bound it to shaman already? [21:35] must be quite mature [21:35] apachelogger: well, it's still read-only, except for cache updating [21:35] well, that is half the stuff one would possible want to do :) [21:36] the other half is dependency resolving, installing/removing, upgrading [21:36] etc [21:36] in fact, if you think about it ... reading is done a lot more than writing [21:36] I would think that in 3 queries only 1 installation gets done or so [21:37] then there's "dis package no haz gpg" and support for held packages and support for purging config files and... [21:37] I'd also like to make it configurable whether or not you want to install recommends by default [21:37] Nightrose: btw, it would be nice if google did not drop gsoc applicaiton time in the hot weeks before ubuntu release ;) [21:37] but of course respect the system default [21:37] JontheEchidna: also, http://techbase.kde.org/Development/Tutorials/Common_Programming_Mistakes#Prefer_const_iterators_and_cache_end.28.29 [21:38] apachelogger: it would also be nice if they didn't drop it in the middle of my exams... [21:38] but tough luck [21:38] JontheEchidna: sources.list manipulation could be an addon lib [21:38] would be very handy [21:38] mm, yes [21:38] i.e. allow us to rewrite sp in c++ ;) [21:38] JontheEchidna: want me to fix them or u on it? [21:39] amichair: could you please? [21:39] Nightrose: oh my :) [21:39] Nightrose: good luck with the exams [21:39] thx :) [21:39] Nightrose: are you mentoring at gsoc? [21:39] admin again and maybe mentoring for work work [21:39] * apachelogger would find it cool to have Nightrose as mentor ^^ [21:40] :D [21:40] i mean if needbe i can mentor again of course [21:40] but first i'll have to see how work work gsoc mentoring is working out [21:40] btw: it is sooo cool to get payed by $employer to do this :D [21:41] ohhh [21:41] that indeed sounds cool [21:42] * apachelogger notes: apply at canonical so they can make him do more work by paying him to do work in the time he would usually spend on ranting and dancing with Nightrose ^^ [21:42] haha [21:44] JontheEchidna: did you see what was earlier said about the code style policy? [21:45] nope [21:47] JontheEchidna: http://paste.ubuntu.com/411234/ [21:49] hmm [21:51] yeah, I'll look into revising it to remove duped info from the kdelibs style spec [21:51] but later [21:52] *nod* [21:53] * apachelogger is getting bug fix anxiety [21:53] * apachelogger consequently starts running and circles [21:53] so, since qaptworker can only be invoked by root dbus, the only was I can get debug info is to use QFile::rename on files in my home directory, renaming them to the debug output I want :x [21:54] root dbus == consolekit in this case, I think [21:54] rofl [21:55] JontheEchidna: kephal uses a nice approach [21:55] http://simplest-image-hosting.net/i0-aubertruck-png.png To the aubertruck! [21:55] it does have a server bin that embedds the kded for debugging purposes [21:55] so you only reload that bin instead of whole kded [21:56] a similar thing might be doable for qaptworker [21:56] I suppose you really just need to start it from sudo and attach it to the system bux [21:56] JontheEchidna: lol [21:56] JontheEchidna: and that is to illustrate an upcoming blog post??! [21:56] ^^ [21:56] yus [21:57] * apachelogger thinks JontheEchidna did too much code reading in libapt :P [21:57] it started out as a graphic to demonstrate how packaging relations work [21:57] JontheEchidna++ [21:57] that is way too awesome [21:57] reminds me that I need to draw a release pic for lucid [21:58] * apachelogger doesnt know what to draw though, since he was absent for far too long [21:58] oh oh oh [21:58] maybe I know some stuff ater all ;) [21:58] hrrrr [22:00] * apachelogger calls the skype test call lady [22:01] lol [22:01] bbl [22:18] someone can upload the fix for this bug 554069 ? [22:18] Launchpad bug 554069 in xscreensaver "xscreensaver activated on kubuntu after upgrade to lucid" [Undecided,Confirmed] https://launchpad.net/bugs/554069 [22:20] and kdeedu [22:20] that'll be beta 2 out [22:25] Riddell: do you know which of the proposed gsoc ideas didnt get a lot of proposals so far [22:26] * apachelogger would then draf something up for that one, as usual going for the unwanted fruit ^^ [22:29] or maybe I should wirte a proposal for ubuntu one... since I am hooked up there already ;) [22:31] Riddell: is anouncement on website under way? (though beta1 download link points to beta2 :-) ) [22:32] ta da http://www.kubuntu.org/news/10.04-lts-beta-2 [22:33] Riddell: :-) [22:33] amichair: Language Selector has only had one interested person, although that's jontheenchilada [22:33] "Profile boot time" I told people to go to the KDE project for the same thing [22:34] quite a few for "Ubuntu One KDE client" and "Package Manager Improvements" although i don't think anyone has submitted one that I'm convinced about yet [22:34] Riddell: was that for apachelogger? or am I awooosh? [22:34] that's for apachelogger [22:34] Riddell: http://img406.imageshack.us/img406/2084/printmanagersyst2.png http://img9.imageshack.us/img9/2755/printmanagersyst1.png [22:34] thx :) [22:35] dantti: nice [22:35] now I need to add a way to add printers, integrate with solid and write docs :P [22:35] and find out how ink levels work.. [22:38] JontheEchidna: oh I was almost leaving :P http://img406.imageshack.us/img406/2084/printmanagersyst2.png http://img9.imageshack.us/img9/2755/printmanagersyst1.png [22:38] just got home + neat :) [22:39] go to go now if you get any suggestions tell me ... [22:40] bleh so many untriaged bugs [22:41] Riddell: Yes, I'm waiting to hear back from him with permission to reprint his email [22:41] Riddell: beta 2 anouncment points to beta1 review [22:43] Riddell: (hope I'm not bugging, my intention is de-bugging :-) ) [22:49] amichair: fixed, thanks [22:49] Do we have a blank wiki.k.o/Kubuntu/Meetings that I can revert the current page to? [22:50] (or do I need to manually erase everything) [22:50] ryanakca: just do it manually [22:50] Riddell: OK [23:16] ScottK: For the FFe, I'm supposed to include a diff of the changelog... there isn't one. Should I attach a commit log instead? Also, since its a sync, will a link to Debian's build log work or should I attach Lucid's and/or both? [23:16] ryanakca: commit log is good. You need Lucid's build log. [23:16] Also mention that the current libinfinity is NBS and the package needs to be updated or removed. [23:17] ScottK: NBS? [23:17] ryanakca: Not Built From Source. [23:17] Ah, ok [23:17] The source for that version of the ilbrary is gone. [23:18] ScottK: I'm heading out the door, I'll mail the two off when I get back and ping you with the bug numbers. [23:18] ryanakca: Just subscribe ubuntu-release. I'll get the bugmail. === dendrobates is now known as dendro-afk === JontheEchidna changed the topic of #kubuntu-devel to: Kubuntu Developer Channel | Test ISO images! | Support in #kubuntu | Beta 2 Released!, UI Freeze, String Freeze, Feature Freeze | https://wiki.kubuntu.org/Kubuntu/Todo | milestoned bugs marked as kubuntu http://tinyurl.com/yjybcx9 Only 10 left to fix! [23:43] wow [23:43] fulltext search in the ubuntu wiki is quite the slow thing [23:44] it's GB of data that [23:44] well, is that stored in text files? [23:44] no [23:44] so it can fit nicely in RAM! [23:45] well [23:45] why is it so slow [23:46] maybe it's sharing resources with lots of other stuff? [23:46] that is possible [23:46] in-need-of-more-servers :) [23:48] aren't we all :-) [23:50] * apachelogger always is [23:51] I keep on dreaming about the wonderful things I could do with a server dedicated to Kubuntu QA :) [23:51] I just spent an entire hour waiting for my desktop to become responsive [23:52] I think an SSD would be a good start [23:53] yeah, I keep on day dreaming about the wonderful things I could do with a SSD :) [23:53] and quad CPU [23:53] apachelogger: What would you do with a server dedicated to Kubuntu QA? There may be resources available to host some of it. [23:53] JontheEchidna: I uploaded fix to branch, but can't test yet due to server overload [23:54] persia: constalty build our PPA stuff (buildbot like) most importantly [23:54] I have a Q9550, which is pretty good. but the disk throttles a bit, and the system comes to a halt [23:54] persia: then do upgrade testing with those packages [23:54] especially for new KDE deployments [23:54] Ah, that's hard :) [23:55] yeah, unfortuantely [23:55] Not the doing of it, but the doing of it constantly. [23:55] well, it could be on demand too, depending on the machines [23:55] If you can create a script that does upgrade tests to run occasionally against some target and generate a report, that's easy (but it's not continuous) [23:55] but ultimately it would be doing it whenver idle and there is new revision in BZR [23:56] persia: I'll look into it, this could help a lot with the upgrade experience when upgraind to a new KDE version from our PPAs [23:57] there are always those nasty file conflicts when upgrading from one particular version to another etc. [23:57] Having an run for new KDE releases against a PPA ought be easy to get resources to handle, assuming the script isn't monstrous. [23:58] * apachelogger notes that this could easily be 4 times : starting from a clean chroot -> updating to some version -> updating to testing version [23:59] Please ping me if you get some code working (extra points if it's configurable to test arbitrary upgrades of arbitrary metapackages against arbitrary sources.lsit files). If I'm not responsive, swing by #ubuntuwire, and show your code there. [23:59] probably more if one would want to test all KDE preleases too ;) [23:59] persia: cool, thanks :) [23:59] I don't have current load numbers, but I know the hardware is underutilised. [23:59] ouch, just installed a fresh beta2 in vm and got a plasma crash right after restart :-(