/srv/irclogs.ubuntu.com/2009/09/15/#launchpad-reviews.txt

barrybac: hi, you're on call tomorrow?00:08
bacbarry: indeed i am00:39
mwhudsonthumper: want to look at another simple ec2test branch?02:36
stubhttps://code.edge.launchpad.net/~stub/launchpad/pending-db-changes/+merge/11756 , one line change. Diff at https://pastebin.canonical.com/22095/03:31
mwhudsonstub: why is the diff in the merge proposal so bogus?03:35
stubmwhudson: Cause I targetted the wrong branch. Redoing the proposal now.03:35
mwhudsonstub: ah ok03:35
stubmwhudson: https://code.edge.launchpad.net/~stub/launchpad/pending-db-changes/+merge/11757 should be better :)03:36
mwhudsonstub: approved03:41
stubmwhudson: Ta. Some magic ec2test incantation you want me to use to submit it?03:41
mwhudsonstub: yeah, tell me your aws id?03:42
mwhudsonstub: and grab bzr+ssh://bazaar.launchpad.net/~mwhudson/launchpad/cache-the-download-cache03:42
mwhudsonstub: by "aws id" i mean the 12 digit numeric one03:42
stubMerge it in or do I need a seperate branch?03:42
mwhudsonstub: separate would be best03:43
stub3409-8351-958903:43
stubGot that branch03:44
* mwhudson slaps elastifox around a bit03:45
mwhudsonstub: ok, can you run ../cache-the-download-cache/utilities/ec2test.py --headless -s ... (or whatever options you usually use) in your branches dir?03:47
mwhudsonstub: it should say "Using machine image version 16"03:47
stubYup. Its booting the image now.03:49
mwhudsoncool03:50
mwhudsonif you're running --headless it should let go much quicker03:50
stub../cache-the-download-cache/utilities/ec2test.py --headless --email=stuart.bishop@canonical.com --ignore-download-cache-changes -b launchpad=db-devel -s '[r=mwhudson][ui=none][bug=429306] replication_lag() returns an interval, not an integer'03:51
mwhudsonlet me know if it falls over in a heap :)03:51
mwhudsonhm04:21
mwhudsonstub: did you see my questions?04:21
mwhudsonlet me know if it falls over in a heap :)04:21
mwhudsonstub: has it detached yet?04:21
mwhudsonstub: er, your change just got merged into db-devel04:21
mwhudsonstub: did you have an ec2test already running against you pending-db-changes branch?04:21
stubnum04:21
stubnup04:21
stubdidn't see04:21
stubit has detached now04:21
stubdb-devel was the target. No I didn't have another ec2test run.04:22
stubAhh... the merge was my fault.04:22
stubI'd sent off an earlier revision of that branch to pqm, and it took forever to land.04:23
stubSo the tests are still running04:23
mwhudsonstub: cool thanks04:23
sinzuiI believe I have  fix for the failing tests.05:56
mwhudsonoh god there are still failures :(05:59
mwhudsonsinzui: want me to review the fix?05:59
sinzuimwhudson: once I confirm it05:59
sinzuimwhudson: The problems are intermingled in my own branch that I was testing06:00
mwhudsonsinzui: cool, i'm not going anywhere for a while...06:00
sinzuiI toppled a view, but most of the errors are the one I understood danilo-afk was fixing06:00
sinzuimwhudson: Can you take a look at http://pastebin.ubuntu.com/271344/06:20
mwhudsonsinzui: i'm happy to rs=me that06:23
mwhudsonsinzui: i don't really know all the details, but i trust you do :)06:23
sinzuimwhudson: if I submit with a preemptive testfix, will it be picked up automatically now?06:25
mwhudsonsinzui: yes06:25
=== abentley1 is now known as abentley
noodles775gmb: will you have time to look at a pretty straight-forward 400 line code review?09:34
gmbnoodles775: I'll take a look, sure.09:34
noodles775gmb: thanks, the MP should arrive in a few seconds.09:35
noodles775gmb: here 'tis: https://code.launchpad.net/~michael.nelson/launchpad/429263-no-value-option/+merge/1176809:42
gmbnoodles775: Awesome, thanks. Will look in a sec.09:42
gmbAh, good old Zope. PEP 8 was something that happened to other people, wasn't it?09:50
noodles775lol09:52
gmbnoodles775: r=me; looks good.09:53
noodles775gmb: great, thanks!09:53
=== stub1 is now known as stub
=== beuno is now known as beuno-lunch
jtvhey stub!  interested in reviewing a not-trivial-but-not-widespread fix for a problem that just popped up in the translations auto-approver? https://code.edge.launchpad.net/~jtv/launchpad/bug-42981111:52
stubjtv: IMasterStore(POTemplate) is a better spelling - it should be rare to need the IStoreSelector now.12:04
stub(line 73)12:04
jtvstub: ah yes, thanks, I'd forgotten about that12:05
stubjtv: You sure you want to start spitting warnings if you have more than 2 results? Perhaps you forgot a [:2] to the query, limiting it to a maximum of two rows returned.12:05
jtvstub: yes, I think I'm sure.  Unfortunately there is still a case where you can validly have more results, and while I _could_ fold that in by sorting on a boolean, I don't think it's worth the complexity.12:06
stubYour better off spitting out your warning explicitly in that case, rather than the 'bad programmer' errors hopefully emitted by shortlist.12:07
stubI see we already cope sometimes, in that we proceed if there is only one preferred match, no matter now many results returned.12:08
jtvright, and that's worth a warning.  This way I'm sure all the problem cases emit some kind of warning.12:09
jtvAhh wait, it's coming back to me now.12:09
stubJust IIRC shortlist uses Python warn, rather than a nice log message12:10
jtvA double match should be a rare occurrence, and is worth a warning.  A more-than-double match is downright "weird" and if the numbers get too big, mean that my approach may need the kind of query limit that you suggest, and in that case there'll be a shortlist warning.12:11
stubSo do shortlist(100) or something, and 'if len(foo) > 2: log.warn('Weird number of matches %d')12:11
jtvHow would that help?12:12
stubYou won't need some sort of test ensuring the Python warning framework warning is actually emitted correctly by your script in this case.12:12
stubThe shortlist warning is more a backup.12:13
stubIts to catch developer errors, where the developer assumed the length is bounded to a sane number of results but it isn't really.12:14
jtvWell if the shortlist warning doesn't get through, we'll still start seeing more and more of these warnings you see here.12:14
jtvThe shortlist warning would be an additional reminder that if there's been a big shift in what kind of numbers we expect here, it may be worth updating the code.12:15
stubSure. So the shortlist warning is redundant. You know this case can happen, and you handle it, so why emit noise if it does happen12:15
jtvI think that's appropriate.12:15
jtvHow about I just jack up the expected size on the shortlist?12:15
stubI don't. It is to catch developer errors. It spits out a warning to untested channels, possibly at an arbitrary point in the output stream.12:15
stubSure.12:16
stubEverything else I didn't mention looks good :)12:16
jtvThanks.  Now about the store selector...  Is there no IDefaultStore?12:16
stubIStore(POWhatever)12:18
stubThat gives you the default store.12:18
jtvgreat12:18
* jtv runs tests12:19
jtvtests pass12:19
jtvno lint12:19
jtvstub: for the shortlist I just removed the explicit expected-size argument, so the code really just says "this shouldn't be a long list, and if it is, consider re-balancing the code."12:21
jtvThat okay with you?12:22
stubSounds good.12:22
jtvThanks.  And how's the coffee?  :)12:22
stubGreat :-)12:22
stubMaybe John won't get his delivery ;)12:22
jtvlol12:22
jtvRobin has a grinder, so I've been enjoying it myself12:22
=== cprov changed the topic of #launchpad-reviews to: on call: - || reviewing: -|| queue: [cprov]
bacgmb are you on call today?12:55
baci'll be on in 15 minutes.12:56
=== beuno-lunch is now known as beuno
=== matsubara-afk is now known as matsubara
=== bac changed the topic of #launchpad-reviews to: on call bac: - || reviewing: -|| queue: [cprov]
bachi cprov13:25
cprovbac: hi there13:25
baccprov: is this the one you've queued up?  https://code.edge.launchpad.net/~cprov/launchpad/bug-421364-build-publishing-status/+merge/1175113:25
cprovbac: yes, that's it13:26
=== bac changed the topic of #launchpad-reviews to: on call bac: - || reviewing: -cprov|| queue: [-]
baci'll get right on it13:26
cprovbac: thank you.13:26
baccprov: your branch has a merge conflict13:44
=== bac changed the topic of #launchpad-reviews to: on call bac: - || reviewing: cprov|| queue: [-]
cprovbac: uhm, sorry, let me fix it, one sec13:45
baccprov: np.  lots of branches hitting fast and furious13:46
BjornTbac: hi. i have two branches ready for review. one is on +activereviews already, and one should appear there soon13:52
bacBjornT: ok13:52
=== BjornT changed the topic of #launchpad-reviews to: on call bac: - || reviewing: cprov|| queue: [BjornT, BjornT]
cprovbac: conflict fixed, branch pushed.14:03
bacthanks cprov14:03
baccprov: i'm wrapping yours up.  need to be afk for a few minutes.  brb14:06
=== bac changed the topic of #launchpad-reviews to: on call bac: - || reviewing: BjornT || queue: [BjornT]
=== bac changed the topic of #launchpad-reviews to: on call bac: - || reviewing: BjornT || queue: [BjornT]
=== bac changed the topic of #launchpad-reviews to: on call bac || reviewing: BjornT || queue: [BjornT]
barrybac: hiya!  up for a review this fine morning?14:29
bacbarry: throw it on the pile14:32
barrybac super!14:32
bachey BjornT could you fix the conflicts in your windmill branch and repush please?14:32
=== barry changed the topic of #launchpad-reviews to: on call bac || reviewing: BjornT || queue: [BjornT, barry]
BjornTbac: sure14:35
=== sinzui changed the topic of #launchpad-reviews to: on call bac || reviewing: BjornT || queue: [BjornT, barry, sinzui]
BjornTbac: done. i'll resolve the conflicts in the other branch as well; turned out my RF copy was old14:43
BjornTbac: both branches are clean now14:44
bacthanks BjornT14:44
bacBjornT: when i try to merge your windmill branch r9244 into RF r9446 i still get two conflicts14:48
BjornTbac: well, i guess i should push up the new revision as well :) done14:50
bacBjornT: that magically worked!14:51
adeuringbac: can I add an MP to the queue?14:57
bacadeuring: sure14:57
adeuringhttps://code.edge.launchpad.net/~adeuring/launchpad/hwdb-parse-submission-udev-node/+merge/1178314:57
adeuringbac: thanks!14:57
bacadeuring: please add me to the MP14:57
=== adeuring changed the topic of #launchpad-reviews to: on call bac || reviewing: BjornT || queue: [BjornT, barry, sinzui, adeuring]
bacsinzui: did i have a ui=sinzui on https://code.edge.launchpad.net/~bac/launchpad/bug-429455-team-pages/+merge/11739 ?15:11
sinzuiyes15:11
bacsinzui: thanks15:12
=== danilo-afk is now known as danilos
=== bac changed the topic of #launchpad-reviews to: on call bac || reviewing: BjornT || queue: [barry, sinzui, adeuring]
bachi BjornT15:44
bacBjornT: in test.in you say "the option probably wasn't specified".  why the uncertainty?15:45
BjornTbac: i'm on a call now15:46
bacBjornT: ok, i'm here all day.  :)15:47
adeuringbac: can I add another small branch to your queue?15:58
bacadeuring: sure15:59
adeuringbac:  thanks!15:59
adeuringbeuno: may I ask you for a small ui review: https://code.edge.launchpad.net/~adeuring/launchpad/bug-430054-hassprints-sprints.pt-lp3-layout/+merge/11795 ?16:02
beunoadeuring, sure16:02
adeuringbeuno: thanks!16:02
beunoadeuring, done16:03
adeuringbeuno: wowm, that was fast !16:03
beunoadeuring, the 3.0 train is now going at 400 km/h16:06
adeuringbeuno: ;)16:06
=== bac changed the topic of #launchpad-reviews to: on call bac || reviewing: barry || queue: [sinzui, adeuring]
bacbeuno: that 3.0 train isn't Amtrak...16:15
bacjust ask barry16:15
barrylet's hope not.  otherwise 3.0 will be 50% over time and have backed up toilets for half the ride.  but at least you won't be mid-air suspended in a flimsy aluminum tube breathing other people's swine flu for 1/10th the time16:16
BjornTbac: i'm back now. so, there's some uncertainty, since it might be that the user specified the real default value (as specified in zope.testing.testrunner.options)16:18
bacBjornT: i sent the review and asked for more info16:18
BjornTbac: for example, if someone did bin/test --tests_pattern=^tests$, we would replace that with our --tests-pattern default. i'd say it's a minor issue16:19
bacBjornT: ok16:20
bacBjornT: that might warrant a small explanation in the comment.  seeing stuff like "probably" makes people nervous.16:21
BjornTbac: yeah, i guess :)16:22
BjornTbac: as for the other review. what's your use case for building on the current default options. what are you trying to do?16:23
bacBjornT: unsure.  i'm just noting you're changing the behavior16:24
BjornTbac: indeed. but i haven't come up with any feasible use cases for the current behaviour.16:24
=== danilos is now known as danilo-afk
jtvbac: got one for you, and the next OCR I guess is myself.  :)  can I chuck it on the queue?16:35
bacjtv: yes.16:35
jtvbac: thanks16:35
=== jtv changed the topic of #launchpad-reviews to: on call: bac || reviewing: barry || queue: [sinzui, adeuring, jtv]
=== matsubara is now known as matsubara-lunch
=== salgado is now known as salgado-lunch
=== deryck is now known as deryck[lunch]
bigjoolsabentley: did my review response look ok? if so can you approve it please :)16:51
abentleybigjools: So far, I haven't received an email, but I'll go find it.16:52
bacsinzui: review done.  thanks.16:52
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: barry || queue: [adeuring, jtv]
=== sinzui changed the topic of #launchpad-reviews to: on call: bac || reviewing: barry || queue: [adeuring, jtv,sinzui]
sinzuibac: I just sent another one16:52
bacone step forward...16:53
bigjoolsabentley: it doesn't list you as a review, that's why...16:53
bigjoolsabentley: https://code.edge.launchpad.net/~julian-edwards/launchpad/ppa-copy-to-main-bug-426163/+merge/1170516:53
bacsinzui: could you mark the MP approved: https://code.edge.launchpad.net/~bac/launchpad/bug-429455-team-pages/+merge/1173916:53
sinzuidone16:54
abentleybigjools: r=me16:56
bigjoolsabentley: cheers16:56
BjornTbac: could you take another look at lp:~bjornt/launchpad/bug-429375? i've addressed your comments16:56
bacBjornT: ok16:57
adeuringbac: can I add another small MP?17:02
bacadeuring: sure17:02
adeuringbac: thanks!17:02
bacbarry: after the merge TeamInvitationView has two label properties17:03
bacbarry: and two page_titles17:03
bac:(17:03
barrybac: dang.  let me work on that17:03
beunoadeuring, why is there an edit page to delete something?17:06
beunorefering to http://people.canonical.com/~adeuring/spec-branch.png17:06
adeuringbeuno: I have no idea... As I wrote in the MP, there was also a button "update" on that page. Perhaps it had some time ago some field that could be edited17:07
beunoI've heard rumours from flacoste that anything in blueprints is ui=rs, but I don't know how true that is17:07
beunoadeuring, how much work would it be to change it to reflect reality?  (eg, rename it to "delete")17:07
adeuringbeuno: should be easy. Give me a few minutes...17:08
flacostebeuno: blueprints UI reviews are rs=17:09
barrybac: fix pushed17:10
bacthanks17:10
adeuringflacoste, beuno: OK, will rs=... further brnaches ;)17:10
beunoadeuring, the second bext iluminati player in Canonical has spoken17:10
beunos/bext/best17:10
beunoadeuring, I'm still happy to help out if you need me17:10
adeuringbeuno: the heading is changed17:12
adeuringscreenshot uploaed (old URL)17:12
beunoadeuring, thanks17:12
beunoland!17:13
adeuringbeuno: I'm waiting for the code reiview... Brad has a lot to do today...17:14
* adeuring notices that the heading is still nonsensical ("Delete specification nranch summary")... 17:17
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: bjornt || queue: [adeuring, adeuring,jtv,sinzui, adeuring]
bacBjornT: done17:23
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: adeuring || queue: [adeuring,jtv,sinzui, adeuring]
bacadeuring: the diff for this MP is messed up:  https://code.edge.launchpad.net/~adeuring/launchpad/hwdb-parse-submission-udev-node/+merge/1178317:25
bacadeuring: never mind, i generated a new one17:26
adeuringbac: OK, was going to paste-bin one...17:26
=== matsubara-lunch is now known as matsubara
=== salgado-lunch is now known as salgado
leonardrgary_poster: i have to leave for dinner in 1/2 hour, no way i'm getting through that queue. are you interested in reviewing https://code.edge.launchpad.net/~leonardr/wadllib/optional-field?17:50
gary_posterleonardr: looking now17:50
leonardrlook at bug 430152, working on a merge proposal now17:50
mupBug #430152: Multipart representation creation crashes when an "optional" field has no value specified <wadllib:New> <https://launchpad.net/bugs/430152>17:50
gary_posterok17:50
gary_posterleonardr: yes17:51
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: adeuring || queue: [jtv,sinzui, adeuring]
leonardrgary, i just pushed another branch that updates version.txt17:56
gary_posterleonardr: 17:57
gary_posterok17:57
=== deryck[lunch] is now known as deryck
bacadeuring: another done18:09
adeuringbac: thanks!18:09
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: <lunch> || queue: [jtv,sinzui, adeuring]
=== gary_poster is now known as gary-afk
=== gary-afk is now known as gary
=== gary is now known as Guest64403
=== Guest64403 is now known as gary_poster
gary_posterleonardr: r=gary.  I'd have used self as the missing flag, rather than creating a "missing" object for this because it looks like it is part of a loop that might be run a lot.  However, that may be completely unnecessary, and the "missing" name makes the usage clear.18:22
gary_posterleonardr: about to run out for lunch18:22
leonardrgary: ok. fwiw, 'missing' is defined outside the loop18:23
gary_posterleonardr: I saw that, but this method is not called as part of a loop (for each tag or something?)18:23
leonardrgary: no, it's called when you want to invoke the operation18:24
gary_posterleonardr: ...from lazr.restful's perspective, every time?  or is this a one time parsing?  (Again, really just curious.)18:25
gary_poster(one-time parsing for the process)18:25
leonardrgary: every time, because it's processing the values you provided when you invoked it18:26
gary_posterleonardr: oh.  ok.  thanks.18:26
gary_posterhave a nice evening.18:26
leonardrthanks18:26
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: sinzui || queue: [jtv, adeuring]
noodles775_bac: It's fine if you don't get to it, but can I put one on the queue even though I won't be around for question?18:51
=== deryck changed the topic of #launchpad-reviews to: on call: bac || reviewing: sinzui || queue: [jtv, adeuring, deryck]
noodles775_bac: https://code.launchpad.net/~michael.nelson/launchpad/429353-site-message-to-footer/+merge/1181318:58
=== noodles775_ changed the topic of #launchpad-reviews to: on call: bac || reviewing: sinzui || queue: [jtv, adeuring, deryck, noodles]
bacnoodles775_: ok18:59
noodles775_Thanks.19:00
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: adeuring || queue: [jtv, deryck, noodles]
=== barry is now known as barry_
bacsinzui: are you doing a ui=rs for your oath branch?19:18
=== barry is now known as barry_
=== barry_ is now known as barry
sinzuihmm19:20
sinzuibac: I am for blueprints (all blueprints are rd)19:21
sinzuibac: I am for blueprints (all blueprints are rs)19:21
bacsinzui: but what about the oath branch?  if you aren't getting a UI review i'll mark the MP as approved19:21
sinzuibac: sorry. I am on a call19:22
sinzuiYes I want to two UI reviews.19:22
salgadosinzui, my branch converting person-index.pt is up for (code/UI) grabs.  the diff has around 1000 lines, can you take it?19:24
sinzuisalgado: yes. I would love to stop19:24
sinzuisalgado: yes. I would love to stop coding for the day19:24
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: jtv || queue: [deryck, noodles]
bacadeuring: review done19:26
adeuringbac: thanks!19:26
salgadothanks sinzui!19:27
sinzuibarry: rockstar: Can either/both of you take a look at the pictures for my branch. The work was mechanical https://code.edge.launchpad.net/~sinzui/launchpad/person-review-oath/+merge/1180119:37
=== sinzui changed the topic of #launchpad-reviews to: on call: bac || reviewing: jtv || queue: [deryck, noodles,sinzui]
barrysinzui: sure19:38
barrysinzui: although, you don't need a ui review for mechanical changes19:39
sinzuibarry: correct, but there was something wired in these pages...19:39
barrysinzui: give me the urls and i'll look19:39
sinzuihttps://code.edge.launchpad.net/~sinzui/launchpad/person-review-oath/+merge/11801/comments/30656/+reply19:41
sinzui^ I think you want to read this to understand that IAccount is not traversable, so it does not get tabs19:41
sinzuibarry: ^19:41
barrysinzui: hmm. why does it follow that if IAccount is not traversable, the page gets no app tabs?19:47
sinzuibarry: We gave LOSAs a hack to manage user accounts...this is outside of launchpad. To make tabs we need to made a facet menu and a canonical URL. We will never make the later19:48
barrysinzui: that makes better sense :)  ui=barry*19:49
sinzuithanks19:49
rockstarbarry, thanks for getting to that.  I'm trying to get lots of stuff done.19:50
barryrockstar: no worries19:50
barrybac: shite.  another text conflict found :(19:51
sinzuisalgado: ping20:05
salgadosinzui, pong20:05
sinzuisalgado: I like the treatment of links (related projects ...)20:06
sinzuisalgado: can we add a link for the owner to mange is oauth-tokens to it20:06
salgadosinzui, on the heading slot?20:06
sinzuisalgado: I was thinking of adding the link to the list that has Related projects and PPA packages20:07
salgadoright, that's in the heading slot20:08
salgadoI can do that20:08
sinzuisalgado: nothing should use the heading-slot. maybe I misunderstand you. I am sure you know the list20:09
sinzuisalgado: this is the bug I was thinking of https://bugs.edge.launchpad.net/launchpad-registry/+bug/31673120:10
mupBug #316731: provide a link to the +oauth-tokens page on users page <api> <feature> <ui> <Launchpad Registry:Triaged> <https://launchpad.net/bugs/316731>20:10
salgadosinzui, team-index.pt (and now person-index.pt) are filling the heading slot with these links20:11
sinzuiI see20:12
sinzuisalgado: barry's work deprecated the slot. I think we need to move them.20:13
sinzuisalgado: they can move before the first <div class="yui-g"> like the distro and product page20:14
salgado  <div20:15
salgado    class="description"20:15
salgado    tal:condition="context/homepage_content"20:15
salgado    tal:content="structure context/homepage_content/fmt:text-to-html"20:15
salgadosinzui, that's in the heading slot too.  should it be moved to the 'main' slot?20:15
sinzuiyep20:15
sinzuiI saw that. The markup will look a lot like the distro and product page after the move20:15
bacsinzui: you have two branches on +activreviews.  which would you like me to review?20:21
sinzuiboth20:22
bacer, first?20:22
sinzuido the blueprint first20:22
=== sinzui changed the topic of #launchpad-reviews to: on call: bac || reviewing: jtv || queue: [deryck, noodles,sinzui,sinzui]
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: sinzui || queue: [deryck, noodles,sinzui]
bacsinzui: i'm letting you jump b/c deryck's is super long (but easy) and the others are absentee20:23
sinzuibac: blueprint changes are auto ui=rs so I think it will be quick20:23
bacsinzui: thanks for the screenshots20:24
sinzuibac I should have take before examples so that you could see the overlaping text I was seeing.20:24
bacsinzui: before captures are handy for the reviewer and as reference for me when i'm working, so i got into the habit of doing them for all pages20:26
bacsinzui: i know you didn't touch it, but at line 109 the use of the plural "them" to mean "the person whose gender we don't know" is grating.  could you have a go at rewording that?20:29
sinzuiI can20:30
sinzuibac: I need to pick my children up. I'll be back in 30 minutes20:33
bacok20:33
bacsinzui: the branch for https://code.edge.launchpad.net/~sinzui/launchpad/person-blueprint-templates/+merge/11753 has already landed?20:36
salgadosinzui, I've updated both templates to not fill the heading slot20:37
=== henninge changed the topic of #launchpad-reviews to: on call: bac || reviewing: sinzui || queue: [deryck, noodles, sinzui, henninge]
henningebac: I added a branch of mechanical 3.0 changes if that is ok?20:55
bachenninge: ok20:55
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: deryck || queue: [noodles, henninge]
sinzuibac: It has?20:59
* sinzui looks20:59
bacsinzui: yeah, it landed just before i approved it...21:00
sinzuibac: I see. My test fix has not...21:00
bacsinzui: you've been landing so much stuff, perhaps your fingers just typed it while you weren't looking21:00
sinzuibac: I am sorry, I sent the wrong window off to PQM21:01
sinzuiand my text change was not in it of course21:01
bacsinzui: no worries.  it's approved anyway21:01
bacsinzui: perhaps you can bundle it up elsewhere...21:01
sinzuiMy test re-enable branch comes to mind.21:02
henningebac: thanks. I have to go to sleep now, so please email any questions.21:02
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: deryck || queue: [noodles, henninge, <ask before adding any more>]
bachenninge: will do21:03
henningecheers21:03
sinzuisalgado: I do not think you add person-portlet-involvement.pt to the tree21:07
salgadosinzui, I didn't.  I renamed portlet-details to portlet-involvement and later removed it21:08
salgadodoes the diff say I added that?21:08
sinzuisalgado:config says it does not exist21:08
sinzuisalgado: I cannot start the server21:08
salgadosinzui, oh, right, I forgot to remove it from zcml21:08
salgadosinzui, please merge/push again and it will work21:09
bachi deryck21:18
deryckhi bac 21:18
bacderyck: in bug 427928 you said anecdotal evidence said no one used mentorship.  did you run a query to confirm that?  i'm just curious.21:19
mupBug #427928: Templates for mentoring should be removed in 3.0 conversion <Launchpad Bugs:In Progress by deryck> <https://launchpad.net/bugs/427928>21:19
deryckbac, no, I didn't.  See flacoste's recent stats on the bug page redesign which do confirm this.21:20
bacok21:20
bacderyck: i'm unclear how complete  this removal aims to be.  I see BugTaskView still extends CanBeMentoredView21:25
deryckbac, it's not meant to be complete at all.  it's just to remove links to the feature and templates.  the least possible to do that.21:26
deryckbac, still a long diff to do that, though :)21:26
bacderyck: sure.  do we have a bug to get rid of the rest of the cruft?  i'd hate for 'out of sight, out of mind' to mean that we don't clean up completely21:26
deryckbac, no, not yet.  but flacoste and kfogel are tracking the idea with stats and an upcoming blog post.  So if all that turns out as expected, a bug will be filed at that point.21:28
bacderyck: ok21:28
bacderyck: will you swear on bear bryant's hat that you'll run this through ec2test?21:28
deryckbac, yeah, but since I'm an Auburn guy, that doesn't gain you much ;)21:29
deryckbac, but I don't commit without ec2test.21:30
bacfair enough21:30
bacderyck: i recall seeing auburn play once.  cotton bowl, 198621:32
deryckbac, probably not a bad year for Auburn then, IIRC.21:33
bacderyck: cold and icy.  1st and goal on about the five and they ran bo jackson up the middle four times into a brick wall.21:33
deryckheh21:33
deryckbac, ah, the good ol' days ;)21:33
bacderyck: for auburn and a&m21:34
bacderyck: the branch looks good.  r=bac21:35
=== bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: noodles || queue: [henninge, <ask before adding any more>]
deryckbac, thanks21:35
=== salgado_ is now known as salgado
kfogelbac: posted that blog post, btw22:03
backfogel: which?22:04
kfogelhttp://blog.launchpad.net/general/removing-mentoring22:04
kfogelbac: the one deryck was mentioning22:04
backfogel: ah, right.  thanks22:04
kfogelbac: by the way, I had tried to put an image into that post (see http://www.red-bean.com/kfogel/canonical/mentoring-button.png) but couldn't get it to show up.22:05
kfogelbac: any idea how to do that?  I uploaded it twice; I was looking at the HTML codes, and they seemed reasonable to me.  But it was never visible.22:05
backfogel: i don't.  mrevell would be the answer man22:08
=== bac changed the topic of #launchpad-reviews to: on call: - || reviewing: [-]
* bac calls it a day22:11
=== salgado is now known as salgado-afk
=== matsubara is now known as matsubara-afk

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