[00:07] jamalta: tty1 doesn't have a session bus; the session bus is started by (gnome-session? Or our X11 startup things?) and the address stored in an env variable. [00:07] RAOF: so if i set that env variable with the address in tty1, would it be able to communicate over that dbus session? [00:08] I'm trying to start compiz from tty1, because I can't do anything in my gnome-session when compiz crashes [00:08] I think so, yes. [00:08] Thanks! I'll have to play with that later then... [00:08] jamalta: The other option is to enable byoubu and start a gnome-terminal in your session. [00:09] That way screen is started up, tty1 logs into the screen, and you've got all the appropriate env variables pre-set. [00:09] That's what I do. [00:09] Ah, right.. that's an even better approach. [00:09] Thanks! :) [00:10] The way I had dealt with it up to now, was by loading compiz from tty1 and trying to reload compiz from gnome-session before it crashed due to the dbus plugin … awful approach but it worked decently most of the time. [00:10] It's annoying when compiz crashes on load [00:22] I personally go to a tty and run metacity with the DISPLAY env set, but RAOF's suggestion is the best of the lot. [00:48] TheMuso, hey [00:48] haven't caught up since UDS [00:49] how is the accessibility work going? [00:49] jono: Slowly but surely. I have had a lot to learn, and things are still very much in the design phase. [00:49] TheMuso, ahhh cool [00:49] what is the current state of the work? [00:51] Design phase pretty much, working out exactly how we are going to make the launcher accessible at this point. === bregma_ is now known as bregma [00:53] TheMuso: running metacity creates a dbus session? [00:54] jamalta: No, running metacity allows you to get control of your gui session again, at which point you can run compiz --replace [00:54] I was setting the DISPLAY env variable to be able to run compiz, but it would crash after about 5-10 seconds because it couldn't talk to dbus [00:54] Ohhh [00:54] Right right, that makes sense.. compiz doesn't run on top of metacity.. it replaces it. [00:55] So if I'd like to start helping out with Unity, what is something I can work on? [00:55] I started playing around with a bug a week or so ago, but didn't notice that it had been resolved (or was being worked on) by someone else in a separate branch.. so I wanted to ask instead of picking out a bug that may be resolved or in the process of being resolved. [01:03] RAOF, you here? [01:03] DBO: Yup. [01:04] Word up? [01:04] RAOF, is sibling window stacking enforced by window managers or X? [01:06] Off the top of my head I don't know. [01:07] RAOF, how can I find out? :) [01:08] What do you mean by “enforced” in this case, too? [01:09] does X force those windows to be stacked sequentially [01:09] or does it just hint the window manager to "please respect the stacking these windows have requested, with a cherry on top, please" [01:09] in other words, is it reliable :P [01:10] Well, X *has* to know the stacking order because it has to draw the windows in the right order. [01:12] RAOF, right but when I call XConfigureWindow [01:12] But that's not neccessarily what you're asking. [01:12] and set a window to have a sibling window [01:12] does X enforce the sibling window stacking mode you set [01:12] or is it just hinted to the window manager? [01:14] Let me do a quick grep. [01:14] RAOF, I appreciate you giving me help here :) [01:52] DBO: Ok. It looks like the sibling window stacking is encoded in the order of the list of sibling windows; calls like XCirculateSubwindows will alter this order. [01:52] so in other words [01:53] I can rely on siblings windows being stacked together [01:53] I think so, yes. [01:54] RAOF, wonderful news [01:54] you are a gentleman and a scholar [04:19] DBO: are you calling XConfigureWindow on the nux window or it's parent? [04:19] DBO: if you call it on the nux window I don't know if it will work [04:22] smspillaz, I am not calling it at all [04:22] you are going to be the one calling it [04:22] right [04:22] I'll figure that out as soon as I get a chance then [04:22] awesome [04:22] you're reliable [04:22] I like that [04:23] I just seem to recall the sibling stuff not working in compiz++ but maybe this was because I was calling it with child windows and not parent ones [04:23] in which case we'll need to make sure the windows are stacked correctly from the unityshell plugin itself [04:23] (since obviously the parent is not supposed to be accessible by clients) [04:26] DBO: also, I'm supposed to be reliable? [04:28] smspillaz, well modestly [04:29] smspillaz, you're in law school so I figure you should only be working double overtime [04:32] thanks [04:48] so, is http://www.canonical.com/engineering-services/certification/application-packaging [04:48] for getting applications into software center? [05:01] smspillaz, so reparenting in compiz [05:01] does it happen when I map a window [05:01] what if I unmap then remap a window? [05:05] DBO: the window is reparented on create [05:05] so it always has a parent [05:05] if you unmap all the children of a window, it will also unmap the parent [05:06] smspillaz, so it will reparent even before the first map? [05:07] yes I believe so [05:07] let me check the code [05:07] please [05:07] DBO: actually the behaviour will change soon anways [05:07] to? [05:07] because the current behavior breaks if you are an app [05:08] and you create a window, map it, and do a grab on it really fast [05:08] DBO: I want to change it so that the reparent happens on CreateNotify (before a CompWindow even gets created) so that there is no epileptic fit [05:08] because you get all that done before compiz reparents it [05:08] which breaks the grab [05:08] exactly [05:08] we are reparenting too late [05:08] it just requires some core work [05:08] and it has been on my TODO list for a while [05:08] but I have all this other stuff to get done too [05:08] its causing more work now for us all [05:09] wait for the first ConfigureNotify and then do your grab [05:09] I don't like reorganizing my priorities while I am working on things since it casues me to scatterbrain and not get stuff done [05:09] (sorry to be blunt at that) [05:11] no problem [05:11] we are going to change how we make windows [05:11] basically create early, map later [05:11] map/grab later [05:12] yeah [05:12] BTW the reparenting stuff works like this: [05:12] -> CreateNotify -> if mapped, then reparent, otherwise wait for map [05:12] it should be CreateNotify -> reparent [05:13] reading man XReparentWindow I can see how broken the old behaviour is [05:13] "If the specified window is mapped, XReparentWindow() automatically performs an UnmapWindow request on it, removes it from its current position in the hierarchy, and inserts it as the child of the specified parent. The window is placed in the stacking order on top with respect to sibling windows. " [05:13] DBO: so it's just like [05:14] DBO: create -> map -> reparent -> unmap -> map [05:14] no wonder bamf was going batshit at you [05:14] yes [05:14] that explains so much shit [05:14] I'll need to sit down and fix it at some point [05:14] just after I get this decoration stuff working [05:15] smspillaz, thank you [05:15] hyperair is going to kill me for not fixing his bugs [05:15] or at least for pushing his bugs down my FIFO stack [05:16] rawr [05:16] =p [05:16] oh i won't kill you, don't worry [05:16] i still need you to fix my bugs, see [05:16] lol [05:16] hyperair, what happened to your DBO worshiping ways? [05:17] what does DBO even stand for? [05:17] DeeBeeOh [05:17] DemigodBigObject? [05:17] ahh damn ;-) [05:17] DBO: and what does DeeBeeOh stand for ;-) [05:18] DBO [05:18] * smspillaz asplode [05:18] recursive recursiveness [05:18] "smspillaz" is just actually my old nickname [05:18] well "spillaz" [05:18] if you pronounce it in australia [05:18] *n [05:19] Fosters fosters fosters barby fosters [05:19] which kind of might translate to "spillers" [05:19] except that the "ers" kind of sounds like "eehhhh-arrrr-z" [05:20] DBO: lol [05:20] DBO: you know that we don't have Fosters right? [05:21] its australian for beer [05:21] yeah I know [05:21] we don't have it [05:21] well the brand anyways [05:21] DBO: hmm? what DBO worshiping ways? [05:21] hyperair, dont pretend like you dont love me [05:21] I KNOW YOU [05:21] sounds like the creepy conversations my stalkerfriend used to have with me [05:23] DBO: heheh great to know that i'm known. =p [05:24] i tried out unity on natty yesterday :) [05:24] im so sorry [05:24] or was it hte day before? anyways. [05:24] are you okay? [05:24] O_o [05:24] * spikeb was impressed [05:24] sorry if i'm not making sense at the moment, but my latency is on the order of a few seconds at the moment. [05:25] do you need a hug? [05:25] ._. [05:25] * smspillaz could use a hug [05:25] i don't need a hug [05:25] spikeb, the launcher is mostly my baby this cycle [05:25] I think its coming along well [05:25] i could use a good internet connection [05:25] smspillaz, hugs are for winners! [05:25] DBO, you're doing excellent work. [05:25] * smspillaz gave out free hugs at university one day [05:26] spikeb, launcher and compiz integration with sam doing a massive portion of helping on the second part [05:26] s/massive/small/ [05:26] also why does everyone call me "sam" and not smspillaz ? [05:26] i like what i see so far, lets hope they gave you guys enough time to pull it together [05:27] I think we can [05:27] they gave us plenty of time [05:27] smspillaz, well on the canonical servers becuase you broke tab complete by having your clone there [05:27] smspillaz, and here becuase I get used to the canonical servers [05:27] DBO: oh right, I need to kill him [05:28] oh here's a mindfsck question for you [05:28] probably [05:28] ok, so say I had a brain cloning device and I could clone your brain onto njpatel's and njpatel's on to yours [05:28] which one do you kill [05:28] (they drilled us in this on philosophy) [05:29] * smspillaz grumbles and gets back to coding [05:29] (the answer is done of them because you are both dudes) [05:29] *none [05:30] strange philosophy [05:30] you mean my mentality is in njpatel, and his in mine? [05:30] and one of us must die? [05:30] yes [05:30] ye [05:30] s [05:30] it was the memory identity theory [05:30] stupid stupid [05:30] argh I hated that unit so much [05:30] the solution is obviously best resolved by a death match [05:31] the self correcting nature of the universe will see to it that those who need to die, in fact die [05:31] I guess thats dangerously close to what the germans were going on about 70 years ago, but lets not argue over details [05:32] it is [05:32] how did we even get on this topic anyways? [05:33] Godwins law clearly states that the likelihood of the discussion of nazi's increases as the length of the discussion itself does [05:33] AH yes! [05:33] we were just, well, godwin'd [05:33] DBO: I adjudicate high school debating and I know this one well [05:33] I have a little running tally for how long it takes for students to start making appeals to nazy germany in their argument [05:33] ah yes teh good ol "NO YOU'RE A NAZI" club [05:34] that or soviet russia [05:34] never take the soviet russia approach [05:34] "In soviet russia, debate wins you" == debate over [05:34] I'm going to use that the next time I run an argument [06:26] morning [06:26] morning all [06:28] its definitly morening here 1:30 am [06:28] coz_: hehe :) [06:28] :) [06:29] Yay, patch piloting done for one month for me... Although I am back on next week. :) === jaytaoko is now known as jaytaoko|afk [07:33] good morning [07:33] morning [07:34] hey smspillaz, how are you? [07:35] didrocks: good morning [07:35] good morning kvalo! [07:44] didrocks: alllrighty :) Just working on this metacity stuff [07:44] I seem to have finally got my head around how the metacity theme stuff works [07:44] it's quite sophisticated [07:46] smspillaz: oh nice! [07:46] smspillaz: so, you will wrote a documentation ? :) [07:46] hahahaha [07:46] maybe ;-) [07:46] isn't there documentation for how to write metacity themes already? [07:47] didrocks: at least right now I have it parsing my new properties and filling some structs [07:50] * smspillaz really hates the gnome coding style though [07:50] the code and braces are too close to each other [07:51] smspillaz: yeah, for metacity themes, there are some [07:52] smspillaz: oh nice :) [07:52] and gnome coding style is better than X one :) [07:52] (ok, that was just for the troll) [07:52] but yeah, the 2 spaces in front of the braces is quite disturbing, I tend to agree [07:52] didrocks: yeah, it's interesting since the parser assumes that every tag will have subtags [07:53] so I had it doing weird things for a while until I implemented some "parse subtags" functions which just returned and made sure there were no subtags [07:53] hi dbarth [07:54] smspillaz: ahah, nice trick :) [07:54] smspillaz: oh btw, I found another bug in your cmake in compiz :) [07:54] (again a COMPIZDESTDIR vs DESTDIR) [07:55] feel free to commit a patch then [07:55] smspillaz: well, it's quite tricky in fact, and I'm not impacted as we just got on make install some perm error (it tries to install in /usr/share…) [07:56] smspillaz: so, I think we should have a look at removing COMPIZDESTDIR in the futur, simply [07:56] and just cope with DESTDIR [07:56] I'm sure there is a way :) [07:56] didrocks: indeed [07:56] didrocks: I only added COMPIZ_DESTDIR because DESTDIR wasn't working [07:56] smspillaz: well, it's working for most cases until you need to know where DESTDIR is :) [07:57] smspillaz: I'm sure someone else got that issue too, we'll have a look later [07:57] didrocks: env${DESTDIR} ? [07:57] well actually, no that won't work will it [07:57] smspillaz: doesn't work, I was thinking that at well at first glancec [07:57] but it's replaced and not kept in the generated MakeFile [07:57] what we need is variable kept "as is" [07:58] yeah [07:58] I don't have enough CMake foo yet :) [07:58] I believe this discussion was had in the cmake circles and it needs to be implemented up there [07:58] let's trap agateau in Dallas somewhere and have a deeper look :) [07:58] smspillaz: I'm mostly sure it should be somewhere in the documentation… [07:58] that will be weird if not implemented… [07:58] would* [07:59] I can imagine ton of cases when we need it :) [08:09] greetings everybody [08:14] MacSlow: hi [08:14] good morning everyone [08:14] hey kamstrup [08:16] kamstrup, do you happen to have the issue that no launcher-icons (except for the desktop-switcher) show up? [08:16] MacSlow: no it works fine here [08:16] MacSlow: sounds like a bamf issue? [08:17] kamstrup, ever since yesterday afternoon I've that. [08:17] yeah... that's what I think too [08:22] kamstrup: good morning [08:23] kamstrup: any chance you could review two merge requests again? https://code.launchpad.net/indicator-network/+activereviews [08:23] kvalo: sure, I actually just opened the diff before you pinged me :-) [08:23] kamstrup: awesome :) [08:24] kamstrup: due to a connman upgrade I need to create a new release today [08:25] kamstrup: as you will find out soon, there's an API break in connman [08:56] didrocks, Hey, I'm just reviewing branches that were put up by the guys last night then I'll cut a release. Sound good? [08:57] njpatel: awesome dude! [08:57] njpatel: there is still a nux branch somewhere, I'm not sure to have the time to review it, if you can do it, ,please :) [08:57] (the bmp -> png) [08:58] didrocks, yep, will do [08:59] smspillaz, did you have a chance to look at this bug https://bugs.launchpad.net/unity/+bug/676096 ? [08:59] Launchpad bug 676096 in Unity "Mumble crashing compiz-glib (affected: 2, heat: 101)" [Critical,Triaged] [09:11] njpatel: yes it is fixed [09:11] njpatel: some stupid race condition with timers [09:12] smspillaz, sweet, update the bug please [09:12] njpatel: :) [09:13] njpatel: good progress on your metacity stuff btw [09:13] njpatel: I have the shadow and padding properties parsing now [09:14] and exported via libmetacity-private [09:15] smspillaz, woohoo! [09:17] kvalo: ! man you write a lot of code. You! [09:17] kvalo: but almost through the first one, now [09:17] heh, I don't know why I had this crazy idea [09:17] I turned the wobbly settings up to maximum crack when stress testing transition scripts [09:17] now they are stuck like that [09:19] kamstrup: sorry for the extra work! you can punch me next time we meet :) [09:19] kvalo: ... behind the sauna [09:19] ;-) [09:20] haha :D [09:20] kamstrup: on the bright side after your review there's only a small portion of dbus-glib code in indicator.c \o/ [09:24] smspillaz, you never merged this? https://code.launchpad.net/~canonical-dx-team/unity/unity.remove-io-from-pl/+merge/41936 [09:24] didn't jason merge it? [09:25] it's not marked as much [09:25] could you check please? [09:25] ah ok [09:25] (just retry the merge, bzr should say "nothing to do" if it's been merged before) [09:30] njpatel: ok [09:36] kvalo: first one done [09:36] kamstrup, njpatel: I want to clear the network menu after a crash (or actually always during boot). what's the easiest way to do this with dbusmenu? [09:37] kamstrup: thank you very much! [09:37] kamstrup, njpatel: my problem is that I see stale menuitems after a indicator-netowrk-service crash [09:38] kvalo, clear the root menu? dbusmenu_menuitem_foreach? or _get_children () and remove them all? [09:38] kvalo: the namespace merge approved without comments [09:40] njpatel: ok, thanks. I'll try that [09:53] Awesome. The latest Maverick updates broke my dev box :-S [09:54] I'll be offline a while trying to fix it [10:00] woohoo, back again [10:27] njpatel: ... did you see my dee_model_get() API question yesterday? [10:32] kamstrup, yeah, I replied too [10:32] kamstrup: what broke it? [10:34] njpatel: huh - I never saw that, and I can't find it in my logs... [10:35] kvalo: hehe, it's tragicomic... It's the ABI breaking glib patches we apply they broke everything because I have a pretty spaghetti-like installtion [10:36] uno momento [10:37] kamstrup: ouch [10:37] Nov 29 14:16:47 kamstrup, but dee_model_get (model, iter, 3, &val0, 6, &val9, -1); wouldn't work, right? You would only be able to get all of them or none? [10:38] njpatel: right. We still have individual column getters ala get_int(model, iter, col_index) of course [10:38] kamstrup, I'd say that the variant one would be dee_model_get_all, then? dee_model_get [10:38] njpatel: it's just that in practice I've never only extracted a subset of the row data, it's almost always all or none [10:39] kamstrup, good point [10:39] njpatel: and I'd rather not have too many different ways to access the model [10:40] njpatel: and the index based get() seems out of style when the rest of the API uses variants [10:41] njpatel: so the question is: which is the more important - to look like GtkTreeModel or to tie in with GVariant [10:41] kamstrup, agreed, so I don't mind _get being for everything if it reduces complexity [10:42] kamstrup, as you mentioned, I've only used it the !get_all case once or twice, would easily be able to make that two calls [10:42] (get_foo(), I mean) [10:42] right [11:10] kamstrup: I pushed now the fixes: https://code.launchpad.net/~kvalo/indicator-network/libconnman-backend-2/+merge/42131 [11:13] Nice network indicator, although I find myself thrown out of the menu every now and then, i.e I hilight an option, and after a few seconds the menu refreshes, and I lose focus on the item I was on. [11:15] TheMuso: ah, I didn't think of that. that's annoying [11:15] TheMuso: care to file a bug or do you want me to do it? [11:15] kvalo: I expected warts, considering its relatively new. [11:16] I will do so tomorrow. [11:16] When I am a little more fres. [11:16] fresh [11:16] TheMuso: excellent, thanks. feel free to file more bugs as you find them :) [11:16] will do. [11:17] njpatel: already pushed [11:19] smspillaz, thanks [11:27] smspillaz: did you experience gnome-panel applets crashing at load? [11:27] didrocks: yes I do not know what casues [11:28] *this [11:28] smspillaz: so, it seems to be compiz related [11:28] (and a recent regression) [11:28] smspillaz: I think that can be important for A1 TBH (that said, today) [11:28] I tried to remove the fade and animation plugins [11:28] no luck [11:29] didrocks: it would probably be this reparenting fiasco [11:29] smspillaz: let me try without the glibmm branch, the previous glib one [11:29] ok [11:29] I don't remember I get it there [11:29] I doubt that would cause problems though [11:29] my panels stopped crashing once compiz got faster at loading though [11:29] ok, so timing issue [11:30] I've seen this on and off, and like I said I have no idea what causes it so maybe it is applications trying to do stuff and then getting reparented [11:30] probably [11:30] smspillaz: gnome-panel has a startup animation [11:30] smspillaz: and it's sliding [11:30] can be the cause? [11:30] didrocks: that wouldn't do it [11:31] ho, that might be it. now my panel slides down after compiz loads. [11:31] didrocks: I think this is a reparenting issue, although tbh it will take me a long time to fix [11:31] let's find a workaround for alpha1 [11:31] I'm disabling the startup animation in case [11:31] didrocks: there isn't one. We need to fix the reparenting implementation in compiz and like I said this will take me a while [11:32] logout/login [11:32] smspillaz: yeah, but we can't ship A1 with that [11:43] smspillaz: I can confirm that without panel animation I don't get anymore crash [11:45] didrocks: ok [11:46] didrocks: I am looking into changing how reparenting is done then [11:46] smspillaz: nice, I'll open a bug about it [11:46] smspillaz: as a workaround, I'll try to disable the animation [11:50] ok [12:09] didrocks, can we just not fallback to metacity + gnome-panel for A1? [12:10] njpatel: no, I think we still want the right experience, so disabling the animation can fix it (on new install only) [12:10] not sure how we can do it easily though [12:11] oh, okay [12:11] the thing is that gnome-panel is generating those keys… [12:12] let me try to set them as default for now [12:12] or mandatory… === MacSlow is now known as MacSlow|lunch [12:35] kvalo: approved the backend-2 branch! [12:37] kamstrup: thanks a lot! [12:37] kamstrup: and from now on there will be smaller merges :) [13:03] njpatel: did you see that issue? https://bugs.launchpad.net/ubuntu/+source/unity/+bug/683065 [13:03] Launchpad bug 683065 in unity (Ubuntu) "Menu bar becomes blank periodically (affected: 1, heat: 6)" [Undecided,New] [13:05] DBO: hey dude [13:06] DBO: does your commit in Nux fix fullscreen app issues? [13:06] didrocks, fullscreen has been fixed for some time, no? [13:06] njpatel: not application fullscreen [13:06] njpatel: there are some bugs I filed IIRC [13:07] gnome-screensaver was, right [13:07] oh [13:08] yeah, just try (but you have the new version I guess) firefox or chromium in fullscreen [13:08] I still have the bar there [13:08] let's try new nux once built [13:08] hum [13:08] fail at configure, nice :) [13:09] (I hate doxygen as well) [13:11] didrocks, milestoned, thanks for the head's up [13:11] who touched the configure.ac? :) [13:11] ok, it's me :) [13:12] but not related ^^ [13:12] njpatel: do you get an issue when trying to build with nux documentation? [13:12] didrocks, fullscreening chromium or firefox works fine for me [13:12] didrocks, no, I don't build it anymore :) [13:12] njpatel: ok, with new nux? [13:12] didrocks, what's the issue? [13:13] didrocks, with latest everything [13:13] ok, should be fixed in new nux [13:13] njpatel: for the issue: http://paste.ubuntu.com/538278/ [13:13] it seems it doesn't DX_COND in configure.ac [13:13] njpatel, kamstrup: back to my stale dbusmenu menuitems. I did this but I can't access the stale items: http://paste.ubuntu.com/538277/ [13:13] okay, feel free to commit [13:13] didrocks, ^ [13:14] njpatel: hum, I didn't get a fix yet :) [13:14] njpatel, kamstrup: the problem is easy to reproduce with 'killall -KILL indicator-network-service' [13:14] It doesn't seem I'm skipping an include there [13:15] kvalo, hmm, you might need ted for this, I haven't a lot of experience with dbusmenu [13:15] seems like that should work, though :/ [13:15] njpatel: dude, did you autogen.sh --enable-documentation? [13:16] njpatel: good to know that I'm on right track, thanks. I'll experiment more and ask from tedg [13:16] didrocks, I don't think so, no [13:16] njpatel: I think you need it, like previous week :) [13:16] didrocks, I didn't last week either dude [13:16] njpatel: make dist doesn't include it, but you need to configure with the doc [13:16] hum… [13:16] njpatel: oh right, but we didn't touched any MakeFile.am, right? [13:17] contrary to this week [13:17] not sure [13:17] yeah, maybe [13:17] I'm re-rolling with --enable-documentation [13:17] hold up [13:17] I think that DX_HTML_FEATURE(ON) is subjected to that [13:18] just a guess, I don't see what changed apart that this week, there is a Makefile changed [13:19] didrocks, can I just re-upload? [13:19] instead of bumping? [13:19] njpatel: sure [13:19] didrocks: DBO: ping [13:19] yep? [13:20] I've got a patch here which changes up compiz slightly so that we don't do anything on CreateNotify and reparent immediately on MapRequest [13:20] didrocks, try now [13:20] I'm just going to run it by onestone first [13:20] smspillaz: awesome, that will fix all the reparenting issue? will be a post alpha1 upload! [13:20] :) [13:20] didrocks: it's like [13:20] excellent :) [13:20] startupperformance++ [13:21] and not more eppileptic fit [13:21] waow, less flickerying? [13:21] \o/ [13:21] yes [13:21] flickering* [13:21] only as much as metacity [13:21] that's a huge improvment :) [13:21] njpatel: trying [13:21] well I need to do some quick side by side testing with the old method [13:21] but I'm pretty sure this method is faster [13:22] and I also had a big talk with the metacity, kwin and enlightenment developers and it seems like it is the correct method too [13:22] nicely done smspillaz :) [13:22] at least I think this is correct [13:23] there is still some flicker though because of the fact that we load the compositing plugins after we start looking at windows [13:23] though maybe I can look at doing a system like plugins first -> then windows in the future [13:24] njpatel: 1da45b1492d71ac6b2a03e31e91cc1b6 is the last version, isn't it? [13:24] didrocks: though I can't commit this patch yet since I don't know what it will break [13:24] didrocks: since I assume there has got to be some compiz code out there that assumes that no MapRequest has taken place [13:24] smspillaz: sure, and that's why I don't want it for alpha1 as well :) [13:24] yeah [13:25] smspillaz: so, sounds good for a post A1 upload [13:25] didrocks, r134 [13:25] didrocks, I don't deal in hashes :p [13:25] we're not git [13:25] this is for humans [13:25] njpatel: well, you uploaded a new tarball, isn't it? [13:26] oh you mean tarball [13:26] sooorry === oubiwann is now known as oubiwann_ [13:26] njpatel: what else? :) [13:26] didrocks, yes, that's correct :) [13:26] * didrocks not sure what njpatel did :) === oubiwann is now known as oubiwann_ [13:27] the day you will see my speaking "git" is the day I'm sick :) === oubiwann is now known as oubiwann_ [13:29] njpatel: yeah, right. like randon revision numbers are any better! ;) [13:30] so, I have no clue until now :/ [13:30] njpatel: random* [13:30] why oh why doxygen is so mean? :/ [13:30] njpatel: if you ./autogen.sh --enable-documentation && make what happens? === MacSlow|lunch is now known as MacSlow [13:34] ronoc: can you do a small review, please? https://code.launchpad.net/~kvalo/indicator-network/fix-icons-in-menu/+merge/42237 [13:35] njpatel: those fixes ^^ might also fix your flash problems [13:35] smspillaz, sweet [13:35] njpatel: hem, did you see ^^ [13:36] kvalo, yeah, I hate the randomness of foo++ ;) [13:36] didrocks, it doesn't make the documentation :/ [13:36] kvalo, sure [13:36] njpatel: hum? you didn't get the same issue when starting make? [13:37] kvalo, just on lunch, will do it shortly [13:37] didrocks, hold up [13:37] njpatel: I don't know what I do wrong, but for me revision ids differ between branches [13:37] |o| [13:37] ronoc: no worries [13:37] hmm ok I found one bug already [13:37] menus don't get mapped [13:37] fun [13:38] smspillaz: the flash issue is the one where you quit fullscreen mode and that you don't get another fullscreen flash video anymore? [13:38] didrocks: no, that is a flash bug [13:38] didrocks: this one is just where the plugin fails on xembed [13:38] oh ok, I get that by rarely [13:38] kvalo, what happens is, when you merge branch 'a' into branch 'b', branch b gets revision++ (say it's now at revision 136), and the the revisions that made up the work in a get named 135.1, .2, .3 etc (or something like that) [13:38] kvalo, is that not what happens for you? [13:40] njpatel: (it should stop at the very beginning of make) [13:40] njpatel: yeah, something like that. but the end result will be that I can't check from rev ids which commit is in which branch [13:41] njpatel: let's flame about this over beer ;) === chaotic_ is now known as chaotic [13:43] kvalo, agreed :) [13:45] njpatel: hem, dude? :) [13:49] didrocks, it doesn't [13:49] didrocks, maybe I'm missing some deps on my system? [13:49] grrr… weird [13:49] njpatel: apt-get build-dep nux [13:49] it says I have everything [13:49] wth? [13:49] what error do you get? [13:50] seb128: http://paste.ubuntu.com/538278/ [13:50] and configure.ac seems to include what it should include [13:50] didrocks, wait, there were some pre-build docs that we're cleaned [13:50] let me see configure [13:50] njpatel: it seems that rather is doesn't export the right macros [13:51] didrocks, it seems to end quicker than before and then go to building nux [13:51] no errors, just some warnings about symbols [13:51] hum [13:51] DX_COND_chm is in configure… [13:51] do you need to autoreconf during the build? [13:52] seb128: this is what is weird, it seems to want to autoreconf [13:52] there is a Makefile.am changed [13:52] but upstream ship the new Makefile.am and Makefile.in [13:52] I just configure with --enable-documentation [13:53] autotools can be weird [13:54] yeah [13:54] let's google a little [14:11] njpatel: seems to work on a pbuilder, so let's forget it and go the lazy way [14:11] works for me [14:11] I guess it's picking another automake version here [14:12] or that I have a dep trickering something else [14:12] njpatel: oh btw, thinking about it, unity is exporting more symbols (the places one) in pbuider than locally [14:12] pbuilder* [14:12] njpatel: I'm wondering how come I have more build-dep installed in pbuilder/buildd than locally :) [14:18] njpatel: I'm pushing one more unity change in the default launchers [14:22] didrocks, okay, jay just woke up and I've asked him to look into the quicklist issue asap [14:22] njpatel: ok thanks :) [14:22] njpatel: any idea about the exported symbols? [14:22] kvalo, done [14:22] (I've pushed the gsettings schema changed) [14:22] nux built in pbuilder, let's forget about my local issue then… [14:26] didrocks, WAAAAIT [14:26] didrocks, might have distropatch for nux :) [14:27] njpatel: you know the cost of a pbuilder? :) [14:27] LOL [14:27] njpatel: so, you have to answer my exported symbols issue on unity as a counterpart [14:27] yes, one kitten dies everytime you do `pdebuild` :) [14:27] no distro-patch otherwise :) [14:27] hehe :) [14:27] didrocks, okay, I didn't see the question, sorry [14:27] * njpatel reads [14:28] fagan, ping [14:28] didrocks, libunity ? [14:28] (is exporting more?) [14:28] boulabiar: yo [14:28] njpatel: yeah, on a pbuilder or buildd [14:28] all the places one [14:28] fagan, you really want to code an xml parser ? [14:28] but I don't see how pbuilder can have more than my local [14:28] hum, maybe recommends [14:28] let me check [14:28] boulabiar: im making my own for fun [14:28] :) [14:29] fagan, if you want I can give you better project ideas :P [14:29] boulabiar: im doing a data structures thing for college so im going to use that xml parser for it [14:29] so its not exactly a waste [14:29] im just showing off [14:30] didrocks, weird... [14:30] fagan, ah ok, if it's for college then I understand, Good Luck ! [14:31] * fagan is bringing out the big guns for that project [14:38] ronoc: thanks! [14:39] kvalo, np [14:41] * hyperair wonders if anyone else has ever felt it annoying to click on the sound icon, click on sound preferences, and then click on the Applications tab just to get access to the per-application volume control? [14:42] i just did that over 10 times earlier while switching between watching a lecture video and listening to music (i was changing banshee's volume, for which it would probably be easier to just poke the volume control inside banshee itself [14:43] but honestly, windows vista and 7 have it so much easier. they just click the sound icon, and directly adjust the per-app volume control there [14:55] smspillaz: http://pastebin.ubuntu.com/538304/ [14:55] hyperair: I just tried both and they're both 2 clicks away [14:56] jcastro: three. one for the volume icon, one for soudn preferences, and one for the tab. [14:56] jcastro: that's not including the click for the slider. [14:56] hmm, mine keeps opening to the applications by default [14:57] hmm oh yeah it does now [14:57] weird, it didn't do so earlier. [14:57] I wonder if it remembers now? [14:57] or if that's the default now [14:57] i guess it does [14:57] =\ [14:57] jcastro, the BFB? [14:57] jcastro: what are the steps on windows? [14:57] davidbarth: sounds like an abi mismatch [14:57] click the sound icon, click mixer [14:57] 2 clicks [14:57] davidbarth: clear your entire install and recompile compiz [14:57] jcastro: i remember one click bringing up the per-app volume control. [14:58] jcastro: or a double click [14:58] it was a tiny one, not a full-fledged window [14:59] nope, you have to click "mixer" [14:59] to get the little compact window [14:59] i see. [14:59] i guess my memory was fooling with me [14:59] mixer's easier to reach than sound prefs though [14:59] I would prefer multiple sources to show up at the root [14:59] yeah, i really would. [15:00] but afaik the mockup was rejected? [15:00] yes, mixer is one menu item up, for us it's mute, slider, art/player, then the prefs [15:00] yeah [15:00] if you have multiple players, then even longer [15:00] it's quite tedious [15:00] i got so fed-up of it i just left the sound prefs window open and put banshee in front of it [15:01] you can put the gnome mixer on the panel, I do that for my wife [15:01] gnome mixer? [15:01] though that's more because her volume randomly sets to zero [15:01] is that the old fashioned one? [15:01] and she needs a quick way without doing alsamixer [15:01] yes, the old one [15:01] i see. [15:01] randomly setting to zero sounds like a big problem =\ [15:02] not big enough for me to upgrade her [15:02] she just leaves it open, *shrug* [15:02] heh [15:02] i guess normal users are more flexible than us picky devels. ¬_¬ [15:02] it would drive me crazy [15:03] same here [15:06] jcastro: https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/665106 <-- a bug regarding the issue i mentioned. [15:06] Launchpad bug 665106 in indicator-sound (Ubuntu) "sound menu doesn't support per-application volume change (affected: 1, heat: 96)" [Undecided,Invalid] [15:06] someone filed it a month ago [15:07] bummer [15:08] maybe we could poke mpt about it [15:09] iirc the last issues mentioned were something to do with whether or not we should add an entry per application, rather than just those registered under the sound menu. [15:20] is this channel appropriate for NUX discussion? [15:20] hyperair, yes I'm inclined to agree [15:21] it was decided to leave the per application volume out [15:21] ronoc: so which opinion do you agree with? [15:21] but in hindsight i think its a quick win we could easily accomodate [15:22] hyperair, exposing per application levels in the menu is a good idea [15:22] but only for the music apps [15:22] yeah, i believe that would be a good idea. [15:22] so should the bug be reopened? [15:22] ronoc: are you the one developing indicator-sound? [15:22] hyperair, well we need to talk to mpt and see what he thinks [15:22] hyperair, yup [15:23] *nod* [15:23] cool =) [15:23] hyperair, i was speaking with the mpris guys the week before last [15:23] hyperair, in order to get this playlist extension into the official mpris spec [15:24] oh. cool. [15:24] they wanted a test implementation to be carried to see how it would work [15:24] hyperair, would bertrand be up for implementing this extension [15:24] hyperair, ill do the client side on the menu [15:25] ronoc: i can't speak for bertrand, but i could poke him about it. he's always on #banshee at irc.gnome.org [15:25] hyperair, i was trying to ping him thing morning, will try him later [15:25] okay [15:25] this even [15:26] hyperair, it should not be too much work [15:26] it probably wouldn't be [15:28] kenvandine, cyphermox: https://launchpad.net/indicator-network/trunk/0.3.0 [15:28] kenvandine, cyphermox: that one requires connman 0.64 or greater [15:29] I have to go now, but I will be back later [15:29] w00t - I have quicklists! [15:29] jhbuild ftw! [15:29] kvalo, cool, I'm working on getting connman 0.64 ready right now [15:30] does anyone know if the WS swicther is supposed to do something, or is it just a placeholder? [15:31] kamstrup: nice, you got it one week after the packages :) [15:32] cyphermox, can you let me know when connman is in? [15:32] and i'll do indicator-network? [15:35] kenvandine, well, if you want to upload it I can let you know when I'm done preparing it ;) [15:36] ronoc: may i post the IRC transcript on the bug, reopen it and subscribe mpt? [15:36] ronoc: (indicator-sound) [15:36] cyphermox, great, i can do that [15:37] hyperair, well I just read https://lists.launchpad.net/ayatana/msg01831.html [15:38] hyperair, it seems as if this subject has been considered and decided upon [15:40] ronoc: i brought this issue up again because i think it's time to take a second look at it now that the sound menu has been in deployment on many systems for a while. [15:41] hyperair, what difference does that make? [15:42] * hyperair shrugs [15:42] mpt: i just noticed in that post that your use case about rainywood.com.. [15:42] er mood [15:43] (e.g. turning down the volume on a browser tab at rainymood.com while you watch a video in another browser tab). [15:43] doesn't that sound really really similar to turning down the volume of your media player while you watch a video on your browser? [15:43] Exactly, that's the problem [15:44] People would expect those volume controls to be there and they wouldn't be. [15:45] Because as far as the menu could tell, they'd be a single "ALSA plugin [Chromium Browser]" item. [15:46] so basically because we can't have per-tab volume controls, we're not going to have per-app volume controls? [15:46] i've never heard of anyone who uses the browser to listen to music, though. i use my media player to do that. [15:47] No, that's only one of the reasons I gave. [15:47] hmm so the music player has its own prominent volume control [15:47] which is true [15:48] but it also has prominent play/pause, prev and next controls, which are also in the sound menu. [15:50] cyphermox: nice. do you have time to update ofono? [15:50] quality performance from the weekends gig in Dublin -> http://vimeo.com/17303616 [15:50] didrocks: don't ruin my illusion of living on the bleeding edge! :-D [15:50] :) [15:53] * hyperair grumbles to himself about opinions getting ignored without good reason and goes back to studying [15:53] kvalo, I'll do it right after [15:57] hyperair / jcastro: we fixed the "sound prefs to open the applications tab by default" for maverick, no memory over there.. just a papercut :D [15:58] vish: very well done [15:58] vish: nice. [15:58] hyperair, I'm sorry you disagree with the reasons. That's not the same as ignoring you. I understand your point about the Previous/Next items. [15:58] mpt: i don't see the difference in importance between prev/next and the volume. [15:59] mpt: my use case was pretty simple, i was watching various parts of my lecture notes in a browser and wanted to make my music softer temporarily [15:59] so i opened up sound prefs (which was conveniently hard to reach) and closed it again 10 times. [15:59] in the span of two hours. [15:59] Previous/Next is specific to music players, and (like the rest of the music player stuff) it's opt-in [16:00] first few times were fine, but after that it got seriously annoying. [16:00] er opt-in? [16:01] Yes, it doesn't show up unless a music player registers itself [16:01] ah yes, that [16:01] so what would be wrong with having a volume slider appear together with that? [16:01] * hyperair should totally patch indicator-sound to do that as an experiment [16:02] Well, one step to make it a more serious proposal would be to work out how to identify applications properly [16:02] smspillaz, have you started anything with perf counters? [16:02] hyperair, and doing that would itself help gnome-volume-control [16:02] mpt: as in the pre-indicators volume control applet? [16:03] hyperair, for example, when I mouse down on the "Close" button in the Sound Preferences window, the Sound Preferences window *itself* momentarily shows up as an item in the Applications tab, not as "Sound Preferences", but as the jargon "ALSA plug-in [gnome-volume-control]". [16:03] Because the button has a sound effect. [16:03] lamalex: no not yet [16:04] mpt: ah, i see. wouldn't it work to just transition everything to use gstreamer and get rid of alsa? [16:04] smspillaz, ok, just wanted to make sure you didn't have anything before I started [16:04] lamalex: :) [16:04] mpt: alsa meaning alsa userspace [16:04] lamalex: I can write the PerfWrapableDispatcher [16:05] hyperair, ronoc would know that far better than I do. [16:06] hyperair, the pulse server is what the sound menu talks to [16:06] yep, and the whole ALSA plug-in [$procname] business comes from stuff accessing the pulse server via the ALSA plugin. [16:07] so perhaps we could: #1) strip away the ALSA plug-in prefix from the ALSA plug-in when it reports to pulseaudio; and #2) patch whatever default apps that still use ALSA to use gstreamer or some higher-level library instead. [16:08] mpt, ronoc: ^ [16:08] hyperair, another necessary detail would be how to lay out the menu so that the volume sliders for registered music players, and the volume sliders for other applications, didn't look inconsistent. [16:09] mpt: there was a suggestion somewhere further up about only showing volume sliders for registered music players, which should satisfy the majority of the cases of having music playing in the background [16:09] hyperair, mpt applications can be identified via the prop list exposed by pulse [16:09] mpt: as for the per-tab use case, i can only think of applications opening multiple pulse connections, if that is at all possible. [16:10] hyperair, that generally does not happen [16:10] or at least it shouldn't [16:10] ronoc: i meant per-tab pulse connections? [16:10] ronoc: or is it possible to send multiple streams over one pulse connection? [16:10] ronoc: or do these apps do mixing internally prior to sending it over? [16:11] whats the issue with the alsa plugin ? that fact that browser tabs have different instances of alsa plugin ? [16:11] hyperair: this is not true " hmm so the music player has its own prominent volume control " did it change for natty? the volume control is the main one, not for the player alone [16:11] hyperair, ^ [16:11] hyperair, showing volume sliders only for registered music players could work. One awkwardness is that it would let you turn down the music in Banshee while listening to a lecture in a browser, but it wouldn't let you do the opposite, turn down a Web site's music in a browser while listening to a podcast in Banshee. [16:11] vish: music player has its own prominent volume control in its own window. [16:11] ah! [16:11] mpt: hmm yes, that would be a problem. [16:12] mpt: do people actually do that, though? [16:12] as in, play music in a browser in background and podcasts in banshee [16:12] I've done it. I've no idea what percentag of other people do. :-) [16:12] cyphermox, are you aware of those messages from nm-applet (the indicator one from the PPA): http://paste.ubuntu.com/538279/ - i get those three 1000+ times per hour in my .xsession-errors [16:13] i do it sometimes [16:13] heh okay, that makes two of us [16:13] * hyperair doesn't like browser music, it's not equalized. [16:13] * vish imagines a scenario with 10 youtube videos plaused in separate tabs.. would each have a volume control ? :D [16:13] vish: lol, that would be interesting. [16:13] htorque, yes, I am [16:14] cyphermox, ok, thanks :) [16:14] those actually don't come from nm-applet but from libappindicator :/ [16:14] vish, and what about ? One slider or two? :-P [16:14] cyphermox, is this related to the possible mem-leak bug you opened? [16:14] * vish then wants name of the video as well in the menu :p [16:14] htorque, might be [16:14] I'm still working on fixing those through re-working the way the menus get built [16:15] mpt: on the other hand web browsers don't register in the sound menu as media players, but should they be treated as such? hmm [16:15] mpt: cram them in there! , more sliders the better/easier.. ;) [16:15] mpt: it would be interesting to be able to pause website music in the sound menu [16:16] hyperair, indeed it would [16:16] are we talking about a universal remote? [16:16] * vish hides [16:16] vish: i want my universal remote to run ubuntu. [16:17] vish, http://yooouuutuuube.com/v/?width=96&height=96&yt=TQuqeLBTetA&flux=1&direction=rand [16:17] * hyperair facepalms [16:17] lol! #javafail! [16:18] i dont seem to have sun java ;p [16:18] huh? that requires java? [16:18] why does natty only open links in firefox and not my preferred browser [16:18] driving me nuts [16:18] because we're heading to the age where there can only be One True Browser™ [16:18] hyperair: fixed your scalefilter bug [16:18] hyperair: this is what i get "Hi. I'm having trouble using Java to get this video URL. Are you sure the URL is valid? Do you have the latest version of the Java plugin installed and enabled for your browser? To get Java click here. If you recently installed Java try restarting your browser. Or you can go back and try a different video url. [16:18] If you have Java installed and you are still having problems, send me an email. Hi. I'm having trouble using Java to get this video URL. Are you sure the URL is valid? Do you have the latest version of the Java plugin installed and enabled for your browser? To get Java click here. If you recently installed Java try restarting your browser. Or you can go back and try a different video url. [16:18] If you have Java installed and you are still having problems, send me an email. " [16:18] gah! :/ [16:19] lamalex: the trick is to annoy all users into using firefox as their default. [16:19] lol! =p [16:19] smspillaz: thanks. you just had to pick the least annoying bug to fix, didn't you? =p [16:19] hyperair: it was easy [16:19] heheh [16:19] hyperair: what about https://bugs.launchpad.net/bugs/681010 is that already fixeD? [16:19] Launchpad bug 681010 in compiz-fusion-plugins-extra (Ubuntu) "[compiz++] ExtraWM's Activate Demanding Attention Window takes a few tries to work (affected: 1, heat: 6)" [Undecided,New] [16:19] *fixed [16:20] smspillaz: nope [16:20] oof :( [16:20] ok let me look into it [16:20] i feel pretty bad about that [16:20] erm [16:20] wrong channel :P [16:20] haha [16:20] lamalex: are you trying from thunderbird? or from all apps? from TB it seems to only open in FF3.* [16:20] DBO is going to kill me if he finds out I've been working on your bugs and not his ;-) [16:20] nah [16:21] DBO: twas a joke :) [16:21] ronoc: so what would it take to bring per-tab pause/prev/next buttons to the sound menu? [16:21] DBO: actually I want to look at this reparenting fiasco first before I sort out your nux input windows hting [16:21] =p [16:21] nux input windows? [16:21] hyperair: unity shell input windows [16:22] "nux" for short [16:22] ah [16:22] it's the small layer that we use to create them [16:22] hyperair, the alsa plugin would also need to expose an mpris api [16:22] DBO: by the way, Do gets angry at me every time i restart compiz. [16:22] ronoc: that doesn't sound so doable. [16:23] hyperair: give me a command that will "start" banshee from one of the commands in the commands plugin [16:23] smspillaz: banshee --show [16:23] smspillaz: that's what's bound to super+b [16:23] ok [16:23] I'm not running your profile ATM [16:23] sure [16:23] i've changed bits and pieces of it since then anyway [16:23] settings transition made sure that I had to nuke it [16:23] heh [16:24] ;-0) [16:24] by the way, what are the semantics of each focus prevention level? [16:24] i noticed that low seems to let everything grab focus [16:24] hyperair: I actually sent an email to someone today about how it works [16:24] normal seems to stop some apps, but let some through. [16:24] smspillaz: excellent, can you forward it to me? =p [16:24] let me copypasta [16:25] * hyperair develops a sudden craving for pasta [16:25] hyperair, implement mpris 2 so as there a dbus mpris interface for the alsa plugin for a start [16:25] vish, from xchat it opens in ff4 [16:25] vish, on natty [16:26] ronoc = connor? [16:26] lamalex, yup [16:26] conor [16:26] oh wow, how bout that [16:26] hows it going :) [16:26] hyperair: http://paste.ubuntu.com/538328/ [16:27] ronoc, do you speak Gaelic? [16:27] lamalex, i small bit [16:27] a small bit [16:27] even [16:27] ronoc, enough to say hi to your grandmom and whatnot? [16:28] lamalex, at this stage pretty much, was not so bad when I was at school [16:28] its not taught properly nor used [16:28] yeah [16:28] kind of sad [16:28] hyperair: the problem with focus stealing prevention is that there is no standardized way of doing it [16:29] hyperair: so applications make all these stupid assumptions about the way some window managers do it and the way others do it in order to try and "game the system" [16:29] smspillaz: which is why it's so confusing. [16:29] my girlfriend wants up to move to Dublin [16:29] which results in an inconsistent mess [16:29] a dead language but propped up by government grants just so as the can say its still going [16:29] lamalex, would you like to ? [16:29] smspillaz: the only consistent setting is High, where nothing gets through, and you have to use the alt+a (or super+a in my case) from extrawm to bring it up [16:29] yeah [16:29] ronoc, never been- probably [16:29] I do love James Joyce and Samuel Beckett.. [16:30] hyperair: FSP should be standardized in ICCCM or EWMH IMHO [16:30] yeah I lvoe them both, don't hate [16:30] smspillaz: propose the next revision of the spec! [16:30] lamalex, well thats the town for it, was there at the weekend [16:30] its a pain [16:30] looks pretty,but that's all I know ofit [16:30] good fun had alround [16:30] smspillaz: it's for the Greater Good™ [16:31] lamalex, you cold probably buy the whole place now for a fiver :) [16:31] haha [16:31] * lamalex reaches into his pocket [16:31] smspillaz: and it'll boost compiz's image of being a good for nothing window manager that's just eye candy and shit at actual window management. [16:31] haha [16:32] ronoc, where do you live? [16:32] lamalex, london (hackney) [16:32] ah [16:33] smspillaz: oh yeah, did you manage to reproduce the scale bug where mouse toggles the scale mode regardless of setting? [16:33] smspillaz, is the wrappable dispatcher step 1 for our perf counters? [16:33] smspillaz, I would imagine step 1 is making current dispatcher wrappable, and then step 2 is wrapping it :P [16:33] step 3 ??? [16:33] step 4 PROFIT [16:34] lamalex: errr [16:35] lamalex: making the thing which does the wrapping wrappable == infinite loop [16:35] hyperair: no I did not [16:35] hyperair: I'm looking at your extrawm thing now [16:35] wrapped != wrappable [16:35] smspillaz: okay, awesome. [16:35] smspillaz: did you manage to reproduce it? [16:35] hyperair: I need to know an exact scenario where it happens since I cannot reproduce it [16:36] lamalex: the current dispatcher is not even a class [16:37] smspillaz: press super+b (launch banshee) with its window already open in a different workspace and focus prevention on. docky's icon bounces and indicator turns red. press super+a (the extrawm binding) once, nothing happens. twice, nothing happens. thrice, and it shifts over to the banshee window. [16:37] smspillaz: not reproducible consistently. [16:37] and it has to be on a different ws? [16:37] nope [16:37] it can be on the same workspace [16:37] jaytaoko, DBO, davidbarth no one replied to my QA wednesday mail. did you all get it? [16:37] e.g. when banshee isn't open yet [16:38] hyperair: right so banshee has to be closed [16:38] eg the window unmapped [16:38] yeah [16:38] smspillaz: it also works for pidgin [16:38] ok couldn't reproduce it then [16:38] let me do something [16:38] smspillaz: and other things. [16:38] lamalex, we got it alright... [16:38] WELL YOU BETTER HAVE READ IT [16:38] smspillaz: give me a patch that dumps craploads of information anywhere that you think may be a problem. [16:39] or there will be hell to pay [16:39] lamalex: checking... [16:39] lamalex: I don't think I got your mail? [16:39] smspillaz, are you on the dx list? [16:40] kamstrup: you broke abi :) [16:40] lamalex: I should be [16:40] smspillaz, hmm [16:40] didrocks: I do that on a daily basis [16:40] didrocks: if you expect abi stability from libunity... [16:40] kamstrup: was wondering about this ubus stuff not being exported anymore :p [16:40] smspillaz, it's really only important for main unity devs, but I can send it to you if you want [16:40] sure poke me [16:40] kamstrup: I know, just have to build unity twice because of *you* :-) [16:41] hyperair: *sigh* send me your config file [16:42] didrocks: hehe, I build the entire unity stack from glib and up many times per day, so I know all about build issues :-) [16:42] (ok, maybe not rebuilding glib every time, but the rest of it) [16:43] kamstrup: that's why you got quicklist one week after the others (kidding :p) [16:43] hyperair: poke [16:43] hyperair: paste your config file please [16:44] smspillaz: gimme a moment, my stupid wireless connection is acting up [16:44] smspillaz: pastebinit isn't working. [16:44] didrocks: at least I got it! [16:44] kamstrup: :p [16:45] smspillaz: http://pastebin.com/T4mr7NfM [16:47] just when you think your config is safe and you are a compiz developer [16:47] did you just purge yours again [16:47] hyperair will come up with some bizzare bug which only happens on his config! and your config can say goodbye [16:47] haha [16:47] i wonder if it's only on my config though. [16:49] lamalex: we did [16:50] lamalex: there's nothing to reply, we should just do what you said tomorrow ;) [16:50] btw, jcastro, that could be a nice bitesize bug [16:52] davidbarth, right- i was just checking because more than once I haven't gotten replies from people [16:52] usually the travel people [16:52] when they've sent them that is [16:55] davidbarth: tag it please! [17:10] smspillaz: just sent the valgrind log if you want to check [17:11] dbarth: cool [17:12] dbarth: do you think some slight consistency with metacity warrants another plugin being enabled? [17:12] dbarth: if you https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/537703 [17:12] Launchpad bug 537703 in compiz (Ubuntu) "Compiz intercepts alert sound from gnome-terminal (affected: 7, heat: 32)" [Undecided,Confirmed] [17:12] basically it looks like metacity uses libcanberra when it get the X11 bell event and plays a sound [17:12] ... compiz obviously doesn't [17:13] I have a plugin (or I can write one very easily) that will deal with this though [17:15] kvalo, did you also need me to include the 09-disable-wifi-legacy.patch patch? [17:15] smspillaz: uh, dunno really; let me think about that [17:15] smspillaz: not for a1 anyway [17:16] smspillaz: hmm, i'd ask ronoc if there is a way this could be set outside of the window manager, and closer to the sound service [17:17] if something can intercept the x11 bell event on the root window and take care of that [17:17] dbarth: can you show that log to jay .. looks like nux is doing a lot of *weird* stuff there [17:17] kvalo, seb128: Do you think this is true or false: By the time Connection Manager is ready for Ubuntu to use by default, Ubuntu will already be using gnome-control-center by default. [17:17] the window manager can do everything; but i'm not sure we want to load of the desktop libraries into it [17:17] smspillaz: ahah, i can try upgrading to the latest branch he's landed first [17:18] dbarth: it would be a plugin [17:18] dbarth: like a canberra plugin [17:18] which just links to libcanberra [17:18] smspillaz: yeah, but do you want to load everything and the kitchen sink into the compiz adress space? [17:18] dbarth: I suppose you could do it using dbus [17:19] yeah, the only thing is latency [17:19] latency is not an issue with sound events [17:19] unless it is huge [17:19] and here i'd like ronoc's feedback on the way to integrate that rationally [17:19] ok [17:19] * ronoc reads up [17:20] ronoc: basically, playing the terminal bell sound [17:20] didrocks, just fyi, the latest nux build in the dailies ppa breaks unity [17:21] and the x11 bell event is mostly a legacy feature nowadays right? ie, apps are supposed to plug into a more general sound framework [17:21] kenvandine: I don't know, the natty version is working fine :) [17:21] and I just uploaded it [17:21] it's only for old school apps that want to use the old bell thing [17:21] kenvandine: you shouldn't spend the time for the daily ppa I guess :) [17:21] didrocks: do you know if bug 683121 was fixed by your session stuff ? [17:21] Launchpad bug 683121 in compiz (Ubuntu) "Compiz hangs on logout / doesn't integrate with gnome-session (affected: 1, heat: 6)" [High,Triaged] https://launchpad.net/bugs/683121 [17:22] compiz: symbol lookup error: /usr/lib/compiz/libunityshell.so: undefined symbol: _ZN3nux10BaseWindow17EnableInputWindowEb [17:22] didrocks, indeed [17:22] i had forgotten i had added the daily ppa [17:22] until it broke right before the meeting :) [17:22] smspillaz: not at all related to the session stuff, it's the compiz session plugin not being compatible with gnome [17:22] unity just needs a rebuild in the ppa [17:22] kenvandine: hehe, remove it then :) [17:23] already did :) [17:23] didrocks: was it fixed ? [17:23] kenvandine: how does it break unity? [17:23] at the build level? or runtime? [17:23] look at the error [17:23] runtime [17:23] smspillaz: ? [17:23] symbol lookup failure [17:23] didrocks: is that bug fixed? [17:23] unity needs to be rebuilt [17:23] smspillaz: I just assigned the bug to you, it's not fixed then :p [17:23] or do I need to look into it [17:23] didrocks: ok [17:24] kenvandine: anyway, it should be obsoleted by the next build run [17:24] ok [17:24] i'll trigger it right now [17:24] no worries [17:24] ie, 0.9.8 [17:24] smspillaz: I think it's some gnome-session integration which doesn't work… not sure if it should be in the session plugin or gnomecompat one [17:24] just letting you guys know, i moved back to the stock natty version [17:24] kenvandine: wise man :) [17:25] yeah [17:25] thx ken [17:26] dbarth, smspillaz sounds like compiz isn't talking to pulse properly ? [17:26] do you want me to take a look => fix [17:26] ronoc: and i'm wondering if it should [17:26] sounds weird to think of compiz talking to pulse at all :) [17:26] through libcanberra [17:26] * kenvandine really goes to lunch now [17:27] ronoc: or if we should fix the main apps to use pulse directly, and if some still use the x11 bell, have that trapped by something but the window manager [17:27] or if the window manager does, whether he can just route that back to something that knows more about the sound theme (over dbus for example) [17:27] without too much latency; knowing it'd be legacy apps anyway [17:27] wdyt? [17:28] dbarth, afaik apps link against libcanberra which talks to pulse [17:28] am i correct in saying that the problem is compiz is not passing on sound events from apps [17:28] compiz catches the old x11 bell event [17:29] when you say catches, do you mean mutes the x11 bell event? [17:29] metacity does the same and when it receives an x11 event struct on the xerver connection and figures out that it should play a better sound [17:29] receives [17:33] dbarth, okay so compiz seems to not notify libcanberra of the event ? [17:33] i guess it goes something like what'in there: http://www.google.fr/codesearch/p?hl=fr#ErvFMsc8kPE/pub/GNOME/desktop/2.17/2.17.4/sources/metacity-2.17.3.tar.gz%7CKYBqjqtVCks/metacity-2.17.3/src/bell.c&q=metacity%20xevent%20bell&d=8&l=200 [17:34] ronoc: i'm wondering if we could avoid using libcanberra in compiz and just let something out of process deal with the legacy bell thing [17:34] dbarth, what particular reason do you not want to use libcanberra ? [17:36] dbarth, what particular reason do you not want to use libcanberra ? [17:37] what/any [17:38] let me rephrase jeez [17:38] ronoc: avoiding the added complexity/dependency in the window manager process space [17:39] hmm, but wait, libcanberra is mostly making dbus calls to pulse? or it's also streaming the sound samples as well? [17:39] dbarth, right but libcanberra is designed to handle windowing audio events, gnome-volume control has the volume for canberra exposed appropriately on the UI [17:39] canberra is a client of the pulse server similar to what the sound service is [17:39] no dbus, it uses the async api [17:41] i have never used canberra for anything, its one of lennart's apps. but we should think carefully before removing it [17:42] ronoc: compiz is /not/ using it for the moment, and i wonder if it should [17:43] dbarth, well if you want to have sound events from compiz realised then I really should for accessbility etc its a must [17:43] I/it [17:44] hey all [17:44] i am having a very, very strange theming issue with my application [17:45] is anyone able to help me debug my app? [17:45] dbarth, what other solution did you have in mind ? [17:46] dbarth, extend canberra to expose a dbus api to allow it to be controlled over dbus ? [17:47] frictions in brussels -> http://www.rte.ie/news/2010/1130/tax-business.html [17:47] seb128, for unity-mutter bugs that aren't in unity-compiz yet (ex. dash)- invalid/incomplete/won't fix? [17:48] hmm, so unity still segfaults on me even with the latest nux packages and my local build of unity trunk [17:49] ronoc: no, more lilke having the sound service trap the bell event and generate the bell sound with canberra [17:49] ronoc: ie, letting the window manager out of that game [17:50] dbarth, could do or just fix compiz so it uses canberra correctly [17:50] afterall that is what canberra was designed for [17:52] smspillaz: could it be that it's still a damage event bug? it seems to crash in the composite plugin [17:52] smspillaz: and i know my GL drivers were already crashing unity/mutter because of uncaught damage events as well [17:53] dbarth: radeon? [17:54] yes [17:54] dbarth: I've been getting a *lot* of bug reports that were really bugs in the radeon driver [17:54] i think this one is another one then [17:54] like the driver lying about mipmapping support [17:54] and holy fudge there are a lot of bugs being reported [17:54] do you have a quirks mechanism? [17:54] I just got like 50 new bugmails [17:54] no, but I can write one [17:55] albeit not now [17:55] but in the detection plugin we can write a quirks thing to disable mipmap support on dodge drivers [17:55] ie, we'd like to have something like that in unity to be able to blacklist some driver features based on actual testing on the HW [17:55] ok, so that quirks mechanism could be shared with compiz [17:55] dbarth: jaytaoko: and this is why I love not using GLew in compiz :) [17:56] ie, be a plugin that can export properties for unity to reuse [17:56] dbarth: compiz has internal states set about driver support for certain thing [17:56] smspillaz: ahah, have a pointer to the code that does that? [17:56] dbarth: the detection plugin could just set those states to say "no you don't have that, really, no you don't" [17:56] or have something in glew [17:56] dbarth: yes it's in core/plugins/opengl/include/opengl.h [17:56] dbarth, is there anyone here who knows a lot about themes and can help someone debug a weird issue in theming with a PyGtk app? [17:57] to update what glew reports, but based on that extra quirks module? [17:57] dbarth: glew is harder though because it #defines things into existence [17:57] ok checking that module [17:57] dbarth: have a look at the GL:: namespace [17:57] I am pretty sure there is something about mimap and fp support in there [17:57] lamalex, no opinion, I would just tag them to revisit [17:58] dbarth: ok so in GL:: [17:58] we can just neuter generateMipmap (set it to NULL) [17:59] or set it to a func that does nothing [18:00] dbarth: in fact maybe it would be a good idea to test all of the things in GL:: and neuter the ones we know don't work [18:00] yes, something like that [18:00] i don't see the particular bits in opengl.h that would do that [18:01] dbarth: the workarounds plugin already does this [18:01] anyway, it's something to see with jaytaoko and DBO i think [18:01] ahah [18:01] dbarth: http://git.compiz.org/compiz/plugins/workarounds/tree/src/workarounds.cpp#n408 [18:02] smspillaz: you are trying to compensate for issues in the driver... this approach is extreme, you re-route opengl call to other functions in order to avoid the problems... while noble, i think that the issue should be fixed on the driver side... [18:02] jaytaoko: indeed. and this is why we *never* do this in core [18:02] jaytaoko: these fixes are there only for the user [18:02] so we report the bug in the driver [18:02] both approaches have merits and will be needed for unity [18:03] pushing bug reports to driver developers at the beginning of the cycle [18:03] while activating workarounds for those bugs that are not fixed more at the end of the cycle [18:03] jaytaoko: historically the ones we have kept are for a) when the hardware is broken *COUGH* INTEL *COUGH* or b) lazy propertietary drivers *COUGH* FGLRX *COUGH* [18:03] sounds like it's getting cold in Australia as well ;) [18:04] dbarth: it was 39C today :( [18:04] can't program when it's hot [18:04] I drank like 12 glasses of water [18:04] eh [18:04] dbarth: yeah yeah I know you guys have -15C [18:05] night all [18:05] smspillaz: to what extend do you have fixes for these issues... are you starting to have a big list of fixes? [18:05] jaytaoko: small list [18:05] jaytaoko: the only other one I am thinking of neutering right now is the broken mipmapping support in the radeon driver [18:05] because it segfaults in the driver [18:06] smspillaz: ok, we will talk about it soon [18:06] yeah [18:06] well basically it's the radeon guy's fix [18:06] just that if it does not get fixed then mimapping is not critical for us [18:06] smspillaz: ok [18:06] and we can put it in the detection plugin to re-route those calls [18:08] jaytaoko: I'd be far more worried if we were having to do crazy things like re-route glXBindTexImage2D because of some driver issue [18:08] *glXBindTexImageEXT [18:08] smspillaz: that would be crazy indeed [18:09] jaytaoko: have a guess which driver we had to do that for for a while [18:09] jaytaoko: it starts with "i" and ends with "ntel" ;-) [18:09] smspillaz: :) [18:09] ok, I'mma sleep now :) [18:09] night all === jcastro_ is now known as jcastro [18:09] smspillaz: take care! [18:12] dbarth, ?? [18:13] rickspencer3: what's up? [18:13] did i miss a ping? i'm having network issue with freenode [18:13] dbarth, is there anyone here who knows a lot about themes and can help someone debug a weird issue in theming with a PyGtk app? [18:13] uh, cimi does yes [18:14] jaytaoko, http://pastebin.com/qB3runUj [18:19] DBO, smspillaz, johnlea, is there a public spec for alt-tab [18:20] lamalex: not yet no, i don't think so [18:20] lamalex: they haven't even finished the initial design [18:22] here I am [18:22] who needs the theming guy? :) [18:22] hi Cimi [18:22] hi rick [18:23] nisshh, Cimi may be able to spend a few minutes helping you get unstucj [18:23] unstuck, even [18:23] yeah, sure [18:23] Cimi, the app is lp:pytask [18:23] and which is the visible issue? [18:24] Cimi, my app turns negro [18:24] well, when you run it, it's got a weird black theme [18:24] ok [18:24] it could be that your app is using a widget name that interference with the panel widgets [18:25] ok [18:25] I mean, I am using some stars (*) in the widget naming matching for the panel, so at first glance and without seeing the code I guess this could be the issue [18:25] yeah [18:26] Cimi, but would that cause *all* the widgets inside the window to turn black? [18:27] let me try your app [18:27] because it isnt just one or two of the widgets [18:27] ok [18:27] Cimi, you will need the quickly-widgets package installed, which you may not have installed already [18:28] I don't [18:28] $sudo apt-get install quickly-widgets [18:28] Cimi, also, this issue only happens when the default ubuntu ambiance/radiance themes are in use, any other theme and it works fine [18:28] I know dude, rickspencer3 :P [18:28] hehe [18:29] Cimi, you mean I've demo'd it that much ? [18:29] nisshh: no worries, I'll fix it [18:29] Cimi, oh, you know what the issue is already? [18:29] rickspencer3: :P [18:29] I assumed no one knows about quickly-widgets unless I tell them about it directly :) [18:29] rickspencer3, so not true :) [18:31] nisshh: figure it out, need to look at your code [18:31] The Sound Menu stopped accepting scroll events. [18:32] essentially, the line widget "*task*" style "panel_task_button", used for the task list button, is broken [18:32] I mean, it's not borken but it's applying to your widgets as well [18:33] I can either: try to fix it in the theme [18:33] or, if you want a quicker fix, use a different widget naming in your app [18:33] (but in the future, when I'll have more time to work on the theme, I'd like to fix the naming matching) [18:34] Cimi, i see, let me just look at my code [18:35] Cimi, could you be more specific about which widget is broken? i dont understand which one your reffering too [18:36] mmm [18:37] that's more a bug in my theme, though [18:38] Cimi, if you fixed it in your theme, how long until the fix would land in ubuntu? [18:38] before natty final? [18:40] for sure [18:40] I can provide a one-line patch right now [18:40] but I would like to have a little bit more investigation [18:41] Cimi, sure [18:42] Cimi, it would be great to get it fixed in my code first, i want to release the next version of my app asap [18:42] nisshh: it's not a bug in your code [18:42] it's in my code [18:43] Cimi, oh, but you said that i could fix it in my code by changing a widgets name or some such? [18:43] the problem is that your widgets are called Pytask* [18:43] and the asterisk is the problem? [18:44] and my theme is matching all widgets with the name *task* [18:44] yeah [18:44] oh i see [18:44] you could "fix" by changing everything to PyTask* [18:44] yeah [18:44] but that's a lot of work for you, and as I said, the problem is in my code [18:44] yeah [18:45] Cimi, i think if you could fix it in your code, it would be best [18:45] I think that too [18:45] :) [18:45] hehe [18:45] but I am working on other things [18:45] fair enough [18:45] I'll have a further look tomorrow maybe [18:45] Cimi, want me to log a bug somewhere and assign it to you so you remember? [18:46] that would be better [18:46] sure [18:46] Cimi, where do you want the bug logged? launchpad? [18:46] https://bugs.launchpad.net/ubuntu/+source/light-themes/+filebug [18:47] cool [18:48] Cimi, what should i describe it as? "naming conflict in theme"? [18:48] nisshh, how hard is it to change that in PyTask? [18:49] rickspencer3, well, im not too sure, but there are a lot of places where Quickly used Pytask as a name for stuff :| [18:49] oh, fudge [18:49] it's the "task" part [18:49] haha [18:49] yeah [18:49] nisshh: wrong widget matching [18:49] Cimi, righto [18:50] uh, so does this mean that nisshh has to wait for an SRU or something? [18:50] something [18:50] Cimi, well, if he wants to release this on Maverick, he'll have to work around it, I guess [18:50] and, to be honest, that's a bug that we have for years maybe [18:50] cause I grabbed that code from light-themes in 10.04 [18:50] rickspencer3, im happy for it to be fixed in natty, i dont need it SRU'd back to maverick tbh [18:50] and I did nor write them [18:51] I just need to open gnome-panel source code and read the right matching [18:51] yeah [18:51] nisshh, but then how can you release PyTask in maverick? [18:51] rickspencer3, even though i am releasing for maverick [18:51] dark is nice though AHAHA [18:51] rickspencer3, people will just have to put up with it until natty i guess [18:52] nisshh, hmm, I wonder if we can work around it with some copy and replace [18:52] nisshh: I'd bet it'll be broken in lucid too [18:52] it wasn't broken in Lucid, I think [18:52] Cimi, well, my widgets didnt start turning black until maverick beta [18:52] anyway, I have to dash, bbiab [18:52] rickspencer3, its possible, but it would be annoying, tbh [18:53] thaks Cimi [18:53] rickspencer3: yw [18:54] Cimi, whats your launchpad ID ill assign the bug to you [18:54] cimi [18:55] meh, dumb launchpad cant find you :) [18:56] lol [18:56] try searching for andrea cimitan [18:56] ok [18:56] nope :)| [18:59] Cimi, ok, launchpad is playing dumb with me here, https://bugs.launchpad.net/ubuntu/+source/light-themes/+bug/683290 <-- maybe just assign yourself :) [18:59] Launchpad bug 683290 in light-themes (Ubuntu) "wrong widget matching (affected: 1, heat: 6)" [Undecided,New] [18:59] nisshh: done, thanks [19:00] Cimi, cool, thanks heaps for your help :) [19:00] nisshh: yw and sorry for my bug [19:01] hehe, i stumped all of us when it turned out to be simple, it happens :) [19:01] it* [19:11] thanks to whoever made ctrl-alt-t work in the last update [19:13] jcastro: probably didrocks; that's a key feature indeed ;) [19:15] great update this week dbarth [19:15] jcastro: dbarth: well TBH, I just fixed binding again to GNOME keys… the ctrl - alt - t was discussed for the first unity version :) [19:15] jcastro: it's already built? [19:15] the ability to add/remove things to the launcher was keeping me off fulltiming it [19:15] (and published) [19:15] didrocks: yessir! [19:15] nice! :) [19:15] so it's only when I update things at 8PM on Friday evening that I have to check until 2 AM that it's built :) [19:16] (well, checking with a better is a nicer checking on Friday evening :)) [19:16] heh [19:16] beer* [19:18] great! [19:18] unity is looking pretty nice now... with this latest update [19:18] quick lists look great [19:18] indeed [19:19] just in time for A1! [19:19] although now my hack to get quicklists in gwibber without displaying the appindicator icon doesn't work... [19:19] unity honors the status like it should :) [19:24] ooh, I like the minimize animation [19:27] jcastro: thanks DBO for it :) [19:28] didrocks: so did you end up keeping the panel running underneath? [19:28] jcastro: no more panel [19:28] didrocks: oh also, I too get a bunch of session garbage on logout [19:28] jcastro: only in the gnome-classic session [19:28] didrocks: good so I can close that bug then [19:28] gotta make minimize + right click != fail [19:28] erm [19:28] jcastro: oh yes please, I think I opened the tab… [19:28] hide + right click != fail [19:28] not sure if I closed the bug :) [19:29] DBO: your window matching fails with chromed webapps [19:29] jcastro, it should match to chrome [19:30] nope, if I minimize the webapp, and then chrome and I click on the icon, the browser disappears [19:30] it only exposes the webapp [19:30] hwat? [19:30] DBO: aha, only when I minimize [19:31] open a webapp that you've made a shortcut of [19:31] I dont have any [19:31] then open the browser itself [19:31] how do I make one? [19:31] in the wrench menu [19:31] tools [19:31] create application shortcuts [19:31] then choose desktop or something [19:31] then run that [19:31] run the browser by itself after [19:31] then minimize them both [19:32] now try to get them back [19:32] okay... [19:32] hold on [19:32] okay web apps are a TERRIBLE corner case [19:33] fagan: can you report compiz issue against compiz please? :) [19:33] yeah I was just pointing it out [19:33] chromium runs all of its windows in teh same browser [19:33] all of its windows in the same process [19:33] you know, other than the millions upon millions of users [19:33] didrocks: oh cool [19:33] that ASSHOLE [19:33] fagan: speaking about https://bugs.launchpad.net/bugs/683303 [19:33] Launchpad bug 683303 in unity (Ubuntu) "Unity [compiz] adobe flash+chromium crash (affected: 1, heat: 6)" [Undecided,New] [19:33] jcastro, it actually matters which window you open first [19:33] didrocks: yeah I got that [19:34] didrocks: is this bitesizeable? https://bugs.launchpad.net/unity/+bug/683241 [19:34] Launchpad bug 683241 in unity (Ubuntu) "Recycle bin icon is empty when there are items in the bin (affected: 1, heat: 6)" [Low,Triaged] [19:34] jcastro: yep, fire the tag! [19:34] fagan: you should get apport catching it [19:34] fagan: look at #ubuntu-devel, I explained sebner how to do it [19:34] didrocks: It apport didnt pick it up [19:34] just seems to break out somewhere [19:35] running logically independent things in separate processes should be considered tantamount to evil [19:35] fagan: is apport enabled on your machine? [19:35] erm [19:35] logically independant things in the same process [19:35] fagan: did you read the discussion I just pointed you at? [19:35] i need a nap [19:36] didrocks: I thought it was already turned on in natty [19:36] fagan: no, it's not by default yet [19:36] too early in the release [19:36] didrocks: ah ill do it then [19:36] fagan: thanks :) [19:37] fagan: marking your bug as incomplete, just let apport firing up another one against compiz [19:38] cool I just turned it on [19:40] starts the apport service as well [19:40] dbarth: is webapp support low? if if it is I'd like to bitesize the lot of them sitting in lp [19:40] like this one: https://bugs.launchpad.net/unity/+bug/660157 [19:40] Launchpad bug 660157 in unity (Ubuntu) "Unity -b command doesn't build a workable application (affected: 2, heat: 80)" [Low,Triaged] [19:40] though we no longer have a unity binary it seems [19:41] didrocks: its an assertion failure according to apport [19:41] so its not going to work like that [19:41] fagan: ok, just report the stack :) [19:42] assert are also triggered [19:42] * fagan gets a copy of the stack :) [19:50] yay got more info the easy way [19:56] I can now see where its going wrong but I really dont have a clue what it is [19:57] its chromium's fault I think === smorar_ is now known as smorar__ === smorar__ is now known as smorar_ === smorar_ is now known as smorar__ [20:25] cyphermox: yes, please also include the patch 9 if possible. the new wifi plugin is the future, better start using it early on [20:33] jcastro: I'll try to get for tomorrow a list of bytesize bug [20:34] didrocks: yeah I am eyeballing a bunch of Low ones now [20:52] kvalo, alright... but isn't there a better way to do this? with legacy support, is your stuff broken? [20:53] kvalo, the thing is, I'd like to avoid huge unnecessary changes, especially if this means possibly removing support for older hardware, because I want to upload the new connman to Debian too [21:05] cyphermox: I need to leave now, so I'll be really quick [21:06] cyphermox: other option is to revert the priorities of the two plugins and have the new plugin higher priority [21:07] kvalo, don't worry about it, I added the patch [21:07] cyphermox: the new wifi plugin is basically a rewrite of the old legacy plugin and fixing few ugly parts. biggest issues were blocking dbus calls and using the old (and sucky) wpas dbus intrface [21:08] cyphermox: in theory the new wifi plugin should support exactly the same hardware as the old plugin. but as we have seen many times, theory and reality doesn't match :) [21:10] cyphermox: but I consider the legacy wifi plugin dead and would not want to waste any time on it anymore in ubuntu, hence my push for the new plugin [21:10] but I need to get sleep now, bye