/srv/irclogs.ubuntu.com/2006/12/07/#launchpad.txt

=== 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
looksausI'm a bit curious about https://blueprints.launchpad.net/products/launchpad/+spec/login-service and https://launchpad.net/products/launchpad/+bug/116912:58
UbugtuMalone bug 1169 in launchpad "Launchpad should support OpenID" [Medium,Confirmed]  12:58
looksausis there any information relevant to this that is appropriate for the public eye?12:59
=== _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
gnomefreakis 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?01:52
lifelessgnomefreak: why do you want to remove the bzrdir ?02:00
gnomefreakoh didnt think of that :)02:01
gnomefreakand than just run all commands again?02:01
lifelessI am desynced and confused.02:02
lifelessI just asked a small question, I dont know what commands you are talking of, nor what you have done02:02
lifelessI'm happy to help, but you'll need to explain more fully02:02
gnomefreaklifeless: 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 commit02:03
gnomefreakso now i would like to start over and reset my account for planet from scratch02:04
=== sevrin [n=sevrin@202.75.186.154] has joined #launchpad
gnomefreakok 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:18
_thumper_ping jamesh02:20
_thumper_jamesh: do you have a few minutes to help clear up some confusion on vocabs...02:21
jamesh_thumper_: sure.  Go ahead02:22
_thumper_jamesh: thanks02:24
_thumper_I have created another vocab02:25
_thumper_and registered it02:25
_thumper_and I have a view that I want to expose a choice through02:25
_thumper_but I'm not sure how to marry the two02:25
jameshso you are writing a form?02:25
_thumper_it is just a UI selector02:25
_thumper_editing one02:25
jameshOkay.  To use the form machinery, you need a schema that describes the input you want02:26
_thumper_person-branches.pt02:26
jamesha schema is just an interface02:27
_thumper_ok02:27
jameshso you define an interface with a Choice() field that uses your vocabulary02:27
_thumper_and have the view implement it?02:27
jameshand create a LaunchpadFormView subclass for your view02:27
jameshnot quite.02:27
_thumper_the one that I have inherits from LaunchpadView02:28
jameshhave a look at lib/canonical/launchpad/doc/launchpadform.txt for some details on defining a form class02:28
=== _thumper_ looking
jameshI'd point you at the answer tracker or bug search/listing pages, but they are a bit complicated02:29
=== _thumper_ is now known as thumper
jameshOkay.  here is a quick sketch of what the view class should look like:02:33
jamesh(1) it should be a LaunchpadFormView subclass02:33
jamesh(2) set its schema attribute to the interface you defined.02:33
thumperwhat's the difference between a LaunchpadView and LaunchpadFormView02:34
jamesh(3) don't use the launchpad_form/form macro in your page template02:34
jameshinstead just define the <form> element yourself with action="get", and instantiate the widget with <div tal:replace="structure view/widgets/fieldname"/>02:35
jameshLaunchpadView is a base class we use for view classes02:35
jameshLaunchpadFormView subclasses LaunchpadView, and integrates zope's formlib02:36
jamesh(4) in the view class, you can do something like:02:37
thumperok, ta02:37
thumperI'll go with that02:37
jamesh  widget = self.widgets['fieldname'] 02:37
jamesh  if widget.hasValidInput():02:37
jamesh    status = widget.getInputValue()02:37
jamesh  else:02:37
jamesh    status = DEFAULT_STATUS02:37
=== der_steppenwolf [n=sergio@p54A5F8DC.dip.t-dialin.net] has joined #launchpad
jameshand use that to pick the branches to display02:37
thumpermore complex than what I was doing :)02:38
jameshit isn't quite straight forward, since we're ignoring most of the form handling code here.02:38
thumperfor the class that inherits from the LaunchpadFormView, do I need to create a member variable?02:39
thumperor is that handled through the schema?02:39
jameshyeah.  you need to set schema to the schema used by the form.02:39
lifelessgnomefreak: you can just cd into that directory, no need to checkout again02:41
lifelessgnomefreak: the thing is that you need to be in the planet-ubuntu team to commit. Are you in that team ?02:41
gnomefreakits throwing errors about no dir /gnomefreak/planetubuntu02:42
lifelessgnomefreak: hmm. perhaps you can hop on to #bzr for help with this ?02:42
gnomefreakyes i thought i was since i was on the planet blog02:42
gnomefreakk02:42
lifelessI'm not in a good position to do detailed support right now.02:42
=== 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
UbugtuNew bug: #74741 in malone "RFE: Canned responses" [Undecided,Unconfirmed]  http://launchpad.net/bugs/7474102:55
=== 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
thumperjamesh: sorry to bug you again, but what do I need to do to initialise the widgets?04:07
thumperbeen going around in circles for the last while trying to figure it out04:07
jameshthumper: the widgets get initialised by the LaunchpadFormView.initialise() method04:08
thumperhmm... something seems to be missing then04:08
thumperah04:08
thumperI know04:08
jameshmore specifically, the setUpFields() and setUpWidgets() methods, which get called by initialize()04:08
thumpera call to the base method04:08
thumperwhat's the coding standard for super methods?04:08
thumpercall directly or use super?04:09
jameshusually just call them directly for simple cases04:09
thumperok04:09
jameshsuper() is used in a few places for class hierarchies with exotic inheritance :)04:10
thumperyay, it works now04:11
thumpera bit convoluted04:11
thumperbut ok(ish)04:11
jameshif you want another set of eyes to look at it, put the branch on pending-reviews as a work-in-progress branch04:12
thumperyeah, will do04:12
UbugtuNew bug: #74748 in malone ""Select a Person or Team" should use default term" [Undecided,Unconfirmed]  http://launchpad.net/bugs/7474804:15
UbugtuNew bug: #74749 in malone ""Select a Person or Team" needs to be themed" [Undecided,Unconfirmed]  http://launchpad.net/bugs/7474904:20
UbugtuNew bug: #74750 in malone "No way to search by specific field" [Undecided,Unconfirmed]  http://launchpad.net/bugs/7475004:20
=== WebMaven [n=webmaven@ip72-193-220-34.lv.lv.cox.net] has joined #launchpad
thumperjamesh: I hope your locations.conf entries work for me04:53
thumpernope04:54
thumperI think I'm missing something04:54
=== thumper rereads email
=== thumper bbl
UbugtuNew bug: #74753 in rosetta "Edgy blurb out-of-date on Rosetta index webpage" [Undecided,Unconfirmed]  http://launchpad.net/bugs/7475305:05
=== 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
thumperddaa: did you get my email?09:09
twbthumper: magic09:16
=== raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad
jordiSteveA: ping09:27
=== 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
SteveAjordi: good morning09:44
=== _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
twbWhen I file a bug via email, I put ` affects /distros/ubuntu/PACKAGE', where PACKAGE is the name of the package?09:51
twbnm, #ubuntu-devel answered already.09:55
BjornTtwb: yes. and to be more specific, where PACKAGE is the name of the source package.09:56
BjornToh :)09:56
twbAh.09:56
twbIs there a way to report in which version of the package the bug was found?09:56
BjornTtwb: 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:58
twbThat must make it hard to programmatically extract information.09:59
twbe.g. `give me all the unresolved bugs relating to the version of FOO currently in edgy'09:59
=== rraphink [n=raphink@ubuntu/member/raphink] has joined #launchpad
BjornTyeah, 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
twbSo that you don't have to troll through ALL the open bugs to find ones that you want.10:01
BjornT(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:01
twbI 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
twbBut I have found it useful under Debian to know whether upgrading to version N can be expected to fix specific bugs.10:02
BjornTtwb: 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:05
BjornTtwb: 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.10:06
=== dand [n=dand@gw.datagroup.ro] has joined #launchpad
=== tim [n=tim@166-179-25-71.jamamobile.co.nz] has joined #launchpad
twbWell, that is certainly a feature I'd like to see in Ubuntu.10:07
=== tim is now known as thumper
ddaaMorning10:11
thumperMorning ddaa10:13
twbBjornT: if I email a new bug, do attachments get included?10:13
ddaathumper: checking inbox10:13
=== mdke [n=matt@85-210-195-200.dsl.pipex.com] has joined #launchpad
twbI want to include a transcript of the apt-get install session.10:13
thumperddaa: for a while I thought my mail server wasn't sending all email, but it seems to 10:14
=== kiko is now known as kiko-zzz
ddaagot it10:14
kiko-zzzzzz10:14
kiko-zzztwb, not yet10:15
kiko-zzzbut soon10:15
kiko-zzztwb, about versions, one problem with that is that a bug is rarely present /only/ in one version10:15
ddaathumper: you're at home now?10:15
kiko-zzzso the version information is often misleading10:15
twbSo I have to include the transcript inline?10:15
thumperddaa, yep, should I grab the phone?10:16
ddaanah10:16
kiko-zzzsee bugzilla.mozilla.org for examples of bugs where the version data is mostly irrelevant10:16
ddaaEwa still snoring in the bedroom end of the office10:16
kiko-zzztwb, yes, for now, use the description10:16
=== kiko-zzz yawns
thumperddaa, office is your bedroom?10:16
ddaahousing is expensive in paris10:17
ddaaand demand stupidly high, housing agency ask that one's revenue is 3x the rent10:17
ddaaAnd Ewa is still a student -> no steady income10:18
Fanchddaa: it is slowly changing10:18
Fanch(price are to high and are beginning to drop)10:19
ddaaFanch: whatever, the increase rate of prices (second derivative) is decreasing10:19
Fanchddaa: then it drecreased enough to be negative... :-)10:19
ddaanot really something worth celebrating about10:19
ddaathat still means that prices are increasing, albeit more slowly10:20
Fanchddaa: you are talking about shown/requested prices or negotiated prices ?10:21
=== _thumper_ [n=tim@166-179-18-108.jamamobile.co.nz] has joined #launchpad
ddaaFanch: admittedly, I'm not looking to closely, and I'm not interested in buying soon anyway10:22
ddaaI do not really have the time to spare, and I'm lacking the capital and the stability to take a loan on 30 years10:23
twbWhat 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
Fanchddaa: that's why I am waiting for 3 to 4 years to buy... (but I bought an flat 30 months ago)10:23
twbAh, a couple of minutes.10:24
=== stu1 [n=stub@ppp-58.8.16.86.revip2.asianet.co.th] has joined #launchpad
=== stu1 is now known as stub
ddaaFanch: 30 months ago I was out of a job with a student loan to repay. Not the best time to buy :)10:27
=== thumper [n=tim@166-179-18-221.jamamobile.co.nz] has joined #launchpad
thumperping SteveA10:41
danilosSteveA: ping11:02
=== SnkBite [n=SnkBite@212.25.63.30] has joined #launchpad
=== cprov-out is now known as cprov
cprovmorning, guys11:21
stubJust the person :-)11:24
stubcprov: Does https://devpad.canonical.com/~andrew/paste/filex1OszE.html make any sense to you?11:24
cprovstub: yes, new apt-ftparchive in edgy11:25
stubok. So I can expect gina.txt, soyuz-upload.txt, test_ftparchive to fail under edgy?11:25
cprovstub: PQM still using dapper version11:26
stubIf so, my branch is actually working and ready for review :)11:26
cprovstub: afaik, only soyuz-upload.txt11:26
cprovstub: btw, did you check my DB patch (new fields in SourcePackageRelease) ?11:27
=== _thumper_ [n=tim@166-179-16-192.jamamobile.co.nz] has joined #launchpad
stubbriefly but not properly. I'll check it now.11:28
cprovstub: thanks 11:29
=== _thumper_ is now known as thumper
SteveAthumper: hi11:37
SteveAddaa: hi11:37
SteveAdanilos: hello11:37
daniloshi SteveA11:37
ddaaSteveA: hello11:37
SteveAthumper, ddaa: have you guys talked recently?11:37
ddaaSteveA: yes, yesterday night11:37
SteveAhow did it go?11:37
ddaaplanned to have a call this morning, but Ewa is sleeping right now11:38
ddaaSteveA: good, discussed about the evolution of Branth.lifecycle_status and a potential sprint in April11:38
thumperhi SteveA11:39
ddaaApparently poolie is asking for a status "Retired" or "Vintage", but I'm resisting adding additional values.11:39
ddaathumper is working on branch status filtering for branch listing pages11:40
thumperthat's coming along nicely, but it doesn't look pretty yet11:41
thumperI'm trying to figure out how to submit the form when the user changes the value in the drop down list11:41
ddaaI'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 now11:41
thumpernormally a little javascript on the select is enough11:41
thumperbut not sure how to add this on a widget11:42
ddaathumper: I suggest you do not do this now11:42
thumperI am intending to give feedback on the email spec11:42
ddaanothing 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.011:42
thumperhmm...11:43
thumperjust not slick11:43
ddaayes, it sucks11:43
thumperI guess it is not essential just yet11:43
thumperbut I would like to know how to do it11:43
ddaayup11:43
thumperdo you need to do a javascript block to attach a handler to the event after it?11:43
SteveAmochikit11:44
=== ddaa once looked at zope widgetry and ran away screaming
thumperSteveA, docs for that anywhere?11:44
SteveAloads.  google11:44
SteveA(still on phone)11:45
thumper:)11:45
ddaaMochikit looks slick11:45
thumperddaa, how do you stop all the cruft getting added around the widgets?11:45
thumperlike the extra divs et al11:45
ddaathumper: you should ask something who know something about zope, like BjornT11:45
SteveAthumper: I'll talk with you about the UI in 15 mins11:46
thumperok11:46
BjornTthumper: you can use LaunchpadDropDown widget, it doesn't add any <div> around itself11:46
ddaaI really have no clue, I'm just happy to use the easy tools that the infrastructure guys give me11:46
thumperBjornT, I'm just using the default widget for a Choice11:46
thumpernot sure what that is11:47
BjornTthumper: it's DropDownWidget. we probably should do LaunchpadDropDownWidget the default, though, but I haven't gotten around it yet.11:47
thumperBjornT: ah, that might explain it11:48
BjornTthumper: for now, you can use custom_widget('your_field', LaunchpadDropDownWidget) in your view class11:48
=== 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
_thumper_BjornT, thanks, that looks much better now12:13
_thumper_Although it is Dropdown :)12:13
=== _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
looksausmay 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-service12:27
UbugtuMalone bug 1169 in launchpad "Launchpad should support OpenID" [Medium,Confirmed]  12:27
=== 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
ddaaOracle developers have a sense of humour12:32
=== cprov [n=cprov@monga.dorianet.com.br] has joined #launchpad
ddaadavid@marvin:~ % svn ls http://oss.oracle.com/projects/ocfs2/src/trunk12:32
ddaadude_wheres_my_ocfs212:33
snailddaa: are you working with oracle?12:33
ddaajust going over some old vcs-import requests12:33
ddaait's a public repo12:33
snailddaa: http://connect.educause.edu/blog/stuartyeates/oracle_unbreakable_linux_mortal_after_all/1389012:33
=== sabdf1 [n=sabdfl@217.205.109.249] has joined #launchpad
ddaa*shrug*12:36
ddaaAnyway, if you need to use Oracle, you are already in trouble.12:36
snailddaa: true12:38
SteveA_thumper_: ping12:39
SteveAmatsubara: ping12:43
matsubaraSteveA: pong12:44
SteveAmatsubara: mpt is on vacation today.  would you prepare the bug report for today's meeting?12:44
matsubaraSteveA: yes, sure.12:44
SteveAthanks matsubara !12:45
SteveA.win 2812:45
twbIf a bug's status has been changed to "Rejected", and I add a comment, does the developer still see the new comment?12:45
twb(In malone)12:46
BjornTtwb: yes. email notifications are always sent, no matter what the status of the bug is.12:46
twbOK.12:46
matthewrevell4698212:51
matthewrevellsorry12:51
SteveAmatthewrevell: have you been to a launchpad developers meeting before?12:58
matthewrevellSteveA: I've observed12:58
=== flacoste [n=francis@modemcable207.210-200-24.mc.videotron.ca] has joined #launchpad
ddaamatthewrevell: just prepare your three sentences bingo in advance01:00
stubhere01:00
matthewrevellddaa: Damn, three sentences you say? I've practically filled a page :)01:00
jordimeeting now?01:00
ddaastub: too early01:00
SteveALaunchpad developers' meeting!01:00
SteveAwho is here today?01:00
stubstill here01:00
matthewrevellme01:00
malccme01:00
jordime!01:00
cprovme01:00
SteveAmpt is on vacation01:00
flacosteme01:00
salgadome01:00
ddaame01:00
BjornTme01:00
SteveAtim (thumper) sends apologies -- flaky internet connection this evening01:00
twbI'm not here.01:00
SteveAspiv is at a conference01:01
matsubarame01:01
danilosme01:01
jameshme01:01
SteveAkiko-zzz: ?01:01
salgadoSteveA, kiko's comming in soon01:02
daniloshe was out riding a bike01:02
SteveAok, thanks01:02
kiko-zzzyes01:02
SteveAdanilos: like, duh!  ;-)01:02
=== kiko-zzz is now known as kiko
danilos;)01:02
jordiaha! he didn't crash this time01:02
SteveAwelcome to matthewrevell 01:02
matthewrevellSteveA: Thank you01:02
SteveAmatthewrevell has joined the launchpad team01:03
jordihey matthew, again welcome :)01:03
SteveAwhat will you be doing matthew?01:03
matthewrevelljordi: thanks01:03
danilosmatthewrevell: enjoy the first meeting, didn't welcome you properly before :)01:03
twbAre you guys having a meeting, right now, in here?01:03
matthewrevelldanilos: :001:03
SteveAtwb: yes01:03
twbOK.  I'll keep quiet01:03
SteveAtwb: 12:00 < SteveA> Launchpad developers' meeting!01:03
kikowelcome m01:03
kikor01:03
matthewrevellthanks all, very pleased to be here01:04
SteveAthis will also be jordi's last launchpad meeting as a member of the launchpad team.01:05
jordi:(01:05
SteveAthanks for all your work on helping the rosetta community, jordi01:05
=== kiko cheers jordi on
SteveAwe'll miss you01:05
jordiit's been a fun ride!01:05
jameshgood luck in the future01:05
kikowe will have a lot of work to do the job as well as you did jordi; thanks.01:05
jordiI'll be around the house, I need to keep close eye on danilo :)01:05
danilosjordi: yeah, you probably enjoyed riding me all the time :)01:06
jordisee? :)01:06
danilos:)01:06
kikoai ai01:06
SteveAthis would be tim (thumper)'s first launchpad meeting as a member of the launchpad team.01:06
SteveAbut tim can't be here today -- flaky internet01:06
jordijamesh: interesting times ahead: not only I leave Canonical, but my other job too01:06
SteveAtim will be working with ddaa on the bzr-launchpad integration01:06
jordiWhen 2007 starts, many things will have changed01:06
kikojordi, sounds like time for an adventure! why don't you come down and stay with us in .br for a while?01:06
jameshjordi: professional triathlete? :)01:06
kikothere is free lodging and internet01:07
jordijamesh: heh, I wish :)01:07
kikoand the food is cheap01:07
kikoand plentiful01:07
jordiand bikes :)01:07
kikoas are women01:07
jordiok, let's get on with the meeting :)01:07
jordi*lol*01:07
daniloskiko: jordi needs no food ;)01:07
SteveAkiko: cheap and plentiful?01:07
kikothere is something for everybody in brazil01:07
=== kiko waves the meeting on
SteveAok...01:08
=== jordi calls for a brazil-centric meeting after this one :)
SteveA== Agenda ==01:08
SteveA * Roll call01:08
SteveA * Agenda01:08
SteveA * Next meeting01:08
SteveA * Activity reports01:08
SteveA * Actions from last meeting01:08
SteveA * Oops report (Matsubara)01:08
SteveA * Bug report report (mpt)01:08
SteveA * Production and staging (Stuart)01:08
SteveA * Launchpad 1.0 status reports01:08
SteveA * Sysadmin requests01:08
SteveA----01:08
SteveA * Reorganising dbschema (Steve)01:08
SteveA * (other items)01:08
SteveA----01:08
SteveA * Keep, Bag, Change01:09
SteveA * Three sentences01:09
SteveA01:09
SteveAnext meeting -- same time next week!01:09
=== ..[topic/#launchpad:malcc] : Developer meeting: Thu 14 Dec, 1200UTC (wiki:MeetingAgenda) | launchpad-users@lists.canonical.com (wiki:MailingLists) | Channel logs: http://tinyurl.com/72w39
SteveA14 december01:09
SteveA * Activity reports01:09
SteveAI am so not up to date :-/01:09
kikoI am!01:09
ddaaup to date01:09
danilosup to date (restarting with last week)01:09
SteveAand 2 hr conf calls don't help :-/ :-/01:09
stubup to date01:09
flacosteup to date01:09
cprovup to date01:09
BjornTup to date01:09
matsubaraI'm not up to date01:09
SteveAyay, everyone shows me up!  well done team01:09
jordiI sent a batch last week, am writing last weeks now, so pretty good01:09
malccnot up to date01:09
jameshnot up to date01:09
matthewrevellup to date (if we're talking about why i think we are)01:09
matthewrevells/why/what01:10
kikoyeah matthewrevell, you're up to date01:10
kikocprov just sent out a batch, so he is too01:10
jordimatthewrevell: those pesky emails to activity@ :)01:10
SteveAmatsubara, malcc, jamesh: please send a summary during the meeting01:10
kikomatsubara has been busy growing his todo list01:10
salgadoI'm not up to date either. will send a summary01:10
SteveAthanks salgado 01:10
SteveA * Actions from last meeting01:10
SteveAthe only action is for spiv, who is away at a conference01:11
=== matsubara nods to SteveA
SteveAso we can defer that until next week when he will be back01:11
SteveA * Oops report (Matsubara)01:11
matsubaraToday's oops report is about bug 7443701:11
UbugtuMalone bug 74437 in rosetta "OOPS translating string with format specification." [Undecided,Unconfirmed]  http://launchpad.net/bugs/7443701:11
matsubaradanilos, can you take that one?.01:11
kikomatsubara, is that the one we debugged?01:12
kikodid you manage to get a test in?01:12
matsubaradanilos: I can write the test if you help me out with some sample data fiddling01:12
danilosmatsubara: isn't that related to another bug about format stuff?01:12
matsubarakiko: yes, it's that one. And no, I couldn't write the test yet.01:12
matsubaradanilos: it's similar but it's not the same issue01:12
danilosmatsubara: sure, I can help01:12
kikodanilos, it's a weird oops that we'll get you a test to demonstrate.01:12
matsubaradanilos: this one OOPSes01:12
danilosok01:13
kikomatsubara, hold off assigning to him until we have a test, or else he'll be a bit lost01:13
matsubarakiko: ok01:13
danilosmatsubara, kiko: ok, thanks01:13
kikocool.01:13
matsubaraSteveA: I'm done with oops report. 01:13
kikomatsubara, and of course, get the test done :-) call me in if you are stuck.01:13
matsubaraI'll move on to the Bug report01:13
SteveAtwb: the meeting will finish at 12:45 UTC, btw01:14
matsubarakiko: all right.01:14
matsubaraBug report report:01:14
twbSteveA: thanks.01:14
SteveAmatsubara has agreed to do the bug report, as mpt is on vacation01:14
=== outime [n=outime@unaffiliated/outime] has joined #launchpad
matsubaraWe have 9 critical open bugs.01:14
matsubaraBug 30602 assigned to kiko.01:14
matsubaraBug 44214 assigned to carlos.01:14
matsubaraBug 46982 assigned to danilos.01:14
matsubaraBug 68014 assigned to carlos.01:14
matsubaraBug 71283 assigned to carlos.01:14
UbugtuMalone bug 30602 in rosetta "Timeout errors in +translate" [Critical,In progress]  http://launchpad.net/bugs/3060201:14
matsubaraBug 73509 assigned to carlos.01:14
UbugtuMalone bug 44214 in rosetta "We need to add code to prevent POFiles being in the same path" [Critical,In progress]  http://launchpad.net/bugs/4421401:14
matsubaraBug 66383 assigned to ddaa. Bug 59443 assigned to cprov.01:14
UbugtuMalone bug 46982 in rosetta "Need to support KDE like plural forms" [Critical,Confirmed]  http://launchpad.net/bugs/4698201:14
matsubaraBug 73761 assigned to malcc. 01:14
UbugtuMalone bug 68014 in rosetta "Rosetta reverts translation fixes to old faulty values" [Critical,In progress]  http://launchpad.net/bugs/6801401:14
UbugtuMalone bug 71283 in rosetta "Allow non-authenticated rendering of +translate pages" [Critical,In progress]  http://launchpad.net/bugs/7128301:14
UbugtuMalone bug 73509 in rosetta ".po file export doesn't update cached files" [Critical,Confirmed]  http://launchpad.net/bugs/7350901:14
malcc73761 is with pqm01:14
UbugtuBug 66383 on http://launchpad.net/bugs/66383 is private01:14
UbugtuMalone bug 59443 in soyuz "Soyuz should send announce messages for backports to different list" [Critical,Confirmed]  http://launchpad.net/bugs/5944301:14
UbugtuMalone bug 73761 in soyuz "Missing support for any-i386 and linux-i386" [Critical,Confirmed]  http://launchpad.net/bugs/7376101:14
matsubaragreat news malcc! thanks01:14
matsubarakiko: how's the +translate one going?01:15
matsubaradanilos, can you make a status report on the ones related to rosetta?01:15
kikomatsubara, it's not but I can work on it now. I was thinking of blocking myself on carlos, but f*** that01:15
danilosI can go on with quick bug fix for 46982, it's still blocked on ff stuff landing first01:15
ddaamatsubara: 66383 was merged last week. Code has been in production for a while. Closing the bug.01:15
danilosI know 68014 has been in the review queue, should be almost ready to land01:15
matsubaracprov?01:16
danilosI am not sure of the state of the others01:16
cprovmatsubara: I'll try to find some time to work on it today, I've sorted a plan with kiko.01:16
kikooh, indeed01:16
kikowhy is that critical?01:16
danilos68014 is blocked on carlos getting back from vacation, 73509 is related01:16
cprovkiko: yes, might be demoted to high, IMO.01:16
matsubaraddaa: thanks.01:17
cprovkiko: do you agree ?01:17
kikoyes.01:17
matsubaradanilos: any ETA on the FF stuff?01:18
cprovdone01:18
=== kiko looks at danilos
danilosmatsubara: ask kiko01:18
danilosETA is a forbidden word for me01:18
matsubarahe just looked at you :)01:18
kikothat's why I looked at him01:18
danilosI can talk about progress and what's left to do, but no ETAs :)01:18
kikomatsubara, danilos needs to fill me in on what he is stuck on, but we're hoping 1 week.01:18
jordiwhat about the Iceweasel? :)01:19
matsubaramatthewrevell: btw, bug 68014 is one of those bugs that draws lots of user attention. You might be interested.01:20
UbugtuMalone bug 68014 in rosetta "Rosetta reverts translation fixes to old faulty values" [Critical,In progress]  http://launchpad.net/bugs/6801401:20
matthewrevellmatsubara: thanks01:20
kikomatsubara, and the KDE plural forms one.01:20
matsubaraSteveA: I'm done here. thanks. Thank you everyone!01:21
SteveAone thing about bug 6801401:21
UbugtuMalone bug 68014 in rosetta "Rosetta reverts translation fixes to old faulty values" [Critical,In progress]  http://launchpad.net/bugs/6801401:21
SteveAI believe it is fixed in production, in that Rosetta no longer does this bad thing.01:21
SteveABut, we have disabled some rosetta functionality, while that functionality is being fixed01:21
SteveAI think the current description and status of the bug is misleading01:21
danilosright, PO imports are disabled01:21
SteveAthe current bug is, PO imports are disabled01:22
danilosand they are even disabled for rosetta admins01:22
SteveAnot that we're reverting translations01:22
salgadobut it's still possible to get that, if somebody gets a stale page or something like that01:22
danilosso only launchpad admins can upload PO files01:22
SteveAsalgado: I don't know about stale pages01:22
salgadocarlos had a fix for this on a branch that I reviewed01:23
SteveAsalgado:  I think that would be another issue01:23
daniloswell, if a page sits loaded in someone's browser for a long time01:23
matsubaradanilos: aha! Now I think I know how to write that test! I'll ping you after the meeting01:23
salgadobut the branch wasn't approved before he went on leave01:23
SteveAwhen does he get back?01:23
salgadocarlos/launchpad/bug-68014-step301:23
danilosmatsubara: ok, thanks :)01:23
kikoSteveA, 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
kikoSteveA, on monday.01:23
SteveAok, that's not far off01:23
SteveAbut carlos should land that on monday01:23
SteveAand we should consider it for rolling out01:24
SteveAthank you for doing the oops and bug reports, matsubara 01:24
daniloshe had a review by BjornT, can he chip in with status?01:24
matsubarayou're welcome SteveA 01:24
SteveAthanks danilos.  BjornT ?01:24
BjornTdanilos: i review a branch that added copy buttons. is that related?01:25
danilosBjornT: no, I guess I am mistaken then, sorry01:25
danilosthat's probably the one blocking kiko then01:25
BjornTyea01:26
BjornTh01:26
danilosok, sorry for the confusion01:26
SteveAdanilos: please arrange a meeting monday with carlos + kiko to get the status of these things sorted out01:26
SteveA * Production and staging (Stuart)01:26
danilosSteveA: sure01:26
stubNothing 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:27
stub(thats all folks)01:28
kiko(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
SteveAstub: I have a branch to get beta-ized01:28
jordimatthewrevell: 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, though01:28
SteveAwill talk with you about that after meeting01:28
matthewrevelljordi: That would be very helpful, thanks.01:28
stubok01:28
danilosmatthewrevell: watch out for https://launchpad.canonical.com/RosettaJordiTransition ;)01:28
kikojordi, be sure to have a ImportQueueHowto be part of that01:29
SteveAstub: what was the issue on staging where it was giving proxy errors for a while?01:29
jordikiko: that's mostly done01:29
matthewrevelldanilos: thanks01:29
=== kiko high fives jordi
stubThe one on the mailing list? Needed some apache rules added that I thought already had been.01:29
SteveAok01:29
SteveAthanks stub 01:30
SteveA * Launchpad 1.0 status reports01:30
ddaasupermirror-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
salgadoRandom Things 1.001:30
salgado-------------------------------01:30
salgado- SearchingProjects: ready to land, waiting for pillar-names to land first01:30
salgado- PillarGotchis:  started. will require more work than I was expecting01:30
BjornTMalone 1.0:01:30
BjornTupstream-forwarding-workflow: No news, merged to RF, but not in production yet.01:30
flacosteSupport^W Answer Tracker 1.0 Status Report01:31
flacoste==========================================01:31
flacosteSupportTrackerViews: Previously missing 'Needs Attention' report now in review.01:31
flacosteSupportTrackerHelp: 75% completed. Missing Highlights, help on language support and polish.01:31
flacosteLocalizedSupportRequests: Ready to be merged.01:31
BjornTseries-and-distrorelease-mgmt: All branches have been reviewed, will do01:31
flacosteSupportTrackerRenaming: spec being reviewed by kiko01:31
BjornTsome manual testing before merging them into RF.01:31
BjornTguided-filebug-form: Has been merge into RF.01:31
BjornTremoving-duplicate-comments: No news, still implemented.01:31
BjornTmalone-essential-docs: No progress since last time, it's started though.01:31
danilosRosetta 1.0  weekly report:01:31
danilos- opening edgy for translation: DONE01:31
danilos- firefox import/export: ff-import still working, more of ff-export done01:31
danilos- oo import/export: no progress this week (tests, import implemented, export in progress)01:31
danilos- 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
BjornTsimple-bug-keywords: No news, still implemented.01:31
danilos- essential docs: no progress this week01:31
danilos- search: no progress this week, DB schema changes discussed at UDS01:31
danilos- checks not to upload wrong language PO file using "too many changes" check: not started01:31
danilos- translation page for projects: bug 73875 (new task, not started)01:31
UbugtuBug 73875 on http://launchpad.net/bugs/73875 is private01:31
danilos- ui fixes: DONE01:31
kikoddaa, there's at least a spec for deploying the SM -- is it blocked on anything? 01:31
stubsalgado: pillar names is in the review queue. Feel free to review it if you want to unblock :)01:31
kikodanilos, about search, we are doing browsing as a substitute01:31
cprov= Soyuz-1.0 Report =                                                                    01:31
cprov01:31
cprov * Archive Rework: pending review (cprov, r=kiko)                                       01:31
cprov * PPA: ppa-build-support & ppa-poppy & ppa-publish & ppa-upload-support                01:31
cprov       (cprov, w-i-p)                                                                   01:31
cprov * NoMoreAptFtparchive: pending review DB patch (cprov, r=stub)                         01:31
cprov * SyncSourceFixes: pending review (cprov, r=kiko)                                      01:31
cprov * Code quality:                                                                        01:31
=== ddaa checks out the spec
cprov   * NascentUpload first refactoring (kiko, under development)                          01:31
cprov * Bug Fix:                                                                             01:31
cprov   * #74803 (MissingDSCSigningKey): pending review (cprov, r=?)                         01:31
cprov   * #73836 (PackageCacheFix): pending review (cprov, r=bjorn, stub)                    01:31
cprov   * #73761 (support for any-i386 and linux-i386): review ok (malcc, r=jamesh)          01:31
salgadostub, I was planning to do that, but then I noticed that it has 18kloc01:32
daniloskiko: even with our postgres 8.1 can do partial indexes eureka?01:32
stubsalgado: mostly trivial changes to tests01:32
kikodanilos, yeah -- your stack is already high enough.01:32
ddaakiko: what spec are you thinking of?01:32
kikoddaa, the supermirror deployment spec?01:32
daniloskiko: ok, sure, rearranging the status report for next week01:32
ddaakiko: cannot find it from https://blueprints.launchpad.net/products/launchpad-bazaar/+spec/supermirror-smart-server01:33
kikoSteveA, what's the name of the SM deplyment spec?01:33
jameshstub: I can take a look at it tomorrow -- just took a quick look through it and saw a few issues01:33
SteveAkiko: right now, it's a web page that needs discussion with spiv.  something to catch up with next week01:34
kikoSteveA, do you have a URL to share with ddaa?01:35
SteveAkiko: https://launchpad.canonical.com/SupermirrorSmartServerPlan  ddaa01:35
=== kiko high fives SteveA
SteveAkiko: we ready to move on?01:35
=== ddaa links to it in the whiteboard of the spec
SteveAthanks ddaa01:35
kikoyes please01:35
SteveA * Sysadmin requests01:36
SteveA701:36
SteveA601:36
SteveA501:36
SteveA401:36
SteveAmatthewrevell: do you have a devpad account yet?01:36
kikoall mine are being handled -- thanks Znarl, Ng, Spads and elmo 01:36
SteveA301:36
SteveA201:36
matthewrevellSteveA: N ot yet01:36
SteveAmatthewrevell: ok.  I increased its priority in RT and noted that you need one.01:36
SteveA101:36
SteveAdone01:36
matthewrevellSteveA: Thanks01:36
SteveA * Reorganising dbschema (Steve)01:37
SteveAI sent an email to the launchpad list about improving the organisation of our dbschema enum classes01:37
SteveAI 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
SteveAIf you haven't read it yet, please read it and send me any comments.01:37
SteveA * Keep, Bag, Change01:38
SteveA501:38
SteveA401:38
SteveA301:38
jameshlooked pretty good01:38
SteveA201:38
SteveA101:38
SteveAok01:38
SteveAthanks jamesh01:38
SteveA * Three sentences01:38
ddaaDONE: imports herding, help text, branch-email-notification speccing, cscvs release preparation01:38
ddaaTODO: imports herding, help text, release cscvs, more speccing, review reply backlog01:38
ddaaBLOCKED: no01:38
matsubaraDONE: some triage, oops report analysis, lots of IRC, fixed #47769, debugged #7443701:38
matsubaraTODO: bug triage, write tests, fix bugs, oops report analysis, tweak oops report tool to show number of page loads.01:38
matsubaraBLOCKED: no01:38
flacosteDONE: merge most pending branches, bug fixes, implemented 'Needs attention' report, reviews.01:38
flacosteTODO: SupportTrackerRenaming, documentation, bug fixes01:38
flacosteBLOCKED: waiting on kiko's review of SupportTrackerRenaming01:38
stubDONE: Pillar name URLs01:38
stubTODO: Interviews, test suite bug fix01:38
stubBLOCKED: No01:38
jameshDONE: code review, clean up url-utils branch for review, bug-import01:38
jameshTODO: code review, bug-import, launchpad-bazaar tasks01:38
jameshBLOCKED: no01:38
salgadoDONE: 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
salgadoTODO: Finish PillarGotchis (including the image widget), more code review and high prio bug fixes01:38
salgadoBLOCKED: No01:38
BjornTDONE: landed malone-guided-filebug, got malone-release-management approved. reviews. addressed review comments in a bunch of branches.01:38
danilosDONE: ff-export fixes, translation licensing stuff (lots of emailing01:38
danilosback and forth, discussion with GRASS project members), bug management, user support01:38
danilosTODO: communicate, communicate, import queue starting next week, ff, OOo export, bug fixing01:38
danilosBLOCKED: no01:38
BjornTTODO: test malone-release-management and land it. fix bugs from mpt related to Bugs 1.0 UI. reviews.01:38
BjornTBLOCKED: no01:39
jordiDONE: preparing departure01:39
malccDONE: Bug 73761 (with PQM), admin stuff01:39
malccTODO: Raise some bugs from UDS specs, finish landing 73761, finish up.01:39
malccBLOCKED: No.01:39
UbugtuMalone bug 73761 in soyuz "Missing support for any-i386 and linux-i386" [Critical,Confirmed]  http://launchpad.net/bugs/7376101:39
cprovDONE: finishing ppa-publish, general bug fixing (#73836, #74803), ppa-upload-support, p\01:39
cprovpa branch reorganisation.                                                               01:39
cprovTODO: review archive-rework01:39
cprovBLOCKED: no 01:39
SteveADONE: recruitment, management, bzr merging/resolving for beta.lp.net01:39
SteveATODO: recruitment, management, more work on beta01:39
SteveABLOCKED: no01:39
jordiTODO: import queue, email answering, more talk with Danilo01:39
jordiBLOCKED: no01:39
kikoDONE: 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 wa01:39
kikotches and prune dead watches.01:39
kikoTODO: deployment report, interviews, rosetta management.01:39
kikoBLOCKED: rosetta landings and progress, but that's partially on me01:39
jordiAnd, 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
SteveATMI01:40
SteveAthey have special BAGs for that, you know?01:40
jordihaha01:40
SteveAI've seen various template help-text landing recently01:41
SteveAthank you01:41
kikocan we keep the potty talk on SSL please01:41
jameshjordi: at least you've realised that you're about to wet your pants01:41
kikoI don't want to have to share it01:41
SteveAjamesh: that'll be a need to CHANGE01:41
flacostekiko: did you take a look at SupportTrackerRenaming?01:41
SteveAwe have 3 minutes more01:41
kikoflacoste, I did not! thanks for reminding me and please keep doing it01:41
SteveAany other items?01:41
SteveA701:41
SteveA601:41
SteveA501:41
SteveA401:42
SteveA301:42
SteveA201:42
SteveA101:42
kikoSteveA, you know01:42
SteveA001:42
flacostesalgado: i would need your help with a test failure after the meeting01:42
SteveAok01:42
SteveAkiko: I do?01:42
salgadoflacoste, sure, just ping me01:42
SteveAEnd of meeting.  Thanks for being here, and being attentive everyone!01:42
kikowhat if we just moved wiki.launchpad.canonical.com out of the way, and put a redirect from launchpad.canonical.com to wiki.launchpad.canonical.com01:42
ddaaSteveA: Well done.01:42
niemeyerjamesh: Are we settled for Feb 5th?01:42
=== jordi vanishes!
jameshniemeyer: yeah.  I should book the tickets01:43
=== ddaa goes back to cjwatson import questions
SteveAkiko: yes, that's an option, but I want the information I mentioned in the email first01:43
niemeyerjamesh: Cool.. I'll be ready for it then01:43
danilosjordi: you're leaving a trail behind you... a wet trail... ;)01:43
kikoSteveA, the robots stuff01:43
niemeyerI'm looking forward to be able to nag kiko live01:43
kikoI am a great subject for nagging01:44
SteveAjamesh, niemeyer; did you get that trip arranged?01:44
niemeyerjamesh: I'll try to prepare the layer we need before getting there01:44
SteveAdates fixed?01:44
SteveAplease mail the launchpad list with the dates for this01:44
kikoyes please01:45
kikoASAP01:45
niemeyerSteveA: Yep, we were just talking about it01:45
niemeyer5TH, FEB!01:45
niemeyerDone, anything else?01:45
niemeyerKidding.. :)01:45
kikobook tickets and hotels01:45
jordimuch better now :)01:45
niemeyerkiko: Hmm.. hotel.. :)01:45
flacostesalgado: i got a failure in xx-person-editlanguages.txt related01:46
flacosteto the +editmylanguages change01:46
niemeyerkiko: Can you give them a call, or hand me the phone number?01:46
twbThe dependency graph at https://blueprints.launchpad.net/distros/ubuntu/+spec/replacement-initscripts is too small to read01:46
kikoniemeyer, taci@#async can handle everything for you, just ping her when you have dates and people and she will book01:47
matsubaratwb: bug 6634401:47
UbugtuMalone bug 66344 in blueprint "Dependency chart becomes unreadable with >12 dependencies" [Undecided,Confirmed]  http://launchpad.net/bugs/6634401:47
salgadoflacoste, can you paste the error?01:47
twbGood-o.01:48
niemeyerkiko: Awesme! Thanks01:48
niemeyerjamesh: Are we settled then? Can I move on?01:48
kikomost welcome niemeyer 01:49
flacostesalgado: https://devpad.canonical.com/~andrew/paste/filehCI3lL.html01:50
flacostesalgado: actually, this is not the original error01:50
flacostewhat I added originally was: https://devpad.canonical.com/~andrew/paste/filehTWZgK.html01:52
=== SteveA -> lunch
kikomalcc, ping01:57
malcckiko: pong01:57
salgadoflacoste, maybe that's because something went wrong when we splitted my localized-requests branch01:58
kikomalcc, 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
flacostesalgado: that's what I suspect01:58
malcckiko: Sure01:58
flacostesome leftovers that you change in your branch but that I somehow reverted when merging01:58
flacosteflacoste: i'm investigating01:58
flacostesalgado: i'm investigating01:58
salgadoexactly. do you have a complete diff of your tt-localized-requests branch?01:58
kikomalcc, thanks. try to pick off small but important bugs, and help cprov's overload01:59
flacosteyeah, I can have that01:59
salgadothen I can help you investigate01:59
cprovkiko: malcc: ohh, thanks ;)02:00
flacostesalgado: https://chinstrap.ubuntu.com/~flacoste/tt-localized-requests.diff02:01
flacostesalgado: the changes to xx-person-editlanguages.txt in that file should be ignored02:05
flacostesalgado: but I have two redirect tests added to lib/canonical/launchpad/pagetests/basics/notfound-traversals.txt02:05
flacostei'm not sure that should be there02:05
salgadohttps://devpad.canonical.com/~andrew/paste/filek9Eurx.html02:05
salgadothis should be removed too02:05
flacostesalgado: yeah, just saw that. I remove that and the check_redirect added to notfound-traversals?02:06
salgadothe redirect tests added to lib/canonical/launchpad/pagetests/basics/notfound-traversals.txt should be reverted too02:06
salgadoboth of them, yes02:06
flacosteand what about the one on IRosettaApplication?02:07
flacostesalgado: https://devpad.canonical.com/~andrew/paste/fileWzkDJR.html02:08
salgadowhich one?02:08
flacosteshould that be nuked also?02:08
salgadoI don't think so. let me check02:08
salgadoah, right02:09
salgadothat's the problem02:09
salgadoyeah, remove that and your test will pass02:09
flacosteso 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
salgadoyeah02:10
flacosteok, thanks a lot for helping sort this out!02:10
salgadoyou're welcome02:10
flacostett-localized-requests will now land02:11
kikogood job flacoste 02:11
flacostethx02:12
=== 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
kikoeither I've overloaded everybody else02:29
kikoor02:29
kikoshit, jordi.02:29
jordi!02:30
matthewrevellWould it be worth me checking the moderation queue on rosetta-users when you leave jordi?02:47
jordimatthewrevell: danilo was added to the moderators list this morning02:47
matthewrevelljordi: okay, cool02:47
jordiso it should be covered now, but talk to him about it02:47
danilosmatthewrevell: and I see no problem in adding matthew there as well ;)02:47
matthewrevell:)02:48
jordiI could figure that :)02:48
kikojordi, can we have matsubara and matthewrevell on that list as well?02:49
daniloskiko: don't be shy, you can moderate it as well :P02:50
jorditotally. the spam, when widely distributed, is best :)02:50
kikoI am kinda fucked for time lately :-(02:50
jordidanilos: do you know why there's many pending distro files in the import queue?02:52
danilosjordi: feisty stuff02:53
jordidanilos: some bug, bad packages?02:53
danilosjordi: not feisty?02:53
jordioh, so they are being queued?02:53
jordidunno02:53
danilosthey looked all feisty to me, last I checked :)02:53
jordithere's edgy stuff in the first page02:54
jordidebian/iso-codes/pl.po in choose-mirror in Ubuntu Edgy02:54
jordiof course, this choose-mirror stuff should be on the ignore list.02:54
danilosbtw, is there a something like 'cvs tag' (without '-b') in bzr?02:54
jordiz/build/lib.linux-sparc-2.4/zope/i18n/tests/locale/en/LC_MESSAGES/zope-i18n.po in zope3 in Ubuntu Edgy02:54
jordithis is a "bug" in Rosetta, not knowing how to handle these layouts02:55
danilosyeah, they're completely standard02:55
jordidanilos: okay, so I see no feisty, I see mostly edgy here02:55
UbugtuNew bug: #74816 in launchpad "Launchpad should return a 404 HTTP error instead of 500 for non-existant domains" [Undecided,Unconfirmed]  http://launchpad.net/bugs/7481602:55
danilosjordi: hum, then probably most of it is real packages being uploaded in the meantime02:55
jordioh I see feisty now02:55
jordiso there's stuff02:56
jordithere's *old* stuff there too :)02:56
daniloslet me check on staging02:56
danilosoh, I don't have those privs, I forgot ;)02:57
=== Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad
kikomatthewrevell, ping?03:06
matthewrevellkiko: pong03:06
kikomatthewrevell, can you get your PGP key uploaded somewhere where I can find it?03:06
matthewrevelloh yes.03:07
matthewrevellJust a moment.03:07
kikoI'm asking because mutt drives me crazy when delaying to open your emails03:07
matthewrevellAh03:08
matthewrevellI thought it was on the Ubuntu keyserver.03:08
matthewrevellIs that no good?03:08
=== Gwaihir [n=Gwaihir@mail.foredil.it] has joined #launchpad
kikoit's not up there03:08
matthewrevellhmm03:08
kikokiko@beetle:~$ gpg --keyserver keyserver.ubuntu.com --recv-key D7FE03EA03:09
kikogpg: requesting key D7FE03EA from hkp server keyserver.ubuntu.com03:09
kikogpgkeys: key D7FE03EA not found on keyserver03:09
kikomatthewrevell, or I think you're signing your messages with the wrong key, then03:09
kiko(did you get my email on this subject?)03:09
LarstiQis that why my key is on the ubuntu keyserver?03:09
=== sabdf1 is now known as sabdfl
kikoLarstiQ, it's linked in to the keyserver network afaik03:10
LarstiQkiko: last I heard it wasn't, but I'm not too sure.03:12
snailwhere do i find out what changes were made in the two updates of gpg that happened recently in dapper?03:14
kikosnail, launchpad.net/distros/ubuntu/+source/gnupg03:14
kikoor something like that03:14
matthewrevellkiko: Yes, got your email. Right, I think I've re-sent my keys03:15
kikocool03:15
matthewrevellI used gpg --keyserver keyserver.ubuntu.com --send-keys03:15
matthewrevellIt didn't give me any feedback though03:15
kikonope03:16
kikouse --send-key D7FE03EA03:16
kikoexplicitly03:16
kikomatthewrevell, and try sending it to mit.edu as well 03:17
=== cprov is now known as cprov-lunch
GwaihirI was browsing through translation of a user to cehck them...03:20
GwaihirI would like to know onr thing:03:20
matthewrevellkiko: That seems to be doing something now. Thanks03:20
Gwaihiris a user is not a member of the translation team...03:20
=== LarstiQ prefers subkeys.pgp.net
Gwaihirhow are marked her tanslations?03:20
kikomatthewrevell, yay03:20
matthewrevellAlthough, mit.edu refused my connection, but keyserver.ubuntu.com worked. Thanks for your help03:21
kikowell, not mit.edu directly03:21
kikobut they have a keyserver somewhere03:21
salgadopgp.mit.edu. IIRC03:21
matthewrevelldone, thanks salgado03:22
danilosGwaihir: they're just suggestions then03:24
danilosGwaihir: there is no special marking other then them appearing among the suggestions, and not inside any of the 'used elsewhere' categories03:24
Gwaihirbut are them being marked as suggestionS?03:24
kikoGwaihir, yes, they are marked as suggestions. good to see you around Milo03:27
Gwaihir;)03:29
Gwaihirthanks...03:29
Gwaihirbut one thing...03:29
GwaihirI see the translation of a non member inside the translation box...03:30
Gwaihirand not being a suggested...03:30
BjornTddaa: ping03:35
ddaaBjornT: pong03:35
twbI thought it was pgp.ai.mit.edu03:36
twbSome subnode of CSAIL, anyway.03:36
BjornTddaa: re cscvs/svn-peg-revision. will you ever finish that branch, or should it be removed from PendingReviews?03:36
ddaa...03:37
ddaaI have not quite made my mind up...03:37
ddaathe actual bug was fixed by upgrading libsvn, no by my patch.03:37
ddaaMaybe I should still write a test case...03:38
BjornTddaa: ok. so how about if i move it work-in-progress then?03:39
ddaafine03:39
BjornTcool03:39
Gwaihir... looks I was watching the wrong user...03:41
Gwaihir:o03:41
kikoGwaihir, okay, point me to a URL if you see something that looks wrong.03:42
Gwaihirkiko: sure! ;)03:43
Gwaihirhow are things with 68014?03:43
kikoGwaihir, waiting for carlos to come back :-(03:46
Gwaihirah ok! ;)03:47
=== mhb [n=mhb@64.73.broadband3.iol.cz] has joined #launchpad
SteveAthunderbold and lightning03:57
SteveAvery very frightning03:58
SteveAme03:58
kikowhat a sissy03:58
SteveAthat's not right... it's "galileo" next I think03:59
=== frafu [n=frafu@vodsl-9762.vo.lu] has joined #launchpad
kikommmmmmmmmm04:00
Gwaihirbohemian rhapsody...04:07
jameshkiko: if I'm going to Brazil, is there any other stuff that'd be worth doing in person while I'm there?04:11
kikojamesh, you mean, office-safe right? 04:11
=== kiko just checkin
kikoseriously, work-related or not?04:12
jameshkiko: 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 stuff04:12
jameshwork related.04:12
kikojamesh, whew, I have a ton of stuff I'd like to work with you on04:12
kikoa lot of the little boring infrastructural issues that we need04:12
kikoyou could even help doing the rosetta DB refactoring if you want to spend the time04:13
kikohow much in a hurry are you to get back to WA?04:13
jameshgiven the length of time it takes to get to Brazil, staying two weeks wouldn't be too bad.04:14
jameshI mentioned the error reporting for scripts stuff because we'll probably be merging the two database adapters when moving to the new ORM04:14
kikodanilos, feel like visiting brazil in february?04:14
kikojamesh, that does sound like a good plan.04:14
=== ChrisW [n=cjw296@host86-141-71-114.range86-141.btcentralplus.com] has joined #launchpad
daniloskiko: sure, sounds warm :)04:15
jameshso we'd be able to collect all the database related stats for non-webapp OOPS's04:15
=== sabdfl [n=sabdfl@ubuntu/member/pdpc.silver.sabdfl] has joined #launchpad
daniloskiko: but be sure to let me know of such plan beforehand, since visa takes time for some countries04:15
=== ChrisW [n=cjw296@host86-141-71-114.range86-141.btcentralplus.com] has left #launchpad []
=== danilos is now known as danilo-brb
kikodanilo-brb, go apply, you are booked.04:17
kikodanilo-brb, 1-2 weeks in february04:17
jameshkiko: so, I'll book the flight tomorrow to stay for an extra week.04:17
kikojamesh, sounds good.04:17
kikojamesh, not 3 weeks? :-)04:17
jameshkiko: don't know.  Is there that much stuff to do? :)04:21
kikojamesh, yeah, there is04:22
kikoso if you want to stay please do04:22
=== frafu [n=frafu@vodsl-9762.vo.lu] has left #launchpad []
jameshokay.  I'll book for three weeks then.04:23
kikowill be good to have you around04:24
jameshfrom memory, it is better to get an afternoon return flight due to the bus trip from sao carlos, right?04:27
=== kiko is now known as kiko-fud
kiko-fudjamesh, exactly.04:33
kiko-fudvery good04:33
jameshkiko-fud: looks like awstats classes bzr as an unknown browser :)04:34
=== matsubara is now known as matsubara-lunch
=== radix [n=radix@70.91.133.157] has joined #launchpad
sabdflSteveA: the dropdown menu on the UI branch appears to be b0rked04:50
sabdflhow's the connection of beta to production db going?04:50
=== 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
SteveAsabdfl: scheduled to be hooked up tomomrrow04:52
SteveAthe UI branch isn't up to date.  I'm resolving some pagetest issues integrating it.04:52
SteveAtake a look on the beta server EOD tomorrow04:52
SteveA(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:53
sabdflcool, thanks04:55
sabdfldropdown menus?04:55
sabdfldon't seem to be... dropping04:55
=== cprov-lunch is now known as cprov
jameshsabdfl: 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.04:59
sabdflthanks jamesh. will mail mpt.05:00
SteveAmpt is on vac05:00
=== danilo-brb is now known as danilos
SteveAsabdfl: mail me.  I'll look next week, once we've got beta going05:00
SteveAfor this week, I'm kinda focused on getting beta working, and recruitment issues05:00
sabdfli've filed a bug on mpt05:01
sabdflhttps://launchpad.net/products/launchpad/+bug/7483905:01
UbugtuMalone bug 74839 in launchpad "Dropdown menus in 1.0 UI do not drop down" [Undecided,Unconfirmed]  05:01
SteveAthanks05:02
=== cprov [n=cprov@monga.dorianet.com.br] has joined #launchpad
SteveAsabdfl: were you looking at the rocketfuel/launchpad/ui-one-zero branch?05:02
sabdflSteveA: looking at beta.launchpad.net05:03
SteveAthanks05:04
UbugtuNew bug: #74839 in launchpad "Dropdown menus in 1.0 UI do not drop down" [Undecided,Unconfirmed]  http://launchpad.net/bugs/7483905:10
matthewrevellDoes 1.0 see the Rosetta, Malone, etc names disappear completely?05:11
SteveAmatthewrevell: sort of05:11
SteveAwe have translations, bugs, blueprints, code, answers05:11
matthewrevellSo, on the translations overview page we wouldn't mention the name Rosetta.05:12
SteveAit needn't, but should if it will avoid confusion05:12
SteveAwhat do you think about it?05:12
matthewrevellI prefer the new descriptive names.05:12
matthewrevellHowever05:13
matthewrevellperhaps we should have some reference to the previous names to avoid confusion05:13
matthewrevellI can't imagine too many people would be confused, though. They're all "does what it says on the tin" names, after all.05:13
SteveAsure.  let me get you access to the new UI, and you can see if you can improve things...05:14
matthewrevellI'm writing text for the 1.0 marketing pages, atm05:14
matthewrevellcool, thanks05:14
=== 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
matthewrevellIs there a way to find out roughly how many people have used Rosetta?05:49
SteveAyes05:54
=== 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
Gwaihirhi...09:18
Gwaihirone thing...09:18
Gwaihirinside a translation, in the overview box, there are two links09:18
Gwaihirone to "Switching language" and the other one to "View template"...09:19
Gwaihirbut they are the same09:19
matsubaraGwaihir: indeed.09:24
matsubaraGwaihir: could you please file a bug?09:24
Gwaihirsure!09:24
matsubaraGwaihir: give me the bug number as soon as you file it, please. 09:25
Gwaihirok... i'm on a dial-up...09:26
Gwaihirwhile I wait the page to load...09:28
Gwaihirisn't the "All translator" box a little "unuseful"?09:28
GwaihirI mean... when I'm inside a translation I only need the "Contributors" box...09:29
Gwaihirmaybe a link to the team page would be useful09:29
matsubaraGwaihir: that will definitely change in the new UI09:31
Gwaihirthat's great! ;)09:31
Gwaihirmatsubara: bug is #7487109:31
matsubarathanks Gwaihir 09:32
Gwaihiryou're welcome!09:32
=== cprov is now known as cprov-out
UbugtuNew bug: #74871 in rosetta "Links in overview box are the same" [Low,Confirmed]  http://launchpad.net/bugs/7487109:40
=== 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
dthackerDoes Canonical sell Launchpad?10:25
thumperdthacker: no10:27
thumpernot in the general case10:28
kikodthacker, no for most practical uses. use and enjoy.10:42
=== dand [n=dand@dyn-85.186.137.18.tm.upcnet.ro] has joined #launchpad
thumperjamesh: can you ping me when you are around?10:52
=== 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

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!