[00:02] http://mozillalinks.org/wp/2008/04/firefox-reached-29-share-in-europe/ [00:06] jyväskylä [00:08] Could someone look at bug 198074? I have seen that behaviour (flash over content) before, and I suppose it's a fairly known bug. [00:08] Launchpad bug 198074 in firefox "Flash not showing properly" [Undecided,Confirmed] https://launchpad.net/bugs/198074 [00:09] thats a dupe [00:09] search for "flash always on top" [00:09] thats the master bug and should already have plenty of dupes [00:09] ok [00:09] maybe its eve nclosed on firefox side [00:09] search on flashplugin-nonfree [00:09] (firefox side for that bug was fixed) [00:12] lol http://www.screenage.de/blog/2008/04/24/ubuntu-landed-on-berlin-metro-system/ [00:12] yeah heard about that before ;) [00:12] Cool :) [00:13] cool stuff [00:17] asac: fta: upstream might have a patch-in-hand by tomorrow for bug 215728. They're hitting freeze real soon - is it feasable to have it pushed to a ppa to help upstream test it? [00:17] Launchpad bug 215728 in firefox-3.0 "High CPU Consumption" [Undecided,Confirmed] https://launchpad.net/bugs/215728 [00:18] jcastro, sure [00:18] fta: I told him to specifically attach it to the lp bug, so if you guys could watch it closely I would appreciate it [00:19] jcastro, do you mean, b5 + this patch in a ppa or the latest upstream snapshot containing this patch ? [00:19] expect a patch [00:20] my ppa is very close to upstream, ie, far ahead of b5 (hardy) [00:20] fta: he'll see when he gets there, he will put the details in the bug [00:21] the only problem with my own ppa is that lang packs are not compatible (our max version is too strict) [00:22] fta: campd is upstream. [00:22] fta: I've pinged asac about it, but he's probably asleep now, so pls ensure he's in the loop [00:22] and I have a headache. [00:23] jcastro: i am still here :) [00:23] woo [00:23] so I don't know how much jorge has relayed; [00:23] but this is a shittastic bug, that doesn't seem to manifest on other platforms [00:23] hi campd [00:23] there's no Great fix, but I'm working on some Better fixes [00:23] campd: why is sqlite so bad on linux? [00:23] dunno! [00:24] (and so much better on win?) [00:24] so the current fix is to tune cache size? [00:24] yes. [00:24] temporarily, during the update [00:25] when I say "current fix" I mean "the one I'm still working on" [00:25] campd: what is done during update? isn't that incremental? [00:25] so it's incremental, yeah [00:25] but unfortunately it needs to update an index [00:25] and the data it's adding is a) plentiful and b) deliciously random [00:26] so it ends up needing to insert into all sorts of different spots in the index [00:26] there's practically no decent locality [00:26] so the index is physically clustered? [00:26] not sure what you're asking; [00:26] hehe not sure either [00:27] maybe our words don't match [00:27] the real problem is that the index is Big (at certain points in the update process it has more than a million hashes) [00:27] and we throw a bunch of effectively-random data at it [00:27] I'm making up numbers here, but if the index has 5,000 pages [00:28] and we add 10,000 urls [00:28] we're going to be hitting most of those 5,000 pages, multiple times [00:28] and if the cache is only 1,000 pages, you're going to get a Lot of Thrash [00:29] this is mostly a problem during the Initial Population of the database, which encompasses the first few update requests [00:29] once you have the whole database, you're adding closer to 1,000 urls a week [00:29] which will be (relatively) easier on the cache [00:30] so the proposed fix is basically "let the cache get much bigger if it needs to" [00:30] "which will happen during those initial updates" [00:30] (I'm also considering adding "try to do these updates when the user is idle") [00:30] so how much mem do we expect then? [00:30] not entirely sure yet [00:31] (suggestions welcome!) [00:31] campd: one more question. you are talking about db indexes like in "create index ..."? [00:31] yeah [00:31] although the actual data itself shares the cache [00:31] campd: do you drop them before doing the import batch? [00:31] nope. [00:31] performance there would be dismal [00:32] once that big initial update is complete, we're adding like 10-100 urls at a time [00:32] to a database with like 500,000 urls [00:32] campd: i don't say "drop index" [00:32] regenerating that index would be Pure Pain [00:32] ah, what are you suggesting? [00:32] i mean: "drop index while doing import batch ... then when finish create it" [00:32] right [00:32] so regenerating that index over 500,000 urls [00:32] thats what we did when we imported huge datasets in the past [00:32] when you're only adding 10-100 [00:33] will be prohibitive [00:33] campd: well ... if its just the initial batch you could do that only then [00:33] yeah, that's a possibility [00:33] although the raw data is still an issue there [00:33] campd: do you know in advance how many you import? [00:33] nope [00:33] (we could Guess, but we don't really know) [00:34] then you might preparse X and cache them in memory, then decide if to just insert ... or insert as batch (e.g. without index) [00:34] yeah, it's possible [00:34] in my tests, dropping the index didn't help a whole heck of a lot [00:34] even during initial updates [00:34] ok, so the issue is not the index ? [00:34] not really [00:34] I mean, the index is part of the issue [00:35] yes, but if this doesn't really help, then it must be something else [00:35] it's the io [00:35] it's the fact that our current page cache is around 2000 [00:35] right ... so the raw data IO alone is too slow? [00:35] yeah [00:35] that would be really bad ;) [00:35] and we're kinda stupid about it [00:35] where "stupid" is "we do too much of it, because our cache is too small" :) [00:36] so what I'm looking at doing is basically choosing a cache size based on system memory; [00:36] are you using transactions? [00:37] yes [00:37] (which is why the page cache is useful at all; otherwise that page cache would be synced to disk after every operation) [00:40] so anyway, my current thinking is that a) currently our page cache is Just Too Small, Period [00:40] b) with a decent-sized page cache, the IO becomes negligable [00:40] c) we can reclaim the page cache memory after a successful update [00:41] so similar to what our bookmark/history code does [00:41] I'm going to look at sizing the page cache based on available system memory [00:41] during an update process. [00:41] if that is a proven pattern then i agree that this is the path to use [00:42] s/to use/to go/ [00:42] so what we'll do is choose some percentage of system memory [00:42] campd: how do you get "available system memory"? [00:42] PR_GetSystemMemory() :P [00:42] I'll check what that does [00:42] but it is Physical [00:42] yeah thats what i wonder [00:43] so that page cache grows to the size needed to contain the update; [00:43] asac, bug 151956 ... People complain that flashplugin-nonfree/mozilla-plugin-gnash are not installable from live cd, because multiverse repo is not enabled. We might include to ubufox to check if multiverse is enabled and to present the correct plugins list, maybe with a message "please turn on multiverse for more plugins". Of course, if that's possible... [00:43] Launchpad bug 151956 in firefox "Gutsy RC1 LiveCD can't find flashplugin-nonfree when using install plugin on firefox" [Undecided,Incomplete] https://launchpad.net/bugs/151956 [00:43] it's not Necessarily the size we dicide; [00:43] decide [00:43] so as an example [00:44] let's say we choose 7%; [00:44] (places uses 6%) [00:44] on a 512mb machine, that'll set aside 35megs [00:44] during the Big Scary Initial Updates, we might use up that whole 35 megs [00:45] during the update process (which, because we have very little IO, will only take like 10 seconds) [00:45] and we'll try to fit those updates into when they're idle if possible [00:45] once they're caught up to the current state of the list, we'll still ALLOW 35 megs [00:46] but it'll probably end up being much smaller, because we're only updating 10-100 urls [00:46] so it'll probably be a negligable increase [00:46] so that's the PLAN [00:46] I don't have a patch yet [00:46] Jazzva: multiverse _should_ work [00:46] and someone smarter than me might have a better solution :) [00:46] asac: Hmm, ok. [00:47] I'm idly curious why it's so much worse on linux === fta_ is now known as fta [00:47] campd: do you use same cache size on win? [00:47] yep. [00:48] I haven't done as vigorous testing there, but we've gotten no complaints [00:48] while ubuntu users seem to have quite a few :) [00:48] but regardless, this is a fix we should be doing everywhere. [00:48] yeah. but we use in-source sqlite ... so at least it should not be related to us using a system library [00:48] right. [00:49] that was actually my Very First Question, but I was able to verify on my linux box with the mozilla tree [00:49] so, yeah [00:49] personally i don't experience this [00:49] how can that be? [00:49] how big is your urlclassifier3.sqlite? [00:49] 22M [00:49] huh [00:49] then that's a good question :) [00:50] maybe those users are using some kind of strange filesystem [00:50] like fat16 [00:51] well, I'm seeing crappy performance [00:51] campd: could you confim this? [00:51] ah i see [00:51] (albeit with a contrived test case) [00:51] yeah ... but real user-experience impact? [00:51] haven't actually confirmed that, no [00:52] but my contrived test cases are pretty close to what you'd expect in real life [00:52] (I'm actually adding the real data, just at a different pace than the normal updates) [00:54] man, I have a gigantic headache [00:55] ok thanks for coming here. if you have a patch we can try let us know [00:55] yeah [00:55] I was talking to jorge about that; [00:55] I'm going to try to have a patch together tomorrow, discuss the approach with some other mozilla folks; [00:55] once we decide for sure which way we're going [00:55] I'd *love* to get as much testing as possible [00:56] well, we apparently have plenty "volunteers" here :) [00:56] yeah. [00:57] apparently asac? LOL [00:57] no those forum users that complain ;) [00:57] i don't see this bug unfortunately [01:00] Jazzva: actually i am not sure about that multiverse thing on CD [01:00] (and while I'm here, congrats on the release) [01:00] (it's been working pretty darn well for me here) [01:01] Jazzva: i always thought one can update sources.list ... and we had a bug about something similar against apturl, but i was assured that this was fixed. [01:01] Jazzva: so its worth to investigate i guess [01:01] campd: thanks! :) [01:02] well, whatever slightly-beta version I have now [01:02] campd: only thing thats unfortunate is that we missed RC1 by a week or so [01:02] I can't get to the damned mirrors to update :) [01:02] yeah [01:02] well tbh, I'm kinda glad you did [01:02] in a selfish using-your-users-as-testers sort of way [01:02] 'cause this was flying under our radar previously [01:03] but yeah, RC1 would have been good [01:04] i am not glad obviously ;) ... we spend a considerable amount of work to get xulrunner going for all apps and all. it was fun, but still having a beta browser in final release is kind of a decision that causes discussion for us :) [01:04] asac: Only thing I need is a Hardy cd :). I asked commenter to see if that's happening on hardy final [01:05] campd: i think we can sell this as a long term decision, but RC1 would have been so much easier to sell ;) [01:05] yeah, I know what you mean [01:05] asac: how good are you with scripting for greasemonkey? [01:05] I'm mostly thinking "if ubuntu hadn't been releasing, would this bug have caught our attention in time for RC1" [01:05] * gnomefreak thought of this while im eatting :( [01:06] campd: yeah ;) ... thats the good side. and i am confident that shipping 3 b5 was the right thing to do. [01:06] yeah. [01:06] this issue aside [01:06] (which, honestly, can be worked around by turning off the malware detection) [01:06] its still open how the press reacts on this, so far its mostly trollish users that question this [01:06] Does anyone know if TB supports groups in the address book. I looked at the help section and it was no help. [01:06] (which ffx2 doesn't have) [01:07] campd: right. i don't feel bad about this particular issue [01:07] most people just see "Beta" and run screaming ;) [01:07] nod [01:07] but ffx3 >>>>>> ffx2 [01:07] *particularly* on linux [01:07] exactly [01:07] as said. press didn't really trash us for that from what i can see [01:07] Sergeant_Pony: i havent tried but as i recall you can add groups whileing setting up accounts so i dont see why not but again i havent played too much with tb2 for a while other than everyday usage [01:08] run screaming from beta *shock*? Where's the fun if it's all stable? [01:08] for now [01:08] asac: you can reply that Google was still in beta for years... ;) [01:08] right [01:08] weve done it before and it worked out fine this time should be no differnet [01:08] i have no problem to argue for that [01:08] Volans: If Google was only :)... [01:08] Volans: it still is [01:09] *the only one [01:09] aside google searches people have had many issues with thier products [01:09] gnomefreak: yes, but bars are raised. people look closer [01:09] asac: true but isnt b5 rc1 than release (rough order) [01:09] previously the important thing was "latest" ... now it has to be "latest and most stable" :) [01:09] maybe next month and half or 2 depending on blockers [01:10] gnomefreak: yes. two month from now it will be forgotten [01:10] but people reading this might perceive this as "not mature" and could a long lasting bad idea [01:10] brand perception [01:11] most firefox bugs is profile, extentions, addons, but there are a few or more that are code itsself from what ive seen [01:11] asac: we really could have not made it default since we carry 2.0 with hardy [01:12] gnomefreak: the idea is to not change the default throughout the lifetime [01:12] but i dont see that big of an issue atm. stop using flash cut ff bugs to 1/4th of what they are [01:12] and ffox 2 would be really hard to support at some point [01:12] upgrading to ffox 3 would also give us bad reputation [01:12] asac: true thinking on LTS [01:13] its a catch 22. people are either gonna complain its not default or complain that it is since its not final [01:13] Hi all :) [01:13] hi l3on [01:14] IMHO 2months until final is better than not having it in for 3 years [01:15] are they planning on releasing xul and ff3 at same time? [01:15] gnomefreak: they don't release xul [01:15] they release it all together in ffox [01:15] we split [01:18] something really wrong here [01:19] still sucky network in PA? [01:19] 20:19 -NickServ(services@mozilla.org)- Nick gnomefreak isn't registered. [01:19] and shitty ns [01:19] but yes i have to deal with ISP tomorrow [01:19] gnomefreak: thats on mozilla server :) [01:19] not freenode [01:20] oh crap [01:20] If I'm in Mozilla Bugs, will I receive every comment for every bug to which mozilla team is subscribed? Just to know, so I don't subscribe myself for no reason :) [01:21] Jazzva: mozilla-bugs gets mail for bugs to which mozilla-bugs is subscribed [01:22] Jazzva: mozillateam accordingly only to bugs to which mozillteam is subscribed [01:22] but we don't subscribe mozillteam [01:22] hmm... ok [01:22] Thanks :) [01:22] Jazzva: but i am not sure if we get mail for firefox-3.0 [01:22] i think we don't [01:22] no idea how things are setup [01:23] i get mail for firefox + thunderbird [01:23] and all bugs to which mozilla-bugs is subscribed [01:23] Ok ... then I'll just subscribe myself to every one... Hope it won't produce too much mail :) [01:23] haha [01:23] it will [01:23] Hope gmail filters are good enough :) [01:23] gnomefreak: can you sort out how to subcribe to get all bugmail for all our packages [01:24] i looked a few days, but couldn't figure ... and i just don't remember [01:24] gnomefreak: do you still remember how this was done? [01:24] 02:23 < asac> gnomefreak: can you sort out how to subcribe to get all bugmail for all our packages [01:24] 02:24 < asac> i looked a few days, but couldn't figure ... and i just don't remember [01:24] 02:24 < asac> gnomefreak: do you still remember how this was done? [01:25] no idea if he got it [01:25] i can if i stay around long enough tomorrow [01:25] :) [01:25] i didnt get it til now === gnomefre4k is now known as gnomefreak [01:25] gnomefreak: not urgent [01:25] i just thought you remembered ;) [01:26] ok i will look tomorrow but IIRC you have to subscribe from main bug page on each package [01:26] gnomefreak: so jazzva needs to go to firefox-3.0 and subscribe to all bugmail there? [01:26] i think thats possible [01:26] but being mozilla team you are already subscribed to all mozilla bug mail [01:26] No, not all bugmail :) [01:26] just thought we subscribed mozilla-bugs in such a way [01:27] Jazzva: ? [01:27] we did [01:27] i did [01:27] Jazzva: thought thats what you wanted? [01:27] Jazzva: you are a memeber of team right? [01:27] gnomefreak: so maybe mozilla-bugs is not yet subscribed to firefox-3.0 and xulrunner-1.9? [01:27] asac: I thought that too ... then I realised I'm needing just the one I commented :) [01:27] Umm, right :) [01:27] I am receiving new bug reports, though... :) [01:27] asac: ff3 it should be i get them xul i dont get iirc so i will fix it [01:28] ok thanks [01:28] asac: is the packages up to date on the mozilla team LP page? [01:28] gnomefreak: remember that there are still lots of ffox 3 reports going to firefox package because of confusion [01:28] and are we talking extentions as well? [01:28] so maybe thats what you are seeing [01:28] worth to check i guess [01:28] asac: ill look into it int he morning and subscribe mozilla-bugs to all our packages [01:29] damn [01:29] extentions i may need help with them as i saw way too many to remember [01:29] * asac wonders if that is any better for his own bug performance [01:30] asac: Lots of mail coming your way after? [01:30] Jazzva: no idea :) ... my mailbox is always full with unread mails [01:30] thats all that i know [01:30] so i think so [01:31] but my mail setup really sucks in this regards [01:31] Work on it :) [01:31] *thinks* [01:31] ill look at it right now for a little bit and see if i cant figure an easy way of doing it [01:31] well ... i am sure that i don't have the time to process all New and Incomplete bugs. [01:31] maybe confirmed [01:32] at best only triaged and in progress ones :) [01:32] but thats a dream obviously [01:32] asac: you come up with greasemonkey scripts for comments and ill do the bug work all day and night ;) [01:32] Subscribing to all bug reports and forwarding it to another folder, hoping I'll find something interesting, or just to keep plain, old bug-browsing? [01:32] gnomefreak: i can give you those python scripts [01:32] Jazzva: tb and filters :) [01:32] asac: how do i run them? [01:32] gnomefreak: they are far easier to write and far easier to run [01:32] I don't think I am subscribed now ... only ~10 bug-reports came to my mail today. [01:33] gnomefreak: just chmod a+x .py [01:33] then ./xyz.py BUGID [01:33] you have to copy your cookies.txt file into the same directory you run them from [01:33] to be authenticated [01:34] and remember to replace at least Alexander with your name in the .py files [01:34] but i can imprve that [01:34] oh fuck my ISP [01:34] 02:33 < asac> gnomefreak: just chmod a+x .py [01:34] 02:33 < asac> then ./xyz.py BUGID [01:34] 02:33 < asac> you have to copy your cookies.txt file into the same directory you run them from [01:34] 02:33 < asac> to be authenticated [01:34] asac: yeah i saw that but is that how to run them? ./script bug # [01:34] 02:33 -!- gnomefre2k [n=gnomefre@adsl-221-44-39.rmo.bellsouth.net] has joined #ubuntu-mozillateam [01:34] 02:33 < asac> and remember to replace at least Alexander with your name in the .py files [01:34] 02:34 < asac> but i can imprve that [01:34] 02:34 < gnomefre2k> oh fuck my ISP [01:34] gnomefre2k: that might be different dependeing on what the script should do. the ones i posted all take just the bugnumber as argument [01:34] ok i can do that easy [01:35] ah ok [01:35] but i could also write something like: === gnomefre2k is now known as gnomefreak [01:35] ./post-bug-generic.py bugid --status=Incomplete --comment="Here comes your comment" [01:35] :) [01:36] or [01:36] ./post-bug-generic.py bugid --status=Incomplete --summary="New summary that is comprehensible" --tag=flash --comment="Here comes the comment" [01:37] oh no [01:37] am i here? [01:37] you are [01:38] sounds miserable [01:38] i feel with you gnomefreak :) [01:38] thanks [01:38] * gnomefreak really gonna lay into them [01:38] this is bs [01:38] package name for xul 1.8 is just xulrunner right? [01:38] if any of you need some bug script let me know. i can write it given some time ahead. [01:38] gnomefreak: yes [01:39] xulrunner-1.9, firefox-3.0 is the hot combo [01:39] everything else is just legacy [01:39] https://edge.launchpad.net/~mozillateam [01:39] yes, thats right [01:39] ubuntu-php-firefox-human is no longer around right? [01:39] gnomefreak: just for ff2 [01:40] php? [01:40] same with firefox-themes-ubuntu/ [01:40] that's what I thought you were asking about [01:40] https://edge.launchpad.net/ubuntu/+source/ubuntu-php-firefox-human/ [01:40] edgy was last afaik [01:40] edgy is EOS in a day or 2 [01:40] \o/ [01:40] hail on that [01:41] one upload less on firefox security updates [01:41] i will remove it from page should we keep themes package until ff2 EOS? [01:41] yes [01:41] we have that packagein universe [01:41] however we dont really care ... its the artwork team that should fix it imo [01:41] k [01:41] otoh havin git in that list doesnt hurt [01:42] its never been us afaik [01:42] its always someone else that did it [01:42] yeah [01:42] git? [01:42] where do you see git? [01:42] and given that all the scripts in there are writtin in php i wont like to work on it more than absolutely necessary [01:43] ah [01:43] gnomefreak: bad spacing: [01:43] kompozer is us or tony? [01:43] < asac> otoh having it in that ... [01:43] gnomefreak: tony [01:43] so should i remove it? [01:43] i don't want to put my name on something like that ;) ... ifpossible [01:43] and LP plugin package [01:43] gnomefreak: well ... he is in mozillateam :) [01:43] good point [01:44] no idea if thats appropriate [01:44] but i don't mind [01:44] we never touched it [01:44] he didn't trash our bzr branches ;) [01:44] so that is fine [01:44] (nor did he touch them ever) [01:44] true [01:45] we should ask him whathis plans are [01:45] https://launchpad.net/ubuntu/+source/firefox-launchpad-plugin/?? keep or trash and should we add liferea [01:45] damn keyboard :) [01:45] i will when i see him tomorrow [01:45] or now [01:45] we can add liferea [01:45] wlel [01:45] well [01:45] not sure ... but i worked a bit on it [01:45] taking it and pulling whoever works on it usually into mozillateam is a good plan i guess :) [01:46] * gnomefreak knows how cant remember spelling of his nick [01:46] emilo is his first name iirc (spelling is off) [01:46] ah pochu? [01:46] yeah [01:46] hes liferea [01:47] mainly [01:47] right now i remember. he is the one caring most [01:47] are we adding all those damn extentsions into our packages? [01:47] i think we should create a subteam "mozilla-extensions-dev" or something [01:47] or leave them with sosa(spelling?) [01:47] and move them there [01:48] we could then add the QA contacts to that project [01:48] not reallly [01:48] aeh team i mean [01:48] if we do our page goes to almost noting [01:48] nothing [01:48] and subscribe it to bugmail of the packages :) [01:48] that way at least someone deals with those bugs [01:49] gnomefreak: ? [01:49] biofox, enigmail,sage,adblock greasemoneky so on [01:49] webdev [01:49] gnomefreak: if you add all extensions to mozillateam you will not be able to see the important ones [01:49] truer [01:49] imo sorting them to a subteam makes sense [01:49] true [01:49] asac: I think every QA have subscribed the bug of the extension for which he is the QA contact... [01:49] really? [01:49] Volans: good [01:50] I have do so... :) [01:50] didn't know that ;) [01:50] thats brave. but i am not really sure that this is the cas [01:50] i don't expect much bugs on extensions [01:50] ok i will fix this page first i would like to keep enigmail and give new team sage and biofox and freinds [01:50] but someone reading them is probably beneficial [01:50] gnomefreak: yes, enigmail is not firefox. i think that team should get all firefox ones for now [01:51] enigmail extension needs serious cleanup before i can hand it over anywhere [01:51] all? gnash we keep and flash well dont care much about flash [01:51] dump flash [01:51] themes and sage and LP can all go [01:51] if anyone cares he should create a flash team [01:51] gnomefreak: for gnash we already have a ~gnash-dev team [01:51] asac: we should have one but ick [01:51] we do? [01:52] launchpad has [01:52] so why is it on this team [01:52] upstream is in it ... as well as me [01:52] gnomefreak: nobody removd it from that page? [01:52] hehe [01:52] i can [01:52] so dump it [01:52] just tell me [01:52] got it [01:52] nspluginwraper can stay for now i guess [01:52] keep flash until we decide what to do with it since we get bugs anyway :( [01:52] no idea who would be more suitable [01:53] thats ok [01:53] fine [01:53] locales can also stay ... at least those that are on the current page [01:53] webdev and greasemoneky? [01:53] locales we keep [01:53] no idea aobut ffox-launchpad-plugin [01:53] give it away we havent touched it [01:54] maybe to the extensions team [01:54] and search for someone who wants to adopt it ;) [01:54] as QA contact [01:54] greasemonkey :) [01:54] yeah extension as well [01:54] I took it on wiki and subscribed as bug contact [01:55] cool [01:55] (oh, you were talking bout ff-lp-plugin ... I have some problems with reading tonight, apparently *sighs*) [01:57] Jazzva: keep up me and asac talk about different things all day long :) [01:57] ok let s try this [01:58] gnomefreak: It's good to know I'm not the only one :) [01:58] oh sorry :) [01:58] i think its time to bad. if reading is difficult writing comprehensible things is probably not better :) [01:58] see :) s/bad/bed/ [01:59] lol [01:59] lol [01:59] naaah, tomorrow is a day when I can sleep ... No school, no work *yay* [01:59] sounds like fun ;) [02:00] It is :). More simple bugs I can close tonight (the ones with upstream "fix released" :)) [02:00] feel free to go ahead and kill all bugs [02:00] :) [02:00] heh :)... [02:01] thats good news. i think i will have sweet dreams ;) [02:01] ;) [02:01] so :) night! [02:02] night... [02:02] cu tomorrow [02:02] see you === gnomefre1k is now known as gnomefreak [02:11] https://edge.launchpad.net/~mozilla-extensions-dev so fara [02:11] far [02:11] not near done [02:12] it is smoke time though [02:18] asac: you in mode to email me tonight or tomorrow about the tags wiki (what tags to keep what ones can be dropped and any that we add? [02:26] gnomefreak: asac went to sleep 15 minutes ago... [02:31] welcome back, gnomefre1k ... bash your isp [02:31] works in progress but here https://edge.launchpad.net/~mozillateam https://edge.launchpad.net/~mozilla-extensions-dev [02:31] in case you missed: gnomefreak: asac went to sleep 15 minutes ago.. [02:31] Jazzva: thank you [02:31] Jazzva: ill catch him tomorrow [02:32] :) [02:32] will get around to a wiki and stuff for it in the next week or so [02:32] the pages look good :) [02:32] Jazzva: if you have more extensions that you are aware of please let me know [02:32] there are a tn more IIRC you packaged them [02:33] https://wiki.ubuntu.com/MozillaTeam/Firefox3Extensions [02:33] I think everything is there [02:33] tn = ton [03:06] argh... Can't install FF2 inside chroot, because the server is overloaded *sighs*... [04:28] asac, I marked firefox task in bug 15179 as fixed, because I thought the source pkg is firefox-2 is firefox-2. Now, I can't mark it back as triaged, so I set its state to In progress. Please mark it back to triaged. Sorry for the mess... [04:28] Launchpad bug 15179 in firefox "Users should be discouraged from editing temporary files" [Medium,In progress] https://launchpad.net/bugs/15179 === asac_ is now known as asac [11:37] fta: there? [12:59] testiing connection before i call ISP [12:59] :) [13:00] asac: did you get the links i left last night? [13:00] gnomefreak: topic? [13:00] mozilla team and mozilla extensions team [13:01] now scrolling back ;) [13:02] gnomefreak: ok ... cool. can you make me admin as well and then add the mozillateam as a member? [13:02] https://edge.launchpad.net/~mozilla-extensions-dev https://edge.launchpad.net/~mozillateam [13:02] i can [13:03] simple [13:03] i think its reasonable to say that every mozillateam member is also mozilla-extensions-dev permission wise. so just adding the mozillteam should do that [13:03] + me admin as a backup ;) [13:03] it should [13:03] one more admin would be good to start should this be jazzav? [13:06] atleast he is the one that made all those extensions as far as i can tell [13:09] should i apply for a mailing list for the extensions team? [13:11] debian bug 477747 [13:11] Debian bug 477747 in icedove "icedove: Linking a trivial program with icedove-xpcom fails" [Serious,Open] http://bugs.debian.org/477747 [13:11] gnomefreak: yes. certainly [13:11] gnomefreak: otoh, admins are just needed for administrative purpose [13:12] i am fine if jazzva is admin, but we should ask him first obviosly :) [13:12] right [13:12] ok sounds good [13:12] i addded you seperate from mozillateam to set admin up [13:12] roles come with powers, but also with responsibilities :) [13:13] yep they do [13:15] asac: should i apply for a mailing list for team? and i have to set up bug mail with our mozilla-bugs team or seperate one? [13:22] i think im finding more on this flash + PA no sound in flash [13:24] seems libflashsupport is needed for sound but as a problem caused by libflashsupport.so causes crashes when used with flash :( [13:25] see bug #196470 and bug #183943 [13:25] Launchpad bug 196470 in flashplugin-nonfree "[hardy] flash plugin can't play videos at all then other program is using audio device" [Undecided,Fix released] https://launchpad.net/bugs/196470 [13:25] Launchpad bug 183943 in flashplugin-nonfree "flashplugin-nonfree should include libflashsupport as a dependency" [Medium,Incomplete] https://launchpad.net/bugs/183943 [13:28] bug 192888 should have the crash fix on it just need testers [13:28] Launchpad bug 192888 in pulseaudio "firefox crashes on flash contents when using libflashsupport" [High,In progress] https://launchpad.net/bugs/192888 [13:29] hi [13:30] gnomefreak: i dont think we need a mailing list for now. is there a way to reach all members of a team without setting up a mailing list? [13:31] asac: not sure off hand i will look when im done in email [13:31] no there isnt unless there was a way added ill ping hobbsee or someone in #launchpad to find out [13:32] Use of getBoxObjectFor() is deprecated. Try to use element.getBoundingClientRect() if possible. [13:33] does the above look like a page issue or firefox issue? [13:33] im thinking page TBH [13:33] full info is https://bugs.edge.launchpad.net/ubuntu/+source/firefox-3.0/+bug/195319 [13:33] gnomefreak: the flashsupport crash? [13:33] Launchpad bug 195319 in firefox-3.0 "firefox-3.0 crashes on icanhascheezburger.com" [Undecided,Incomplete] [13:33] gnomefreak: thats a libflashsupport issue and is well known [13:34] gnomefreak: (might also be flashplugin-nonfree) [13:34] flashsupport causeds firefox to crash but now allows you to play sounds on most peoples pc [13:34] i think crimsun has a patch he wants tested [13:34] yeah [13:34] thats also a PA issues [13:35] gnomefreak: you don't need to actu on that ... that bug is already well evaluated and just needs more testing [13:37] * gnomefreak goes to think about what to do with flash as a plugin new team or leave it ours (rather not leave as ours) but we get them anyway cause people dont have a clue between browser and flash [13:38] and smoke [13:41] fta: there? <= ? [13:43] fta: MOTU thing ... you want me to draft your mail that you can just send to MOTU council? [13:43] oh, yes, please :) [13:44] fta: i asked if its ok to just propose you, but MOTU council preferres a mail from you ... so Id like to do that for oyu to get this finally done [13:44] * gnomefreak gonna hurt someone with this bs [13:45] compix+firefox [13:45] fta: ok. cool. [13:45] fta: so far feedback is cool and everyone i talked to concurs that you should be at least MOTU [13:49] gnomefreak: i agree that we can keep flash, but we should definitly do what i said yesterday. create one master bug where every flash bug gets duped in until we have a better channel to adobe [13:49] (which hopefully happens in this cycle) [13:50] who/how can we do that since flash is closed im sure only paid people work on it [13:50] * gnomefreak doesnt know of anyone that has really done anything with dev/bugs for flash that work with Ubuntu [13:50] Hi, with the release of hardy and edgy being eol'd, I am going through a bunch of bug reports (not all of them for mozilla-stuff), asking whether the problem still occurs with the latest software [13:51] I assigns those bugs to myself until I get a response [13:51] If there is a positive response, the bug gets reassigned back to mozilla-team [13:52] Laibsch: you don't need to reassign back [13:52] If there is no response, I close the bug after about aweek [13:52] Laibsch: just unassign [13:52] month!!! [13:52] OK [13:52] Laibsch: maybe ask for the first few bugs on what to do ... sometimes even setting to incomplete is not the right thing to do [13:52] I was more concerned about you guys not getting upset about someone "stealing" your bugs from you [13:52] ;-) [13:52] hey :) [13:53] look at the bug counts. we won't even notice any robbery ;) [13:53] steal all you want ;) [13:53] I have been doing bug triage for ubuntu and other projects for a long time [13:53] every bug help appreciated. [13:53] hel;l steal all flash bugs ;) [13:53] My understanding is that in situations like this [13:53] Laibsch: i have a set of scripts that might help you [13:53] http://people.ubuntu.com/~asac/mozillateam/moztools_lp/ [13:53] one asks for feedback, marks as incomplete and assigns to oneself [13:54] Laibsch: those are run with BUGID and are good for the most common cases [13:54] they implement a rather aggressive approach to get the bug count down. [13:54] the one issue i have with that is people forget to unasssign after getting info and the bug goes lost since that user cant/dont want to fix it [13:54] well, for now, I'll leave those scripts to you [13:55] Laibsch: sure. just wanted to be helpful [13:55] :) [13:55] gnomefreak: Don't worry, I do go through https://bugs.launchpad.net/~r0lf/+assignedbugs from time to time [13:56] asac: Sure, I appreciate the offer of improved efficiency [13:56] But I am not trying to get too involved in moz's firehose ;-) [13:56] Laibsch: thank you , have at them :) [13:56] Laibsch: just do a bunch manually. if you are uncertain about anything feel free to ask [13:57] * Laibsch does take a closer look at the scripts now [13:57] always wanted to learn python better anyways [13:59] Laibsch: if you can identify other cases that would help to have covered in scripts let me know. i can implement or help you implement them [14:00] asac, do you have the draft for the extensions yet ? [14:01] asac: firefox not responding (buttons go grey) only with compiz running would you say firefox fault or compiz fault? i already explained myself on bug but would like to know if at all what firefox can do about it (im thinking its mem+proc usage by compiz causing this) [14:02] fta: you can be really naggy ;) ... what would be the right title for the wiki page? https://wiki.ubuntu.com/MozillaTeam/Firefox3Extensions/MassMaintenance ? [14:02] or BzrProcedures? [14:02] or AutoTracking? [14:02] asac: how do the scripts work "python $scriptname $bugnumber"? [14:03] or $bugurl? [14:03] or something else entirely? [14:03] Laibsch: yes. you need your firefox cookies.txt in the same directory that you run it [14:03] to be authenticated [14:03] i just wanted to start organizing my thoughts for implementation, so seeing the full picture would help :) [14:04] Laibsch: its like you first suggested ... which doesn't mean that bugnumber needs to be the only parameter for future scripts [14:04] asac: I will create my own scripts (not only for mozilla) based on yours [14:04] Thanks for sharing [14:04] fta since i have to build a wiki for the extensions-dev team why not use that once i get to it [14:05] Laibsch: its really helpful because launchpad is pretty slow ... you can decide what to do and start the python script, then go ahead with the next bug while that is running and so on [14:05] gnomefreak: where? [14:05] yes, very nice [14:05] thanks [14:05] fta: just one catch it might be a while before i hit it [14:05] asac: not yet anywhere [14:05] gnomefreak: ok. ill hook it in beneath the https://wiki.ubuntu.com/MozillaTeam/Firefox3Extensions page [14:05] for now [14:06] ok [14:06] i will get to it sometime in next day or 2 i hope [14:06] fta: ok, ill use https://wiki.ubuntu.com/MozillaTeam/Firefox3Extensions/LargeScaleMaintenance for now :) [14:07] ok [14:08] what is sloppy focus? [14:09] there are like 5 extentions pages atm the above not being one of them [14:09] for 3.0 [14:11] we should have kept iceape in Hardy repos [14:11] asac: How do I assign the bug to myself? [14:11] asac: with those scripts? [14:11] now we have upgrade bugs [14:12] asac: I guess I need to look at "import launchpadbugs.connector as Connector" [14:13] "locate launchpadbugs|grep -i assign" yielded nothing [14:13] well, of course ;-) [14:13] forgot an xargs [14:13] lots of hits all of the sudden [14:14] Laibsch: figured? [14:14] not yet [14:14] still on it [14:14] Where should I look? [14:14] As I said, I am a python illiterate [14:14] although involuntarily [14:15] I'd like to understand it better [14:15] the api used is python-launchpad-bugs [14:15] /usr/lib/python2.5/site-packages/launchpadbugs/connector.py ? [14:15] i think there are examples eithe rin the package itself or in the wiki [14:15] https://wiki.ubuntu.com/BugHelper/Dev/python-launchpad-bugs/Examples [14:16] Laibsch: https://wiki.ubuntu.com/BugHelper/Dev/python-launchpad-bugs/Bug [14:16] you just need to set .assignee on the bug to your user id [14:16] fta: is there a way you can set seamonkey in hardy to fix iceape.gutsy > seamonkey.hardy upgrade failures? [14:16] before committing [14:17] asac: Thanks [14:18] I'll give it a try now ;-) [14:18] maybe just change cranding and upload them as trasitional package [14:18] branding [14:19] bug 221764 is the new bug [14:19] Launchpad bug 221764 in displayconfig-gtk "After upgrading to Ubuntu 8.04 Screen does not work properly" [Undecided,New] https://launchpad.net/bugs/221764 [14:19] asac: http://rafb.net/p/SyS0tU78.html is my attempt at it [14:22] fta: ignore above iceapoe is in hardy waiting to get dist-upgrade files back to see where issue is caused [14:23] why do i remeber getting rid of mailnews or atleast stoped it from building bins for it [14:30] asac: Do these scripts work for you right now? [14:30] I am getting internal server errors [14:31] cookies.sqlite instead of cookies.txt? [14:33] im out for a while i need to do a few things around house. [14:33] yes, it looks like it [14:33] https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/89387 [14:33] Launchpad bug 89387 in firefox "[edgy] Firefox Crashed x86_64" [Undecided,Incomplete] [14:34] my first script-driven change to lp! [14:34] yay! [14:35] firefox tasks are for ff2, and firefox-3.0 are for ff3, right? [14:35] Laibsch: rock [14:35] fta: https://wiki.ubuntu.com/MozillaTeam/Firefox3Extensions/LargeScaleMaintenance [14:36] written in a hurry ... still working on it [14:36] not even sure if its actually safed yet. browser is still spinning .( [14:36] asac: Great stuff! [14:36] I was always uneasy about unpackaged stuff [14:36] I keep the number as low as possible [14:37] Good luck [14:37] Laibsch: ? [14:37] ah ... you refer to extesions [14:37] yes. its definitly beneificial. at least we have a chance to stability extensions that cause crashes or something [14:37] fta: ignore the stupid stuff on top [14:38] fta: just look for procedures [14:38] fta: "Setting up new extensions [14:38] " ? [14:38] what do you think? [14:39] makes sense to auto do that once the wiki info is complete? or better bootstrap the branch manually once? [14:39] bootstrapping manually could be as simple as hitten the Create branch button in launchpad [14:39] so if the auto thing sees that there is a .upstream branch it would happily start to auto import [14:44] what is mt-needretrace? [14:45] mozilla thunderbird? [14:45] mozillateam :) [14:46] Laibsch: Look at https://wiki.ubuntu.com/MozillaTeam/Bugs/Tags ... Not really using them, but some bugs still have those tags [14:46] Aha [14:46] Thanks [14:46] (At least I think we're not using them at the moment) [14:46] No problem :) [14:49] Laibsch: those procedures are more outdated. we try to figure out how to do this better [14:49] asac: Do we assign firefox 3 bugs to firefox-3.0 package? [14:51] A question if I may. You all probably know about the middle-click-clipboard in Linux. It used to be that middle-clicking anywhere on a page would take FF to a google query with the clipboard content [14:51] * fta is on the phone [14:51] Jazzva: yes, we set it won't fix for firefox 2 and add firefox-3.0 if its really a firefox-3.0 thing [14:51] That is no longer the case for me for about two years, I guess [14:51] fta: take your time :) [14:51] Is there a setting to get this nifty feature back? [14:53] https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/111339/comments/3 [14:53] Launchpad bug 111339 in firefox "Middle-Click does not scroll web site in feisty" [Undecided,Incomplete] [14:53] asac: Ok ... Though I can't do the "Won't fix" :) [14:53] Laibsch: that might just be a coincident [14:53] you can enable the feature by going to about:config [14:53] which is what I did [14:53] searching for "clip" yielded nothing [14:53] asac: Invalid maybe? [14:53] asac: what key am I looking for? [14:53] Laibsch: search for middlemouse [14:53] OK, thanks [14:56] asac: works at least partially now [14:56] When I do the middle-click paste now, it takes me to an URL [14:56] BTW, I changed middlemouse.contentLoadURL from its default of false to true [14:57] I am not being taken to a google page, but instead to www.middle.com [14:57] I guess middlemouse.contentLoadURL is not what I want [14:57] Laibsch: thats what i ment. the reason you ended up on google was luck :) [14:57] * Laibsch searches some more [14:58] Laibsch: type what you paste in the url and hit return [14:58] asac: It used to be that way all the time [14:58] the behaviour should be similar to what you get now [14:58] yes [14:58] i think there is anothe rsetting that wil lalways make you search google when you enter an invalid url [14:58] just found that out 30 seconds ago [14:58] well, the url is vald [14:58] valid [14:59] I used to be taken to the google page I would get if I had pasted the clipboard to the search box on the top right [15:00] yes, ffox 2 was a bit different in this regards [15:00] because the lcoation bar didn't have the full text search feature [15:00] asac: Sorry for persistent bugging :). Can I use Invalid status instead of Won't fix? [15:00] Jazzva: you cannot set it to wont fix? [15:00] (permission wise?) [15:00] Nope ... [15:01] ok ... triaged neither right? [15:01] Nope... [15:01] Jazzva: maybe tag it for now. ill try to get you those permissions [15:01] invalid will probably trigger new bugs because people get pissed [15:03] Ok ... Just to ask (to be sure that I'm not closing the wrong bugs). This is about firefox being grayed-out when it stops responding for a few seconds, because it's doing something. If this is a bug (which I doubt) it won't be fixed for ff2? [15:03] asac: This feature was unfortunately gone a long time ago. Since I am with all the experts now I thought I'd ask. [15:04] !info mercurial sid [15:04] mercurial (source: mercurial): Scalable distributed version control system. In component main, is optional. Version 1.0-4 (sid), package size 84 kB, installed size 340 kB [15:04] !info mercurial hardy [15:04] mercurial (source: mercurial): Scalable distributed version control system. In component universe, is optional. Version 0.9.5-3 (hardy), package size 456 kB, installed size 2264 kB [15:05] Another one I have been trying to find the answer is how to make search engine drop box not permanently change the default. I want to stick with google and only from time to time use another search option. When I do, that one becomes the default :-/ [15:05] possible to circumvent? [15:07] Jazzva: bug # on the n0ot responding? [15:07] bug 221586 [15:07] Launchpad bug 221586 in firefox-3.0 "Firefox 3 Beta 5 -- Brownout" [Undecided,Incomplete] https://launchpad.net/bugs/221586 [15:07] ty [15:07] oh that one [15:08] No prob... [15:08] damn [15:08] i havent found another like it example only happens with compiz enabled [15:08] gnomefreak: I don't think it's actually a bug ... It might be the flash content on the page that causes firefox to stop responding for a while ... It happens to me also, but I always thought that Flash is evil and causes this. [15:08] Jazzva: only with compiz? [15:09] thats what makes me still think its compiz hogging cpu/mem [15:09] gnomefreak: Yes, because compiz has the feature to grey-out the application if it's not responding. It might happen too with compiz disabled, but just not noticing, because it's not greyed-out :) [15:09] Jazzva: when i did it it was responsive [15:10] well valgrind/strace should help us pin it down [15:10] fta: added a section for "components & use-cases" to that page now [15:10] hopfully he will attach them asap [15:11] fta: most likely one script per component wuld be good [15:11] but just loading those pages doesnt cause anything to happen (he may have slow pc or he is loading other content) [15:12] gnomefreak: Ok... I'll test it with ff2 now. I suppose it will happen there, too. But, again, I think it's the pages with flash content that makes FF stop responding (at least in my expirience) [15:12] Jazzva: very true but it suprised me that i loaded them fine [15:12] fta: of course forking subprocedures to scripts can be appropriate. but that can be figured while prototyping i guess [15:12] gah... Still can't connect to archives. Still overloaded... *sighs* [15:12] i was testing flash from you tube yesterday and not one issue [15:13] Laibsch: hmm [15:13] gnomefreak: You sure ff was responsive all the time? [15:13] noone knows how to use torrents or upgrade [15:13] Laibsch: what you can do is add keyword for search engine (e.g. bmo for bugzilla) ... then you can type [15:13] "bmo your search string" into location bar to use that search engine [15:13] Jazzva: wouldnt it say not responding in title area? [15:13] Yes, I know about that [15:13] so you won't need to select the search engine at all [15:13] ah ok [15:13] gnomefreak: Could you test them with Flash turned out? [15:14] as in no flash? [15:14] asac: I am so used to strg + k, though ;-) [15:14] But I guess there is no way, then [15:14] gnomefreak: Yep... [15:14] Jazzva: ok i see what you are thinking [15:14] I'll keep using google for everything and have the keyword shortcuts for everything else [15:14] wtf is wrong with firefox [15:15] Essentially I am already doing that for a lot of the recurring things [15:15] asac: not per page but even same page ff3b5 changes size all the time :( [15:16] gnomefreak: changes size? what do you mean? [15:16] font size? [15:16] yes [15:16] dpi settings [15:16] change that its the font in LP\ [15:16] hmm you sure the urls are the same? iirc ffox remember scaling per url [15:16] just in typing of bug report [15:17] so it might even remember that you zooomed for some bug id ... and not for the other [15:17] ah maybe [15:18] cant load youtube without falsh at all [15:18] ah with right domain you can [15:18] gnomefreak: What do you mean? You can open the page :)... If it's responsive, then it's good, and we can say it's flash plugin [15:18] ah :) [15:19] tells me to install plugin [15:19] still responding [15:19] no issue at all [15:19] hmm... that's good, I suppose :) [15:20] thats not goods [15:20] At least we know (suppose) it's flash ... [15:20] maybe [15:21] I'll ask on the bugreport if someone could test that too... [15:21] forgot to restart ff after moving plugin back wher eit should be [15:21] i have no issues at all here. good thing to know is does he run them at same time and switching tabs during playback [15:21] that would be a bug i remember [15:21] :) [15:22] i keep changing videos but everything still respoding [15:22] i dont have compiz enabled though [15:23] Hmm... [15:23] hit if it doesnt respond with compiz and works fine without its not firefox bug [15:23] Sounds it might not be Flash then... [15:23] hit =hint [15:24] nothing we can do about compiz only issues that im aware of, compiz is free source let them fix it ;0 [15:24] heh :) [15:24] but travis doesnt like that [15:24] and cant give me a good reason to see it as firefox bug [15:25] but he does that with all compiz/firefox bugs [15:25] and he is one of the ubuntu maintainers of compiz and friends [15:25] well, compiz is not easy to define as the reason [15:26] firefox does lots of low level X things so there are things where firefox could be more polite [15:26] if you have bugs that travis bounced back let me know [15:26] Ill look then [15:26] yes i do [15:26] asac: bug 221586 is one [15:26] Launchpad bug 221586 in firefox-3.0 "Firefox 3 Beta 5 -- Brownout" [Undecided,Incomplete] https://launchpad.net/bugs/221586 [15:26] bug 221586 [15:26] thats one off hand [15:27] but either way without more info cant do shit with bug on either end [15:27] omg im still here [15:27] :) [15:27] :) [15:28] asac: i will even concider both to be at fault but using cpu/mem heavy isnt ffirefox since compiz uses them/hogs them [15:29] gnomefreak: i thinkits a dupe of bug 221842 which is a dupe of 215728 [15:29] Launchpad bug 221842 in firefox "System suddenly slow down, high load-avg, almost unusable" [Undecided,New] https://launchpad.net/bugs/221842 [15:29] use the latter as the master as it has the upstream bug [15:29] asac: we need top psaux output for that though [15:30] gnomefreak: for now pretty much everything that makes firefox unresponsiv ei mostly that bug [15:30] ok [15:30] marking it as [15:30] thanks [15:30] master is 215728 [15:30] https://bugs.edge.launchpad.net/ubuntu/+source/firefox/+bug/221842 is not master [15:30] Launchpad bug 221842 in firefox "System suddenly slow down, high load-avg, almost unusable" [Undecided,New] [15:30] ah [15:30] nope [15:30] hmmmm [15:31] got it [15:33] asac: i opened firefox 2 task on the master bug since it is said this happens on ff2 [15:34] gnomefreak: no thats not the case. if the guy sees anything similar on ff2 its something different [15:34] gnomefreak: the feature that is broken here is not in ffox2 [15:35] ok not sure who opens ff2 on this bug without any info on it [15:35] but its all fixed now [15:36] k great [15:36] gnomefreak: we don't need to assign mozilla-bugs anymore imo ... maybe assign only for triaged bugs [15:36] why? [15:36] incomplete bugs get auto closed if not assigned ... which is a good thing imo [15:37] after 58 days [15:37] ah ok [15:37] as long as we get the email its fine to have them unassigned imo [15:37] only triaged or really good confirmed bugs need an assignment [15:37] added master to the title of bug so we know [15:37] tb3 alpha 1 is in code freeze [15:38] yay [15:38] is it worth a crap yet? [15:38] http://ccgi.standard8.plus.com/blog/archives/10 [15:39] gnomefreak: fta has it in the archive ... I am sure we do not yet want this in the archive yet. [15:39] but maybe we want to provide previews after alpha3 or something [15:39] well, i've packaged it already, but it's not very different from tb2 (yet), except it's based on 1.9. [15:40] can we have it use its own profile by chance? so we can use it and tb2 side by side? [15:40] yet, it's not ready for xul sdk [15:40] gnomefreak: yes, i think when we decide to push this to real archives we sould do the same we did for ffox 3 when it was in alpha [15:40] but not before we know that its done. [15:40] (not sure if i contradict anything i said before) :) [15:40] i've not done that just yet, but it's easy [15:41] we cant test it and have a safe tb2 before upload than [15:41] i've done that for firefox 4 and xul 2 :) [15:41] yeah ;) [15:41] if tb3 screws up than tb2 will be as well on next start of tb2 [15:41] right [15:42] we should not use same profile if we ship this initially to the masses as a preview [15:42] if its in ppa its in the masses [15:42] or is it just fta ppa [15:43] asac: bug 221842 dup of bug 215728 ? [15:43] Launchpad bug 221842 in firefox "System suddenly slow down, high load-avg, almost unusable (dup-of: 215728)" [Undecided,New] https://launchpad.net/bugs/221842 [15:43] Launchpad bug 215728 in firefox-3.0 "[MASTER] High CPU Consumption" [Undecided,Confirmed] https://launchpad.net/bugs/215728 [15:44] Hi all.. I've some problem with function "Open with...", Everytime I choose it I have to chosse the application too... I haven't installed ubuntu-dektop meta-pkg, but if I do it everything coming right... [15:44] gnomefreak: I think that's right... gnomefreak: i thinkits a dupe of bug 221842 which is a dupe of 215728 [15:44] Launchpad bug 221842 in firefox "System suddenly slow down, high load-avg, almost unusable (dup-of: 215728)" [Undecided,New] https://launchpad.net/bugs/221842 [15:44] is there some package to install? [15:44] Launchpad bug 215728 in firefox-3.0 "[MASTER] High CPU Consumption" [Undecided,Confirmed] https://launchpad.net/bugs/215728 [15:45] l3on: try firefox-gnome-support package [15:46] sweet it seems clicking make as a dup filed in the dup for me since it was last one :) [15:47] gnomefreak: E: The package firefox-3.0-gnome-support candidates they did not install [15:47] l3on: HArdy? [15:47] yep [15:47] than install the app i said leave -3.0 off [15:48] shoudl be atleast but let me chcek [15:48] E: firefox-gnome-support not found [15:48] gnomefreak@Hardy:~$ policy firefox-3.0-gnome-support [15:48] firefox-3.0-gnome-support: Installed: 3.0~b5+nobinonly-0ubuntu3 [15:48] it is -3.0 [15:49] what was the cause of it not installing? [15:49] any other errors? [15:49] The package firefox-3.0-gnome-support not available versions, but is appointed by another [15:49] package. This means that the package is missing, has become obsolete [15:49] or is available only within another source [15:50] please run sudo apt-get -f install let me know what it wants to do before agreeing to do it [15:50] l3on: might also want to install xulrunner-1.9-gnome-support [15:50] apt-get install -f going right [15:51] what is it doing? [15:51] l3on: install firefox-gnome-support [15:51] 0 updated, 0 installed, 0 to remove and 0 not updated [15:51] otherwise you might not be properly upgraded to firefox 4 [15:51] asac: it seems to not exist [15:51] it surely does [15:51] just firefox-3.0-gnome-support doesn't [15:51] but firefox-gnome-support does [15:52] damnit === gnomefre1k is now known as gnomefreak [15:52] l3on: you sure you are running hardy? [15:52] l3on: http://paste.ubuntu.com/8050/ [15:53] l3on: try to re-update the package files anc check to have both main and universe [15:53] yeah, but its even in main [15:53] Volans: right! going fine now!... damn... I've repo down, just apt-get updating solves problem -.- [15:53] its even on CD [15:53] he didnt finish upgrade im betting [15:54] ok all fine then ;) [15:54] :-P [15:54] since no updates in hardy last few days he was in between dists [15:54] i havent looked today but isnt archive still closed [15:54] yes [15:54] i think the big copy is still going on [15:54] many people ask our forums for problems retriving packages [15:55] strange [15:55] Volans: most of it apt-get install -f will fix it [15:55] but make sure that you read it. [15:55] Yep! "Open with" works fine now! tnx :) [15:55] im betting its upgrade gutsy > hardy i havent attempted yet but will if i have to [15:56] yes I know, but for newbies a failed update or update download is an alarm ring and they go immediatly to forum for asking... :) [15:56] Volans: are they using only official packages ;) [15:56] * gnomefreak loves update bugs [15:57] Jazzva: https://edge.launchpad.net/~mozilla-extensions-dev/+members ... wanna be admin and ask the current QA contacts if they would mind to join that team [15:57] ? [15:57] and if they do add them? [15:57] asac: QA of the FF3 extension page? [15:57] asac: Umm, ok :). [15:57] let me know ill add you when i get back from smoke [15:57] or asac can eve [15:57] even\ [15:57] gnomefreak: i can't [15:57] only owners can add admins :) [15:57] oh ok i will [15:58] ok ill do it now [15:58] gnomefreak: you could also demote bluekuja in mozillateam imo ... i didn't receive any response on ping. [15:58] No need to hurry :) [15:59] jazzva can i have link to Lp page [15:59] https://launchpad.net/~jazzva [15:59] thats not good [16:00] Huh? [16:00] !seen [16:00] The seen function has not been operational for a long time. Use /msg seenserv seen nickname instead. [16:00] 17:00 [freenode] -SeenServ(SeenServ@services.)- I haven't seen bluekuja recently [16:00] no idea what that means ;) [16:00] its not letting me add jazzva [16:01] he? [16:01] too long that he don't login [16:01] it doesnt give anything in choose either [16:01] Jazzva: please apply to team and ill fix it that way [16:01] Any way to run both firefox3 and 2 at the same time? I would do it from chroot, but can't install ff2 inside, because servers are overloaded for me... [16:01] gnomefreak: you could add me? [16:01] gnomefreak: Ok [16:01] Jazzva: not that easy [16:01] asac: I can try to find information about bluekuja, he is in my community [16:01] Jazzva: you surely want different profile paths [16:02] asac: i know but his name maybe using his real name but lets see what happens [16:02] Jazzva: i'd suggest that you create a second unix user and start from there [16:02] i have to rebuild my chroots [16:02] gnomefreak: I'm an indirect member, via mozilla team [16:02] gnomefreak: just add nick "jazzva" [16:02] damnit [16:02] Jazzva: i am as well [16:02] asac: cant [16:03] gnomefreak: worked for me [16:03] hence the issue [16:03] gnomefreak: now make him an admin [16:03] And I forgot to say I can't apply ... no option for that [16:03] asac: you used sasa? [16:03] gnomefreak: no ... i just used "jazzva" [16:03] :) [16:03] jazzva wasnt working here [16:03] strange .... promotion should work now [16:03] (i hope) [16:03] umm, it's ok [16:04] yep [16:04] your admin [16:04] fine [16:04] Yay :) [16:04] Now to figure how to run ff2 from the same account (if it's possible)... :) [16:04] listes of all new extensions would be good to have handy so i can add them to that LP page [16:05] http://wiki.ubuntu.com/MozillaTeam/Firefox3Extensions ... There's the list :) [16:05] Jazzva: you want to run FF2 and FF3 at the same time? [16:06] gnomefreak: Just skip the ones which are marked as "no" in the repo column [16:06] asac, what was the problem with giving the admin rights on mt already ? I don't remember. [16:06] Volans: Yes... [16:06] Jazzva: I0m on Gutsy with FF2 default, I run FF3 using this alias: alias firefox3='firefox3 -a firefox3 -P Test3 &' [16:06] Nice, try it: installing firebug from getfirebug.com doesn't work propertly... install firebug from repo works fine! Fantastic! :D [16:06] in /etc/bash.bashrc [16:06] debian bug 476045 [16:07] Debian bug 476045 in iceowl "iceowl: FTBFS: checking whether the C++ compiler (g++-4.2 ) works... no" [Serious,Open] http://bugs.debian.org/476045 [16:07] Volans: Thanks :)... I'll try that :) [16:07] the trick is to use -a to tell to FF another name to the engine [16:07] you can adapt it to do the viceversa on hardy [16:07] asac: ping :) [16:07] Right :) [16:08] asac any plans for devs to include e17 in hardy+1 [16:08] gnomefreak: I'm one of the QA of the FF3extension wiki page... I have to do something with this new LP team? [16:09] http://blog.kagou.fr/post/2008/04/25/Un-T-shirt-special-Ubuntu-Hardy [16:09] gnomefreak: what is e17? [16:09] Volans: ill add you [16:09] enlightenment [16:09] ok thanks :) [16:09] 17 [16:09] gnomefreak: no idea ;) [16:10] Volans: you have 2 LP pages? [16:10] enlightment was always something i perceived as bogus :) [16:10] Lp ids [16:10] no only one: ~volans [16:10] volans and volans-wang? [16:10] no the -wang is not mine :) [16:10] Volans: if you could figure whats going on with bluekuja i would appreciate it much. i hope all is fine with him. [16:10] got it [16:11] you have ben added [16:11] hes gone too? [16:11] asac: ok, I tell in our dev chan hoping for some news [16:12] gnomefreak: not sure when ... but i haven't seen him for quite some time [16:12] Volans: extentsions dev channel? [16:12] longer thanin previous periods where he was absent [16:12] * gnomefreak goes away for a few months and everyone leaves :( [16:12] no gnomefreak #ubuntu-it-dev - the italian one [16:12] gnomefreak: well freddy and alex were never here for real for most of last year. [16:12] for bluekuja [16:12] ok maybe make a channel for extentions-dev? [16:13] asac true that was school afaik [16:13] gnomefreak: most painful loss for us is definitly hjmf who hoped tof find some time this year again, but couldn't [16:13] or should we use this channel for extensions [16:14] hjmf gone too? [16:14] but he was here on new years eve and did some bug work then. so i think he might return if he finds time again [16:14] good [16:14] gnomefreak: yes, he left with prenotice though [16:14] should i deactivate freddya nd alex? [16:14] gnomefreak: i think so yes. [16:14] k [16:15] gnomefreak: maybe send them a mail asking if they still mind [16:15] ok what about jen is she around? [16:15] gnomefreak: she is in and out [16:15] joining the channel from time to time still [16:15] ok [16:16] gnomefreak: i don't mind keeping inactive people in the team if they never abused their branch powers [16:16] so its not high prio to kick them out :) [16:16] true maybe ill leave it for now [16:16] asac, boom, crash in libflashplayer, despite no flashsupport, and the pa patch [16:16] i see freddy on jabber at times still [16:17] fta: with the newest patch? [16:17] fta: take libflashsupport.so away and you shoulnt crash [16:17] hmmm heron shirt is out of stock already? [16:17] what a shame [16:17] "despite no flashsupport" [16:18] fyi: Bug #221760 [16:18] Launchpad bug 221760 in firefox-3.0 "Firefox working on hard disk for 5 Minutes after start." [Undecided,New] https://launchpad.net/bugs/221760 [16:18] fta: did it work fine without pa patch? [16:18] jeroen-: what is it about that bug? [16:19] read it [16:19] it's very strange [16:19] now it is working normal again [16:19] jeroen-: it looks like dup of the other bug [16:19] within gdb, it crashes 100%. without gdb, it freezes 100%, both on the tee shirt URL from above [16:19] jeroen-: thats a dupe of bug 215728 [16:19] if its working now dont worry about it [16:19] jtv: pong [16:19] Launchpad bug 215728 in firefox-3.0 "[MASTER] High CPU Consumption" [Undecided,Confirmed] https://launchpad.net/bugs/215728 [16:19] marking it as such [16:19] done [16:19] ah ok, I didn't found that one [16:20] asac: I'm looking at the "external entities" problem in DTD files in XPI. [16:20] try remove your urlclassifier.sqlite file from proiile [16:20] jeroen-: ^^ [16:20] asac is bug 110049 been fixed? [16:20] asac: this is confusing... you're talking to two Jeroens at the same time. [16:20] asac: yes I try [16:20] jtv: you found a real-life use case? [16:20] jtv: yeah :) ... for me too ;) [16:20] asac: the Firefox template for starters! [16:21] bug 110049 [16:21] Launchpad bug 110049 in firefox "Firefox needs a better clue file" [Undecided,In progress] https://launchpad.net/bugs/110049 [16:21] asac: ^^ [16:21] jtv: url? [16:21] asac: it was this sort of thing, right? [16:21] gnomefreak: that can be closed i guess ... but ask freddy [16:22] jtv: yes right. i did this now in processor by copying those lines to the target files [16:22] jtv: what info do you need? [16:22] Volans: It worked. Thanks a lot :D [16:22] closed with comment for him to email me if still working on it [16:22] jtv: my suggestion was that it would be exported as a special entity with key "% platformDTD SYSTEM" [16:22] asac: for now I'm just trying to see if we have a problem on import. [16:23] jtv: and the po2xpi tranformer can recognize that and append a %platformDTD; accordingly [16:23] asac: the cases I see are all using chrome:// paths. [16:23] jtv: so far the import ignores that [16:23] jtv: no idea if your new import chokes though [16:23] jtv: right. you must not try to interpret those [16:23] asac: oh, there are other ones I should interpret? This is the sort of thing I'm hoping to find out. [16:23] Jazzva: don't mention it :) [16:23] jtv: the urls need to be included in the same way in the .dtd produced [16:24] Volans: Well, it will save a lot of time switching between FF2 and 3 :). [16:24] *save me [16:24] jtv: i mean ... "don't try to rsolve them during import" [16:25] also for me... :) I have also the FF1.5, every with a different profile for avoiding extension problems [16:25] jtv: we could resolve them if you want [16:25] anyone know the do-update command for gutsy > hardy upgrade? [16:25] asac: that is at least partial good news. [16:25] asac: I thought maybe I had to open the files they referred to, as well. [16:25] Volans: Right ... FF2 is using a clean profile now :). [16:25] jtv: well. this is a again a generalization that might strike us [16:26] I have do this lot of time ago for site-testing purposes ;) [16:26] jtv: but so far it worked well to just include the same expressions in the translated .dtd files as they are usually used to refer to other locale files [16:26] asac: so for now, just copy those. Got it. [16:27] jtv: right. will you use the transformer we wrote ? [16:27] to export .xpi files? [16:27] asac: I'd definitely want to look at it and probably "borrow" at least parts of it. :-) [16:28] if possible use it as it works fine now [16:28] asac: any idea how you want those external entities represented in the XPIPO file? [16:28] Comments? [16:28] jtv: as i suggested ... parse them as you would parse normal entities for now [16:29] but the key is then special: "% xyz SYSTEM" ... with value "chrome://" [16:29] as one option [16:29] asac: how would you want them represented in the XPIPO file? As comments? [16:30] jtv: at best like everything else ... but with the special key above ... and the value being the chrome://XXX url [16:30] asac: I see... hadn't occurred to me, but may work. [16:30] our parser can deal with that automatically .. only thin i would need to add would be the addition of the &XXX; after that line [16:31] asac: internally they would come into our parser as very different objects, but we can output them as if they were regular entities. [16:31] let me think ;) [16:31] and look [16:32] jtv: it would be beneficial if they would be at the same position as in the input file [16:32] jtv: e.g. the normal entities you export are exactly in the same order as imported [16:33] thats why i thought that representing them as normal entities would make most sense [16:33] asac: I think that's doable. TBH this DTD parser is all black magic to me. [16:33] ;) [16:33] jtv: reason why we need the right order is that those includes could overload other entities afaict [16:33] so if order is not honoured there might be divergence [16:34] jtv: i really think we should use the special key entity approach [16:34] jtv: that makes most sense parser wise [16:34] jtv: if its hard for you, feel free to suggests something else as i would have to extend the parser we have anyway then [16:35] asac: it's not really hard, but ugly in one way. It means we get weird messages, that the UI would then have to hide etc. [16:35] jtv: yeah. but if you don't keep the messages this might also make order more difficult [16:36] Jazzva: do you have those alias' handy i cant scroll up far enough [16:36] jtv: if you want to go for a clean solution and can keep the order then i am fine with everything [16:36] Jazzva: thanks for hte list [16:36] gnomefreak: alias firefox-2='firefox-2 -a firefox-2 -P Test &' [16:37] asac: comments probably won't work, because they'd have to be before a regular message. [16:37] that's what I'm using for ff2, and create Test profile :) [16:37] Jazzva: thanks ill try it [16:37] no problem :) [16:38] jtv: i really think that at least the initial line - #: path/to/file.dtd(% Name SYSTEM) makes sense [16:38] jtv: if you push the chrome:// uri in the msgstr or somehow differnt doesn't matter much [16:38] gnomefreak: obviously you have to restart the terminal ;) [16:38] I forgot to mention it before [16:38] Volans: yeah i have tols of alias' [16:38] asac: let me think about that... [16:38] tons [16:39] jtv: only thing i need is order + where to add them (e.g. path) + what to add (e.g. either entity name or both lines copied completely) [16:39] jtv: yeah. ill think about it too [16:39] but what i need is what i wrote two lines above :) [16:40] asac: arnnyh. Things get bad when you consider the relationship between messages in the "template" (en-US) and messages in translations. [16:40] Volans: did you have to manully make new profile? [16:41] I have do that with the other ff, the default one, yes [16:41] asac: are there any solid rules like "if translation X uses an external entity, translation Y must do the same?" [16:41] or launch it with the -ProfileManager option [16:42] isnt that what the -P does? [16:42] the -P tell FF to use that profile, -ProfileManager is to manage (create, delete) profiles [16:43] it fails to use the derfault profile because its in use [16:43] jtv: thats best practice. you could also resolve them before you parse, but that would certainly duplicate entities [16:43] or can i not run them together [16:44] jtv: thats what i say it would be a generalization. but if you look at the en-US dtd files there is a comment that says "translators must incude this line" [16:44] gnomefreak: in the opened FF create a new profile [16:44] I don't remember if you have to restart it [16:44] jtv: so if you want to create .xpis that can be resubmitted upstream its obligatory to do this [16:44] ok [16:44] with the -ProfileManager option or you can do that from the running FF, I have FF2 with default [16:45] maybe in hardy +ff3 is slightly different [16:45] asac: I see. I'll need some time to think about where to put them, schema-wise... [16:46] right [16:46] Volans: thanks it worked [16:46] good :) [16:49] asac: should i have moved ubufox to extensions team? [16:50] whom should we bug for locale start pages? [16:51] ok i got more added to extensions team will finish later today im gonna go food shopping and upgrade gutsy to hardy [16:52] asac: https://bugs.edge.launchpad.net/rosetta/+bug/221988 [16:52] Launchpad bug 221988 in rosetta "Preserve XPI external entities" [Undecided,New] [16:52] asac: does that describe it well enough? [16:54] Jazzva: https://edge.launchpad.net/~mozilla-extensions-dev should be all that have QA contacts [16:55] jtv: that line is also accompanied by a dereference statement like %entityName; [16:55] not sure if that should be in there [16:55] gnomefreak: Great :)... I'll send the e-mail to QA contacts later. Just a little more bug-browsing :) [16:55] k :) [16:56] Is it a bug hug day today? [16:56] asac: oh, that's not essential? [16:56] asac: or are you saying that something should be added? [16:57] crap i think ther eis more [16:57] gnomefreak: I'll recheck later, if you want :)... [16:57] ok please do [16:58] gnomefreak: Sure thing. Will edit if something is missed. [16:58] *missing [16:59] jtv: i updated the summary ... maybe look [16:59] hmmmmmm seems that the ones under work in firefox 3 already they dont list ubuntu pages so im guessing they were not packaged for some reason [16:59] asac: thanks! Hadn't noticed those lines because I was grepping. [16:59] Look under the repo column, it mentions if it's in the repo or not. [17:00] Better Gmail 2 works in FF3, but I still haven't packaged it... [17:00] (for example) [17:00] yeah but still doesnt list Lp link for most [17:01] gnomefreak: I have added the LP links to source package hoping this was usefully, I have do a search in LP for every package... the empty ones is because I don't have found nothing [17:01] but maybe is my fault [17:02] when i get time if not updated ill look for them but once its packaged the link hits you in face :) [17:03] Hmm, all that are in the repo (at least marked as such) have a LP link. [17:04] i dont have it open atm but if you look under already packaged or already works in ff3 they have upstream links [17:05] gnomefreak: Ah... there are some obsolete lists, which were used to make the first few lists on that page. Were you thinking of those? Only first 5 are relevant atm. [17:05] gnomefreak: what I was telling (sorry for my english) is that I have added the upstream links for all the extensions of the first table that I have found in LP searching the package name === gnomefre1k is now known as gnomefreak [17:17] asac: Whom should we bug about locale start pages? What package? [17:18] ok working on upgrade once i get it running im gone for a while [17:18] Some third party entries in your sources.list were disabled. You can re-enable them after the upgrade with the 'software-properties' tool or your package manager. [17:18] that is sweet :) [17:21] dunno if I have re-enabled mine :). I hope I did. [17:21] Jazzva: you mean the online page? or the local one? [17:21] asac: the local one. see bug 216254 [17:21] Launchpad bug 216254 in firefox "[hardy] Firefox shows wrong welcome message in Italian installation" [Undecided,New] https://launchpad.net/bugs/216254 [17:22] Jazzva: I think is a mistyping between it (italian) and lt (Lituanian) [17:23] Volans: Looks like that ... I'm just wondering which package should we assign it to :)... [17:24] but is a quite old bug, is always open and in the installation of italian locale the FF start page is really in lituanian [17:24] ? [17:25] Volans: This one was opened on 12.04... it should be a really simple fix [17:25] yes I think so [17:27] Jazzva: mdke is one of the maintainers of the ubuntu-docs package which ships this content [17:28] Ok, I'll talk to him when he comes back :) === gnomefre1k is now known as gnomefreak [17:31] ok its going im gone for a while [17:32] Have fun, gnomefreak :) [17:41] ok off for a while [17:56] People are using the Help -> Report a problem feature for reporting problems outside Firefox. Just noticed a bug about menu.lst filed against firefox. Funny ... [18:02] Jazzva: I have two friend that have just updated, the FF start page is correct: in italian [18:02] not lituanian as the bug say [18:03] Volans, ok. Waiting for the reporter's answer :) [18:47] asac, i've posted my comments on the wiki [18:50] Jazzva, ^^ [18:50] Ok... [18:53] What's the opinion on bug 217606? Not a real bug in my opinion. [18:53] Launchpad bug 217606 in firefox-3.0 "Firefox 3 SSL warning page is slightly cryptic" [Undecided,New] https://launchpad.net/bugs/217606 [18:59] Jazzva: IMHO the two distinct thing are: the text of the message and/or the fact that FF do not go to the previus page but go to the homepage [18:59] Volans: The "Get me out of here" is still present? [19:00] I don't have a full updated hardy, sorry [19:00] (until now) [19:00] Volans: No problem :) [19:01] the fact that FF go to the homepage is strange for me... maybe was a debugging link? [19:09] Volans: I don't have that option. Just to add an exception, or to go back, by clicking the "Back" button... It's the fta's 3.0pre, so it will be imported to archive and then fixed :). [19:14] Jazzva: I see the bug... in FF3 on Gutsy manually installed in /opt/ [19:14] Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.9pre) Gecko/2008042504 Minefield/3.0pre [19:14] get out of there go to http://www.mozilla.org/projects/minefield/ page [19:15] I see the button only if I click on Or you can add an exception… [19:15] and the showSecuritySection() JS function is executed [19:15] Strange... :) [19:16] FF3 just updated to nightly build [19:16] from the auto update of FF itself [19:16] I can't see it here (using: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9pre) Gecko/2008042123 Firefox/3.0pre), you can in newer version, and it is also in older version. [19:17] ahahah very strange, you have the only one in which was corrected? [19:17] Scared to update it now :) [19:17] if you want I can make a screenshot for you [19:18] I don't think there's a need ... I think I remember the screen :) [19:20] eating time for me, come back later... bye bye [19:22] fta, asac: Added few comments to LargeScaleMaintenance. [19:22] oops... didn't break the line. [19:24] It's ok now... [19:26] fta: Jazzva: thanks for the comments [19:26] those are indeed the questions that we need to sort out [19:27] Yeah... I'm confused with branches too... [19:27] fta: for the initial phase i think that upstream means an AMO release. i think there is too much uncertaintly how to figure when a release happened if we import from cvs [19:27] as most do not even set a tag [19:28] but from experience, AMO was very late for beta releases.. [19:29] yes, but that should settle once ffox is final [19:29] is version bumping relevant? [19:30] no sure if we could manually overrule autoimport in case we temporarily need a cvs snapstho [19:30] Can we do that in script, or should it be left to maintainers? [19:30] Jazzva: upstream version can be bumped by script i guess [19:31] another question now is "is that safe?", but i suppose it's not relevant, since someone will test it :) [19:31] safe? to bump upsream version? imo the whole idea of auto import is to auto bump upstream version [19:32] ok [19:33] the idea is that .upstream is auto rolling ... staging too. and after review we manually push from staging to release branches [19:34] fta: Jazzva: imo .upstream has to be maintained in a senior area as well. or at least auto-synched to a safe area [19:34] if upstream branch is gone ... everything is lost :/ [19:34] same goes for .ubuntu branches of course [19:37] so would "junior" developers maintain improve branches by editing .staging? or do we need another layer? [19:39] ok i am off for a few more hours ... cocktail night. [19:39] will be back for sure later [19:39] cu!! [20:39] fta, this might be for you bug 220325, if you were working on firefox.desktop file :) [20:39] Launchpad bug 220325 in firefox "[Hardy] Firefox is not present in "Network" section of the menu in Kubuntu" [Undecided,New] https://launchpad.net/bugs/220325 [20:40] hm, /usr/share/applications/firefox.desktop is from ff2, not ff3 [20:40] fta: I have firefox.desktop and firefox-2.desktop [20:41] oh, right [20:41] /usr/bin/firefox -> firefox-3.0 [20:46] fta@ix:~ $ grep Categories /usr/share/applications/firefo*desktop [20:46] /usr/share/applications/firefox-4.0.desktop:Categories=Application;Network; [20:46] /usr/share/applications/firefox.desktop:Categories=GTK;Network; [20:46] /usr/share/applications/firefox-minefield.desktop:Categories=Application;Network; [20:46] strange that only ff3 is wrong [20:46] i'll fix it [20:46] Ok :) [20:46] Thanks :) [20:47] ix:~/bzr/firefox-3.0.head/debian$ grep Categories *desktop [20:47] firefox-3.0-final.desktop:Categories=GTK;Network; [20:47] firefox-3.0-granparadiso.desktop:Categories=Application;Network; [20:47] firefox-3.0-minefield.desktop:Categories=Application;Network; [20:47] that's why :) [20:47] heh :) [20:51] Jazzva: what can I do for you? [20:53] mdke: Volans reported it was solved after the last update. Someone reported that firefox opened index-lt instead of index-it ubuntu start page. [20:53] I suppose it's ok now, waiting for the reporter's comment [20:53] It is bug 216254 [20:53] Launchpad bug 216254 in firefox "[hardy] Firefox shows wrong welcome message in Italian installation" [Undecided,Invalid] https://launchpad.net/bugs/216254 [20:54] Jazzva: I don't think that's ever been true. Before the last ubuntu-docs upload, using Italian resulted in an English start page; now it's working properly. I've commented on the bug [20:54] mdke: Ok, thanks :) [20:54] maybe the reporter had something strange about his firefox configuration, falling back to lithuanian [20:55] Well, it's good it's done :) [20:55] yes [20:58] http://standblog.org/blog/post/2008/04/25/Firefox-progress-in-Europe [21:01] Hmm .. seems like it will break 50% soon :) [21:01] at least in some countries [21:04] <[reed]> hey, I didn't notice campd joining here ;) [21:05] it's becoming a moz nest here ;) [21:16] http://www.osnews.com/story/19675 [21:39] asac, Jazzva: http://brainstorm.ubuntu.com/idea/7587/ [21:45] Heh ... :) [21:45] dinner and movie time, see you in two hours or so. [22:35] Jazzva: just for curiosity, you have see the previous bug after the update of FF3? [22:36] Volans: The "get me out of here" vs "add an exception" bug? [22:36] yes [22:36] I have seen it before, I don't see it now. I'll update the software, as soon as the archives are not overloaded :) [22:38] ok, if you think that I can in someway help you, free to tell me ;) [22:38] Volans, you have received a mail about moz-ext-dev team. Feel free to ignore it, since you're already a member... [22:38] ok, I've read it just now [22:39] Volans: Sure ... Feel free to join the bug report :). [22:40] to that bug or some metabug that cover all the FF bugs? [22:41] Well, I haven't seen a dupe of it ... if you have any ideas about this bug, just comment/work on it/... :) [22:45] gnomefreak: Reviewed the extensions lp page. I have sorted them alphabetically and replaced mozilla-firefox-adblock with adblock-plus, since m-f-a is a transitional pkg to a-p. [22:45] I think everything is there... [22:45] ah ok [22:45] thanks [22:45] no problem [22:46] upgrade gutsy > harddy grub is borked [22:46] not good [22:47] titleUbuntu 7.10, kernel 2.6.22-14-386 (on /dev/sda1) [22:47] never updated grub or never installed [22:47] sounds bad [22:48] let me boot to it and play a bit with it === fta_ is now known as fta [23:04] asac: there? [23:14] asac you still up? [23:15] Maybe he's drunk :P [23:15] (he went off for cocktails) [23:15] damn :( [23:15] i need his expertness [23:15] thanks [23:15] He said he'll be back... [23:16] anyone else know if you can look at real time connection info from term? [23:16] netstat? [23:16] its not real time its just prints [23:17] ngrep [23:17] i want to see when the packets are going wrong [23:17] ;) [23:17] ill install it and find out [23:17] thanks [23:17] ngrep is no so simple, but if you use ngrep from root ans some filters I think you can reach that [23:18] but nothing you can do with tamper data FF extension gnomefreak? [23:18] ok ill play with it :) [23:18] not that i know of [23:19] load auto_sev_bleh [23:19] damn [23:19] forgot the / and the .pl [23:21] not here am i? [23:22] yes you are here :) [23:22] hmmmmm [23:22] not good [23:22] After this operation, 262kB of additional disk space will be used. [23:22] Do you want to continue [Y/n]? y [23:22] 0% [Connecting to archive.ubuntu.com (91.189.92.3)] [23:22] archives overload [23:22] most likely [23:22] have been expiriencing all day and last night *sighs* [23:23] try to change in sources.list the domain [23:23] with other countries, also in synaptic [23:23] I was too lazy to do that :)... [23:23] i did but of course only gb uk and none [23:23] Jazzva: sed is yuour friend [23:23] why only those? [23:23] your* [23:23] gnomefreak: Right :)... [23:24] Volans: i live in us and us ones suck atleast have for a few years [23:24] done :) [23:24] you can try also other countries, IIRC all the mirrors have all the languages [23:25] I'm using fr now :) [23:25] works [23:25] damn it... not working [23:25] It was ppa that was working... [23:25] lol [23:25] yeah [23:26] gnomefreak: Volans: back [23:26] i could always install hardy on other part. instead of trying to fix that [23:26] asac: for bluekuja from ubuntu-it-* no news in the last months, it seems that no one have spoked to him or seen him in IRC. In LP I see last bug comment on 3rd Jan 08. Maybe DktrKranz can have more recent news but he has some problems with the internet connection and you can't found him online until monday [23:26] asac: any way to get real time connection stats [23:26] ngrep isnt installing [23:27] Volans: ok thanks. i wrote bluekuja a mail ... lets hope he replies [23:27] better [23:27] gnomefreak: what do you want to measure? [23:27] * gnomefreak would love to beable to pin this down [23:27] asac: a general over view if possible [23:27] about what? [23:27] bellsouth may want info to fix it [23:28] gnomefreak: i doubt they need info. usually telcos can measure stats from their side [23:28] ping i guess i can start with and see what they want from there [23:28] Dunno if it's synchronized good, but yu.archive is accessible :) [23:28] ok ill call them than and hope the archives relax soon [23:28] (I think it had some delayed updates before) [23:29] gnomefreak: right. just call them and tell them what your issues are [23:29] gnomefreak: are you using DSL? [23:29] asac: how are your mirrors from ubuntu repos [23:29] asac: yep [23:29] assuming your using de [23:29] gnomefreak: ok, they should be able to measure signal strength and such [23:29] gnomefreak: a friend of mine suggest also wireshark [23:29] gnomefreak: not sure ... i can try [23:30] oh wtf [23:30] asac: grrrrrr firefox removed my book marks [23:31] for 2.0 and 3 [23:31] gnomefreak: if you switch between 2 and 3 there might be issues [23:32] there is no might about it :) [23:32] yeah ...there will be issues [23:32] gnomefreak: you should use different profiles [23:32] i am [23:32] gnomefreak: Use Weave extension (on Mozilla labs), good for backing up bookmarks :) (although, it's still in alpha) [23:32] so i thought [23:32] gnomefreak: you might try to remove your XUL.mfasl file from your profile [23:32] maybe that helps [23:34] ok restarting ff [23:34] gnomefreak: i am using archive.ubuntu.com ... is quite laggy, but responds after some time [23:35] ok im using that too [23:35] thanks [23:35] takes about 1 minute to get initial response when running apt-get update [23:35] well ... more like 20 seconds i guess [23:35] i wasnt getting anything [23:35] asac: Lucky you :) [23:35] now im showing bps [23:36] gnomefreak: Try yu.archive.ubuntu.com, it worked now. And seems like it is properly mirrored [23:36] asac have a special route to the repositories ;) [23:36] 12s for update [23:36] haha :) [23:36] well ... i guess from europe it might be better ;) [23:37] its the headers when trying to install ngrep [23:37] here we go :) [23:37] fta: Jazzva: do you have brainstorm account? maybe one of you can post our firefox3extension wiki page in that firefox addons thing?` [23:38] http://brainstorm.ubuntu.com/idea/7587/ [23:38] Nope. I can make one, though [23:38] let me check if i can post something ;) [23:38] Sure ... [23:38] hmm ... need login [23:38] It would be nice if we could use LP login :) [23:38] wow ... some password worked ;) [23:38] Good :)... [23:39] i think its the same that you use on iso testing :) [23:39] iso testing? [23:40] yeah [23:40] Jazzva: never did QA? [23:40] shame on you ;) [23:40] Jazzva: http://qa.ubuntu.com/ [23:40] * Jazzva hides [23:41] we even have a mozilla qa site there ;) [23:41] And what's with the mozilla.qa.stgraber.org? :) [23:41] Jazzva: that was promoted tobe an official .ubuntu.com site now [23:41] its the same [23:41] just hosted officially [23:42] I see... [23:42] brb deal with this assholes [23:42] gnomefreak: Good luck... [23:42] http://people.ubuntu.com/~brian/reports/gt2dups/firefox-3.0.html [23:42] bugs with more than 2 dups :) [23:42] (found linked from that site) [23:44] damn thing .. didn't know that bug 212726 is really duped [23:44] Launchpad bug 212726 in firefox-3.0 "[Master] Eight (8) instances of back/forward buttons" [Low,Incomplete] https://launchpad.net/bugs/212726 [23:44] i had a private report about that [23:46] ok milestoned for hardy update [23:46] asac, could you see if this is fixed bug 161987? I searched bugzilla.mozilla, but didn't found a report... [23:46] Launchpad bug 161987 in firefox "Firefox Bus Error & Segfault on Sun Blade 100 (UltraSparc)" [Medium,In progress] https://launchpad.net/bugs/161987 [23:47] Thanks [23:47] Jazzva: thats fixed in firefox 3 [23:47] its an alignment crash [23:48] armin76 certainly knows [23:49] Jazzva: i think its mozilla bug 289394 [23:49] asac: Ok... So, FF2 tasks is "won't fix"? [23:49] Mozilla bug 289394 in XSLT "Double.cpp causes unaligned accesses" [Normal,Resolved: fixed] http://bugzilla.mozilla.org/show_bug.cgi?id=289394 [23:49] bug 303518 [23:49] mozilla bug 303518 [23:49] Mozilla bug 303518 in Startup and Profile System "cache directory setting" [Normal,Verified: duplicate] http://bugzilla.mozilla.org/show_bug.cgi?id=303518 [23:49] thank you, ubotu [23:49] hmm ok i think its attachment id ;) [23:50] Jazzva: another is mozilla bug 161826 [23:50] Mozilla bug 161826 in Layout: Fonts and Text "nsTextFrame::MeasureText()'s fast text measuring codepath crashes on RISC machines" [Critical,New] http://bugzilla.mozilla.org/show_bug.cgi?id=161826 [23:51] Thanks... I'll go through reports :) [23:51] there is a patch for firefox 2 [23:52] but david miller is really an idiot and looking at the comments dbaron even has comments [23:52] Can we use that patch for Ubuntu? [23:52] armin76: whats the state of your patch of the above bug? [23:53] Jazzva: not sure ... david miller never clarified ... just screamed: "i am not a monkey" [23:53] we could apply that patch on top and hope [23:53] Mhm... maybe to ask the reporter to test before releasing [23:53] but our patch is really bad and should be replaced with parts of what miller submitted [23:54] we already have a patch which doesn't catch all [23:54] Jazzva: wait for armin76 [23:54] he knows [23:54] Ok [23:55] Jazzva: the idea is to replace the bz161826-nsTextFrame-MeasureText-s-crash-on-RISC.patch patch with the latest miller patch [23:56] or maybe with with armin76s patch [23:56] we have to wait fo rhim