[00:08] bac: hi, you're on call tomorrow? [00:39] barry: indeed i am [02:36] thumper: want to look at another simple ec2test branch? [03:31] https://code.edge.launchpad.net/~stub/launchpad/pending-db-changes/+merge/11756 , one line change. Diff at https://pastebin.canonical.com/22095/ [03:35] stub: why is the diff in the merge proposal so bogus? [03:35] mwhudson: Cause I targetted the wrong branch. Redoing the proposal now. [03:35] stub: ah ok [03:36] mwhudson: https://code.edge.launchpad.net/~stub/launchpad/pending-db-changes/+merge/11757 should be better :) [03:41] stub: approved [03:41] mwhudson: Ta. Some magic ec2test incantation you want me to use to submit it? [03:42] stub: yeah, tell me your aws id? [03:42] stub: and grab bzr+ssh://bazaar.launchpad.net/~mwhudson/launchpad/cache-the-download-cache [03:42] stub: by "aws id" i mean the 12 digit numeric one [03:42] Merge it in or do I need a seperate branch? [03:43] stub: separate would be best [03:43] 3409-8351-9589 [03:44] Got that branch [03:45] * mwhudson slaps elastifox around a bit [03:47] stub: 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] stub: it should say "Using machine image version 16" [03:49] Yup. Its booting the image now. [03:50] cool [03:50] if you're running --headless it should let go much quicker [03:51] ../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] let me know if it falls over in a heap :) [04:21] hm [04:21] stub: did you see my questions? [04:21] let me know if it falls over in a heap :) [04:21] stub: has it detached yet? [04:21] stub: er, your change just got merged into db-devel [04:21] stub: did you have an ec2test already running against you pending-db-changes branch? [04:21] num [04:21] nup [04:21] didn't see [04:21] it has detached now [04:22] db-devel was the target. No I didn't have another ec2test run. [04:22] Ahh... the merge was my fault. [04:23] I'd sent off an earlier revision of that branch to pqm, and it took forever to land. [04:23] So the tests are still running [04:23] stub: cool thanks [05:56] I believe I have fix for the failing tests. [05:59] oh god there are still failures :( [05:59] sinzui: want me to review the fix? [05:59] mwhudson: once I confirm it [06:00] mwhudson: The problems are intermingled in my own branch that I was testing [06:00] sinzui: cool, i'm not going anywhere for a while... [06:00] I toppled a view, but most of the errors are the one I understood danilo-afk was fixing [06:20] mwhudson: Can you take a look at http://pastebin.ubuntu.com/271344/ [06:23] sinzui: i'm happy to rs=me that [06:23] sinzui: i don't really know all the details, but i trust you do :) [06:25] mwhudson: if I submit with a preemptive testfix, will it be picked up automatically now? [06:25] sinzui: yes === abentley1 is now known as abentley [09:34] gmb: will you have time to look at a pretty straight-forward 400 line code review? [09:34] noodles775: I'll take a look, sure. [09:35] gmb: thanks, the MP should arrive in a few seconds. [09:42] gmb: here 'tis: https://code.launchpad.net/~michael.nelson/launchpad/429263-no-value-option/+merge/11768 [09:42] noodles775: Awesome, thanks. Will look in a sec. [09:50] Ah, good old Zope. PEP 8 was something that happened to other people, wasn't it? [09:52] lol [09:53] noodles775: r=me; looks good. [09:53] gmb: great, thanks! === stub1 is now known as stub === beuno is now known as beuno-lunch [11:52] hey 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-429811 [12:04] jtv: IMasterStore(POTemplate) is a better spelling - it should be rare to need the IStoreSelector now. [12:04] (line 73) [12:05] stub: ah yes, thanks, I'd forgotten about that [12:05] jtv: 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:06] stub: 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:07] Your better off spitting out your warning explicitly in that case, rather than the 'bad programmer' errors hopefully emitted by shortlist. [12:08] I see we already cope sometimes, in that we proceed if there is only one preferred match, no matter now many results returned. [12:09] right, and that's worth a warning. This way I'm sure all the problem cases emit some kind of warning. [12:09] Ahh wait, it's coming back to me now. [12:10] Just IIRC shortlist uses Python warn, rather than a nice log message [12:11] A 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] So do shortlist(100) or something, and 'if len(foo) > 2: log.warn('Weird number of matches %d') [12:12] How would that help? [12:12] You won't need some sort of test ensuring the Python warning framework warning is actually emitted correctly by your script in this case. [12:13] The shortlist warning is more a backup. [12:14] Its 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] Well if the shortlist warning doesn't get through, we'll still start seeing more and more of these warnings you see here. [12:15] The 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] Sure. So the shortlist warning is redundant. You know this case can happen, and you handle it, so why emit noise if it does happen [12:15] I think that's appropriate. [12:15] How about I just jack up the expected size on the shortlist? [12:15] I 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:16] Sure. [12:16] Everything else I didn't mention looks good :) [12:16] Thanks. Now about the store selector... Is there no IDefaultStore? [12:18] IStore(POWhatever) [12:18] That gives you the default store. [12:18] great [12:19] * jtv runs tests [12:19] tests pass [12:19] no lint [12:21] stub: 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:22] That okay with you? [12:22] Sounds good. [12:22] Thanks. And how's the coffee? :) [12:22] Great :-) [12:22] Maybe John won't get his delivery ;) [12:22] lol [12:22] Robin has a grinder, so I've been enjoying it myself === cprov changed the topic of #launchpad-reviews to: on call: - || reviewing: -|| queue: [cprov] [12:55] gmb are you on call today? [12:56] i'll be on in 15 minutes. === 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] [13:25] hi cprov [13:25] bac: hi there [13:25] cprov: is this the one you've queued up? https://code.edge.launchpad.net/~cprov/launchpad/bug-421364-build-publishing-status/+merge/11751 [13:26] bac: yes, that's it === bac changed the topic of #launchpad-reviews to: on call bac: - || reviewing: -cprov|| queue: [-] [13:26] i'll get right on it [13:26] bac: thank you. [13:44] cprov: your branch has a merge conflict === bac changed the topic of #launchpad-reviews to: on call bac: - || reviewing: cprov|| queue: [-] [13:45] bac: uhm, sorry, let me fix it, one sec [13:46] cprov: np. lots of branches hitting fast and furious [13:52] bac: hi. i have two branches ready for review. one is on +activereviews already, and one should appear there soon [13:52] BjornT: ok === BjornT changed the topic of #launchpad-reviews to: on call bac: - || reviewing: cprov|| queue: [BjornT, BjornT] [14:03] bac: conflict fixed, branch pushed. [14:03] thanks cprov [14:06] cprov: i'm wrapping yours up. need to be afk for a few minutes. brb === 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] [14:29] bac: hiya! up for a review this fine morning? [14:32] barry: throw it on the pile [14:32] bac super! [14:32] hey BjornT could you fix the conflicts in your windmill branch and repush please? === barry changed the topic of #launchpad-reviews to: on call bac || reviewing: BjornT || queue: [BjornT, barry] [14:35] bac: sure === sinzui changed the topic of #launchpad-reviews to: on call bac || reviewing: BjornT || queue: [BjornT, barry, sinzui] [14:43] bac: done. i'll resolve the conflicts in the other branch as well; turned out my RF copy was old [14:44] bac: both branches are clean now [14:44] thanks BjornT [14:48] BjornT: when i try to merge your windmill branch r9244 into RF r9446 i still get two conflicts [14:50] bac: well, i guess i should push up the new revision as well :) done [14:51] BjornT: that magically worked! [14:57] bac: can I add an MP to the queue? [14:57] adeuring: sure [14:57] https://code.edge.launchpad.net/~adeuring/launchpad/hwdb-parse-submission-udev-node/+merge/11783 [14:57] bac: thanks! [14:57] adeuring: please add me to the MP === adeuring changed the topic of #launchpad-reviews to: on call bac || reviewing: BjornT || queue: [BjornT, barry, sinzui, adeuring] [15:11] sinzui: did i have a ui=sinzui on https://code.edge.launchpad.net/~bac/launchpad/bug-429455-team-pages/+merge/11739 ? [15:11] yes [15:12] sinzui: thanks === danilo-afk is now known as danilos === bac changed the topic of #launchpad-reviews to: on call bac || reviewing: BjornT || queue: [barry, sinzui, adeuring] [15:44] hi BjornT [15:45] BjornT: in test.in you say "the option probably wasn't specified". why the uncertainty? [15:46] bac: i'm on a call now [15:47] BjornT: ok, i'm here all day. :) [15:58] bac: can I add another small branch to your queue? [15:59] adeuring: sure [15:59] bac: thanks! [16:02] beuno: 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] adeuring, sure [16:02] beuno: thanks! [16:03] adeuring, done [16:03] beuno: wowm, that was fast ! [16:06] adeuring, the 3.0 train is now going at 400 km/h [16:06] beuno: ;) === bac changed the topic of #launchpad-reviews to: on call bac || reviewing: barry || queue: [sinzui, adeuring] [16:15] beuno: that 3.0 train isn't Amtrak... [16:15] just ask barry [16:16] let'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 time [16:18] bac: 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] BjornT: i sent the review and asked for more info [16:19] bac: 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 issue [16:20] BjornT: ok [16:21] BjornT: that might warrant a small explanation in the comment. seeing stuff like "probably" makes people nervous. [16:22] bac: yeah, i guess :) [16:23] bac: as for the other review. what's your use case for building on the current default options. what are you trying to do? [16:24] BjornT: unsure. i'm just noting you're changing the behavior [16:24] bac: indeed. but i haven't come up with any feasible use cases for the current behaviour. === danilos is now known as danilo-afk [16:35] bac: got one for you, and the next OCR I guess is myself. :) can I chuck it on the queue? [16:35] jtv: yes. [16:35] bac: thanks === 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] [16:51] abentley: did my review response look ok? if so can you approve it please :) [16:52] bigjools: So far, I haven't received an email, but I'll go find it. [16:52] sinzui: review done. thanks. === 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] [16:52] bac: I just sent another one [16:53] one step forward... [16:53] abentley: it doesn't list you as a review, that's why... [16:53] abentley: https://code.edge.launchpad.net/~julian-edwards/launchpad/ppa-copy-to-main-bug-426163/+merge/11705 [16:53] sinzui: could you mark the MP approved: https://code.edge.launchpad.net/~bac/launchpad/bug-429455-team-pages/+merge/11739 [16:54] done [16:56] bigjools: r=me [16:56] abentley: cheers [16:56] bac: could you take another look at lp:~bjornt/launchpad/bug-429375? i've addressed your comments [16:57] BjornT: ok [17:02] bac: can I add another small MP? [17:02] adeuring: sure [17:02] bac: thanks! [17:03] barry: after the merge TeamInvitationView has two label properties [17:03] barry: and two page_titles [17:03] :( [17:03] bac: dang. let me work on that [17:06] adeuring, why is there an edit page to delete something? [17:06] refering to http://people.canonical.com/~adeuring/spec-branch.png [17:07] beuno: 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 edited [17:07] I've heard rumours from flacoste that anything in blueprints is ui=rs, but I don't know how true that is [17:07] adeuring, how much work would it be to change it to reflect reality? (eg, rename it to "delete") [17:08] beuno: should be easy. Give me a few minutes... [17:09] beuno: blueprints UI reviews are rs= [17:10] bac: fix pushed [17:10] thanks [17:10] flacoste, beuno: OK, will rs=... further brnaches ;) [17:10] adeuring, the second bext iluminati player in Canonical has spoken [17:10] s/bext/best [17:10] adeuring, I'm still happy to help out if you need me [17:12] beuno: the heading is changed [17:12] screenshot uploaed (old URL) [17:12] adeuring, thanks [17:13] land! [17:14] beuno: I'm waiting for the code reiview... Brad has a lot to do today... [17:17] * adeuring notices that the heading is still nonsensical ("Delete specification nranch summary")... === bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: bjornt || queue: [adeuring, adeuring,jtv,sinzui, adeuring] [17:23] BjornT: done === bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: adeuring || queue: [adeuring,jtv,sinzui, adeuring] [17:25] adeuring: the diff for this MP is messed up: https://code.edge.launchpad.net/~adeuring/launchpad/hwdb-parse-submission-udev-node/+merge/11783 [17:26] adeuring: never mind, i generated a new one [17:26] bac: OK, was going to paste-bin one... === matsubara-lunch is now known as matsubara === salgado-lunch is now known as salgado [17:50] gary_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] leonardr: looking now [17:50] look at bug 430152, working on a merge proposal now [17:50] Bug #430152: Multipart representation creation crashes when an "optional" field has no value specified [17:50] ok [17:51] leonardr: yes === bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: adeuring || queue: [jtv,sinzui, adeuring] [17:56] gary, i just pushed another branch that updates version.txt [17:57] leonardr: [17:57] ok === deryck[lunch] is now known as deryck [18:09] adeuring: another done [18:09] bac: thanks! === bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: || 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 [18:22] leonardr: 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] leonardr: about to run out for lunch [18:23] gary: ok. fwiw, 'missing' is defined outside the loop [18:23] leonardr: I saw that, but this method is not called as part of a loop (for each tag or something?) [18:24] gary: no, it's called when you want to invoke the operation [18:25] leonardr: ...from lazr.restful's perspective, every time? or is this a one time parsing? (Again, really just curious.) [18:25] (one-time parsing for the process) [18:26] gary: every time, because it's processing the values you provided when you invoked it [18:26] leonardr: oh. ok. thanks. [18:26] have a nice evening. [18:26] thanks === bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: sinzui || queue: [jtv, adeuring] [18:51] 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? === deryck changed the topic of #launchpad-reviews to: on call: bac || reviewing: sinzui || queue: [jtv, adeuring, deryck] [18:58] bac: https://code.launchpad.net/~michael.nelson/launchpad/429353-site-message-to-footer/+merge/11813 === noodles775_ changed the topic of #launchpad-reviews to: on call: bac || reviewing: sinzui || queue: [jtv, adeuring, deryck, noodles] [18:59] noodles775_: ok [19:00] Thanks. === bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: adeuring || queue: [jtv, deryck, noodles] === barry is now known as barry_ [19:18] sinzui: are you doing a ui=rs for your oath branch? === barry is now known as barry_ === barry_ is now known as barry [19:20] hmm [19:21] bac: I am for blueprints (all blueprints are rd) [19:21] bac: I am for blueprints (all blueprints are rs) [19:21] sinzui: but what about the oath branch? if you aren't getting a UI review i'll mark the MP as approved [19:22] bac: sorry. I am on a call [19:22] Yes I want to two UI reviews. [19:24] sinzui, my branch converting person-index.pt is up for (code/UI) grabs. the diff has around 1000 lines, can you take it? [19:24] salgado: yes. I would love to stop [19:24] salgado: yes. I would love to stop coding for the day === bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: jtv || queue: [deryck, noodles] [19:26] adeuring: review done [19:26] bac: thanks! [19:27] thanks sinzui! [19:37] barry: 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/11801 === sinzui changed the topic of #launchpad-reviews to: on call: bac || reviewing: jtv || queue: [deryck, noodles,sinzui] [19:38] sinzui: sure [19:39] sinzui: although, you don't need a ui review for mechanical changes [19:39] barry: correct, but there was something wired in these pages... [19:39] sinzui: give me the urls and i'll look [19:41] https://code.edge.launchpad.net/~sinzui/launchpad/person-review-oath/+merge/11801/comments/30656/+reply [19:41] ^ I think you want to read this to understand that IAccount is not traversable, so it does not get tabs [19:41] barry: ^ [19:47] sinzui: hmm. why does it follow that if IAccount is not traversable, the page gets no app tabs? [19:48] barry: 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 later [19:49] sinzui: that makes better sense :) ui=barry* [19:49] thanks [19:50] barry, thanks for getting to that. I'm trying to get lots of stuff done. [19:50] rockstar: no worries [19:51] bac: shite. another text conflict found :( [20:05] salgado: ping [20:05] sinzui, pong [20:06] salgado: I like the treatment of links (related projects ...) [20:06] salgado: can we add a link for the owner to mange is oauth-tokens to it [20:06] sinzui, on the heading slot? [20:07] salgado: I was thinking of adding the link to the list that has Related projects and PPA packages [20:08] right, that's in the heading slot [20:08] I can do that [20:09] salgado: nothing should use the heading-slot. maybe I misunderstand you. I am sure you know the list [20:10] salgado: this is the bug I was thinking of https://bugs.edge.launchpad.net/launchpad-registry/+bug/316731 [20:10] Bug #316731: provide a link to the +oauth-tokens page on users page [20:11] sinzui, team-index.pt (and now person-index.pt) are filling the heading slot with these links [20:12] I see [20:13] salgado: barry's work deprecated the slot. I think we need to move them. [20:14] salgado: they can move before the first
like the distro and product page [20:15]
class="description" [20:15] tal:condition="context/homepage_content" [20:15] tal:content="structure context/homepage_content/fmt:text-to-html" [20:15] sinzui, that's in the heading slot too. should it be moved to the 'main' slot? [20:15] yep [20:15] I saw that. The markup will look a lot like the distro and product page after the move [20:21] sinzui: you have two branches on +activreviews. which would you like me to review? [20:22] both [20:22] er, first? [20:22] do the blueprint first === 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] [20:23] sinzui: i'm letting you jump b/c deryck's is super long (but easy) and the others are absentee [20:23] bac: blueprint changes are auto ui=rs so I think it will be quick [20:24] sinzui: thanks for the screenshots [20:24] bac I should have take before examples so that you could see the overlaping text I was seeing. [20:26] sinzui: 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 pages [20:29] sinzui: 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:30] I can [20:33] bac: I need to pick my children up. I'll be back in 30 minutes [20:33] ok [20:36] sinzui: the branch for https://code.edge.launchpad.net/~sinzui/launchpad/person-blueprint-templates/+merge/11753 has already landed? [20:37] sinzui, I've updated both templates to not fill the heading slot === henninge changed the topic of #launchpad-reviews to: on call: bac || reviewing: sinzui || queue: [deryck, noodles, sinzui, henninge] [20:55] bac: I added a branch of mechanical 3.0 changes if that is ok? [20:55] henninge: ok === bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: deryck || queue: [noodles, henninge] [20:59] bac: It has? [20:59] * sinzui looks [21:00] sinzui: yeah, it landed just before i approved it... [21:00] bac: I see. My test fix has not... [21:00] sinzui: you've been landing so much stuff, perhaps your fingers just typed it while you weren't looking [21:01] bac: I am sorry, I sent the wrong window off to PQM [21:01] and my text change was not in it of course [21:01] sinzui: no worries. it's approved anyway [21:01] sinzui: perhaps you can bundle it up elsewhere... [21:02] My test re-enable branch comes to mind. [21:02] bac: thanks. I have to go to sleep now, so please email any questions. === bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: deryck || queue: [noodles, henninge, ] [21:03] henninge: will do [21:03] cheers [21:07] salgado: I do not think you add person-portlet-involvement.pt to the tree [21:08] sinzui, I didn't. I renamed portlet-details to portlet-involvement and later removed it [21:08] does the diff say I added that? [21:08] salgado:config says it does not exist [21:08] salgado: I cannot start the server [21:08] sinzui, oh, right, I forgot to remove it from zcml [21:09] sinzui, please merge/push again and it will work [21:18] hi deryck [21:18] hi bac [21:19] deryck: 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] Bug #427928: Templates for mentoring should be removed in 3.0 conversion [21:20] bac, no, I didn't. See flacoste's recent stats on the bug page redesign which do confirm this. [21:20] ok [21:25] deryck: i'm unclear how complete this removal aims to be. I see BugTaskView still extends CanBeMentoredView [21:26] bac, 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] bac, still a long diff to do that, though :) [21:26] deryck: 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 completely [21:28] bac, 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] deryck: ok [21:28] deryck: will you swear on bear bryant's hat that you'll run this through ec2test? [21:29] bac, yeah, but since I'm an Auburn guy, that doesn't gain you much ;) [21:30] bac, but I don't commit without ec2test. [21:30] fair enough [21:32] deryck: i recall seeing auburn play once. cotton bowl, 1986 [21:33] bac, probably not a bad year for Auburn then, IIRC. [21:33] deryck: 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] heh [21:33] bac, ah, the good ol' days ;) [21:34] deryck: for auburn and a&m [21:35] deryck: the branch looks good. r=bac === bac changed the topic of #launchpad-reviews to: on call: bac || reviewing: noodles || queue: [henninge, ] [21:35] bac, thanks === salgado_ is now known as salgado [22:03] bac: posted that blog post, btw [22:04] kfogel: which? [22:04] http://blog.launchpad.net/general/removing-mentoring [22:04] bac: the one deryck was mentioning [22:04] kfogel: ah, right. thanks [22:05] bac: 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] bac: 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:08] kfogel: i don't. mrevell would be the answer man === bac changed the topic of #launchpad-reviews to: on call: - || reviewing: [-] [22:11] * bac calls it a day === salgado is now known as salgado-afk === matsubara is now known as matsubara-afk