/srv/irclogs.ubuntu.com/2009/12/21/#launchpad-reviews.txt

stubCan I get a review for https://pastebin.canonical.com/25990/ ? It is a minor refactoring to a previously reviewed branch to get all the tests passing - the bulk is shuffling some useful code to a better location.02:22
mwhudsonstub: doesn't look like the remove argument to kill_by_pidfile is ever used02:44
stubmwhudson: It isn't - just there to make it obvious that it gets removed by default and a bit of overengineering for future uses.02:45
mwhudsonstub: also the docstring seems to lie about it02:46
stubI can remove it if you think that is better02:46
mwhudsonstub: i think it is a bit better yes02:46
stubI supposed it is always success since we don't check if the -9 produced a zombie of some sort.02:47
mwhudsonok, maybe not a lie, but not super clear02:48
stubmwhudson: Remove the parameter entirely or just remove 'on success' from the docstring?02:48
mwhudsonstub: remove the parameter entirely would get my vote02:48
stubdef kill_by_pidfile(pidfile_path):02:49
stub    """Kill a process identified by the pid stored in a file.02:49
stub    The pid file is removed from disk.02:49
stub    """02:49
mwhudsonstub: +102:49
stub(With a blank line between the two lines that the IRC client stripped02:49
mwhudsonstub: otherwise, it looks fine02:50
stubThanks :)02:50
mwhudsonapart from the usual "anything that touches lib/canonical/testing/layers.py makes me want to cry a little"02:50
=== adiroiban changed the topic of #launchpad-reviews to: on call: - || reviewing: - || queue [adiroiban(bug-497438),adiroiban(bug-435165)] || This channel is logged: http://irclogs.ubuntu.com || https://code.edge.launchpad.net/launchpad/+activereviews
adiroibansalgado: Hi! Do you have time to land this branch? https://code.edge.launchpad.net/~adiroiban/launchpad/bug-427319/+merge/15994 Thanks!10:46
salgadoadiroiban, sure, I'll do it in a minute10:47
al-maisanhello allenap, I just replied to your review email from last Wednesday (sorry for the delay) -- could you please take a quick look before I land the branch?11:17
allenapal-maisan: Sure.11:17
allenapal-maisan: I have a team stand-up call now, but I'll look at it straight after that.11:18
al-maisanallenap: that's greatly appreciated :)11:18
allenapal-maisan: Is it very expensive to calculate changes_file_url?11:31
al-maisanallenap: it is somewhat expensive and it is calculated for each SourcePackagePublishingHistory on the LP API -- whether you're interested in it or not.11:32
allenapal-maisan: By making it a method, Launchpad must field an extra HTTP request for every SPPH. Maybe that's a bigger overhead? Or do you expect that it will be called rarely?11:33
al-maisanallenap: it would seem that it's not a datum of general interest .. there are some LP API apps that use it: e.g. code imports or scripts written by kees11:34
al-maisanbut my feeling is that it's data that's not necessarily needed whenever we access a SPPH instance11:35
al-maisan.. and calculating the 'changes_file_url' property now leads the Soyuz OOPS top-10 by a big margin11:36
allenapal-maisan: Okay, sounds like you have a handle on it. It can be changed later if it turns out to be otherwise, so I'm not too worried.11:36
allenapal-maisan: Timeout or error?11:37
al-maisanallenap: time out11:37
allenapal-maisan: Wow.11:37
al-maisanyeah11:37
=== adiroiban changed the topic of #launchpad-reviews to: on call: - || reviewing: - || queue [adiroiban(bug-497438),adiroiban(bug-435165),adiroiban(bug-359180)] || This channel is logged: http://irclogs.ubuntu.com || https://code.edge.launchpad.net/launchpad/+activereviews
allenapal-maisan: Okay, one other thing. The test_changesFileLFA method is misnamed; I think it should be test_getChangesFileLFA(). Everything else looks fine.11:38
al-maisanallenap: ah, good point. Will fix that.11:39
al-maisanallenap: thanks for taking another look at this :)11:39
allenapal-maisan: I'll add the conversation as a comment in the mp.11:39
allenapal-maisan: Welcome :)11:39
al-maisanallenap: great, thanks!11:39
=== wgrant changed the topic of #launchpad-reviews to: on call: - || reviewing: - || queue [adiroiban(bug-497438),adiroiban(bug-435165),adiroiban(bug-359180),wgrant] || This channel is logged: http://irclogs.ubuntu.com || https://code.edge.launchpad.net/launchpad/+activereviews
henningejtv: we don't hear your echo12:16
henningeadiroiban: Hi!12:40
adiroibanhenninge: hi12:40
henningeadiroiban: it's time for Christmas goodies: I am finishing your review now! ;-)12:41
henningeadiroiban: This is bug 43516512:42
mupBug #435165: Make it easier to navigate to the full list of templates in source packages <trivial> <ui> <Launchpad Translations:In Progress by adiroiban> <https://launchpad.net/bugs/435165>12:42
henningeadiroiban: what does "request/URL/5" do?12:45
adiroibanget the URL up the the fifth segment12:46
adiroibanmaybe I should replace it with an object URL formater12:47
henningewell, relying on the format of the url in this manner is liable to break.12:49
henningeso, yeah, using a formatter is the right thing but I have another suggestion.12:49
adiroibanal-maisan: Hi. Do you have time to land this branch https://code.edge.launchpad.net/~adiroiban/launchpad/bug-492375/+merge/16279 ? Thanks!12:54
henningeadiroiban: I am also not happy with using more_templates_by_source as a condition. We always test explicitely in Python code (i.e. more_templates_by_source != 0) and I think TAL should not be different.12:55
henningeadiroiban: my suggestion to circumvent this is to construct the whole fragment in the view code.12:57
adiroibanhenninge: we also have  <p tal:condition="context/relatives_by_source" id="potemplate-relatives">12:57
henningeadiroiban: true, maybe that is not so bad...12:59
henningeadiroiban: Maybe it is just my test that I like to unclutter the tal an create fragments in the view, even call tal formatters from the view.12:59
adiroibanhenninge: I can create the whole text in the view...as I only need to append "and" 12:59
al-maisanadiroiban: can do.12:59
henningeadiroiban: as I said, that is what I would do but I acknowledge that it is not the only way tod do it.13:00
henningeI leave it up to you, important thing is to get rid of the request/URL/5 and use a fmt:url instead (or canonical_url in view code).13:01
adiroibanhenninge: for the condition http://paste.ubuntu.com/344078/13:02
henningeadiroiban: what I meant would make the TAL look like this http://paste.ubuntu.com/344080/13:05
adiroibanhenninge: for the fmt:url ... I am not sure how to create it. Is there a url formater for sourcepackage name? (I could not find it) Or I should implement it?13:06
henningeand more_templates_string simply returns "and <a href="...">17 more templates</a>"13:06
adiroibanhenninge: got it. Thanks. I'll implement it that way.13:07
henningeadiroiban: or it returns an empty string, so no need for a condition in TAL.13:08
adiroibanhenninge: yep13:08
henningeadiroiban: I think what you are looking for is canonical_url(related_template), right? 13:10
adiroibanhenninge: I don't know. Please allow me to take a look :)13:11
henningeadiroiban: btw, I just demoed that on launchpad.dev by hacking the database and simply moving some of the existing templates to evolution.13:12
henningeadiroiban: What do you want to link to? The logical place would be +templates, I guess.13:13
adiroibanhenninge: ok. I think there is also a pagetest for that.13:13
henningeadiroiban: I know, I saw it!13:13
adiroibanhenninge: https://translations.edge.launchpad.net/ubuntu/karmic/+source/kdelibs/+translations13:13
henningebut to try it out locally i your branch I need a product with more than 5 templtes.13:14
henningeadiroiban: doesn't work that way for a product it looks13:15
=== salgado is now known as salgado-afk
henningeadiroiban: https://translations.edge.launchpad.net/wiserearth/trunk/+translations13:17
henningedanilos: do you know why +translations works differntly on products and packages?13:19
adiroibanhenninge: rebuilding schema. I'm taking a look now13:19
daniloshenninge, because we didn't have time to make sourcepackages use the same approach (i.e. group by languages, not by templates)13:19
henningebad news13:20
henningeso we don't have a place to link to that lists are templates for a source package, once +translations for source packages works like products.13:20
henninges/are/all/13:21
al-maisanadiroiban: your branch (lp:~adiroiban/launchpad/bug-492375) is running in an ec2 instance now and will be submitted to pqm (in approx. 4 hours) if all goes well.13:21
adiroibanal-maisan: thanks!13:22
al-maisanyou are welcome 13:22
adiroibanhenninge: I will look to see what can be done fro productseries13:25
henningeadiroiban: it looks like the best bet is to link to +templates for productseries and +trantlations for packages atm.13:26
henningebut this will need to be fixed in another branch.13:26
daniloshenninge, adiroiban: we should use the same views/pages for +templates and +translations on all of productseries, sourcepackage, distroseries, project (with focused series being shown for each product)13:29
daniloshenninge, adiroiban: do not do that right away though :)13:29
henningewhat I meant.13:29
henninge;)13:29
adiroibanhenninge: what needs to be fixed in another branch?13:31
adiroibandanilos: ok. just give me the bug number 13:31
adiroibanjust kidding :)13:31
adiroibanbut still, it would be nice to have a bug ;)13:31
danilosadiroiban, it's not a bug per se, and it'd involve cleaning up a few interfaces/implementations first :)13:32
adiroibanhenninge: I don't know what you mean with canonical_url(related_template) . Since I'm in a potemplate I assume I should look the context for self.context.distroseries13:40
henningeadiroiban: yes, taht was wrong13:41
henningeadiroiban: It will be canonical_url(series)+"/+translations", I guess.13:41
henningeor canonical_url(context) ?13:41
adiroibanhenninge: nope13:41
adiroibancontext is the potemplate13:41
adiroibancontext.distroseries is ubuntu/hoary13:42
adiroibani need the sourcepackage name13:42
adiroibanmaybe I need to create a url formater13:42
adiroibanas I could not find one13:42
henningepotemplate also has a sourcepackagename, doesn't it?13:42
henningeadiroiban: but don't do that for this branch. Just create the html in view.13:43
henninge'and <a href="%s">%d more templates</a>' % (url, num_of_templates)13:44
henningeconstructing the url string is the hard part.13:44
henningeadiroiban: you will have to check whether the template is from a product series or from a sourcepackage and construct the url accordingly.13:46
adiroibanhenninge: yep. but there is no sourcepackagename url formater13:47
henningeadiroiban: I need to go now, I am sorry.13:47
adiroibanhenninge: np. I should be able to handle it from now on13:47
adiroibanthanks13:47
henningeadiroiban: yes, you will need to create the url in your code.13:47
henningegood luck, I will look at it tomorrow.13:48
=== salgado-afk is now known as salgado
=== abentley changed the topic of #launchpad-reviews to: on call: abentley || reviewing: - || queue [adiroiban(bug-497438),adiroiban(bug-435165),adiroiban(bug-359180),wgrant] || This channel is logged: http://irclogs.ubuntu.com || https://code.edge.launchpad.net/launchpad/+activereviews
=== adiroiban changed the topic of #launchpad-reviews to: on call: abentley || reviewing: - || queue [adiroiban(bug-497438),adiroiban(bug-359180),wgrant] || This channel is logged: http://irclogs.ubuntu.com || https://code.edge.launchpad.net/launchpad/+activereviews
adiroibanabentley: Hi. Do you have time to land this branch? https://code.edge.launchpad.net/~adiroiban/launchpad/bug-496352-series-status-refactor/+merge/16108 Thanks!14:35
abentleyadiroiban: Has it passed a full test suite run?14:36
adiroibanabentley: I don't know. I have just started a new one now.14:38
abentleyadiroiban: Okay, let me know when it passes, and I'll land it.14:39
adiroibanabentley: sorry for that. I've only tested with -m translations, and for my other branches the reviewers have started the full test.14:42
adiroibanabentley: do I need to merge with devel ?14:42
abentleyadiroiban: It is a good idea to merge with devel, but not strictly required.14:43
=== salgado is now known as salgado-lunch
sinzuidanilos: bac: Can either of your review https://code.edge.launchpad.net/~sinzui/launchpad/webkit-css/+merge/1638814:55
bacsinzui: i can.  is abentley unavailable?14:56
bacor is his queue just too long?  anyway, i'll grab it now.14:56
sinzuibac: I think you would appreciate a layout fix for safari more than most people.14:57
bacsinzui: i should point out i never *really* saw the issue last week.  the problems i saw on staging were fixed when they did a 'make clean'14:57
sinzuibac: lpnet and edge are very broken in epiphany. The the sidebar is rarely on the side. Most of the time it is below the content15:00
abentleyadiroiban: was there a pre-implementation discussion for your bug-497438 branch?15:03
adiroibanabentley: yes.15:05
bacsinzui: can you paste an URL that is currently broken on production in epiphany so i can see the problem?15:05
sinzuibac:15:07
sinzuihttps://edge.launchpad.net/launchpad-registry/+milestone/3.1.1315:07
sinzuihttps://edge.launchpad.net/launchpad-registry15:07
sinzuihttps://edge.launchpad.net/~bac15:07
bacsinzui: ah, i see it if i have a super-wide browser15:07
sinzuibac: I have a narrow browser15:07
abentleyadiroiban: It's really helpful to mention it.  There's supposed to be a section in your cover letter between "Proposed fix" and "Implementation details" called "Pre-implementation notes".15:10
abentleyadiroiban: https://dev.launchpad.net/QuickCoverLetterTemplate15:12
adiroibanabentley: sorry for not including that part. The preimplementation chat was with Danilo and the summary is part of Implementation details15:13
abentleyadiroiban: In lib/canonical/launchpad/security.py, you have "Disribution" rather than "Distribution" twice in the docstrings.15:15
=== ursula_ is now known as Ursinha-lunch
adiroibanabentley: thanks. fixed.15:17
abentleyadiroiban: UTC always makes me think of Universal Coordinated Time.  Is there another name you could use for utc_browser?15:19
adiroibandtc ?15:19
adiroibandistribution translations coordinator15:20
abentleyadiroiban: works for me.15:21
adiroibanabentley: ok. I'll rename it15:21
abentleyadiroiban: Thanks.  I think that will save confusion in the future.15:22
=== jelmer_ changed the topic of #launchpad-reviews to: on call: abentley || reviewing: - || queue [adiroiban(bug-497438),adiroiban(bug-359180),wgrant,jelmer] || This channel is logged: http://irclogs.ubuntu.com || https://code.edge.launchpad.net/launchpad/+activereviews
deryckBjornT_, since you're living Windmill these days, could I get a Windmill fixer-upper review? :)15:26
abentleyadiroiban: It seems like you create utg_member in order to specify their email and password, so that you can pass known values to setupBrowser.  Is that correct?15:28
adiroibanabentley: yes15:28
BjornT_deryck: maybe :)15:28
deryckBjornT_, heh.  It's a small fix.  Trying to make inline subscriber test less fragile.15:29
abentleyadiroiban: I think it would be useful to provide an alternative to setupBrowser that accepted an arbitrary Person, but what you've done is also fine.15:30
BjornT_deryck: sure15:30
deryckBjornT_, https://code.edge.launchpad.net/~deryck/launchpad/fix-subscriber-windmill-fragility-497112/+merge/1643115:30
deryckBjornT_, thanks!15:30
adiroibanabentley: now that it is called DTC, it would have make some sense to pass the distribution as argument15:31
BjornT_deryck: what does css_name look like? is it unique for each subscription?15:39
deryckBjornT_, it's the form "subscriber-XXX" where XXX is the db id for the subscribed user.15:41
deryckBjornT_, so yeah, should be unique.15:41
BjornT_deryck: ok, approved15:41
deryckBjornT_, thanks!15:43
abentleyadiroiban: (didn't notice I was disconnected) Why are you assigning to ubuntu.translationgroup rather than making utg_member a member of it?15:46
adiroibanabentley: now that it is called DTC, it would have make some sense to pass the distribution as argument15:48
adiroibanabentley: I don't know if ubuntu.translationgroup is already created15:49
abentleyadiroiban: Sure, that would be fine.  But this function has side-effects that aren't apparent from the name.  Especially, calling it twice will make the first return value invalid.15:50
adiroibanabentley: true. I also tried joining utg_member to translationgroup15:51
adiroibanbut I got an Attribute now allowed15:51
adiroibanor something like that15:52
adiroibanI also tried to login(ubuntu.translationsgroup.owner)15:52
adiroibanand then add the new member15:52
adiroibanbut with no luck15:52
abentleyadiroiban: Okay, I'm glad you explored other options.  I think this is acceptable in this case.15:53
adiroibanabentley: I think I need to look for a implementation that will also work for calling that function twice15:57
abentleyadiroiban: I think that would be an improvement, but I can't think of a use case for calling it twice.15:57
abentleyadiroiban: If you get the "Attribute not allowed" message again, I can help you look into it.  It's important to distinguish between "forbidden" (never allowed) and "unauthorized" (not allowed in this context).15:59
=== salgado-lunch is now known as salgado
adiroibanabentley: OK. Thanks!16:00
abentleyadiroiban: I'm going to summarize our discussion and change it from "needs review" to "work in progress" for now.16:01
adiroibanabentley: sure.16:03
abentleyadiroiban: Since I assume you're already working on stuff, I'll skip your other review for now.16:11
=== abentley changed the topic of #launchpad-reviews to: on call: abentley || reviewing: wgrant || queue [adiroiban(bug-359180),jelmer] || This channel is logged: http://irclogs.ubuntu.com || https://code.edge.launchpad.net/launchpad/+activereviews
adiroibanabentley: there is no hurry :)16:19
=== abentley changed the topic of #launchpad-reviews to: on call: abentley || reviewing: || queue [adiroiban(bug-359180),jelmer] || This channel is logged: http://irclogs.ubuntu.com || https://code.edge.launchpad.net/launchpad/+activereviews
adiroibanabentley: can you please take a look at this implementation http://paste.ubuntu.com/344161/ ? Thanks!16:31
abentleyadiroiban: Sorry, on phone.  With you shortly.16:33
abentleyadiroiban: What would raise NameAlreadyTaken?16:46
adiroibanabentley: calling the function twice16:47
adiroibanabentley: here is the code that also accepts a person http://paste.ubuntu.com/344170/16:47
adiroibananother person16:47
salgadoadiroiban, did you get a success/error message for that branch you asked me to land?16:48
adiroibansalgado: success :)16:49
salgadoadiroiban, but it didn't land on devel, did it?16:49
adiroibansalgado: nope, as it was not a RC16:49
abentleyadiroiban: calling which function twice?16:50
salgadoadiroiban, but pqm is open16:50
adiroibansalgado: it was closed last week16:50
adiroibanabentley: makePerson16:50
adiroibanabentley: or setupDTCBrowser16:50
salgadoadiroiban, oh, I meant to ask if you got a success email today.  I've submitted your branch in the morning and it's not on ec2 anymore16:51
adiroibansalgado: ah... no email16:51
abentleyadiroiban: AFACT, calling setupDTCBrowser will not raise NameAlreadyTaken, because you don't re-raise it in the except block.16:51
adiroibanabentley: yes. I wanted to say that makePerson from setupDTCBrowser16:52
adiroibancan raise that exception16:52
al-maisanadiroiban: your lp:~adiroiban/launchpad/bug-492375 branch fails a test, please see: http://pastebin.ubuntu.com/344177/16:57
abentleyadiroiban: Your code is still unsafe if you call it twice with an explicit Person, and if you call it with an explicit person, it doesn't use that person to set up the browser.17:01
adiroibanabentley: true17:02
abentleyadiroiban: So either we need to make the handling of person more robust, or we should remove it.17:03
=== Ursinha-lunch is now known as Ursinha
abentleyadiroiban: I am happy either way.17:03
adiroibanthe browser is not setup. But why it will fail when called twice?17:03
abentleyadiroiban: If there is an explicit person, you will reassign ubuntu.translationgroup unconditionally.17:05
adiroibanabentley: yes. I'm creating a new translationgroup having that person as an owner17:05
abentleyadiroiban: That will make the return value from the previous call unusable.17:06
adiroibanabentley: then I can so something like this http://paste.ubuntu.com/344183/17:08
abentleyadiroiban: That would solve the double-call issue.  I would prefer a try/except/else, like this: http://paste.ubuntu.com/344186/17:10
abentleyadiroiban: This ensures that you won't catch NameAlreadyTaken from other methods and assume they came from makePerson.17:11
adiroibanabentley: yes. thanks17:11
abentleyadiroiban: With that change, I'd be happy to approve the review.17:13
abentleysalgado: Thanks!17:13
abentleyadiroiban: Going offline for a sec.17:14
adiroibanal-maisan: do you know how I can call that failing test?17:15
al-maisanjust a minute17:15
adiroibanal-maisan: I tried with bin/test -m translations and everhing was ok.17:15
adiroibanalso bin/test -t rosetta-potemplates is not starting that test17:16
adiroibansame for bin/test -t -t "stories/translations/.*"17:16
al-maisanadiroiban: please try "bin/test -vv -t stories/translations"17:20
adiroibanal-maisan: that did the trick. Thanks!17:23
al-maisanadiroiban: you are welcome 17:23
adiroibanabentley: I've just pushed the new code17:23
=== deryck is now known as deryck[lunch]
abentleyadiroiban: r=abentley17:37
=== abentley changed the topic of #launchpad-reviews to: on call: abentley || reviewing: adiroiban || queue [jelmer] || This channel is logged: http://irclogs.ubuntu.com || https://code.edge.launchpad.net/launchpad/+activereviews
EdwinGrubbsbeuno: can you review https://code.edge.launchpad.net/~edwin-grubbs/launchpad/bug-482176-add-team-member-ajax-part2/+merge/1632518:07
EdwinGrubbsbeuno: The last comment in the mp contains a link to screenshots.18:08
beunoEdwinGrubbs, I can18:12
beunoEdwinGrubbs, I need to grab lunch or I will die18:13
beunois it ok to get back to you in ~1 hour?18:14
beunoalso, is there a spinner and such?18:14
EdwinGrubbsbeuno: yes, there is a spinner. I can probably put together a video if that would be helpful.18:14
beunoEdwinGrubbs, I trust you that it works as everything else18:15
beunobe back in an hour!18:15
=== beuno is now known as beuno-lunch
=== deryck[lunch] is now known as deryck
=== beuno-lunch is now known as beuno
beunoEdwinGrubbs, hi19:20
beunostill around?19:20
EdwinGrubbsbeuno: hello19:21
beunoEdwinGrubbs, I see you've introduced an informational message in the overlay19:21
beunoor is that when you try to add somebody who's already been added?19:21
EdwinGrubbsbeuno: yes, salgado didn't like me using the error message overlay to let the user know that someone has already been added.19:22
beunoEdwinGrubbs, could we go a step further and not let you add people who are already part of the team?19:23
beunohave them grayed out on the results?19:23
EdwinGrubbsbeuno: that is a much bigger project, since it will involve changing the way we extract data from the vocabulary as JSON, and we need to have a standard way of specifying what values we are filtering.19:24
beunoEdwinGrubbs, gotcha. Could we file a bug for that?  I think that's the right way to go19:24
EdwinGrubbsbeuno: yes, I'll file one19:27
beunoEdwinGrubbs, thanks. I have a few comments on the layout of the "dialog", I'll add them to the MP19:27
beunothat's all really, hope it's a quick change19:27
EdwinGrubbsbeuno: thanks19:27
beunoEdwinGrubbs, we'll need to make foundations aware of what we want to change in the vocabularies, but I guess they'll learn about it when they triage the bug  :)19:28
beunoEdwinGrubbs, done19:35
abentleyadiroiban: If tabindex_chain don't affect tabbing, can you call it something else?19:53
adiroibanabentley: fields_chain?19:54
abentleyadiroiban: Maybe something like navigation_order?19:56
adiroibanabentley: sure19:56
adiroibanor translations_order?19:57
abentleyadiroiban: Sure.19:57
abentleyadiroiban: On line 344-345 of the patch, shouldn't you be deleting a semi-colon, not adding a space?19:57
abentleyin lib/lp/translations/templates/translations-macros.pt, why is the whole thing conditional on autofocus_html_id?19:59
adiroibanabentley: line 344 should be left untouched. the two semicolon are valid as the first one is excaping the javascript semicolon20:01
abentleyadiroiban: Okay.20:01
adiroibanabentley: autofocus is returning the first field and if we dont't have any field there is no need  for that code20:02
abentleyadiroiban: It looks like Y.lp.pofile.initializeKeyBindings is being called unconditionally and is assuming tabindex is set.  Am I reading it wrong?20:05
adiroibanabentley: nope.20:07
abentleySo that would cause javascript errors if autofocus_html_id is unset?20:08
adiroibanabentley: yes20:09
adiroibanabentley: i will add empty variables20:10
abentleyadiroiban: Sounds good.20:10
EdwinGrubbsbeuno: the error message is currently shown only after someone clicks on one of the results, which hides the picker. Are you saying in the review that you want me to re-show the picker so that I can display the error message in that?20:20
beunoEdwinGrubbs, well, you are re-showing something, right?20:20
beunowe can do one or the other20:20
beunoeither make it look more like a dialog20:20
beunoor do it within the picker itself20:20
beunowe should give a user a way out other than clicking on the small x  :)20:21
EdwinGrubbsbeuno: I'll just add the OK button to dismiss the current dialog.20:23
beunoEdwinGrubbs, but that doesn't let the user recover, no?20:23
EdwinGrubbsbeuno: they would only want to recover if they are adding multiple people as members. If they try to add multiple users quickly, we might end up in the situation where they start typing in the new search text, and the error message shows up in the picker, even though the error is related to the last usage of it.20:25
=== salgado is now known as salgado-afk
beunoEdwinGrubbs, good point20:26
EdwinGrubbsrockstar: ping20:41
rockstarEdwinGrubbs, I'm technically on holiday right now, but would be happy to oblige small requests.20:41
rockstar(I got Warcraft III working in Wine last night, so am currently doing nothing useful)20:41
EdwinGrubbsrockstar: that's awesome. I'll try to find someone else to review a windmill test first.20:43
rockstarEdwinGrubbs, okay.  If you don't find anyone, I can take it.20:43
EdwinGrubbsderyck: ping20:44
EdwinGrubbsjtv, mars: ping20:46
jtvEdwinGrubbs: zzz20:47
EdwinGrubbsjtv: sorry, go back to sleep. It's all just a bad dream.20:47
jtv<snore>20:47
wgrantabentley: Can you please land that branch for me?20:53
abentleywgrant: Has it passed the whole test suite?20:53
wgrantabentley: Not for two and a half months, but it looks like it should still pass, and I thought you normally ec2-landed things.20:54
abentleywgrant: I don't ever ec2-land things.20:54
deryckEdwinGrubbs, hi.  I really need to EOD for kids being home.  Was on phone.  Can we take it up tomorrow?20:54
wgrantabentley: Ah. I guess I'll ec2test it myself.20:54
EdwinGrubbsderyck: I'll find someone else to do a short review.20:55
abentleywgrant: When it passes, ping me and I'll be happy to land it.20:55
deryckEdwinGrubbs, ah, ok.  Sorry I couldn't help.20:55
EdwinGrubbssalgado-afk, beuno: I have updated the mp. Can you re-review it?21:06
EdwinGrubbssinzui: do you feel comfortable reviewing a windmill test, since salgado passed on that?21:07
sinzuiyes21:07
EdwinGrubbssinzui: here it is: https://code.edge.launchpad.net/~edwin-grubbs/launchpad/bug-482176-add-team-member-ajax-part2/+merge/1632521:07
beunoEdwinGrubbs, I can. I'm bringing in your branch to play with it and fully sign off21:08
=== abentley changed the topic of #launchpad-reviews to: on call: - || reviewing: - || queue [jelmer] || This channel is logged: http://irclogs.ubuntu.com || https://code.edge.launchpad.net/launchpad/+activereviews
beunoEdwinGrubbs, still around?22:28
beunowhen trying to add someone to the spanish team22:28
beunoI get:22:28
beunoThe following errors were encountered:22:28
beuno    * Unexpected status: foo22:28
beuno(and it got added)22:28
EdwinGrubbsbeuno: I left in some debugging code on accident.22:28
EdwinGrubbsbeuno: it's a one line fix. I can push it if you want.22:29
beunoEdwinGrubbs, no, it's ok22:29
beunoEdwinGrubbs, in general, I think we show the persons' name on the list when saving22:30
beunograyed out22:30
beunoand flash that green/red22:30
beunono?22:30
beunolike subscribing to bugs22:31
beunoalso, the alignemnt on the overlay is a bit wonky22:32
* EdwinGrubbs is checking22:32
beunothe text could ideally be top-aligned with the info icon22:32
EdwinGrubbsbeuno: I had forgotton about the grayed out name and spinner next to the name. I can look into that.22:37
beunoEdwinGrubbs, thanks. Sorry I didn't catch that earlier, I should of branched from the start22:37
beunoEdwinGrubbs, commented exactly this on the MP22:45
beunoand now, I'm off to buy my brother a last minute bday gifty22:45
beuno*gift22:45

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