=== LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad [12:26] jordi: thanks, got it, but it seems to be only a single mail in it instead of the "bunch" === bradb & # grocery run && girl, bbl === flacoste [n=francis@modemcable207.210-200-24.mc.videotron.ca] has left #launchpad ["Bye"] === Keybuk [n=scott@quest.netsplit.com] has joined #launchpad [01:19] bradb, r=kiko on that patch. [01:30] the translations queue seems enormous, when can i expect a pot file to be accepted? === _mholthaus_ [n=mholthau@johnny33.dersbach.ch] has joined #launchpad [01:31] lbm, I think it's only enormous because edgy is being held back -- upstream imports are being processed quickly === rpedro [n=rpedro@87-196-70-189.net.novis.pt] has joined #launchpad [01:33] okay, thanks kiko [01:34] danilos: ok :P [01:38] danilos: just sent you another email with some stuff === kiko pokes jordi [01:40] danilos: do you have enough info for xaralx now? [01:41] kiko! === jsgotangco [n=jsg123@ubuntu/member/jsgotangco] has joined #launchpad [01:47] jordi, danilos: can you tell me about this "allow-universe-to-be-translated-in-Rosetta" change that happened this month? [01:49] jordi: I don't think I do; your forwarded email contained only once, and now I am stuck with a hot potato with both carlos and you on vacations ;) [01:49] kiko: nothing I know of [01:51] anyway, now really off to sleep, will try to handle all of these things (I'll simply ask the xaraxl maintainer again for all the names, or I'll wait for carlos) [02:15] kiko: cool, thanks [02:15] bradb, welcome === laszlok [n=laszlo@i216-58-51-141.cybersurf.com] has left #launchpad ["Konversation] === rpedro [n=rpedro@87-196-15-163.net.novis.pt] has joined #launchpad === mpt [n=mpt@203.118.156.188] has joined #launchpad === mpt_ [n=mpt@203.118.156.188] has joined #launchpad === stub [n=stub@ppp-58.8.8.158.revip2.asianet.co.th] has joined #launchpad === BjornT_ [n=bjorn@clt-84-32-240-183.dtiltas.lt] has joined #launchpad === mpt__ [n=mpt@203.118.156.188] has joined #launchpad === mpt [n=mpt@203.118.156.188] has joined #launchpad [05:00] Gooooooooooooooood afternoon Launchpadders! [05:09] stub, thanks for finishing the DatabaseSchemaChanges page [05:31] np === dsas [n=dean@host81-158-222-20.range81-158.btcentralplus.com] has joined #launchpad === stub [n=stub@ppp-58.8.8.158.revip2.asianet.co.th] has joined #launchpad [08:35] mpt: very good competitive analysis, great work [08:50] morning === mpt [n=mpt@203.118.156.188] has joined #launchpad === rpedro [n=rpedro@87-196-43-10.net.novis.pt] has joined #launchpad [09:07] morning ! === jamesh [n=james@window.gnome.org] has joined #launchpad === BjornT [n=bjorn@clt-84-32-240-183.dtiltas.lt] has joined #launchpad [09:15] sabdfl, thanks === baijum [n=vazhipok@210.212.228.125] has joined #launchpad === baijum [n=vazhipok@210.212.228.125] has left #launchpad [] === mpt_ [n=mpt@203.118.156.188] has joined #launchpad === ddaa [n=ddaa@nor75-18-82-241-238-155.fbx.proxad.net] has joined #launchpad [09:56] morning ddaa [09:57] Mornig jamesh [09:57] mpool: morning [09:58] jamesh: I think you should not start checking whether the token looks like a plausible branch URL because it breaks DNRY [09:58] DNRY? [09:58] Do Not Repeat Yourself === malcc [n=malcolm@host86-134-233-12.range86-134.btcentralplus.com] has joined #launchpad [09:59] are you suggesting to just look it up as a unique name and fall back to look up as a URL otherwise? [09:59] (or vice versa? [10:00] Actually... [10:00] Mh... [10:00] I thought doinf what you just said, but it causes a relatively costly failure when the token in invalid [10:02] But yes, getByUniqueName followed by getByUrl is cheap when it works. [10:02] And it should remain correct forever even if we start supporting things like souk:// [10:03] if getByUrl() failed early for things that didn't look like a URL, it would be pretty cheap to put the URL check first [10:05] I think a bit difficult to define, but there might be a way of saying "acceptable URL" in a way that prevents duplication [10:05] well [10:06] there is a validator for the IBranch.url field [10:06] if we're looking up the registered URL of a branch, it should validate against that, right? [10:06] Right. === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad [10:08] Well, this shortcut is not strictly necessary to getByUrl [10:08] it only serves the purpose of making it cheap to getByToken in both success and failure cases [10:09] Maybe you should actually add Branch.getByToken? [10:09] And say that we care to make that as cheap as possible. [10:10] getTermByToken() isn't called that much, iirc [10:11] it's about locality and context [10:11] not code reuse [10:11] Anyway, I really just care about DNRY [10:12] otherwise, what you do sounds just fine [10:12] Oh right, you mean "not that much, so it's not performance critical" [10:13] It might become more critical when we do the Ajax stuff SteveA wants [10:14] But that may well be YAGNI [10:15] jamesh: I want to have a preimpl voice with you today about the "put cscvs source trees on a central server" thing (importd-source-repo) today [10:15] ddaa: gar. I left my headset at the hotel. [10:16] or maybe I should ask lifeless, he's got the required expertise [10:16] but maybe not the time [10:16] You can ask SteveA or BjornT if any is close by. [10:17] But first, I need to find mpool about planning [10:20] ddaa: looking at the code, getByUniqueName() is very cheap if the token does not begin with "~". In the non-matching case, we'd usually just do one lookup by Branch.url [10:20] which should be pretty cheap, and doesn't require any special knowledge of the supported branch URL schemes [10:20] how does that sound? [10:20] It's expensive to do that if the name looks like a valid unique but has the wrong values [10:21] Then you end up doing one query in getByUniqueName, and one in getByUrl [10:22] sure, but getByUniqueName() only does its thing if the token looks like "~xxx/xxx/xxx" [10:22] URLs don't match that pattern, so getByUniqueName() exits early after the regexp match fails [10:22] It would make sense to use the Branch.url validator to guard the Branch.selectOneBy(url=url), then either way is at most one query in all cases. [10:23] ddaa: ? [10:23] ddaa: I have 7 minutes [10:24] ddaa: to answer your question about the symlink test I suggested jamesh write its a smoke-test [10:24] symlinks are a feature, we should ensure they work end to end, even if we dont test them for every implementation end to end [10:24] previously there were no tests that tested symlinks end to end [10:24] Specifically, what feature did you intend to get tested? [10:24] That you can import something that creates a symlink and that you find it in a fresh checkout of the import? [10:25] that a symlink in a svn tree could be imported to a symlink supporting backend [10:25] lifeless: as you already pointed out to me "smoke [10:25] test" is a bit vague a term :) [10:25] the idea of a smoke test is that if it fails you know theres smoke... === BjornT [n=bjorn@clt-84-32-240-183.dtiltas.lt] has joined #launchpad [10:25] and where theres some there is fire [10:25] lifeless: ack that, I'll trim down the end-to-end test next time I get close to that code [10:26] anyhow, the point is there are 2 interfaces in use: ISourceBranch and ITargetBranch :) [10:26] Absolutely. [10:27] this was the only test that tested a symlink could start in ISourceBranch and end in ITargetBranch. Other tests are needed to check for corners etc within each interface implementation [10:27] Unfortunately, that kind of cleanup is somewhere down in the "might do it one day if I'm bored" section of my todo list. [10:27] so what can I help yoi with today? [10:28] It's a bit painful to do a lot of typing with that keyboard. Essentially, I need voice preimpl with you or jamesh about importd uploading and retrieving cscvs source trees from a central server, [10:29] That will help many things in the end. [10:29] ok [10:29] take care of your hand [10:29] talk with jamesh [10:29] I will email you cc'd launcpad with a brane dump tomorrow [10:29] about? [10:30] we've talked copying the trees around before [10:30] ddaa: I'll go up to the hotel now and get my headset. Be back soon. [10:30] I have to go now - birthday dinner with Lynne [10:30] cya [10:30] meh [10:30] How do I get the width and height of a window? [10:30] I thought xprop did that, but it doesn't seem to [10:30] byby [10:34] ah, xwininfo === Kylekf [n=Kyle@202.171.49.39] has joined #launchpad === RicardoPerez [n=A@84-122-252-91.onocable.ono.com] has joined #launchpad [10:50] hi. is it a rosetta-specific channel? [10:51] ddaa: back [10:52] Okay, no mpool in sight. I'll set up my voip. [10:52] do we try canonical voip, or skype? === danilos [n=danilo@82.117.204.69] has joined #launchpad [10:53] canonical voip worked okay for me last time I tried [10:53] and I haven't use skype in a while [10:53] so, canonical voip, please [10:54] sorry.... by the way.... what is "canonical voip"? [10:55] corporate asterix server [10:55] oh, ok... I wonder if it's public or private... [10:55] corporate = private [10:56] ok, ok, thanks a lot [10:57] RicardoPerez: this is the right channel for asking about rosetta. [10:57] mdke: oh, great. I think there's an error in the langpacks generation [10:58] mdke: I think the langpacks generation procedure is using obsolete Rosetta's templates === mpt__ [n=mpt@203.118.156.188] has joined #launchpad [10:59] maybe pitti in #ubuntu-devel can help you about that [10:59] ddaa: I hit your voice mail, but the voice quality was pretty bad [10:59] mdke: ok, I'll try it. thanks a lot [11:00] ddaa: are you set up yet? [11:00] Mostly [11:00] Ready [11:00] I'll dial you then [11:01] way too much cutoff [11:01] I couldn't make out what you were saying either [11:01] f === doko_ [n=doko@dslb-088-073-098-222.pools.arcor-ip.net] has joined #launchpad [11:02] Sounds like ekiga could use the ability to add some redundancy to the streams [11:02] I'll set up skype [11:11] Could someone tell me how to remove bug watches? The ones displayed in the left hand panel. [11:13] dsas: I don't think you can. [11:14] oh, should I file a bug? [11:14] jamesh: I'm set up [11:15] david.allouche [11:15] dsas: maybe there is one already. But also, BjornT or bradb may know about it. [11:15] dsas: what watch do you want to remove? [11:15] https://launchpad.net/products/epiphany/+bug/50973 I want to keep the gnome-bugs 349767 bug and drop the others [11:15] Malone bug 50973 in epiphany "Tooltips linger annoying after changing desktops." [Unknown,Unknown] [11:16] (I typed the wrong bug number in by mistake, then mistakenly filed the proper bug number against the wrong tracker) [11:17] dsas: bug 3140 [11:17] Malone bug 3140 in malone "Bug watches can't be removed" [Medium,Confirmed] http://launchpad.net/bugs/3140 [11:17] BjornT: thanks [11:31] ddaa: should I try calling you again on ekiga yet? [11:32] I'm connected on v.c.c === ddaa goes out to prepare the bazaar meeting [11:38] Does the product name in a bug task have to match the upstream product name if the product is tracked in an upstream bugzilla? [11:39] for example the epiphany web browser is epiphany-browser on ubuntu but epiphany upstream, there is also an unrelated epiphany ubuntu package. [11:40] e.g. in bug 29893 [11:40] Malone bug 29893 in epiphany "Epiphany only supports HTTP Local bookmarks" [Unknown,Unconfirmed] http://launchpad.net/bugs/29893 [11:42] dsas, no, because different distributions might package the same product under different names [11:43] So the product name couldn't possibly be the same as all the package names :-) [11:44] Sorry, I didn't ask properly. Does the product name in an upstream bug task, have to match the upstream bugzillas product name. [11:46] dsas: no. [11:46] dsas: they should hopefully refer to the same software though :) [11:48] how do you differentiate if two upstream products have the same name? All the bugs in https://launchpad.net/products/epiphany/+bugs belong to the web browser, but where would epiphany-the-game product bugs go? [11:49] dsas: well, they'd need different names in Launchpad [11:49] similar to how they need different package names inside a distribution [11:50] what they call themselves elsewhere is not a concern here [11:50] (although it is nice if the names match, so people recognise the products in LP) [11:50] jamesh: Ok, fair enough. Just wondering what would happen. [11:51] should I file a bug if a bug watch hasn't updated? The watch was created in February [11:52] what is it a watch on? [11:52] epiphany in gnome bugzilla, bug 29893 [11:52] Malone bug 29893 in epiphany "Epiphany only supports HTTP Local bookmarks" [Unknown,Unconfirmed] http://launchpad.net/bugs/29893 [11:53] we've got a bug report open on this issue [11:53] https://launchpad.net/products/malone/+bug/54898 [11:53] Malone bug 54898 in malone "Multiple bug watches pointing to the same remote bug aren't updated" [Medium,In progress] [11:54] there are two bugs watching that remote bug: https://launchpad.net/malone/bugtrackers/gnome-bugs/330679 [11:56] jamesh: Ok, thanks for all the explanations. [11:56] once that bug gets fixed, your bug watch should update [12:06] ddaa: hi [12:06] mpool: hello [12:06] ddaa: do we have a meeting now, or soon? [12:07] welcome distraction, I was getting bored of preparing the meeting [12:07] Bazaar meeting in 52 minutes [12:07] ok [12:07] mpool: you wanted to talk about bazaar planning [12:07] yes, i did [12:07] maybe we should have a call before the meeting [12:08] yep, do you have skype? [12:08] i was going to just call steve briefly - how about at x:35? === BjornT [n=bjorn@clt-84-32-240-183.dtiltas.lt] has joined #launchpad [12:09] I'd like it better in a couple of minutes [12:09] as a break from meeting prep [12:09] ok [12:09] so on what technology? [12:09] Skype is fine [12:09] brb [12:10] mpool: I'm ready on skype now [12:11] SteveA: can i talk to david first and you in 15 minutes? [12:11] I'd rather talk with you now [12:11] as I want to get this off my mental stack, and get on with other stuff [12:11] ddaa: ok, steve first === quail [n=quail@unaffiliated/quaillinux/x-000001] has joined #launchpad === glatzor [n=sebi@ppp-82-135-12-42.dynamic.mnet-online.de] has joined #launchpad === imbrandon [n=brandon@ubuntu/member/pdpc.active.imbrandon] has joined #launchpad === jamesh [n=james@window.gnome.org] has joined #launchpad === Kamion [n=cjwatson@83-216-156-196.colinw664.adsl.metronet.co.uk] has joined #launchpad [12:57] mpool: sorry, was having lunch [12:57] lifeless: jamesh: mpool: SteveA: meeting in 2 mins [01:00] ddaa: thanks, where? [01:00] #launchpad-meeting === mpt_ [n=mpt@203.118.156.188] has joined #launchpad === danilos [n=danilo@82.117.204.69] has joined #launchpad === LarstiQ [n=larstiq@62.216.7.157] has joined #launchpad === matsubara [n=matsubar@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === mpt [n=mpt@203.118.156.188] has joined #launchpad === Kamion [n=cjwatson@83-216-156-196.colinw664.adsl.metronet.co.uk] has left #launchpad [] === stub [n=stub@ppp-58.8.8.158.revip2.asianet.co.th] has joined #launchpad === salgado [n=salgado@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === flacoste [n=francis@modemcable207.210-200-24.mc.videotron.ca] has joined #launchpad [01:59] (Twenty packets and counting... [01:59] FIN minus fifteen seconds, sequence is okay) [01:59] Bot malcc raised MeetingNotStartedException at line 1645 === Kinnison raised his glass at Kronenberg 1664 [02:00] it's that time again [02:00] here [02:00] s/again/of year/ [02:00] me [02:00] Welcome to this week's Launchpad meeting [02:00] here [02:00] moo [02:00] moo [02:01] me [02:01] here [02:01] me [02:01] excusing those suffering from premature verbal ejaculations... [02:01] who's here today? [02:01] Me [02:01] me [02:01] me [02:01] me [02:01] I'm not [02:01] Oh hang on [02:01] I am [02:01] It's easier for me if you just say "me", kthx :-) [02:01] me [02:01] me === Kinnison snerks === mpt hugs Kinnison [02:01] me [02:01] [02:01] == Agenda == [02:01] * Roll call [02:01] * Agenda [02:01] * Next meeting [02:01] * Activity reports [02:01] * Actions from last meeting [02:01] me [02:01] me [02:01] * Oops report (Matsubara) [02:01] * Bug report report (mpt) [02:01] * Production and staging (Stuart) [02:01] * Launchpad 1.0 status reports [02:02] * Sysadmin requests [02:02] ---- [02:02] * Using email in a distributed team (Steve, Kiko) [02:02] * Python demo status update (James H) [02:02] * Tagging Launchpad bugs (bradb) [02:02] * (other items) === ..[topic/#launchpad:SteveA] : Developer meeting: Thu 10 Aug, 1200UTC (wiki:MeetingAgenda) | launchpad-users@lists.canonical.com (wiki:MailingLists) | Channel logs: http://tinyurl.com/72w39 [02:02] ---- [02:02] * Keep, Bag, Change [02:02] * Three sentences [02:02] next meeting, same time next week [02:02] * Activity reports [02:02] behind [02:02] up to date [02:02] Up to date [02:02] Who's up to date, and who is behind? [02:02] up to date [02:02] behind [02:02] Up to date [02:02] up to date [02:02] up to date [02:02] up to date [02:02] behind [02:02] up to date [02:02] Guilty of summarising [02:02] (this week missing) [02:02] behind [02:02] not up to date [02:03] up to date === stub [n=stub@ppp-58.8.3.37.revip2.asianet.co.th] has joined #launchpad [02:03] james and bjorn are sprinting [02:03] in a mini sprint in vilnius [02:04] so it's okay that they're behind === jsgotangco [n=jsg123@ubuntu/member/jsgotangco] has joined #launchpad [02:04] well done to mpt, stub, bradb, matsubara, malcc [02:04] flacoste, salgado, ddaa [02:04] and kiko [02:04] thanks for remembering me steve [02:04] * Actions from last meeting [02:04] * SteveA to go through RT issues and chase elmo if appropriate [02:05] I did that [02:05] cool [02:05] thanks stub [02:05] * Oops report (Matsubara) [02:05] Today's oops report is about bugs 30602, 44860, 51750, 1558 [02:05] Malone bug 30602 in rosetta "ERROR IN: https://launchpad.net/distros/ubuntu/dapper/+source/vlc/+pots/vlc/tl/+translate" [Medium,Confirmed] http://launchpad.net/bugs/30602 [02:05] Malone bug 44860 in rosetta "Crash when we try to pass a query string to a POFile that doesn't exist yet." [High,In progress] http://launchpad.net/bugs/44860 [02:05] Malone bug 51750 in soyuz "Somehow got two buildqueue records with same builder." [High,In progress] http://launchpad.net/bugs/51750 [02:05] Malone bug 1558 in rosetta "Export request form should check for uniqueness of entry" [Medium,Confirmed] http://launchpad.net/bugs/1558 [02:05] danilos has two oops bugs on his plate. 30602 which is the top time out oops, so please prioritize it. And 44860 that is waiting for reply. [02:05] cc last time I checked bug 51750 was almost ready. What happened to dogfood tests? [02:05] Malone bug 51750 in soyuz "Somehow got two buildqueue records with same builder." [High,In progress] http://launchpad.net/bugs/51750 [02:06] malcc: ^^ [02:06] kiko: shall we put 30602 up to a high importance? [02:06] matsubara: I haven't started on 30602 yet, will put more time into it === rpedro [n=rpedro@87-196-101-195.net.novis.pt] has joined #launchpad [02:06] matsubara: Just got drowned in other things [02:06] 1558 is assigned to carlos but I'll take over if nobody's complain. [02:06] matsubara: 44860 should be ready for pqm-submit today [02:06] here and up to date [02:06] thanks danilos [02:06] SteveA, it's not trivial to fix unfortunately. it requires more deep thinking -- maybe danilo can get to it, but I suspect he'll drown in codepaths [02:06] matsubara: carlos should be back shortly, but I don't think he'd complain. [02:07] malcc: any chance of prioritizing it? [02:07] kiko: does that have a bearing on the importance? [02:07] malcc: I've seen most of the people affected by that bug are distro team guys [02:07] matsubara: I'll try, but you know what they say, once you've got more than eight priorities you've not really got any priorities [02:07] SteveA, I guess not. [02:07] matsubara, bump 30602 up in importance [02:07] kiko: I can try to handle it, and I'll be asking for lots of help, if that's fine with you guys :) [02:08] kiko: who should work on 30602? you? [02:08] kiko: ok [02:08] malcc: priorit droite [02:08] SteveA, I am going to fix +translations first [02:08] how about kiko and danilos having a call about 30602 to talk through the code involved? [02:09] danilos, it involves rearchitecting, I suspect. I'm happy to guide you through it, but I need to do some research first. I guess we can research together -- have you ever used an OOPS log for perf work before? === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad [02:09] malcc: well, if the distro team is ok with that page crashing a lot I have no further complaints. :) [02:09] kiko, danilos: rest of arrangements out of band please [02:09] love that way of closing bugs [02:09] matsubara: they are not :( [02:10] kiko: sure; SteveA: ok, will do that (except that I need my VoIP details) [02:10] danilos: be sure to mention the RT number later in this meeting [02:10] SteveA: don't worry, it's ready [02:10] matsubara: I lost track. any issues still not dealt with? [02:11] kiko: can you help malcc re-prioritize some stuff so he can deal with 51750? [02:11] danilos, we can try IRC first if you like. anyway [02:11] I'm done thanks SteveA [02:11] kiko: np [02:11] matsubara, malcc's problem is that he has a deadline for more important stuff. I suggest cprov look at it, or someone else [02:11] thank you matsubara. that section of the meeting went smoothly. [02:12] we have an error: Launchpad could not mirror this branch at 2006-08-03 14:00:03 CEST. The error was: Not a branch: /srv/sm-ng/push-branches/00/00/06/81/.bzr/branch/ [02:12] I'd be happy to try and guide someone else into fixing it.. [02:12] https://launchpad.net/people/harmony-dev/+branch/harmony/mailbox [02:12] * Bug report report (mpt) [02:12] Today's oldest most important open bugs are: [02:12] * Bug 1294 (Filing a private bug requires the ability to Cc the maintainer), Critical, Fix Committed, bradb [02:12] bradb, have you verified it on production? If so, please mark it so [02:12] Malone bug 1294 in malone "Filing a private bug requires the ability to Cc the maintainer" [Critical,Fix committed] http://launchpad.net/bugs/1294 [02:12] lucasvo: can you wait til after the meeting? [02:12] * Bug #2497 (/people/*/+translations times out for prolific translators), Critical, Confirmed, kiko [02:12] kiko? [02:12] kiko: I'll nag you then so we can solve that. :) [02:12] Malone bug 2497 in rosetta "/people/*/+translations times out for prolific translators" [Critical,Confirmed] http://launchpad.net/bugs/2497 === bradb marks it so [02:12] lucasvo, ddaa: could you guys talk about this on #launchpad-meeting ? [02:12] * Bug #31038 (private), Critical, In Progress, cprov [02:12] * Bug #31609 (buildd maintainers need to be informed of build failures), Critical, In Progress, cprov [02:12] Malone bug 31609 in soyuz "buildd maintainers need to be informed of build failures" [Critical,In progress] http://launchpad.net/bugs/31609 [02:12] cprov, will you get one of those fixed over the coming week? [02:12] sry, didn't want to interrupt the meeting [02:12] kiko: I've delivered 5 critical fixes and I want to be sure they will be rolled out next week befor starting anything else, I think I'm overloaded as well [02:12] * Bug #35965 (exceptions in process-upload not communicated to uploader), Critical, Confirmed, malcc [02:12] mpt, yes, I know. I'll probably do so nooooow [02:12] malcc? [02:12] Malone bug 35965 in soyuz "exceptions in process-upload not communicated to uploader" [Critical,Confirmed] http://launchpad.net/bugs/35965 [02:13] that's one of the bugs cprov is fixing mpt! [02:13] oh good [02:13] reassign it then :-) [02:13] cprov, yeah. matsubara, either you and I try fixing it, or wait. [02:13] * Bug #37866 (+editstatus should not accept binary package as source package), Critical, Fix Committed, kiko [02:13] kiko, have you verified it on production? If so, please mark it so [02:13] Malone bug 37866 in malone "+editstatus should not accept binary package as source package" [Critical,Fix committed] http://launchpad.net/bugs/37866 [02:13] mpt: yes, as soon as I can get the code reviewed ;) [02:13] * I'll skip bug 31308, so lifeless doesn't yell at me [02:13] Malone bug 31308 in launchpad-bazaar "Cannot set branch associated to a product series" [Critical,Confirmed] http://launchpad.net/bugs/31308 [02:13] mpt, well.. ok. [02:13] mpt: 35965 is behind process-upload-tidy, which I've nearly finished the review response for, inbetween handover and fixing other critical bugs [02:14] great [02:14] and lastly [02:14] * Bug #48860 ("Also notified" makes difficult to unsubscribe), Confirmed, Critical, not assigned [02:14] Who should take 48860? bradb? [02:14] Malone bug 48860 in malone ""Also notified" makes difficult to unsubscribe" [Critical,Confirmed] http://launchpad.net/bugs/48860 [02:14] mpt, yes. [02:14] woo [02:15] mpt: how many other critical bugs do we have? [02:15] 20 in total [02:15] you could start this section by saying "today, we'll look at the oldest N of M critical bugs" [02:15] ok, will do. [02:16] But for this week, I'm done. [02:16] all done? [02:16] great [02:16] thanks mpt. [02:16] * Production and staging (Stuart) [02:16] bradb, this is /not/ about ressurecting ignore subscriptions! :-P [02:16] Nothing thrilling is happening with production at the moment. It is unlikely there will be an update next week as I will be sprinting in London unless there is something urgent and I'm given a window to do the update. [02:16] The next update after the sprint I'd like to take the system down for 2.5 hours while I do a complete dump/restore as this is the fastest way for me to rebuild indexes and completely vacuum the tables - [02:16] this should speed things up as the db will be shrunk considerably making everything fit in RAM again. [02:16] Staging database is being rebuilt daily, however the code updates are currently only happening when myself or Carlos runs them manually. [02:16] This will be the case until RT 603 is dealt with (there is a quick fix on this issue, so this shouldn't be a problem). [02:16] stub, I'm fine with no rollout next week, fwiw [02:17] stub: in the next full rollout (whenever that is) there will be more vhosting changes/fixes. [02:17] we'll be changing from blueprint.launchpad.net to features.launchpad.net [02:17] cprov mentioned stuff needing to go out - no idea if there are db patches to go with it. [02:17] as well as enabling features.launchpad.net on production [02:17] stub: no db patches, only code [02:17] blueprint.launchpad.net isn't active yet anyway. [02:18] so we should make sure these are tested on staging well, once the changes land there [02:18] Features? [02:18] We still need to turn the Host: headers on - last time we gave it a go it failed horribly. [02:18] matsubara: that's something for you to look at perhaps [02:18] stub: not sure if we are allowed to do only drescher rollout, though. what do you think ? [02:18] cprov: Sure. [02:18] stub: I've hit a testing problem with the bugfix which blocked drescher rollout last week, after the meeting can I grab you for some help? Basically my doctest doesn't work since I moved it and I'm stuck [02:18] stub: is there a bug to track the problems turning the Host header on? [02:18] stub: and also, why did it fail on production but not on staging. that is worrisome [02:18] SteveA: I think the RT issue is still open [02:19] stub: which RT issue? [02:20] Can't find it. Might be my imagination. [02:20] as this is a launchpad bug primarily, I think we should have a launchpad bug to track this [02:20] stub: would you dump what you know into a bug please? [02:20] SteveA: RT 13138 [02:20] SteveA, you're alve [02:21] aha [02:21] ok [02:21] about the 2.5 hour downtime [02:22] what's the procedure for arranging that? [02:22] I need to clear it with mdz basically [02:23] Which involves me knowing when it will happen, so I haven't done that yet. [02:23] I think for such a downtime, an early announcement on one of the canonical lists would be good [02:23] we haven't had such a downtime for a while [02:23] why is staging down currently, stub? [02:23] and it's possible that other things are going on that we don't know about [02:23] that would be badly affected by the downtime [02:23] kiko: It is down? [02:23] yes. [02:24] so, send a message to the warthogs or all hands lists announcing the downtime, and saying you'll be consulting with mdz for distro needs [02:24] can't we get a notification or something when it's down? [02:24] but for people not on the distro team to tell you if there will be other things to consider [02:24] flacoste: should we sent an announcement to launchpad-users as well? [02:24] we should do that once the date is set [02:25] SteveA: We have a procedure for this, which I will follow when I know roughly when it will happen. [02:25] but we should get feedback from certain places in order to set the date [02:25] stub: yes. [02:25] It is on the wiki as a spec [02:25] stub: my point is that the spec may be out of touch with reality, so a message reminding people of what's going to happen would help [02:25] then any changes would go into the spec [02:25] ok [02:25] also, that spec might need to be moved to help.launchpad.net [02:25] thanks for the production status report, stub [02:26] * Launchpad 1.0 status reports [02:26] kiko: I'd like to give this item to you [02:26] well, sure. [02:26] I can comment on Rosetta 1.0 goals and progress, if needed [02:26] this week can be an introduction [02:26] we'll be doing a weekly catch-up with people on their 1.0 goals and progress [02:26] to say what we'll do in subsequent weeks [02:27] this is a way of us touching base as a group and seeing who the most doomed engineer of the week is [02:27] ha (I used the same "goals and progress" phrase as kiko ;) [02:27] danilos, shh people will think we are automatons [02:27] ;) [02:28] SteveA, we /could/ do something like 3 sentences where people pasted in specs and statuses. what do you think? [02:28] OT: danilos, btw, you should subscribe to launchpad-reviews [02:28] kiko: yep. let's discuss the format later and try it next week. [02:28] we'll mail out something early next week [02:28] maybe using things from specs, such as "good progress", "blocked", etc. [02:28] okay. thanks for listening. [02:28] so people can be prepared [02:28] danilos, I was thinking exactly that [02:28] kiko: sure, thanks for reminding [02:29] I'm going to move on [02:29] thanks kiko [02:29] * Sysadmin requests [02:30] RT 603 [02:30] 4 [02:30] #14579 (VoIP), stub to give me details for database access via sodium [02:30] what's 603 about? [02:30] Getting staging auto updates working again. [02:30] The quick fix is to mirror rocketfuel-built onto asuka. [02:31] danilos: ok. Will do that after the meeting. [02:31] ok [02:31] stub: thanks [02:31] 4 [02:31] 3 [02:31] 2 [02:31] 1 [02:31] done [02:31] stub: can we have access to the dogfood postgres logs ? i mean, as local launchpad user. [02:31] * Using email in a distributed team (Steve, Kiko) [02:31] this is just a quick item [02:31] to remind people [02:32] use email. [02:32] mail the list in preference to individuals. [02:32] cprov: Maybe the admins can do that if you RT. I don't think I can fix that. [02:32] stub: okay, tks [02:32] don't lose days because you were waiting for somebody on IRC [02:32] always reply to email asking you to do something or about something. reply promptly, even if the reply is [02:32] "I'll look at this next week." [02:32] and that somebody is asleep, on holiday, sick [02:32] so that the sender knows you're aware of it [02:32] send them email, and CC: the list [02:32] that is all. [02:33] that is indeed. [02:33] * Python demo status update (James H) [02:33] thanks guys, always good to get such reminders [02:33] basically, we have a demo at demo.launchpad.net [02:33] and kiko and james are corresponding with the python guys [02:34] and mpt is adding cropped screenshots to the Malone features doc on the wiki [02:34] ah, very nice [02:34] https://help.launchpad.net/MaloneHighlights [02:34] which mark wrote last weekend [02:34] so we can mail the python guys pointing them at the highlights with screenshots tommorrowish [02:34] who will send that email? [02:34] I will look at a random sample of bugs from the import now that we have a way of comparing with the original bug. [02:34] mpt should tell the list + that person when the screenshots are done and included [02:34] SteveA, why don't you send that email? [02:35] you have a good standing with the python people [02:35] I'm not on the lists, and I'm going to be really really busy tomorrow [02:35] kiko and james have already be corresponding [02:35] so I want either kiko or james to send this followup [02:35] okay. I am on the lists.. I guess I could. where am I supposed to write? python-dev? infrastructure? CC infrastructure? [02:35] whereever the discussion has been happening [02:35] infrastructure, [02:35] certainly the infrastructure guys [02:36] but the list too, if it is appropriate [02:36] so, mpt, please tell kiko cc list when it is done [02:36] should I reply to an existing post or start a new thread? [02:36] * Tagging Launchpad bugs (bradb) [02:36] We should start tagging our bugs, to make it easier to find, search through, and deal with groups of bugs that interest us. [02:36] I've written a mini-proposal on some standard tags I think we'd all benefit from: https://help.launchpad.net/TaggingLaunchpadBugs. This document also notes the procedure for proposing new tags. [02:36] I'd like to get the team's feedback on using the tags I've proposed. [02:36] (That is all.) [02:36] SteveA, roger that [02:37] ok [02:37] bradb, SteveA: without linkifying individual tags in the pages.. it's not very convenient to use them. [02:37] so, everyone look at https://help.launchpad.net/TaggingLaunchpadBugs [02:37] bradb: I'd propose ui instead of usability (it's much easier to type) [02:37] let's start with... [02:37] * oops [02:37] We're already using a bunch of Soyuz tags, do we need to propose these? [02:38] matsubara, are you in favour of the tag, plus the meaning brad proposed? [02:38] malcc: they should be documented on the wiki in a similar way [02:38] Does that mean the oops milestones should be removed? [02:38] we already have the oops milestone? [02:38] yes SteveA. but what happens to the oops milestone? [02:38] mpt: in general no, but yes when we want to use tags instead [02:38] i think we should migrate the data to a keyword, yeah [02:39] mpt: so, "oops" tracking is a better fit for tags than milestones [02:39] I meant just the oops milestones, not milestones in general [02:39] ActionItem: me, cprov, to document Soyuz bug tags [02:39] do we have more than the one OOPS milestone? [02:39] matsubara, mpt: i'd get rid of the oops milestone. [02:39] There's one for each product, iirc [02:40] malcc: please do so on the same page as the one brad's ones are on, so we have them all in one place [02:40] I'd propose an timeout tag too === ddaa will certainly have a use for some bazaar specific tags without a use to other launchpad sub-projects [02:40] SteveA: Roger [02:40] malcc: draft added in https://launchpad.canonical.com/SoyuzCatchUp [02:40] ok. [02:40] so, anything other than the oops tag, to start with? [02:40] argh, i'm being restbreaked [02:40] I propose we start with: oops, ui, timeout [02:40] and then see how that goes [02:41] a countdown of 5 for extreme dissent: [02:41] 4 [02:41] 3 [02:41] 2 [02:41] 1 [02:41] ok [02:41] hum, shall we also get project-specific ones later (eg. should we propose them)? [02:41] proposing sounds good [02:41] mpt and brad: please work together on this === bradb updated the spec with the approved tags [02:42] random strawman idea: [02:42] should we include counts next to the tags when displaying them in the bug page [02:42] Me adds some project-specific tags he plans to use [02:42] moving along... [02:42] kiko: nice idea. discuss after meeting === kiko :-P [02:42] kiko, you mean the Bugs page rather than the bug page, perhaps [02:42] I'm skipping KBC this week [02:42] ? [02:42] * Three sentences [02:42] BRING THE NOISE [02:42] mpt, no, on the bug page. [02:42] DONE: bugfixing, sprint travel arrangements, issue tracker comparison [02:42] TODO: MaloneHighlights, local bzr repo, more WinIE fixes, other fixes [02:42] BLOCKED: Minor problem with a toolbarless Internet Explorer on Wine [02:43] DONE: Finished take 2 of KarmaContext (top contributors), landed some shipit changes, fixed a few random bugs, added an overall status to mirrors and reviewed some code [02:43] TODO: Land all my pending branches, review more code and fix other random bugs [02:43] BLOCKED: No [02:43] DONE: finished and rolled out importd/bzr-native [02:43] TODO: Import python, get remaning bzr-native bits merged, get importd to upload/download source trees on a remote SFTP [02:43] BLOCKED: no [02:43] DONE: Landed 53437, nearly landed 54039, nearly finished process-upload-tidy review response, handover with Kinnison. [02:43] TODO: Finish current branches, embark upon PPA with archive-rework. [02:43] BLOCKED: By only having one brain. [02:43] DONE: Finished and landed pillar names and test suite refactorings. [02:43] TODO: Sprint [02:43] BLOCKED: RT 603 [02:43] DONE: reports, fixes, UI improvements, touching base with the gang [02:43] DONE: Dentist visits. Some holidays. Release management, landed some related API changes. [02:43] TODO: Release management. Finish the work started on guided filebug. Test filebug xmlrpc on production. [02:43] BLOCKED: No. [02:43] DONE: oops report analysis, fixed small oops bugs. [02:43] TODO: more oops fixing, sprint, test vhosting stuff on staging as soon as it landsBLOCKED: no [02:43] DONE Search before creating a ticket, fixed small bugs in the support tracker, work on bug #49760 and bug #52781 [02:43] TODO TicketTrackerWorkflowSpec, pagetests for new +unlinkbug view, add search to +linkbug [02:43] BLOCKED further TicketTrackerWorkflowSpec work is on hold awaiting kiko's reviews [02:43] Malone bug 49760 in launchpad-support-tracker "UI improvements to remove bug link page: change label, use selection" [Medium,In progress] http://launchpad.net/bugs/49760 [02:43] Malone bug 52781 in launchpad-support-tracker "Link bug should allow searching" [Wishlist,In progress] http://launchpad.net/bugs/52781 [02:43] DONE: work on firefox import, bug 44860 review response [02:43] TODO: put bug 2237 on review, pqm-submit bug 1788, work on bug 30602, finish firefox import, start export, handle rosetta-experts stuff (xaraxl, pluralforms, edgy opening) [02:43] BLOCKED: nope [02:43] Malone bug 44860 in rosetta "Crash when we try to pass a query string to a POFile that doesn't exist yet." [Critical,In progress] http://launchpad.net/bugs/44860 [02:43] DONE: catch up from vacation. working with james on form stuff. reviews. bug fixes. [02:43] Malone bug 2237 in rosetta "Preferred languages (and link to change them) twice on translation template page" [Medium,In progress] http://launchpad.net/bugs/2237 [02:43] Malone bug 1788 in rosetta "Saving preferred languages looks like it does nothing" [Medium,In progress] http://launchpad.net/bugs/1788 [02:43] Malone bug 30602 in rosetta "ERROR IN: https://launchpad.net/distros/ubuntu/dapper/+source/vlc/+pots/vlc/tl/+translate" [Medium,Confirmed] http://launchpad.net/bugs/30602 [02:43] TODO: some more work on forms. Finish the SimpleKeywords implementation. reviews. [02:43] BLOCKED: no [02:43] TODO: really fix the big ones that I need to do, review flacoste's patch and then his spec and then.. more reviews in the queue? [02:43] BLOCKED: no [02:43] DONE: several critical bug fixes in soyuz (including build-failure-notification) [02:43] TODO: get code reviewed and rollout fixes in drescher [02:43] BLCOKED: none [02:44] DONE: Lots of handover to malcc [02:44] TODO: queue-uniqueness(?) and queue-prettiness branch(!) and exhaustive archive verification tool (as much as I can in time) === jamesh [n=james@203-59-20-109.dyn.iinet.net.au] has joined #launchpad [02:44] BLOCKED: Nope, thanks to senokot. [02:44] DONE: sprint, coding, sprint planning, management [02:44] TODO: sprint, coding, sprint planning, management [02:44] BLOCKED: no [02:44] DONE: code reviews / Some more work on Python bug import / branch vocabulary fixes / LaunchpadFormView work with BjornT [02:44] TODO: code reviews / Launchpad infrastructure sprint in London [02:44] BLOCKED: no [02:45] mpt: I'm interested to talk about your blocker later. [02:45] That's all folks. Thanks for being here and keeping attentive. [02:45] MEETING ENDS [02:45] so, kiko, what do we need to do to make tags more useful/ [02:45] ? [02:46] wow, exactly on time, thanks SteveA :) [02:46] SteveA, well, I sent BjornT a patch that makes them into links [02:46] stub: can I get details for staging db? [02:46] they're linked from +bugs, at least [02:46] SteveA, we could also include counts next to the tags.. though perhaps that will be offset if BjornT finds a way of giving the user a confirmation screen if the tag he is using is new. [02:46] kiko: can we discuss the steps for bug 30602 after lunch? [02:46] Malone bug 30602 in rosetta "ERROR IN: https://launchpad.net/distros/ubuntu/dapper/+source/vlc/+pots/vlc/tl/+translate" [Medium,Confirmed] http://launchpad.net/bugs/30602 [02:47] danilos, whose lunch? [02:47] malcc, cprov: I want us to consider tags to be "global" to the launchpad project, and not have special soyuz ones [02:47] kiko: my lunch ;) [02:47] danilos: I think it is setup, but we lack clients on sodium. So I've just rt'd it. [02:47] ok [02:47] what I mean is, we can have ones that are useful for soyuz [02:47] danilos: psql -d launchpad_staging -h sodium -U ro [02:47] but we don't need a special category for them on that page [02:48] stub: ok, so I won't need to know anything else except the database name and host to access it? [02:48] so, please add the tags you're using to the proposed section of https://help.launchpad.net/TaggingLaunchpadBugs [02:48] Ok. I've got to grab dinner before my sister flys out. I'll be back in 1.5 hours if anyone needs me. [02:49] SteveA: yes, I agree, I will propose the soyuz tags as they are and we can discuss them later [02:49] stub: ah, great, that's what I was wondering, thanks [02:51] jamesh, BjornT: let's go get some lunch [02:51] sounds good === niemeyer [n=niemeyer@200-163-194-104.ctame7043.dsl.brasiltelecom.net.br] has joined #launchpad [02:55] ddaa: please add your tags in a single table on the proposed tags page [02:55] SteveA: in my understand that table is for global launchpad bugs [02:55] s/bugs/tags/ [02:55] as I was just saying to malcc and cprov, I don't want us to have product-specific tags, but to have a collection of tags that are meaningful for the whole project [02:55] hu? [02:55] so, if your tags don't make sense in the whole context of launchpad, they need to be changed [02:55] ddaa: you just updated the wiki page [02:56] and added a new section for launchpad-bazaar tags [02:56] I don't want this [02:56] I have already been using project specific tags, using the fti [02:56] I want a single section for launchpad tags [02:56] https://launchpad.net/products/launchpad-bazaar/+bug/49989 [02:56] Malone bug 49989 in launchpad-bazaar "branch puller reports failure for new hosted branches" [Low,Confirmed] [02:56] so that we get some consistency across launchpad [02:56] I do not see the point of forbidding the use of projec specific tags [02:56] re [02:56] but, hey, you're the chef [02:56] one reason is this [02:56] you have "importd" as a tag [02:57] that is not specific enough in the context of launchpad as a project [02:57] because we also import translations [02:57] My Change for today was: merge launchpad sub-projects and use tags instead [02:57] I think you should rename "scanner" to "branch-scanner" or "branchscanner" === mdke [n=matt@unaffiliated/matt/x-000000001] has joined #launchpad [02:57] so we can differentiate "rosetta importd" and "bazaar importd" [02:57] SteveA: One of the things we were hoping, in Soyuz, to use tagging for is effectively, as ddaa said, subproject-type splitting, I can't see how we can make those tags useful generically [02:58] that way, there's just one table for people to look at to understand what all the tags mean [02:58] malcc: that's fine. they just have to be *understandable* without noticing the soyuz context [02:58] SteveA: Ah ok, I get it [02:58] so, ddaa should rename "scanner" to "branchscanner" [02:58] because "scanner" makes little sense on its own [02:58] pain [02:58] but "branchscanner" makes sense on its own === ddaa deletes the table [02:59] merge it into the other one [02:59] the tags are all valid [02:59] they just might need new names [02:59] I do not want to have to use long-winded tags like that [02:59] esp since we do not have completion [02:59] fti does a good enough job for me [03:00] tags more for readers than for writers [03:00] so an extra 6 characters will not hurt [03:00] and will help people who only occassionally have to interact with your parts of launchpad [03:01] I cannot believe you're complaining about changing "scanner" to "branchscanner" [03:01] or "bzrscanner" [03:01] it's about convenience [03:01] or whatever. [03:01] banner? [03:01] yours or other peoples' ? === SteveA --> lunch [03:02] SteveA: it's simple, I put that table up because I thought it would be convenient for me to use those tags. Now, make the tags more cumbersome, and it no longer appears more convenient for me to use tags instead of fti as I have been doing up to now. [03:03] Now, if you decide that those tags are a good idea and that you want me to use them anyway, in their long form, it's your prerogative, but it's not the choice I would make voluntarily _right now_. === niemeyer_ [n=niemeyer@200-163-194-104.ctame7043.dsl.brasiltelecom.net.br] has joined #launchpad [03:06] on the subject of tags, I missed the introduction. They seem to be completely freeform, what methods of filtering them are available? [03:07] LarstiQ, it's good you ask! bradb is pointing to me that they are listed on +bugs [03:08] LarstiQ, but I find that obscure and hard to relate to [03:08] so I wrote a patch which linkifies them in the bug page itself. [03:08] kiko: this is per product/project? How about looking at a wider scope? [03:15] kiko: yo [03:15] oy [03:15] LarstiQ, you can query for them in a specific context. === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad === flacoste [n=francis@modemcable207.210-200-24.mc.videotron.ca] has left #launchpad ["Bye"] === MaSa69 [n=MaSa69@dsl-jklbrasgw1-fe1cfb00-100.dhcp.inet.fi] has joined #launchpad [03:51] kiko: what's this about an outage? [03:52] mdz, we need to do some database maintenence, stub wants to check with you for an appropriate date. [03:52] bradb, ping? [03:52] kiko: also, was the initial list of tags seeded from somewhere? it's huge and contains a lot of noise [03:52] kiko: pong [03:53] like package names and 'ubuntu' and release codenames [03:53] mdz, nope. it's been added randomly. I know there's a problem with that -- BjornT and I have a plan on improving that (getting confirmation when you are adding a tag that hasn't been used before) [03:53] 'error' [03:53] mdz, but the idea /was/ to have lightweight tags -- which were easy to define and abandon. [03:54] mdz, do you feel there should be more structured policy there? perhaps prefix your tags with something that implies official? [03:54] bradb, I need a phrase which doesn't contain the word "task" that says "There is a fix for this in one of the other tasks on this bug". [03:55] bradb, you are my task-avoidance expert! [03:55] kiko: "Fix exists" [03:55] bradb, that's ambiguous with "Patch attached" [03:55] which I'm also adding, fwiw [03:56] fix exists != patch attached, as best i can tell. patch is more like "fix proposed" [03:56] alternatively "fixed in $there" [03:57] bradb, that's implying the user will think like you do. which is often not the case. :) [03:57] fixed in there is an interesting example [03:57] thanks! [03:57] np [04:03] I wish mpt were here [04:03] I need 3 icons. [04:17] matsubara: ping [04:17] hello sivang [04:18] matsubara: hey there dude, what's up? [04:20] sivang: freezing! === stub [n=stub@ppp-58.8.3.37.revip2.asianet.co.th] has joined #launchpad [04:36] matsubara: I thought you were in brazil no? [04:38] sivang: yes, I am. === lbm [n=lbm@82.192.173.92] has joined #launchpad === flacoste [n=francis@209.217.74.66] has joined #launchpad [04:46] kiko: Do you think I should proceed with running the queries in Bug 54710 on production? Or where the results not what we wanted? [04:46] stub, I will email you with an analysis. I needed staging up to be able to confirm. [04:46] kiko: Staging should be up now, but the db will have been reset. I'll rerun the queries. [04:46] stub, ah, right. thanks. [04:47] kiko: I've switched off staging updates entirely now - the db upgrade would kill the launchpad instance, and then the code update would fail and the server would not be restarted. [04:49] kiko: Bugs are updated. Nuking unwanted sourcepackagename's now (will take a few mins) [04:49] thanks [04:51] danilos: You should have access to the staging database now - works for me from sodium anyway. [04:52] matsubara: regarding malone #3186 , are you onto it already or can I help it? :) [04:52] Malone bug 3186 in blueprint "New spec form has undescribed no-capitals constraint" [Medium,Confirmed] http://launchpad.net/bugs/3186 [04:59] sivang: I won't work on it in the near future [05:03] matsubara: okayy === imbrandon [n=brandon@ubuntu/member/pdpc.active.imbrandon] has joined #launchpad [05:16] for the record [05:16] before somebody asks me [05:16] I HATE ZCML [05:16] hehe === Kinnison hands kiko a flashing "ZCML is our king" badge and also a "ZCML stinks" one [05:17] kiko: we're removing our use of it by degrees [05:17] SteveA, I want to give you an additional 179 then! [05:19] Anyone got a minute to help with a testing problem? [05:19] The test here: https://sodium.ubuntu.com/~jamesh/pending-reviews/malcolmcleaton/launchpad/bug-54039/full-diff ... [05:19] man our edit icon is ugly [05:19] I've tried all sorts of layers, and setting up Librarian myself or not, and I've collected a fine array of different error messages, but the test hasn't worked since it was in launchpad/doc [05:19] Hopefully I've made a really obvious mistake somebody can spot for me [05:20] stub: are you sure the proper -h is sodium? (that sounds a bit strange to me, and I get "connection refused") [05:20] SteveA, can you assist malcc? [05:21] not right now [05:22] danilos: Erm... -h asuka. Sorry :) [05:22] salgado, could you help malcc? [05:23] I probably need a help - I have yet to document and notify the new test env ;) [05:24] kiko, I guess I won't be of much help. matsubara had a similar problem yesterday when he moved one of his doctests outside the canonical/launchpad/doc/ directory [05:24] (similar in the sense that it stopped working) [05:24] don't get stuck on this [05:24] malcc: I'd recommend LaunchpadZopelessLayer for that test. No need to setup/teardown the librarian. [05:24] file a bug [05:24] salgado, even saying that is help. [05:24] yeah [05:24] and leave it in the doc directory [05:24] malcc, don't get stuck on this [05:25] we'll refactor the tests that are in there later [05:25] calling it bug-whatever-whatever.txt is enough to distinguish it [05:25] oh, please use '-' not '_' in the name [05:25] I'll try LaunchpadZopelessLayer, change the name to -, and then move it back to doc and file a bug if nothing else works [05:25] Thanks everyone [05:26] yayzers [05:26] s/"to -"/"to use -"/ [05:27] malcc: Paste me the output of ./test.py -vv --test=bug-whatever-whatever.txt if it fails - I can probably tell you what needs to be done from that. === dsas [n=dean@host81-158-222-20.range81-158.btcentralplus.com] has joined #launchpad [05:27] i don't think it is worth having special test setup for this test [05:28] when the main thing about it is for it to be distinguished from docs [05:28] if we're going to do this we should have a launchpad/regression directory [05:28] and do the same as for laucnhpad/docs in there [05:28] rather than do this one test at a time [05:28] otherwise, we'll end up with slightly different doctest running code spread around the place [05:28] One stub can run multiple .txt text files [05:29] stub: you're volunteered [05:29] calma SteveA [05:29] For what? I don't want all the tests stuck in one directory. I want them near the code they are testing. [05:29] stub is the one true stub [05:29] Garh! [05:30] stub, I agree with you with my little voice [05:30] I think I agree too, but... [05:30] I think it is worse to have a little bit of one layout and a lot of another [05:30] if we're going to change, we should change properly [05:30] not just change for this test because we felt like it for this test [05:31] ok. [05:31] the current sourcecode layout is there because the rules for where to put things were too confusing [05:31] it is a simple rule to say "regression doctests go in launchpad/regression" [05:31] that keeps the launchpad/doc area tidy, with just real docs [05:31] a further change would be to revisit the sourcecode layout rules [05:33] kiko: re malone #3186 , matsubara noted you may be interested in changing the validation rules, so before going to adding the instruction there I'd like to consult with you. [05:33] Malone bug 3186 in blueprint "New spec form has undescribed no-capitals constraint" [Medium,Confirmed] http://launchpad.net/bugs/3186 [05:34] kiko: how would you like this bug to be solved? [05:37] so, changing the layer made matsubara's test to work again [05:37] did it work for you, malcc? [05:37] It might have done. I have a different error now but my script is getting 500's from the librarian, I'm just trying a couple more things [05:38] nevermind, he moved it back to launchpad/doc [05:38] malcc: so, I think the easiest thing is to update the module that runs tests in launchpad/doc [05:38] so that it also runs tests in launchpad/regression [05:38] and then move your doctest there [05:39] SteveA: Ok, I'll try that next [05:39] that also makes it a breeze for ractoring out regression tests from other doctests in launchpad/doc [05:39] and fits in well with our source code layout [05:39] anyway, gotta go now, be back in 1 hour or less [05:45] talking about tests: wouldn't xxx-views.txt be a better name than xxx-pages.txt for view tests? [05:47] I think actually... [05:47] that we should have a directory for view tests [05:47] they're not generally documentation either, although sometimes they are [05:47] I want to eventually move to a system where we can combine doctests and unittest-style tests in a single place, getting the benefits of both [05:48] SteveA, agreed entirely on that point. [05:48] it's on my list for next week [05:48] but I think that "single place" should be close to the objects they test. :-/ [05:49] so you could have database/doc/ [05:49] browser/doc/ [05:49] etc [05:49] SteveA: also, think about the reusable interface implementation doc test [05:49] that idea has some merit [05:49] of course, you could really split things differently.. but.. [05:49] here's how I want to manage these changes [05:49] flacoste, interfaces/doc [05:49] la la la === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad [05:49] - all implementation to land in RF uses the current organisational rules [05:50] - changes to sourcecode layout need a proposal of what the layout would be, and a description of the improvements and any disadvantages to that change [05:50] kiko: yes, but you need a way to setup the test for multiple target, you'll find an example in the branch that you are currently reviewing [05:50] kiko: i put it in interfaces/ftest, but I agree that interfaces/doc would be better [05:50] yeah [05:51] I'm concerned that people are looking for ways to change things as they go along [05:51] and that's not a good thing, as it will lead to disorganisation [05:51] and make it harder to choose a good approach and fully go for it down the line [05:52] I welcome the discussion on the mailing list about more use of adapters [05:52] and I'd welcome some discussion of different source code layouts [05:52] but (to say again) I don't want to see these things land in RF until we've thought them through and agreed on a consistent approach. [05:52] SteveA: but there is also the 'Waiting for the Big Change' syndrome [05:53] what is that? [05:54] aaron hanging back because he thought bzr 0.9 would be released soon, instead of taking a couple of weeks [05:54] I'm arguing for the opposite of that [05:54] that we make no changes in what we're doing [05:54] and instead discuss what we'd like to do [05:54] well, it's the syndrome that we don't change anything now because we want to find a definitive way to do it and since it involves 'Big Changes' that gets put off until later [05:56] I don't think I've talked about "Big Changes". What I am talking about is considering carefully before we change our coding policies. And not making changes against those policies in the mainline. [05:57] SteveA: I understand and I agree that discussing the thing before hand is a good thing to do === bradb [n=bradb@209.217.74.66] has joined #launchpad [05:57] we don't need to put off making such changes for some perfect solution. [05:57] we just need to be able to see that a proposed change is [05:57] - better than what we have [05:58] - better enough to be worth the effort of changing [05:58] - possible to change to in a way that leaves things consistent and easy to comprehend [05:58] So, for example, if we have a proposal for where tests go in the source tree [05:58] and it meets these criteria [05:58] then we don't need to wait for something in particular, other than someone's time, to do it [05:59] SteveA, as long as the changes are not put off forever (think CrowdControl) I think everybody will be happy with that policy [05:59] the problem which arises is when the changes take forever and people start "getting ideas". [06:00] CrowdControl fits into the "other than someone's time" category [06:00] it's a bit like feeding gladiators to the lions [06:00] if you get my meaning [06:00] you mean christians, I think [06:00] kiko: Can I be fed to the lions please? :) [06:00] ..., christian [06:00] malcc, note that I did /not/ say DDR freaks [06:01] and SteveA, well, I didn't want to mix politics with religion [06:01] I think lions are non-partisan [06:02] The ftests directory is a legacy from the old way functional tests were detected. We can drop it now and stick them all in tests if we want. [06:02] in the 21st century there are few lions left, and none of them are non-partisan. [06:02] anyway, mwaaa [06:02] sivang, do the fix which seems to be the easiest for you [06:03] sivang, probably just making it clear that they need to be all-lowers, and a decent error message, would do the trick [06:04] bradb: note that I added example URLs to the table of proposed tags. [06:04] well, I added one example URL [06:04] I think a proposal for a bug tag should have an example of a bug that would use that tag [06:04] SteveA: ah, cool [06:05] you might want to use the short url form [06:05] .../bugs/... [06:09] MaloneHighlights is a nice read btw. === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad [06:41] crap, how do I fix the "ProgrammingError: ERROR: function ensure_session_client_id("unknown") does not exist" thing? [06:41] dropdb session && make schema? [06:42] matsubara says it's session_dev [06:42] % dropdb session [06:42] dropdb: database removal failed: ERROR: database "session" does not exist [06:42] dropdb session_dev [06:42] looks better indeed [06:43] thanks [06:50] stub: ? [06:50] elmo: yo [06:50] oh, never mind you're logged in [06:50] fascist kernel is lieing to me [06:50] I was checking you aware of gandwana, but presumably you are [06:50] yup. Just cherry picking. === lbm [n=lbm@82.192.173.92] has joined #launchpad [07:27] the potato is cooking [07:48] hey danilos [07:48] no chance for that discussion today I don't think === lfittl [n=lfittl@85-125-147-235.dynamic.xdsl-line.inode.at] has joined #launchpad [07:55] kiko: hum, ok [07:55] kiko: I'll go through it tommorow morning, and when you show up, I'll hopefuly be ready with some questions ;) [07:55] kiko: how does that sound? [07:59] danilos, that sounds better. I'm at the moment frustrated by the fact that KarmaContext doesn't really help us solve +translations as much as I hoped it would === abhay [n=abhay@pdpc/supporter/student/Aranis] has joined #launchpad [08:00] one problem I am having is that karmacontext stores product, distribution and packagename, and unfortunately potemplates are associated with series and releases [08:01] this is frustrating to say the least. [08:01] kiko: ah, that annoying bug... hum, if KarmaContext would help, then a 'limit' on queries should do, no? [08:01] well [08:01] or am I totally off here? :) [08:01] the question is [08:01] how do I restrict the query on pofile based on product and distribution... hmmm. [08:02] I have an idea. [08:02] ideas are great, I have them sometimes as well ;) [08:03] anyone going to prettify rosetta.svg (diagram of relations) so I can print it at a0 and put it on a wall in front of my desk? :) [08:04] danilos, stub's the person to nag for that [08:10] oh, stub, you're good at artwork as well? I desire a poster version of rosetta.svg, with pretty icons and all (brown-tango-style will do) :P [08:11] heh [08:14] thanks BjornT! === bluefoxicy [n=bluefox@c-68-33-112-13.hsd1.md.comcast.net] has joined #launchpad [08:17] OK so I'm trying to figure out wtf is going on with the bug count and launchpad is not making this easy [08:18] Can someone add some statistical stuff to track the number of bugs submitted per month; number of duplicates; rate the bugs are triaged and closed; etc? I'm thinking it might be useful [08:18] Although aside from saying, "There's too much crap and we can't keep up," I can't see how ;p [08:18] bluefoxicy, well, the current system we have for this kinda sucks [08:19] bluefoxicy, we have graphing software but it runs behind an HTTP AUTH [08:19] kiko: nods. /me is trying to find a way to file launchpad bug... ah o.o === BjornT [n=bjorn@clt-84-32-240-183.dtiltas.lt] has joined #launchpad [08:19] kiko: so someone's working on that already? [08:21] bluefoxicy, well, not on a generic system, no -- that's considerable effort. but if you just want a graph with counts, we can have one produced, and then somebody would need to grab that graph and put it in a public location [08:21] bluefoxicy, why don't you talk to sfllaw to see if he's that person? [08:22] kiko: Mm. I'll see about that. Thanks. [08:22] bluefoxicy, enjoy. fwiw the database captures pretty much what you need to be able to graph there already... [08:22] Yeah, the question is do I have an easy way to grab the numbers from the database [08:23] bluefoxicy, as I said, if the graph is what you want, then it's easy to generate a page with those graphs. and if it's just counts, then you'd need to be specific as to what counts you want [08:24] yawn, man, am I sleepy! [08:25] kiko: trying to get per-month counts of all the launchpad bugs, i.e. 300 submitted July 2004, 320 August 2004, 290 submitted september 2004... [08:25] kiko: I'll ask sfllaw when he's around. [08:25] bluefoxicy, you mean Ubuntu bugs? === bluefoxicy can generate the graph himself [08:25] yeah, ubuntu bugs, sorry :) === bluefoxicy is actually going to use it in an OOImpress presentation [08:26] bluefoxicy, grouped by month? [08:26] or by day? [08:26] kiko: month [08:27] kiko: okay, that sounds good. I'm not afraid of attempting harder stuff though :) [08:27] aye sivang-- Danilo is missing! [08:27] [08:28] ;) [08:28] see ya guys later tonight or tommorow :) [08:28] bluefoxicy, hmmmph. well, if you told me /exactly/ what you want (and it wasn't too much work :) I could be convinced to run some queries for you and give you results. :) [08:28] later danilo-missing [08:29] kiko: Exactly what I want? The number of new Ubuntu bugs that were submitted for each individual month to Launchpad starting as far back as possible ;) (or total Ubuntu bug counts per month, which I can just measure the differences between) === cprov [n=cprov@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === quail [n=quail@unaffiliated/quaillinux/x-000001] has joined #launchpad === daq4th [n=darkness@netstation-005.cafe.zSeries.org] has joined #launchpad [09:26] BjornT: ping? [09:27] @#!!$ [09:27] bluefoxicy, the former is easier. [09:30] kiko: ah, I would have figured the latter would be easier. Either way; the data is intimately related, you can derive one from the other easily === BjornT [n=bjorn@clt-84-32-240-183.dtiltas.lt] has joined #launchpad [09:40] hey kiko, how does that shipit patch look now? [09:50] salgado, I think it looks better. do you want a closer look? [09:51] if you give me r=kiko, no. ;) [09:51] can one subscribe to a branch as a group? === xenru [n=Miranda@85.192.13.45] has joined #launchpad [10:06] lucasvo, mmmm. can you even subscribe to branches today [10:10] kiko: but as a group? [10:10] lucasvo, can you subscribe to branches today? [10:10] yes [10:11] https://launchpad.net/people/harmony-dev/+subscribedbranches === Lord_Athur [n=alejandr@pc-74-157-104-200.cm.vtr.net] has joined #launchpad === ^^EcLipSe^^ [n=kenan@88.241.133.101] has joined #launchpad [10:25] <^^EcLipSe^^> hi [10:25] lucasvo, you probably can't subscribe a team, but it should be possible -- it's a simple UI issue. can you file a bug? [10:26] ok [10:26] it's really just a UI matter.. interesting even. [10:27] why should one be able to subscribe to a branch? what happens then? a notification on every commit? [10:27] <^^EcLipSe^^> May i ask u a question? [10:27] <^^EcLipSe^^> Can anyone help me about wireless card driver [10:27] kiko: ok I'll file one [10:27] <^^EcLipSe^^> ?? [10:28] ^^EcLipSe^^: you are in the wrong channel [10:28] <^^EcLipSe^^> so where must i have to join? [10:28] ^^EcLipSe^^: are you running ubuntu? if so, join the channel #ubuntu [10:29] <^^EcLipSe^^> i am running suse for now [10:29] <^^EcLipSe^^> but i order ubundu cds [10:29] ^^EcLipSe^^: in that case you will have to go to a suse channel. try #suse [10:29] <^^EcLipSe^^> ok thanks. [10:30] <^^EcLipSe^^> care u === ^^EcLipSe^^ [n=kenan@88.241.133.101] has left #launchpad [] [10:32] kiko: bug 55096 [10:32] Malone bug 55096 in launchpad "Groups can't subscribe to a branch even though there is an option to view subscribed branches." [Untriaged,Unconfirmed] http://launchpad.net/bugs/55096 [10:32] thanks lucasvo [10:32] matsubara, can you keep an eye on that bug, possibly trying to get somebody to fix it this week? [10:33] kiko: aye [10:37] matsubara, it's basically doing the same as we do for bugs -- subscribe someone else. alternatively, the UI could look like the UI we have for package subscriptions -- subscribe a team you are a member of. === cprov [n=cprov@monga.dorianet.com.br] has joined #launchpad === ozamosi [n=ozamosi@ubuntu/member/ozamosi] has joined #launchpad === mdz [n=mdz@studiocity-motorola-bsr1-70-36-194-85.vnnyca.adelphia.net] has joined #launchpad === sabdfl [n=mark@ubuntu/member/pdpc.silver.sabdfl] has left #launchpad [] === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad === flacoste-lunch [n=francis@209.217.74.66] has left #launchpad ["Bye"] [12:01] hey [12:01] does anyone here have write access to staging? === glatzor [n=sebi@ppp-88-217-0-39.dynamic.mnet-online.de] has joined #launchpad [12:05] oh, I do.