=== der_steppenwolf [n=sergio@p54A5F26E.dip.t-dialin.net] has joined #launchpad === looksaus [n=mark@86-39-37-204.customer.fulladsl.be] has joined #launchpad [12:58] I'm a bit curious about https://blueprints.launchpad.net/products/launchpad/+spec/login-service and https://launchpad.net/products/launchpad/+bug/1169 [12:58] Malone bug 1169 in launchpad "Launchpad should support OpenID" [Medium,Confirmed] [12:59] is there any information relevant to this that is appropriate for the public eye? === _thumper_ [n=tim@166-179-25-73.jamamobile.co.nz] has joined #launchpad === _thumper_ [n=tim@166-179-25-73.jamamobile.co.nz] has joined #launchpad === belito [n=user@201.240.246.84] has joined #launchpad === gnomefreak [n=gnomefre@ubuntu/member/gnomefreak] has joined #launchpad [01:52] is ther ea way to remove a bzr dir of mine so i can start over? i made it for planet ubuntu but its not letting me change my hackergotchi for planet? [02:00] gnomefreak: why do you want to remove the bzrdir ? [02:01] oh didnt think of that :) [02:01] and than just run all commands again? [02:02] I am desynced and confused. [02:02] I just asked a small question, I dont know what commands you are talking of, nor what you have done [02:02] I'm happy to help, but you'll need to explain more fully [02:03] lifeless: i went to add a new hackergotchi to my bzr account for planet ubutnu and it kept erroring out on me and wouldnt update finally i was able to get it to update but still couldnt commit [02:04] so now i would like to start over and reset my account for planet from scratch === sevrin [n=sevrin@202.75.186.154] has joined #launchpad [02:18] ok heres the command im running to set it back up bzr checkout sftp://gnomefreak@bazaar.launchpad.net/~planet-ubuntu/config/main planet-ubuntu "it tells me planet-ubuntu exsits how can i remove it? [02:20] <_thumper_> ping jamesh [02:21] <_thumper_> jamesh: do you have a few minutes to help clear up some confusion on vocabs... [02:22] _thumper_: sure. Go ahead [02:24] <_thumper_> jamesh: thanks [02:25] <_thumper_> I have created another vocab [02:25] <_thumper_> and registered it [02:25] <_thumper_> and I have a view that I want to expose a choice through [02:25] <_thumper_> but I'm not sure how to marry the two [02:25] so you are writing a form? [02:25] <_thumper_> it is just a UI selector [02:25] <_thumper_> editing one [02:26] Okay. To use the form machinery, you need a schema that describes the input you want [02:26] <_thumper_> person-branches.pt [02:27] a schema is just an interface [02:27] <_thumper_> ok [02:27] so you define an interface with a Choice() field that uses your vocabulary [02:27] <_thumper_> and have the view implement it? [02:27] and create a LaunchpadFormView subclass for your view [02:27] not quite. [02:28] <_thumper_> the one that I have inherits from LaunchpadView [02:28] have a look at lib/canonical/launchpad/doc/launchpadform.txt for some details on defining a form class === _thumper_ looking [02:29] I'd point you at the answer tracker or bug search/listing pages, but they are a bit complicated === _thumper_ is now known as thumper [02:33] Okay. here is a quick sketch of what the view class should look like: [02:33] (1) it should be a LaunchpadFormView subclass [02:33] (2) set its schema attribute to the interface you defined. [02:34] what's the difference between a LaunchpadView and LaunchpadFormView [02:34] (3) don't use the launchpad_form/form macro in your page template [02:35] instead just define the
element yourself with action="get", and instantiate the widget with
[02:35] LaunchpadView is a base class we use for view classes [02:36] LaunchpadFormView subclasses LaunchpadView, and integrates zope's formlib [02:37] (4) in the view class, you can do something like: [02:37] ok, ta [02:37] I'll go with that [02:37] widget = self.widgets['fieldname'] [02:37] if widget.hasValidInput(): [02:37] status = widget.getInputValue() [02:37] else: [02:37] status = DEFAULT_STATUS === der_steppenwolf [n=sergio@p54A5F8DC.dip.t-dialin.net] has joined #launchpad [02:37] and use that to pick the branches to display [02:38] more complex than what I was doing :) [02:38] it isn't quite straight forward, since we're ignoring most of the form handling code here. [02:39] for the class that inherits from the LaunchpadFormView, do I need to create a member variable? [02:39] or is that handled through the schema? [02:39] yeah. you need to set schema to the schema used by the form. [02:41] gnomefreak: you can just cd into that directory, no need to checkout again [02:41] gnomefreak: the thing is that you need to be in the planet-ubuntu team to commit. Are you in that team ? [02:42] its throwing errors about no dir /gnomefreak/planetubuntu [02:42] gnomefreak: hmm. perhaps you can hop on to #bzr for help with this ? [02:42] yes i thought i was since i was on the planet blog [02:42] k [02:42] I'm not in a good position to do detailed support right now. === thumper is now known as _thumper_ === _thumper_ is now known as thumper === _sergio [n=sergio@p54A5F13F.dip.t-dialin.net] has joined #launchpad === WaterSevenUb [n=WaterSev@c-65-96-188-198.hsd1.ma.comcast.net] has joined #launchpad [02:55] New bug: #74741 in malone "RFE: Canned responses" [Undecided,Unconfirmed] http://launchpad.net/bugs/74741 === gnomefreak [n=gnomefre@ubuntu/member/gnomefreak] has left #launchpad [] === _sergio_ [n=sergio@p54A5E3B0.dip.t-dialin.net] has joined #launchpad === _sergio_ [n=sergio@p54A5D7AB.dip.t-dialin.net] has joined #launchpad === doko_ [n=doko@dslb-088-073-097-055.pools.arcor-ip.net] has joined #launchpad [04:07] jamesh: sorry to bug you again, but what do I need to do to initialise the widgets? [04:07] been going around in circles for the last while trying to figure it out [04:08] thumper: the widgets get initialised by the LaunchpadFormView.initialise() method [04:08] hmm... something seems to be missing then [04:08] ah [04:08] I know [04:08] more specifically, the setUpFields() and setUpWidgets() methods, which get called by initialize() [04:08] a call to the base method [04:08] what's the coding standard for super methods? [04:09] call directly or use super? [04:09] usually just call them directly for simple cases [04:09] ok [04:10] super() is used in a few places for class hierarchies with exotic inheritance :) [04:11] yay, it works now [04:11] a bit convoluted [04:11] but ok(ish) [04:12] if you want another set of eyes to look at it, put the branch on pending-reviews as a work-in-progress branch [04:12] yeah, will do [04:15] New bug: #74748 in malone ""Select a Person or Team" should use default term" [Undecided,Unconfirmed] http://launchpad.net/bugs/74748 [04:20] New bug: #74749 in malone ""Select a Person or Team" needs to be themed" [Undecided,Unconfirmed] http://launchpad.net/bugs/74749 [04:20] New bug: #74750 in malone "No way to search by specific field" [Undecided,Unconfirmed] http://launchpad.net/bugs/74750 === WebMaven [n=webmaven@ip72-193-220-34.lv.lv.cox.net] has joined #launchpad [04:53] jamesh: I hope your locations.conf entries work for me [04:54] nope [04:54] I think I'm missing something === thumper rereads email === thumper bbl [05:05] New bug: #74753 in rosetta "Edgy blurb out-of-date on Rosetta index webpage" [Undecided,Unconfirmed] http://launchpad.net/bugs/74753 === joejaxx is now known as Fluxbuntu === Fluxbuntu is now known as joejaxx === mgalvin [n=mgalvin@ubuntu/member/mgalvin] has joined #launchpad === stub [n=stub@ppp-58.8.7.203.revip2.asianet.co.th] has joined #launchpad === quail [n=quail@unaffiliated/quaillinux/x-000001] has joined #launchpad === quail [n=quail@unaffiliated/quaillinux/x-000001] has joined #launchpad === quail is now known as quail_linux === quail_linux is now known as quail === stub [n=stub@ppp-58.8.7.203.revip2.asianet.co.th] has joined #launchpad === DO_A_ [n=sipha@ppp-69-226-123-21.dsl.skt2ca.pacbell.net] has joined #launchpad === DO_A_ [n=sipha@ppp-69-226-123-21.dsl.skt2ca.pacbell.net] has left #launchpad [] === stub [n=stub@ppp-58.8.7.203.revip2.asianet.co.th] has joined #launchpad === stub [n=stub@ppp-58.8.7.203.revip2.asianet.co.th] has joined #launchpad === stub [n=stub@ppp-58.8.7.203.revip2.asianet.co.th] has joined #launchpad === bubulle [n=bubulle@81.56.227.253] has left #launchpad [] === doko_ is now known as doko === thumper [n=tim@166-179-18-233.jamamobile.co.nz] has joined #launchpad === thumper [n=tim@166-179-27-156.jamamobile.co.nz] has joined #launchpad === _thumper_ [n=tim@166-179-27-156.jamamobile.co.nz] has joined #launchpad === stub [n=stub@ppp-58.8.7.203.revip2.asianet.co.th] has joined #launchpad === _thumper_ is now known as thumper === Keybuk [n=scott@quest.netsplit.com] has joined #launchpad === seb128_ [n=seb128@ANancy-151-1-103-133.w90-13.abo.wanadoo.fr] has joined #launchpad === seb128_ is now known as seb128 === _thumper_ [n=tim@166-179-28-247.jamamobile.co.nz] has joined #launchpad === ddaa [n=ddaa@nor75-18-82-241-238-155.fbx.proxad.net] has joined #launchpad === _thumper_ is now known as thumper [09:09] ddaa: did you get my email? [09:16] thumper: magic === raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad [09:27] SteveA: ping === Fujitsu [n=william@c58-107-164-24.eburwd7.vic.optusnet.com.au] has joined #launchpad === matthewrevell [n=matthew@82-47-122-13.cable.ubr05.wolv.blueyonder.co.uk] has joined #launchpad === frodon_ido [n=patrick@ip-62-235-211-88.dsl.scarlet.be] has joined #launchpad [09:44] jordi: good morning === _thumper_ [n=tim@166-179-30-142.jamamobile.co.nz] has joined #launchpad === danilo-food is now known as danilos === malcc [n=malcolm@host86-135-237-55.range86-135.btcentralplus.com] has joined #launchpad [09:51] When I file a bug via email, I put ` affects /distros/ubuntu/PACKAGE', where PACKAGE is the name of the package? [09:55] nm, #ubuntu-devel answered already. [09:56] twb: yes. and to be more specific, where PACKAGE is the name of the source package. [09:56] oh :) [09:56] Ah. [09:56] Is there a way to report in which version of the package the bug was found? [09:58] twb: no, not formally. there has been some discussion about that, but so far the decision was that the version information should be included in the bug description. we'll evaluate this again, maybe we'll add some version field to a bug. [09:59] That must make it hard to programmatically extract information. [09:59] e.g. `give me all the unresolved bugs relating to the version of FOO currently in edgy' === rraphink [n=raphink@ubuntu/member/raphink] has joined #launchpad [10:01] yeah, it's not easy to extract it programmatically. is this something you want to do often? why do you need such a query? [10:01] So that you don't have to troll through ALL the open bugs to find ones that you want. [10:01] (in the discussions it was mentioned that version info is mostly useful when triaging a bug, not for finding all bugs for a specific version) [10:02] I guess it seems silly to me to question whether programmability is needed. Programmability is ALWAYS needed, you just don't always know it. [10:02] But I have found it useful under Debian to know whether upgrading to version N can be expected to fix specific bugs. [10:05] twb: that's true. however, adding new fields makes the bug tracking system more comples. sure, a version field might not be too bad to add, but if you add field foo, why not add field bar, etc. that's why we are very hesitant when adding new fields. [10:06] twb: for the use case of finding out which bugs are fixed in a certain version, i think we can do it better by allowing bugs to be closed in changelogs, and track that information. === dand [n=dand@gw.datagroup.ro] has joined #launchpad === tim [n=tim@166-179-25-71.jamamobile.co.nz] has joined #launchpad [10:07] Well, that is certainly a feature I'd like to see in Ubuntu. === tim is now known as thumper [10:11] Morning [10:13] Morning ddaa [10:13] BjornT: if I email a new bug, do attachments get included? [10:13] thumper: checking inbox === mdke [n=matt@85-210-195-200.dsl.pipex.com] has joined #launchpad [10:13] I want to include a transcript of the apt-get install session. [10:14] ddaa: for a while I thought my mail server wasn't sending all email, but it seems to === kiko is now known as kiko-zzz [10:14] got it [10:14] zzz [10:15] twb, not yet [10:15] but soon [10:15] twb, about versions, one problem with that is that a bug is rarely present /only/ in one version [10:15] thumper: you're at home now? [10:15] so the version information is often misleading [10:15] So I have to include the transcript inline? [10:16] ddaa, yep, should I grab the phone? [10:16] nah [10:16] see bugzilla.mozilla.org for examples of bugs where the version data is mostly irrelevant [10:16] Ewa still snoring in the bedroom end of the office [10:16] twb, yes, for now, use the description === kiko-zzz yawns [10:16] ddaa, office is your bedroom? [10:17] housing is expensive in paris [10:17] and demand stupidly high, housing agency ask that one's revenue is 3x the rent [10:18] And Ewa is still a student -> no steady income [10:18] ddaa: it is slowly changing [10:19] (price are to high and are beginning to drop) [10:19] Fanch: whatever, the increase rate of prices (second derivative) is decreasing [10:19] ddaa: then it drecreased enough to be negative... :-) [10:19] not really something worth celebrating about [10:20] that still means that prices are increasing, albeit more slowly [10:21] ddaa: you are talking about shown/requested prices or negotiated prices ? === _thumper_ [n=tim@166-179-18-108.jamamobile.co.nz] has joined #launchpad [10:22] Fanch: admittedly, I'm not looking to closely, and I'm not interested in buying soon anyway [10:23] I do not really have the time to spare, and I'm lacking the capital and the stability to take a loan on 30 years [10:23] What kind of delay can I expect between hitting `send' in mutt and seeing the bug show up on https://bugs.launchpad.net/distros/ubuntu/+source/sun-java5/+bugs ? [10:23] ddaa: that's why I am waiting for 3 to 4 years to buy... (but I bought an flat 30 months ago) [10:24] Ah, a couple of minutes. === stu1 [n=stub@ppp-58.8.16.86.revip2.asianet.co.th] has joined #launchpad === stu1 is now known as stub [10:27] Fanch: 30 months ago I was out of a job with a student loan to repay. Not the best time to buy :) === thumper [n=tim@166-179-18-221.jamamobile.co.nz] has joined #launchpad [10:41] ping SteveA [11:02] SteveA: ping === SnkBite [n=SnkBite@212.25.63.30] has joined #launchpad === cprov-out is now known as cprov [11:21] morning, guys [11:24] Just the person :-) [11:24] cprov: Does https://devpad.canonical.com/~andrew/paste/filex1OszE.html make any sense to you? [11:25] stub: yes, new apt-ftparchive in edgy [11:25] ok. So I can expect gina.txt, soyuz-upload.txt, test_ftparchive to fail under edgy? [11:26] stub: PQM still using dapper version [11:26] If so, my branch is actually working and ready for review :) [11:26] stub: afaik, only soyuz-upload.txt [11:27] stub: btw, did you check my DB patch (new fields in SourcePackageRelease) ? === _thumper_ [n=tim@166-179-16-192.jamamobile.co.nz] has joined #launchpad [11:28] briefly but not properly. I'll check it now. [11:29] stub: thanks === _thumper_ is now known as thumper [11:37] thumper: hi [11:37] ddaa: hi [11:37] danilos: hello [11:37] hi SteveA [11:37] SteveA: hello [11:37] thumper, ddaa: have you guys talked recently? [11:37] SteveA: yes, yesterday night [11:37] how did it go? [11:38] planned to have a call this morning, but Ewa is sleeping right now [11:38] SteveA: good, discussed about the evolution of Branth.lifecycle_status and a potential sprint in April [11:39] hi SteveA [11:39] Apparently poolie is asking for a status "Retired" or "Vintage", but I'm resisting adding additional values. [11:40] thumper is working on branch status filtering for branch listing pages [11:41] that's coming along nicely, but it doesn't look pretty yet [11:41] I'm trying to figure out how to submit the form when the user changes the value in the drop down list [11:41] I'd like to have feedback on the email-notification spec, but I agree that it's probably better to do some hacking on branch filtering now [11:41] normally a little javascript on the select is enough [11:42] but not sure how to add this on a widget [11:42] thumper: I suggest you do not do this now [11:42] I am intending to give feedback on the email spec [11:42] nothing in launchpad has this sort of behaviour at the moment, although "select dropdown, then click to post" is cumbersome, fixing this sort of wart is post-1.0 [11:43] hmm... [11:43] just not slick [11:43] yes, it sucks [11:43] I guess it is not essential just yet [11:43] but I would like to know how to do it [11:43] yup [11:43] do you need to do a javascript block to attach a handler to the event after it? [11:44] mochikit === ddaa once looked at zope widgetry and ran away screaming [11:44] SteveA, docs for that anywhere? [11:44] loads. google [11:45] (still on phone) [11:45] :) [11:45] Mochikit looks slick [11:45] ddaa, how do you stop all the cruft getting added around the widgets? [11:45] like the extra divs et al [11:45] thumper: you should ask something who know something about zope, like BjornT [11:46] thumper: I'll talk with you about the UI in 15 mins [11:46] ok [11:46] thumper: you can use LaunchpadDropDown widget, it doesn't add any
around itself [11:46] I really have no clue, I'm just happy to use the easy tools that the infrastructure guys give me [11:46] BjornT, I'm just using the default widget for a Choice [11:47] not sure what that is [11:47] thumper: it's DropDownWidget. we probably should do LaunchpadDropDownWidget the default, though, but I haven't gotten around it yet. [11:48] BjornT: ah, that might explain it [11:48] thumper: for now, you can use custom_widget('your_field', LaunchpadDropDownWidget) in your view class === mholthaus_ [n=mholthau@201.124.3.213.cust.bluewin.ch] has joined #launchpad === matsubara [n=matsubar@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === looksaus [n=mark@86-39-37-176.customer.fulladsl.be] has joined #launchpad === salgado [n=salgado@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === _thumper_ [n=tim@166-179-23-200.jamamobile.co.nz] has joined #launchpad [12:13] <_thumper_> BjornT, thanks, that looks much better now [12:13] <_thumper_> Although it is Dropdown :) === _thumper_ is now known as thumper === thumper happy with less typing === _thumper_ [n=tim@166-179-18-217.jamamobile.co.nz] has joined #launchpad === outime [n=outime@unaffiliated/outime] has joined #launchpad === _thumper_ is now known as thumper [12:27] may I be curious and ask about plans to support authenticating against launchpad using openid? I've seen https://launchpad.net/products/launchpad/+bug/1169 and https://blueprints.launchpad.net/products/launchpad/+spec/login-service [12:27] Malone bug 1169 in launchpad "Launchpad should support OpenID" [Medium,Confirmed] === jordi [n=jordi@115.Red-213-96-69.staticIP.rima-tde.net] has joined #launchpad === jordi [n=jordi@115.Red-213-96-69.staticIP.rima-tde.net] has joined #launchpad === _thumper_ [n=tim@166-179-22-68.jamamobile.co.nz] has joined #launchpad [12:32] Oracle developers have a sense of humour === cprov [n=cprov@monga.dorianet.com.br] has joined #launchpad [12:32] david@marvin:~ % svn ls http://oss.oracle.com/projects/ocfs2/src/trunk [12:33] dude_wheres_my_ocfs2 [12:33] ddaa: are you working with oracle? [12:33] just going over some old vcs-import requests [12:33] it's a public repo [12:33] ddaa: http://connect.educause.edu/blog/stuartyeates/oracle_unbreakable_linux_mortal_after_all/13890 === sabdf1 [n=sabdfl@217.205.109.249] has joined #launchpad [12:36] *shrug* [12:36] Anyway, if you need to use Oracle, you are already in trouble. [12:38] ddaa: true [12:39] _thumper_: ping [12:43] matsubara: ping [12:44] SteveA: pong [12:44] matsubara: mpt is on vacation today. would you prepare the bug report for today's meeting? [12:44] SteveA: yes, sure. [12:45] thanks matsubara ! [12:45] .win 28 [12:45] If a bug's status has been changed to "Rejected", and I add a comment, does the developer still see the new comment? [12:46] (In malone) [12:46] twb: yes. email notifications are always sent, no matter what the status of the bug is. [12:46] OK. [12:51] 46982 [12:51] sorry [12:58] matthewrevell: have you been to a launchpad developers meeting before? [12:58] SteveA: I've observed === flacoste [n=francis@modemcable207.210-200-24.mc.videotron.ca] has joined #launchpad [01:00] matthewrevell: just prepare your three sentences bingo in advance [01:00] here [01:00] ddaa: Damn, three sentences you say? I've practically filled a page :) [01:00] meeting now? [01:00] stub: too early [01:00] Launchpad developers' meeting! [01:00] who is here today? [01:00] still here [01:00] me [01:00] me [01:00] me! [01:00] me [01:00] mpt is on vacation [01:00] me [01:00] me [01:00] me [01:00] me [01:00] tim (thumper) sends apologies -- flaky internet connection this evening [01:00] I'm not here. [01:01] spiv is at a conference [01:01] me [01:01] me [01:01] me [01:01] kiko-zzz: ? [01:02] SteveA, kiko's comming in soon [01:02] he was out riding a bike [01:02] ok, thanks [01:02] yes [01:02] danilos: like, duh! ;-) === kiko-zzz is now known as kiko [01:02] ;) [01:02] aha! he didn't crash this time [01:02] welcome to matthewrevell [01:02] SteveA: Thank you [01:03] matthewrevell has joined the launchpad team [01:03] hey matthew, again welcome :) [01:03] what will you be doing matthew? [01:03] jordi: thanks [01:03] matthewrevell: enjoy the first meeting, didn't welcome you properly before :) [01:03] Are you guys having a meeting, right now, in here? [01:03] danilos: :0 [01:03] twb: yes [01:03] OK. I'll keep quiet [01:03] twb: 12:00 < SteveA> Launchpad developers' meeting! [01:03] welcome m [01:03] r [01:04] thanks all, very pleased to be here [01:05] this will also be jordi's last launchpad meeting as a member of the launchpad team. [01:05] :( [01:05] thanks for all your work on helping the rosetta community, jordi === kiko cheers jordi on [01:05] we'll miss you [01:05] it's been a fun ride! [01:05] good luck in the future [01:05] we will have a lot of work to do the job as well as you did jordi; thanks. [01:05] I'll be around the house, I need to keep close eye on danilo :) [01:06] jordi: yeah, you probably enjoyed riding me all the time :) [01:06] see? :) [01:06] :) [01:06] ai ai [01:06] this would be tim (thumper)'s first launchpad meeting as a member of the launchpad team. [01:06] but tim can't be here today -- flaky internet [01:06] jamesh: interesting times ahead: not only I leave Canonical, but my other job too [01:06] tim will be working with ddaa on the bzr-launchpad integration [01:06] When 2007 starts, many things will have changed [01:06] jordi, sounds like time for an adventure! why don't you come down and stay with us in .br for a while? [01:06] jordi: professional triathlete? :) [01:07] there is free lodging and internet [01:07] jamesh: heh, I wish :) [01:07] and the food is cheap [01:07] and plentiful [01:07] and bikes :) [01:07] as are women [01:07] ok, let's get on with the meeting :) [01:07] *lol* [01:07] kiko: jordi needs no food ;) [01:07] kiko: cheap and plentiful? [01:07] there is something for everybody in brazil === kiko waves the meeting on [01:08] ok... === jordi calls for a brazil-centric meeting after this one :) [01:08] == Agenda == [01:08] * Roll call [01:08] * Agenda [01:08] * Next meeting [01:08] * Activity reports [01:08] * Actions from last meeting [01:08] * Oops report (Matsubara) [01:08] * Bug report report (mpt) [01:08] * Production and staging (Stuart) [01:08] * Launchpad 1.0 status reports [01:08] * Sysadmin requests [01:08] ---- [01:08] * Reorganising dbschema (Steve) [01:08] * (other items) [01:08] ---- [01:09] * Keep, Bag, Change [01:09] * Three sentences [01:09] [01:09] next meeting -- same time next week! === ..[topic/#launchpad:malcc] : Developer meeting: Thu 14 Dec, 1200UTC (wiki:MeetingAgenda) | launchpad-users@lists.canonical.com (wiki:MailingLists) | Channel logs: http://tinyurl.com/72w39 [01:09] 14 december [01:09] * Activity reports [01:09] I am so not up to date :-/ [01:09] I am! [01:09] up to date [01:09] up to date (restarting with last week) [01:09] and 2 hr conf calls don't help :-/ :-/ [01:09] up to date [01:09] up to date [01:09] up to date [01:09] up to date [01:09] I'm not up to date [01:09] yay, everyone shows me up! well done team [01:09] I sent a batch last week, am writing last weeks now, so pretty good [01:09] not up to date [01:09] not up to date [01:09] up to date (if we're talking about why i think we are) [01:10] s/why/what [01:10] yeah matthewrevell, you're up to date [01:10] cprov just sent out a batch, so he is too [01:10] matthewrevell: those pesky emails to activity@ :) [01:10] matsubara, malcc, jamesh: please send a summary during the meeting [01:10] matsubara has been busy growing his todo list [01:10] I'm not up to date either. will send a summary [01:10] thanks salgado [01:10] * Actions from last meeting [01:11] the only action is for spiv, who is away at a conference === matsubara nods to SteveA [01:11] so we can defer that until next week when he will be back [01:11] * Oops report (Matsubara) [01:11] Today's oops report is about bug 74437 [01:11] Malone bug 74437 in rosetta "OOPS translating string with format specification." [Undecided,Unconfirmed] http://launchpad.net/bugs/74437 [01:11] danilos, can you take that one?. [01:12] matsubara, is that the one we debugged? [01:12] did you manage to get a test in? [01:12] danilos: I can write the test if you help me out with some sample data fiddling [01:12] matsubara: isn't that related to another bug about format stuff? [01:12] kiko: yes, it's that one. And no, I couldn't write the test yet. [01:12] danilos: it's similar but it's not the same issue [01:12] matsubara: sure, I can help [01:12] danilos, it's a weird oops that we'll get you a test to demonstrate. [01:12] danilos: this one OOPSes [01:13] ok [01:13] matsubara, hold off assigning to him until we have a test, or else he'll be a bit lost [01:13] kiko: ok [01:13] matsubara, kiko: ok, thanks [01:13] cool. [01:13] SteveA: I'm done with oops report. [01:13] matsubara, and of course, get the test done :-) call me in if you are stuck. [01:13] I'll move on to the Bug report [01:14] twb: the meeting will finish at 12:45 UTC, btw [01:14] kiko: all right. [01:14] Bug report report: [01:14] SteveA: thanks. [01:14] matsubara has agreed to do the bug report, as mpt is on vacation === outime [n=outime@unaffiliated/outime] has joined #launchpad [01:14] We have 9 critical open bugs. [01:14] Bug 30602 assigned to kiko. [01:14] Bug 44214 assigned to carlos. [01:14] Bug 46982 assigned to danilos. [01:14] Bug 68014 assigned to carlos. [01:14] Bug 71283 assigned to carlos. [01:14] Malone bug 30602 in rosetta "Timeout errors in +translate" [Critical,In progress] http://launchpad.net/bugs/30602 [01:14] Bug 73509 assigned to carlos. [01:14] Malone bug 44214 in rosetta "We need to add code to prevent POFiles being in the same path" [Critical,In progress] http://launchpad.net/bugs/44214 [01:14] Bug 66383 assigned to ddaa. Bug 59443 assigned to cprov. [01:14] Malone bug 46982 in rosetta "Need to support KDE like plural forms" [Critical,Confirmed] http://launchpad.net/bugs/46982 [01:14] Bug 73761 assigned to malcc. [01:14] Malone bug 68014 in rosetta "Rosetta reverts translation fixes to old faulty values" [Critical,In progress] http://launchpad.net/bugs/68014 [01:14] Malone bug 71283 in rosetta "Allow non-authenticated rendering of +translate pages" [Critical,In progress] http://launchpad.net/bugs/71283 [01:14] Malone bug 73509 in rosetta ".po file export doesn't update cached files" [Critical,Confirmed] http://launchpad.net/bugs/73509 [01:14] 73761 is with pqm [01:14] Bug 66383 on http://launchpad.net/bugs/66383 is private [01:14] Malone bug 59443 in soyuz "Soyuz should send announce messages for backports to different list" [Critical,Confirmed] http://launchpad.net/bugs/59443 [01:14] Malone bug 73761 in soyuz "Missing support for any-i386 and linux-i386" [Critical,Confirmed] http://launchpad.net/bugs/73761 [01:14] great news malcc! thanks [01:15] kiko: how's the +translate one going? [01:15] danilos, can you make a status report on the ones related to rosetta? [01:15] matsubara, it's not but I can work on it now. I was thinking of blocking myself on carlos, but f*** that [01:15] I can go on with quick bug fix for 46982, it's still blocked on ff stuff landing first [01:15] matsubara: 66383 was merged last week. Code has been in production for a while. Closing the bug. [01:15] I know 68014 has been in the review queue, should be almost ready to land [01:16] cprov? [01:16] I am not sure of the state of the others [01:16] matsubara: I'll try to find some time to work on it today, I've sorted a plan with kiko. [01:16] oh, indeed [01:16] why is that critical? [01:16] 68014 is blocked on carlos getting back from vacation, 73509 is related [01:16] kiko: yes, might be demoted to high, IMO. [01:17] ddaa: thanks. [01:17] kiko: do you agree ? [01:17] yes. [01:18] danilos: any ETA on the FF stuff? [01:18] done === kiko looks at danilos [01:18] matsubara: ask kiko [01:18] ETA is a forbidden word for me [01:18] he just looked at you :) [01:18] that's why I looked at him [01:18] I can talk about progress and what's left to do, but no ETAs :) [01:18] matsubara, danilos needs to fill me in on what he is stuck on, but we're hoping 1 week. [01:19] what about the Iceweasel? :) [01:20] matthewrevell: btw, bug 68014 is one of those bugs that draws lots of user attention. You might be interested. [01:20] Malone bug 68014 in rosetta "Rosetta reverts translation fixes to old faulty values" [Critical,In progress] http://launchpad.net/bugs/68014 [01:20] matsubara: thanks [01:20] matsubara, and the KDE plural forms one. [01:21] SteveA: I'm done here. thanks. Thank you everyone! [01:21] one thing about bug 68014 [01:21] Malone bug 68014 in rosetta "Rosetta reverts translation fixes to old faulty values" [Critical,In progress] http://launchpad.net/bugs/68014 [01:21] I believe it is fixed in production, in that Rosetta no longer does this bad thing. [01:21] But, we have disabled some rosetta functionality, while that functionality is being fixed [01:21] I think the current description and status of the bug is misleading [01:21] right, PO imports are disabled [01:22] the current bug is, PO imports are disabled [01:22] and they are even disabled for rosetta admins [01:22] not that we're reverting translations [01:22] but it's still possible to get that, if somebody gets a stale page or something like that [01:22] so only launchpad admins can upload PO files [01:22] salgado: I don't know about stale pages [01:23] carlos had a fix for this on a branch that I reviewed [01:23] salgado: I think that would be another issue [01:23] well, if a page sits loaded in someone's browser for a long time [01:23] danilos: aha! Now I think I know how to write that test! I'll ping you after the meeting [01:23] but the branch wasn't approved before he went on leave [01:23] when does he get back? [01:23] carlos/launchpad/bug-68014-step3 [01:23] matsubara: ok, thanks :) [01:23] SteveA, note that we are not sure that we /did/ fix the issue. i think there are a number of things that /could/ revert translations and uploads are just one of them. [01:23] SteveA, on monday. [01:23] ok, that's not far off [01:23] but carlos should land that on monday [01:24] and we should consider it for rolling out [01:24] thank you for doing the oops and bug reports, matsubara [01:24] he had a review by BjornT, can he chip in with status? [01:24] you're welcome SteveA [01:24] thanks danilos. BjornT ? [01:25] danilos: i review a branch that added copy buttons. is that related? [01:25] BjornT: no, I guess I am mistaken then, sorry [01:25] that's probably the one blocking kiko then [01:26] yea [01:26] h [01:26] ok, sorry for the confusion [01:26] danilos: please arrange a meeting monday with carlos + kiko to get the status of these things sorted out [01:26] * Production and staging (Stuart) [01:26] SteveA: sure [01:27] Nothing unusual happening on production or staging. Business as usual. There is a pending cherry pick that I will push out tomorrow (4286) along with kikos checkwatches pick request if it is still needed. [01:28] (thats all folks) [01:28] (stub, if you want to fix checkwatches for issuezilla I have the patch that does that -- but it's your calll as this has been broken forever) [01:28] stub: I have a branch to get beta-ized [01:28] matthewrevell: hm, I'm figuring I can add small section for you in my "leaving gracefully" document, so you know what are the current issues with the Rosetta community, etc. Danilo is quite up to date on that too, though [01:28] will talk with you about that after meeting [01:28] jordi: That would be very helpful, thanks. [01:28] ok [01:28] matthewrevell: watch out for https://launchpad.canonical.com/RosettaJordiTransition ;) [01:29] jordi, be sure to have a ImportQueueHowto be part of that [01:29] stub: what was the issue on staging where it was giving proxy errors for a while? [01:29] kiko: that's mostly done [01:29] danilos: thanks === kiko high fives jordi [01:29] The one on the mailing list? Needed some apache rules added that I thought already had been. [01:29] ok [01:30] thanks stub [01:30] * Launchpad 1.0 status reports [01:30] supermirror-smart-server: did not hear about it this week, spiv being away. Infrastructure for http support (for anonymous access) is there in bzr 0.12, but I do not think the launchpad integration has progressed significantly. [01:30] Random Things 1.0 [01:30] ------------------------------- [01:30] - SearchingProjects: ready to land, waiting for pillar-names to land first [01:30] - PillarGotchis: started. will require more work than I was expecting [01:30] Malone 1.0: [01:30] upstream-forwarding-workflow: No news, merged to RF, but not in production yet. [01:31] Support^W Answer Tracker 1.0 Status Report [01:31] ========================================== [01:31] SupportTrackerViews: Previously missing 'Needs Attention' report now in review. [01:31] SupportTrackerHelp: 75% completed. Missing Highlights, help on language support and polish. [01:31] LocalizedSupportRequests: Ready to be merged. [01:31] series-and-distrorelease-mgmt: All branches have been reviewed, will do [01:31] SupportTrackerRenaming: spec being reviewed by kiko [01:31] some manual testing before merging them into RF. [01:31] guided-filebug-form: Has been merge into RF. [01:31] removing-duplicate-comments: No news, still implemented. [01:31] malone-essential-docs: No progress since last time, it's started though. [01:31] Rosetta 1.0 weekly report: [01:31] - opening edgy for translation: DONE [01:31] - firefox import/export: ff-import still working, more of ff-export done [01:31] - oo import/export: no progress this week (tests, import implemented, export in progress) [01:31] - translation review: (last weeks status: pending to answer the review, need some UI changes after talk with kiko (todo after merge current tree in rocketfuel). Also needs the reviewer specific UI.) [01:31] simple-bug-keywords: No news, still implemented. [01:31] - essential docs: no progress this week [01:31] - search: no progress this week, DB schema changes discussed at UDS [01:31] - checks not to upload wrong language PO file using "too many changes" check: not started [01:31] - translation page for projects: bug 73875 (new task, not started) [01:31] Bug 73875 on http://launchpad.net/bugs/73875 is private [01:31] - ui fixes: DONE [01:31] ddaa, there's at least a spec for deploying the SM -- is it blocked on anything? [01:31] salgado: pillar names is in the review queue. Feel free to review it if you want to unblock :) [01:31] danilos, about search, we are doing browsing as a substitute [01:31] = Soyuz-1.0 Report = [01:31] [01:31] * Archive Rework: pending review (cprov, r=kiko) [01:31] * PPA: ppa-build-support & ppa-poppy & ppa-publish & ppa-upload-support [01:31] (cprov, w-i-p) [01:31] * NoMoreAptFtparchive: pending review DB patch (cprov, r=stub) [01:31] * SyncSourceFixes: pending review (cprov, r=kiko) [01:31] * Code quality: === ddaa checks out the spec [01:31] * NascentUpload first refactoring (kiko, under development) [01:31] * Bug Fix: [01:31] * #74803 (MissingDSCSigningKey): pending review (cprov, r=?) [01:31] * #73836 (PackageCacheFix): pending review (cprov, r=bjorn, stub) [01:31] * #73761 (support for any-i386 and linux-i386): review ok (malcc, r=jamesh) [01:32] stub, I was planning to do that, but then I noticed that it has 18kloc [01:32] kiko: even with our postgres 8.1 can do partial indexes eureka? [01:32] salgado: mostly trivial changes to tests [01:32] danilos, yeah -- your stack is already high enough. [01:32] kiko: what spec are you thinking of? [01:32] ddaa, the supermirror deployment spec? [01:32] kiko: ok, sure, rearranging the status report for next week [01:33] kiko: cannot find it from https://blueprints.launchpad.net/products/launchpad-bazaar/+spec/supermirror-smart-server [01:33] SteveA, what's the name of the SM deplyment spec? [01:33] stub: I can take a look at it tomorrow -- just took a quick look through it and saw a few issues [01:34] kiko: right now, it's a web page that needs discussion with spiv. something to catch up with next week [01:35] SteveA, do you have a URL to share with ddaa? [01:35] kiko: https://launchpad.canonical.com/SupermirrorSmartServerPlan ddaa === kiko high fives SteveA [01:35] kiko: we ready to move on? === ddaa links to it in the whiteboard of the spec [01:35] thanks ddaa [01:35] yes please [01:36] * Sysadmin requests [01:36] 7 [01:36] 6 [01:36] 5 [01:36] 4 [01:36] matthewrevell: do you have a devpad account yet? [01:36] all mine are being handled -- thanks Znarl, Ng, Spads and elmo [01:36] 3 [01:36] 2 [01:36] SteveA: N ot yet [01:36] matthewrevell: ok. I increased its priority in RT and noted that you need one. [01:36] 1 [01:36] done [01:36] SteveA: Thanks [01:37] * Reorganising dbschema (Steve) [01:37] I sent an email to the launchpad list about improving the organisation of our dbschema enum classes [01:37] I have received a number of good comments about this. Next week, I'll be writing this up as a spec, and making a decision about what we'll do. [01:37] If you haven't read it yet, please read it and send me any comments. [01:38] * Keep, Bag, Change [01:38] 5 [01:38] 4 [01:38] 3 [01:38] looked pretty good [01:38] 2 [01:38] 1 [01:38] ok [01:38] thanks jamesh [01:38] * Three sentences [01:38] DONE: imports herding, help text, branch-email-notification speccing, cscvs release preparation [01:38] TODO: imports herding, help text, release cscvs, more speccing, review reply backlog [01:38] BLOCKED: no [01:38] DONE: some triage, oops report analysis, lots of IRC, fixed #47769, debugged #74437 [01:38] TODO: bug triage, write tests, fix bugs, oops report analysis, tweak oops report tool to show number of page loads. [01:38] BLOCKED: no [01:38] DONE: merge most pending branches, bug fixes, implemented 'Needs attention' report, reviews. [01:38] TODO: SupportTrackerRenaming, documentation, bug fixes [01:38] BLOCKED: waiting on kiko's review of SupportTrackerRenaming [01:38] DONE: Pillar name URLs [01:38] TODO: Interviews, test suite bug fix [01:38] BLOCKED: No [01:38] DONE: code review, clean up url-utils branch for review, bug-import [01:38] TODO: code review, bug-import, launchpad-bazaar tasks [01:38] BLOCKED: no [01:38] DONE: Lots of code review, finished SearchingProjects, planned what to do for PillarGotchis and started cooking a widget for images and cooked sql scripts to do mass inserts of archive/release mirrors in launchpad. [01:38] TODO: Finish PillarGotchis (including the image widget), more code review and high prio bug fixes [01:38] BLOCKED: No [01:38] DONE: landed malone-guided-filebug, got malone-release-management approved. reviews. addressed review comments in a bunch of branches. [01:38] DONE: ff-export fixes, translation licensing stuff (lots of emailing [01:38] back and forth, discussion with GRASS project members), bug management, user support [01:38] TODO: communicate, communicate, import queue starting next week, ff, OOo export, bug fixing [01:38] BLOCKED: no [01:38] TODO: test malone-release-management and land it. fix bugs from mpt related to Bugs 1.0 UI. reviews. [01:39] BLOCKED: no [01:39] DONE: preparing departure [01:39] DONE: Bug 73761 (with PQM), admin stuff [01:39] TODO: Raise some bugs from UDS specs, finish landing 73761, finish up. [01:39] BLOCKED: No. [01:39] Malone bug 73761 in soyuz "Missing support for any-i386 and linux-i386" [Critical,Confirmed] http://launchpad.net/bugs/73761 [01:39] DONE: finishing ppa-publish, general bug fixing (#73836, #74803), ppa-upload-support, p\ [01:39] pa branch reorganisation. [01:39] TODO: review archive-rework [01:39] BLOCKED: no [01:39] DONE: recruitment, management, bzr merging/resolving for beta.lp.net [01:39] TODO: recruitment, management, more work on beta [01:39] BLOCKED: no [01:39] TODO: import queue, email answering, more talk with Danilo [01:39] BLOCKED: no [01:39] DONE: let's see now. a lot of catching up with people. reviewing some UIs. discussing open issues. helping danilos, matt revell and co out. Launchpad monthly report. Interviews. Fix issuezilla wa [01:39] tches and prune dead watches. [01:39] TODO: deployment report, interviews, rosetta management. [01:39] BLOCKED: rosetta landings and progress, but that's partially on me [01:40] And, for keep, bag, change... BAG: realise you need to go to the toilet just 5 mins after the meeting starts. I'm about to wet my pants :) [01:40] TMI [01:40] they have special BAGs for that, you know? [01:40] haha [01:41] I've seen various template help-text landing recently [01:41] thank you [01:41] can we keep the potty talk on SSL please [01:41] jordi: at least you've realised that you're about to wet your pants [01:41] I don't want to have to share it [01:41] jamesh: that'll be a need to CHANGE [01:41] kiko: did you take a look at SupportTrackerRenaming? [01:41] we have 3 minutes more [01:41] flacoste, I did not! thanks for reminding me and please keep doing it [01:41] any other items? [01:41] 7 [01:41] 6 [01:41] 5 [01:42] 4 [01:42] 3 [01:42] 2 [01:42] 1 [01:42] SteveA, you know [01:42] 0 [01:42] salgado: i would need your help with a test failure after the meeting [01:42] ok [01:42] kiko: I do? [01:42] flacoste, sure, just ping me [01:42] End of meeting. Thanks for being here, and being attentive everyone! [01:42] what if we just moved wiki.launchpad.canonical.com out of the way, and put a redirect from launchpad.canonical.com to wiki.launchpad.canonical.com [01:42] SteveA: Well done. [01:42] jamesh: Are we settled for Feb 5th? === jordi vanishes! [01:43] niemeyer: yeah. I should book the tickets === ddaa goes back to cjwatson import questions [01:43] kiko: yes, that's an option, but I want the information I mentioned in the email first [01:43] jamesh: Cool.. I'll be ready for it then [01:43] jordi: you're leaving a trail behind you... a wet trail... ;) [01:43] SteveA, the robots stuff [01:43] I'm looking forward to be able to nag kiko live [01:44] I am a great subject for nagging [01:44] jamesh, niemeyer; did you get that trip arranged? [01:44] jamesh: I'll try to prepare the layer we need before getting there [01:44] dates fixed? [01:44] please mail the launchpad list with the dates for this [01:45] yes please [01:45] ASAP [01:45] SteveA: Yep, we were just talking about it [01:45] 5TH, FEB! [01:45] Done, anything else? [01:45] Kidding.. :) [01:45] book tickets and hotels [01:45] much better now :) [01:45] kiko: Hmm.. hotel.. :) [01:46] salgado: i got a failure in xx-person-editlanguages.txt related [01:46] to the +editmylanguages change [01:46] kiko: Can you give them a call, or hand me the phone number? [01:46] The dependency graph at https://blueprints.launchpad.net/distros/ubuntu/+spec/replacement-initscripts is too small to read [01:47] niemeyer, taci@#async can handle everything for you, just ping her when you have dates and people and she will book [01:47] twb: bug 66344 [01:47] Malone bug 66344 in blueprint "Dependency chart becomes unreadable with >12 dependencies" [Undecided,Confirmed] http://launchpad.net/bugs/66344 [01:47] flacoste, can you paste the error? [01:48] Good-o. [01:48] kiko: Awesme! Thanks [01:48] jamesh: Are we settled then? Can I move on? [01:49] most welcome niemeyer [01:50] salgado: https://devpad.canonical.com/~andrew/paste/filehCI3lL.html [01:50] salgado: actually, this is not the original error [01:52] what I added originally was: https://devpad.canonical.com/~andrew/paste/filehTWZgK.html === SteveA -> lunch [01:57] malcc, ping [01:57] kiko: pong [01:58] flacoste, maybe that's because something went wrong when we splitted my localized-requests branch [01:58] malcc, can you send me an email with a plan for your next (last) week, even if it is a skeleton for me to flesh out with you? [01:58] salgado: that's what I suspect [01:58] kiko: Sure [01:58] some leftovers that you change in your branch but that I somehow reverted when merging [01:58] flacoste: i'm investigating [01:58] salgado: i'm investigating [01:58] exactly. do you have a complete diff of your tt-localized-requests branch? [01:59] malcc, thanks. try to pick off small but important bugs, and help cprov's overload [01:59] yeah, I can have that [01:59] then I can help you investigate [02:00] kiko: malcc: ohh, thanks ;) [02:01] salgado: https://chinstrap.ubuntu.com/~flacoste/tt-localized-requests.diff [02:05] salgado: the changes to xx-person-editlanguages.txt in that file should be ignored [02:05] salgado: but I have two redirect tests added to lib/canonical/launchpad/pagetests/basics/notfound-traversals.txt [02:05] i'm not sure that should be there [02:05] https://devpad.canonical.com/~andrew/paste/filek9Eurx.html [02:05] this should be removed too [02:06] salgado: yeah, just saw that. I remove that and the check_redirect added to notfound-traversals? [02:06] the redirect tests added to lib/canonical/launchpad/pagetests/basics/notfound-traversals.txt should be reverted too [02:06] both of them, yes [02:07] and what about the one on IRosettaApplication? [02:08] salgado: https://devpad.canonical.com/~andrew/paste/fileWzkDJR.html [02:08] which one? [02:08] should that be nuked also? [02:08] I don't think so. let me check [02:09] ah, right [02:09] that's the problem [02:09] yeah, remove that and your test will pass [02:10] so I should remove those three chunks: person.zcml, rosetta.zcml and notfound-traversals.txt since you took care of that differently the branch you merged? [02:10] yeah [02:10] ok, thanks a lot for helping sort this out! [02:10] you're welcome [02:11] tt-localized-requests will now land [02:11] good job flacoste [02:12] thx === Nafallo [n=nafallo@ubuntu/member/nafallo] has joined #launchpad === Nafallo [n=nafallo@ubuntu/member/nafallo] has left #launchpad ["Lmnar"] === kiko sees all his tabs go white [02:29] either I've overloaded everybody else [02:29] or [02:29] shit, jordi. [02:30] ! [02:47] Would it be worth me checking the moderation queue on rosetta-users when you leave jordi? [02:47] matthewrevell: danilo was added to the moderators list this morning [02:47] jordi: okay, cool [02:47] so it should be covered now, but talk to him about it [02:47] matthewrevell: and I see no problem in adding matthew there as well ;) [02:48] :) [02:48] I could figure that :) [02:49] jordi, can we have matsubara and matthewrevell on that list as well? [02:50] kiko: don't be shy, you can moderate it as well :P [02:50] totally. the spam, when widely distributed, is best :) [02:50] I am kinda fucked for time lately :-( [02:52] danilos: do you know why there's many pending distro files in the import queue? [02:53] jordi: feisty stuff [02:53] danilos: some bug, bad packages? [02:53] jordi: not feisty? [02:53] oh, so they are being queued? [02:53] dunno [02:53] they looked all feisty to me, last I checked :) [02:54] there's edgy stuff in the first page [02:54] debian/iso-codes/pl.po in choose-mirror in Ubuntu Edgy [02:54] of course, this choose-mirror stuff should be on the ignore list. [02:54] btw, is there a something like 'cvs tag' (without '-b') in bzr? [02:54] z/build/lib.linux-sparc-2.4/zope/i18n/tests/locale/en/LC_MESSAGES/zope-i18n.po in zope3 in Ubuntu Edgy [02:55] this is a "bug" in Rosetta, not knowing how to handle these layouts [02:55] yeah, they're completely standard [02:55] danilos: okay, so I see no feisty, I see mostly edgy here [02:55] New bug: #74816 in launchpad "Launchpad should return a 404 HTTP error instead of 500 for non-existant domains" [Undecided,Unconfirmed] http://launchpad.net/bugs/74816 [02:55] jordi: hum, then probably most of it is real packages being uploaded in the meantime [02:55] oh I see feisty now [02:56] so there's stuff [02:56] there's *old* stuff there too :) [02:56] let me check on staging [02:57] oh, I don't have those privs, I forgot ;) === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad [03:06] matthewrevell, ping? [03:06] kiko: pong [03:06] matthewrevell, can you get your PGP key uploaded somewhere where I can find it? [03:07] oh yes. [03:07] Just a moment. [03:07] I'm asking because mutt drives me crazy when delaying to open your emails [03:08] Ah [03:08] I thought it was on the Ubuntu keyserver. [03:08] Is that no good? === Gwaihir [n=Gwaihir@mail.foredil.it] has joined #launchpad [03:08] it's not up there [03:08] hmm [03:09] kiko@beetle:~$ gpg --keyserver keyserver.ubuntu.com --recv-key D7FE03EA [03:09] gpg: requesting key D7FE03EA from hkp server keyserver.ubuntu.com [03:09] gpgkeys: key D7FE03EA not found on keyserver [03:09] matthewrevell, or I think you're signing your messages with the wrong key, then [03:09] (did you get my email on this subject?) [03:09] is that why my key is on the ubuntu keyserver? === sabdf1 is now known as sabdfl [03:10] LarstiQ, it's linked in to the keyserver network afaik [03:12] kiko: last I heard it wasn't, but I'm not too sure. [03:14] where do i find out what changes were made in the two updates of gpg that happened recently in dapper? [03:14] snail, launchpad.net/distros/ubuntu/+source/gnupg [03:14] or something like that [03:15] kiko: Yes, got your email. Right, I think I've re-sent my keys [03:15] cool [03:15] I used gpg --keyserver keyserver.ubuntu.com --send-keys [03:15] It didn't give me any feedback though [03:16] nope [03:16] use --send-key D7FE03EA [03:16] explicitly [03:17] matthewrevell, and try sending it to mit.edu as well === cprov is now known as cprov-lunch [03:20] I was browsing through translation of a user to cehck them... [03:20] I would like to know onr thing: [03:20] kiko: That seems to be doing something now. Thanks [03:20] is a user is not a member of the translation team... === LarstiQ prefers subkeys.pgp.net [03:20] how are marked her tanslations? [03:20] matthewrevell, yay [03:21] Although, mit.edu refused my connection, but keyserver.ubuntu.com worked. Thanks for your help [03:21] well, not mit.edu directly [03:21] but they have a keyserver somewhere [03:21] pgp.mit.edu. IIRC [03:22] done, thanks salgado [03:24] Gwaihir: they're just suggestions then [03:24] Gwaihir: there is no special marking other then them appearing among the suggestions, and not inside any of the 'used elsewhere' categories [03:24] but are them being marked as suggestionS? [03:27] Gwaihir, yes, they are marked as suggestions. good to see you around Milo [03:29] ;) [03:29] thanks... [03:29] but one thing... [03:30] I see the translation of a non member inside the translation box... [03:30] and not being a suggested... [03:35] ddaa: ping [03:35] BjornT: pong [03:36] I thought it was pgp.ai.mit.edu [03:36] Some subnode of CSAIL, anyway. [03:36] ddaa: re cscvs/svn-peg-revision. will you ever finish that branch, or should it be removed from PendingReviews? [03:37] ... [03:37] I have not quite made my mind up... [03:37] the actual bug was fixed by upgrading libsvn, no by my patch. [03:38] Maybe I should still write a test case... [03:39] ddaa: ok. so how about if i move it work-in-progress then? [03:39] fine [03:39] cool [03:41] ... looks I was watching the wrong user... [03:41] :o [03:42] Gwaihir, okay, point me to a URL if you see something that looks wrong. [03:43] kiko: sure! ;) [03:43] how are things with 68014? [03:46] Gwaihir, waiting for carlos to come back :-( [03:47] ah ok! ;) === mhb [n=mhb@64.73.broadband3.iol.cz] has joined #launchpad [03:57] thunderbold and lightning [03:58] very very frightning [03:58] me [03:58] what a sissy [03:59] that's not right... it's "galileo" next I think === frafu [n=frafu@vodsl-9762.vo.lu] has joined #launchpad [04:00] mmmmmmmmmm [04:07] bohemian rhapsody... [04:11] kiko: if I'm going to Brazil, is there any other stuff that'd be worth doing in person while I'm there? [04:11] jamesh, you mean, office-safe right? === kiko just checkin [04:12] seriously, work-related or not? [04:12] kiko: the only thing I can think of at the moment would be some work on the OOPS reporting system with matsubara -- maybe work on the error reporting for scripts stuff [04:12] work related. [04:12] jamesh, whew, I have a ton of stuff I'd like to work with you on [04:12] a lot of the little boring infrastructural issues that we need [04:13] you could even help doing the rosetta DB refactoring if you want to spend the time [04:13] how much in a hurry are you to get back to WA? [04:14] given the length of time it takes to get to Brazil, staying two weeks wouldn't be too bad. [04:14] I mentioned the error reporting for scripts stuff because we'll probably be merging the two database adapters when moving to the new ORM [04:14] danilos, feel like visiting brazil in february? [04:14] jamesh, that does sound like a good plan. === ChrisW [n=cjw296@host86-141-71-114.range86-141.btcentralplus.com] has joined #launchpad [04:15] kiko: sure, sounds warm :) [04:15] so we'd be able to collect all the database related stats for non-webapp OOPS's === sabdfl [n=sabdfl@ubuntu/member/pdpc.silver.sabdfl] has joined #launchpad [04:15] kiko: but be sure to let me know of such plan beforehand, since visa takes time for some countries === ChrisW [n=cjw296@host86-141-71-114.range86-141.btcentralplus.com] has left #launchpad [] === danilos is now known as danilo-brb [04:17] danilo-brb, go apply, you are booked. [04:17] danilo-brb, 1-2 weeks in february [04:17] kiko: so, I'll book the flight tomorrow to stay for an extra week. [04:17] jamesh, sounds good. [04:17] jamesh, not 3 weeks? :-) [04:21] kiko: don't know. Is there that much stuff to do? :) [04:22] jamesh, yeah, there is [04:22] so if you want to stay please do === frafu [n=frafu@vodsl-9762.vo.lu] has left #launchpad [] [04:23] okay. I'll book for three weeks then. [04:24] will be good to have you around [04:27] from memory, it is better to get an afternoon return flight due to the bus trip from sao carlos, right? === kiko is now known as kiko-fud [04:33] jamesh, exactly. [04:33] very good [04:34] kiko-fud: looks like awstats classes bzr as an unknown browser :) === matsubara is now known as matsubara-lunch === radix [n=radix@70.91.133.157] has joined #launchpad [04:50] SteveA: the dropdown menu on the UI branch appears to be b0rked [04:50] how's the connection of beta to production db going? === lbm [n=lbm@82.192.173.92] has joined #launchpad === rrittenhouse [n=tad@cpe-76-188-35-66.neo.res.rr.com] has joined #launchpad [04:52] sabdfl: scheduled to be hooked up tomomrrow [04:52] the UI branch isn't up to date. I'm resolving some pagetest issues integrating it. [04:52] take a look on the beta server EOD tomorrow [04:53] (when I say scheduled, looks like it's going to be moving to a new box, so stub has arranged with admins time to get that sorted) [04:55] cool, thanks [04:55] dropdown menus? [04:55] don't seem to be... dropping === cprov-lunch is now known as cprov [04:59] sabdfl: mpt started the beta stylesheet from scratch, so it is probably just a case of it missing the rules needed for the lpmenu.js stuff. [05:00] thanks jamesh. will mail mpt. [05:00] mpt is on vac === danilo-brb is now known as danilos [05:00] sabdfl: mail me. I'll look next week, once we've got beta going [05:00] for this week, I'm kinda focused on getting beta working, and recruitment issues [05:01] i've filed a bug on mpt [05:01] https://launchpad.net/products/launchpad/+bug/74839 [05:01] Malone bug 74839 in launchpad "Dropdown menus in 1.0 UI do not drop down" [Undecided,Unconfirmed] [05:02] thanks === cprov [n=cprov@monga.dorianet.com.br] has joined #launchpad [05:02] sabdfl: were you looking at the rocketfuel/launchpad/ui-one-zero branch? [05:03] SteveA: looking at beta.launchpad.net [05:04] thanks [05:10] New bug: #74839 in launchpad "Dropdown menus in 1.0 UI do not drop down" [Undecided,Unconfirmed] http://launchpad.net/bugs/74839 [05:11] Does 1.0 see the Rosetta, Malone, etc names disappear completely? [05:11] matthewrevell: sort of [05:11] we have translations, bugs, blueprints, code, answers [05:12] So, on the translations overview page we wouldn't mention the name Rosetta. [05:12] it needn't, but should if it will avoid confusion [05:12] what do you think about it? [05:12] I prefer the new descriptive names. [05:13] However [05:13] perhaps we should have some reference to the previous names to avoid confusion [05:13] I can't imagine too many people would be confused, though. They're all "does what it says on the tin" names, after all. [05:14] sure. let me get you access to the new UI, and you can see if you can improve things... [05:14] I'm writing text for the 1.0 marketing pages, atm [05:14] cool, thanks === lbm [n=lbm@82.192.173.92] has joined #launchpad === LarstiQ personally keeps looking over 'code' expecting Branches === matsubara-lunch is now known as matsubara [05:49] Is there a way to find out roughly how many people have used Rosetta? [05:54] yes === sigurdga_ [n=sigurdga@252.80-202-221.nextgentel.com] has joined #launchpad === mgalvin [n=mgalvin@ubuntu/member/mgalvin] has joined #launchpad === jkakar [n=jkakar@d66-183-122-248.bchsia.telus.net] has joined #launchpad === danilos is now known as danilo-out === willvdl [n=will@196.36.161.235] has joined #launchpad === raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad === jkakar [n=jkakar@204.174.36.228] has joined #launchpad === montytaylor [n=mtaylor@nat.janus.lindenlab.com] has joined #launchpad === montytaylor [n=mtaylor@nat.janus.lindenlab.com] has left #launchpad ["Leaving"] === ytnom [n=mtaylor@nat.janus.lindenlab.com] has joined #launchpad === radix [n=radix@70.91.133.157] has joined #launchpad === mtaylor [n=mtaylor@nat.janus.lindenlab.com] has joined #launchpad === Gwaihir [n=Gwaihir@ppp-134-102.25-151.libero.it] has joined #launchpad === kiko-fud is now known as kiko === dand [n=dand@gw.datagroup.ro] has joined #launchpad === lamont` [i=lamont@nat/hp/x-87498139b881caff] has joined #launchpad === lamont [i=lamont@nat/hp/x-f646e2cf03869cd2] has joined #launchpad [09:18] hi... [09:18] one thing... [09:18] inside a translation, in the overview box, there are two links [09:19] one to "Switching language" and the other one to "View template"... [09:19] but they are the same [09:24] Gwaihir: indeed. [09:24] Gwaihir: could you please file a bug? [09:24] sure! [09:25] Gwaihir: give me the bug number as soon as you file it, please. [09:26] ok... i'm on a dial-up... [09:28] while I wait the page to load... [09:28] isn't the "All translator" box a little "unuseful"? [09:29] I mean... when I'm inside a translation I only need the "Contributors" box... [09:29] maybe a link to the team page would be useful [09:31] Gwaihir: that will definitely change in the new UI [09:31] that's great! ;) [09:31] matsubara: bug is #74871 [09:32] thanks Gwaihir [09:32] you're welcome! === cprov is now known as cprov-out [09:40] New bug: #74871 in rosetta "Links in overview box are the same" [Low,Confirmed] http://launchpad.net/bugs/74871 === dand [n=dand@dyn-85.186.137.18.tm.upcnet.ro] has joined #launchpad === dand_ [n=dand@gw.datagroup.ro] has joined #launchpad === thumper [n=tim@166-179-27-33.jamamobile.co.nz] has joined #launchpad === dand [n=dand@dyn-85.186.137.18.tm.upcnet.ro] has joined #launchpad === dthacker [n=dthacker@63.174.225.68] has joined #launchpad === shawn___ [n=shawn@netblock-68-183-69-197.dslextreme.com] has joined #launchpad [10:25] Does Canonical sell Launchpad? [10:27] dthacker: no [10:28] not in the general case [10:42] dthacker, no for most practical uses. use and enjoy. === dand [n=dand@dyn-85.186.137.18.tm.upcnet.ro] has joined #launchpad [10:52] jamesh: can you ping me when you are around? === WebMaven [n=webmaven@ip72-193-220-34.lv.lv.cox.net] has joined #launchpad === sfllaw [i=sfllaw@debian/developer/coleSLAW] has joined #launchpad === jml [n=jml@59.167.203.44] has joined #launchpad === shawn___ [n=shawn@netblock-68-183-69-197.dslextreme.com] has joined #launchpad === dand [n=dand@dyn-85.186.137.18.tm.upcnet.ro] has joined #launchpad === dand_ [n=dand@gw.datagroup.ro] has joined #launchpad === dand_ is now known as dand === WaterSevenUb [n=WaterSev@c-65-96-188-198.hsd1.ma.comcast.net] has joined #launchpad