[00:22] wgrant: your doctests are good, but I wonder if it would be nicer if we could extract the code that locates the key file and unittest it. [00:23] cprov-afk: A good idea. [00:23] * wgrant works out how to add unittests. [00:23] wgrant: there is on slip when the key file is found via glob, its content is not escaped. [00:24] wgrant: we could have a locate_key(root, term) function [00:24] cprov-afk: Well, it's no worse than before. But I suppose it should be improved. [00:25] Oh. [00:25] oops. [00:25] I misunderstood. [00:25] You're right. === abentley1 is now known as abentley [00:26] wgrant: np, it's our chance to make zeca a nicer app [04:48] spm: why is pqm stopped? [04:48] btw, edge is unusable on IE [04:49] thumper: actually atm it's not. there's a sourcecode run going thru. *then* it'll be stopped for try 174 of bac's megamerge [04:49] thumper: is that a value judgement against IE? [04:50] yay. naturally as soon as I type I waiting for PQM; it finishes. woot. [05:09] spm: I don't suppose you could let the queue through before the cp? [05:09] thumper: I was just thinking I might do that anyway tbh. [05:09] spm: that'd be great! [05:10] spm: given the 13! waiting branches [05:10] thumper: aye! [05:10] * thumper goes to put the roast chicken in the oven [05:11] thumper: actually it's not a CP, is a manual merge; so the "rules" are a bit more lax in that regard. [05:20] Hi sinzui - I just saw your comment on thumper's branch re 'branding vs watermark'. I'll update my renaming branch to do 'branding-apps-portlet' -> 'watermark-apps-portlet' ? [05:20] noodles775: thanks.I think that is best though not clear to everyone [05:21] OK, will do. [05:21] noodles775: Are you an insomniac? [05:21] sinzui: heh, nope - just got up but wanted to check with you before you go to bed ;) [05:22] I should have been in bed an hour ago. === abentley1 is now known as abentley [05:38] gary_poster: Why is the new buildbot still invisible? [05:40] wgrant: (I'm not really here ;-) ) The real reason: that's the way it was set up before. The reason that it might stay that way for a little bit: we're behind the times on the buildbot debs, and there have been some XSS problems that we need to catch up on. [05:41] gary_poster: I see, thanks. [05:41] np === abentley1 is now known as abentley [08:24] good morning [09:19] - Created 0 seconds ago [09:19] ? ^ - [09:19] + Created 1 second ago [09:20] lib/lp/soyuz/tests/../stories/ppa/xx-copy-packages.txt [09:20] failing on db_devel builder [09:20] please don't put time in tests like this [09:20] elide it out [09:20] please! [09:20] thumper: I just had the same failure on ec2test and so fixed it with my landing. [09:20] noodles775: thanks [09:21] noodles775: may have to manually get it into db-devel though [09:21] so it's included in devel 9171. [09:21] noodles775: where did your branch land? [09:29] Morning [09:31] thumper: so my r9171 with the fix for that spurious time-dependent test failure missed build 23. Do you want me to submit a patch directly to db_devel (as it could be quite a while before the patch goes from stable->db_devel?) [09:32] noodles775: I think the best solution is to wait until is passes on the lp builder, then create a branch of db-devel, merge in stable, and submit that as a testfix [09:32] Morning mrevell - when you get a chance, could you do the normal mailing list moderations? [09:32] noodles775: sure thing :) [10:31] Some of the production Processor titles suck. [10:32] "artigas (sparc) builds The SPARC architecture binaries" [11:11] Good morning, all. === danilo-afk is now known as danilos [11:50] * wgrant loves Windmill. Tested JS is so much better. [11:52] wgrant: I love tested JS (The YUI unittest framework isn't bad, actually). But I don't think that Windmill has got it right, yet. Far too fragile. [11:52] wow, did someone just use the words love and Windmill together? [11:52] deryck: I was trying to find a diplomatic way of backing away slowly, to be honest with you. [11:52] heh [11:53] gmb, deryck: Well... it makes everything nicer than when you have to do manual testing. [11:54] This is true. Up to a point, anyway. [11:54] wgrant: Actually, to be fair, once I'd learned to bump all the timeouts up by an order of magnitude whenver I ran the tests on my desktop machine, it wasn't all that bad. [11:54] But it's annoyingly time-consuming. [11:54] I have made peace with Windmill and appreciate it when it goes well. I might hold hands with her, but I ain't in love yet. [11:54] :0 [11:54] :) rather [11:54] 0.o [12:01] Can anyone think of a good reason why I shouldn't use datetime.astimezone() when converting a non-UTC timezone to UTC? ISTR there being a reason not to do it (and other code that I've written actively avoids using it), but I can't remember what that reason is. [12:15] gmb: I think that is fine. I've got an example of that in the pytz documentation at http://pytz.sourceforge.net/ [12:16] stub: Awesome, thanks. [12:16] Perhaps I just didn't know about astimezone() when I wrote the old code. [12:19] gmb: what does the old code look like? [12:21] BjornT: Well, I'm just looking at it, and it's basically this: [12:21] utc_datetime = other_tz_datetime - timedelta(seconds=utc_offset) [12:21] BjornT: Even though I have a timezone name available. [12:22] And it's in the TestBugzillaXMLRPCTransport rather than actual production code, so I wonder if it wasn't just a quick-and-dirty hack on my part. [12:22] gmb: do you have a unique timezone name? [12:24] BjornT: What do you mean by unique? I have the short form of the name available (e.g 'EST', 'CET', 'UTC'). I wonder if that's why I'm not quite happy about doing it this way - I can't guarantee that the tz name will actually make sense to pytz. [12:27] Those aren't at all unique. [12:27] gmb: for example EST is used both in the US and Australia [12:29] wgrant, BjornT: Right, yes. Hmm. The long form of the name is also available... [12:30] That should be unique. But not necessarily lookable up. [12:30] Right. [12:30] (see the recent rename which kept crashing the wikis until they got a newer pytz) [12:30] BjornT: Do you ahve time for a brief call about this? There's a related issue that's bothering me and I'm not sure what's the best way to deal with it. [12:30] gmb: but the plugin doesn't guarantee that the timezone name will be unique, so better not to rely on it, not even in tests [12:31] BjornT: Right. [12:31] gmb: sure, we could have a call [12:31] BjornT: Cool. Skype? [12:32] yeah [12:32] BjornT: Calling you now. === Ursinha-afk is now known as Ursinha [12:49] can i submit to pqm with [ui=sinzui]? [12:50] i mean, has the regex been expanded to accept non-beuno ui reviewers? [12:51] hmm, looking at recent landings it doesn't look so... [12:51] bac: i think not. we should arrange that, actually [12:52] intellectronica: yeah, that would be good. for now i'll use ui=rs [12:52] bac: a workaround is to land with ui=rs and the mention the real reviewer later in the message, but let's talk to the losas when we can and change that [12:52] great minds... === salgado-afk is now known as salgado [12:59] leonardr: the bug you just edited - do you have any ideas what it might be? also, do you really think it's a bug in lplib (rather than the webservice itself)? [13:00] intellectronica: see my follow-up comment [13:00] i think it's a guy who told launchpad to hide data from launchpadlib and forgot that's what he did [13:01] leonardr: right, yes, that makes sense. i couldn't reproduce it but haven't thought about that option === al-maisan_ is now known as al-maisan === cprov-afk is now known as cprov [13:48] morning, launchpadders! [13:48] hiya cprov [13:49] Hi, does anyone have any idea what launchpad uses python-lxml for? [13:50] (wondering whether it could be dropped from launchpad-dependencies) [13:51] maxb, grep the source and find out :) [13:52] All I could find when I grepped last week was lazr.restfulsomething [13:53] There's one mention in a docstring in ./lib/canonical/launchpad/scripts/hwdbsubmissions.py which is clearly lying [13:53] maxb, sounds like a patch to me [13:54] ;) [13:54] One of lazr.restful's tests uses it, but that's it. [13:54] * gmb -> lunch [13:56] allenap: Some of those failures were being fixed by intellectronica. [13:56] Not sure if that's all of them, though. [13:57] intellectronica, are you playing with balsamiq for the bug index? [13:57] wgrant: Okay, cool. [13:58] beuno: yeah, i'm just trying to finish a mockup for the bugs index [13:58] intellectronica, awesomeness, looking forward to it [13:58] how do you like the software? [13:58] intellectronica: If you're fixing any of failures that wgrant mentions , can you point me to a branch that I can merge to see what remains to fix? [13:59] allenap, wgrant: what failures? [13:59] allenap: I'm rerunning those tests with devel merged. [13:59] * intellectronica looking [13:59] intellectronica: See the paste; it has an ec2test summary log. [14:01] allenap, wgrant: xx-also-affects-distribution-default-values.txt is the only one i've fixed. the others, i guess, are a result of the new security changes? [14:01] beuno: it's really really good. especially for someone like myself who couldn't draw if my life depended on it [14:01] intellectronica: Looks like it. Most of the rest seem to cascade from Milestone not being found. [14:01] intellectronica: Thanks Tom :) [14:02] * wgrant reruns those tests. [14:07] bac: I think noodles775, rockstar, or beuno should have a look too. [14:14] allenap: could you take a look at this bugs question (about dup emails): https://answers.edge.launchpad.net/launchpad/+question/80508 [14:14] noodles775: Sure. [14:16] sinzui: what's the branch/mp? (I can't see anything of bac's in +activereviews) [14:17] (nor does my chat history find anything :/ ). [14:17] noodles775: https://code.edge.launchpad.net/~bac/launchpad/lp3-announcements/+merge/10275 [14:17] ^ My mistake, I approve the whole MP last night. [14:18] Np - it's already merged according to the status :) [14:23] intellectronica: Can you help me out with https://answers.edge.launchpad.net/launchpad/+question/80508? I am baffled by how LP chooses who to send mail to :-/ [14:24] * wgrant declares BugTaskEditView to be one of the world's great evils. [14:25] allenap: sounds like either a bug or the user is confused by something. you shouldn't receive the email twice [14:25] intellectronica, allenap: The team has a mailing list. [14:25] Nothing LP can do. [14:25] ah of course [14:26] wgrant: Ah, because the bug mail machinery can't or doesn't take into account subscriptions to mailing lists? [14:26] but that's not quite the same as him receiving the email twice [14:26] intellectronica: It is if you don't do filtering. [14:26] allenap: because it doesn't know who's on the mailing list [14:26] allenap: Can't, doesn't, or shouldn't. I think the last. [14:26] wgrant: Yes, thinking about it, I agree. === abentley1 is now known as abentley [14:34] sinzui: ^^ are you referring to my announcement change? you want them to do a UI review? they can, but it's already through PQM. [14:35] allenap: I think BugTaskEditView has got the better of me. [14:35] bac: That is fine. I need it landed to complete distro. I am not a full UI reviewer so someone else should also take a lot [14:35] look [14:36] sinzui: ok, i'll arrange it today. my fault for assuming you were. [14:36] wgrant: Heh :) I'll have a look. [14:37] allenap: It will not make that field editable :( [14:38] wgrant: Odd. I'm just going to answer the mailing list question then I'll have a go. [14:38] allenap: Thanks. [14:40] wgrant: hi there, re. your changes on zeca almost done, few tweaks and we can land it. Thanks for working on it. [14:42] cprov: Hrm, so the test methods should contain the function name even though the function is mentioned in the class name? [14:43] wgrant: yes, let me find the corresponding guideline reference. [14:45] wgrant: https://dev.launchpad.net/TestsStyleGuide#Python%20Test%20Cases -> 'testing alternatives for a LP method' [14:48] cprov: Thanks. [14:48] barry: EdwinGrubbs, bac, salgado: Update your bugs. please [14:50] sinzui: i prefer to wait until i know if i have to have another pass after the UI review. [14:51] bac: okay [14:52] sinzui: nothing to update yet (go pqm, go!) [14:58] cprov: Fixed, pushed, replied. Thanks. [14:59] wgrant: no, thank you. Do you want me to land it for you ? [14:59] cprov: Please do. [15:25] salgado: look at this list and updat any bugs you fixed or may have change: https://bugs.edge.launchpad.net/launchpad-registry/+bugs?field.searchtext=polls&orderby=-importance&search=Search&field.status%3Alist=NEW&field.status%3Alist=INCOMPLETE_WITH_RESPONSE&field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&field.status%3Alist=CONFIRMED&field.status%3Alist=TRIAGED&field.status%3Alist=INPROGRESS&field.status%3Alist=FIXCOMMIT [15:25] sinzui, UnexpectedFormData: Unexpected value for field 'status'. Perhaps your bookmarks are out of date or you changed the URL by hand?
[15:26] * salgado appends TTED to the end of the URL and it works [15:26] sinzui, ^ [15:26] crack [15:27] salgado: https://bugs.edge.launchpad.net/launchpad-registry and search for polls [15:27] salgado: I think you may have fixed bug 335516 [15:27] Malone bug 335516 in launchpad-registry "Team polls page has no main heading and misuses "recent"" [Low,Triaged] https://launchpad.net/bugs/335516 [15:29] sinzui, I didn't; I only touched pages where the context was IPoll[Option], so ITeam's +polls was left untouched [15:29] salgado: you just found you next page to fix [15:29] :) [15:30] salgado: bac and barry observed that collections are context objects so I assume you will need to pass a

to the heading-slot [15:31] sinzui, I'm not following you [15:31] allenap: Any ideas on BugTaskEditView? It has me confused. [15:32] wgrant: Me too, but I'll persevere. It's not going to beat me today :) [15:33] wgrant: The milestone widget appears on the main bug page, but not on the +editstatus page (logged in as test@canonical.com). Weird. [15:33] allenap: It beat me yesterday, so I'm going to bed... good luck! [15:33] wgrant: Cool, hopefully I'll have something for you when you're back on. [15:33] salgado: I think the default context-heading will be wrong because polls is affectively the +index for IPollSet. [15:33] allenap: Thanks. [15:34] sinzui, oh, right, the +polls page is on IPollSubset, IIRC [15:34] * salgado checks [15:35] salgado: so if you think the heading is wrong, then pass the

to the heading-slot, and it fixes bug 335516 [15:35] Malone bug 335516 in launchpad-registry "Team polls page has no main heading and misuses "recent"" [Low,Triaged] https://launchpad.net/bugs/335516 [15:48] stub, herb, flacoste, rockstar, cprov, Ursinha, danilos, sinzui, intellectronica: meeting in #launchpad-meeting in 13 min [15:48] matsubara: thanks [15:48] matsubara: thx [15:48] matsubara: thanks for the reminder [15:55] sinzui, right, I've just fixed that. should I spend some time redesigning this page or should I do just the mechanical changes plus fixing obvious mistakes? [15:56] Chex, mbarnett, mthaddon: meeting in #launchpad-meeting in 4 min ^^^^ [15:56] thx herb [15:57] salgado: no redesign. convert to 3.0, fix anything that is easy. I would limit myself to 1h of UI changes [15:57] matsubara: gary_poster will now be standing in that meeting for foundations [15:58] flacoste, right. I'll update MeetingAgenda. thanks [16:15] EdwinGrubbs: ping [16:15] barry: pong [16:16] EdwinGrubbs: hi. re: label and page_title. are you sure about this? page_title seems to work, but not label [16:17] hmm... [16:17] barry: can you follow up on bug 403606 [16:17] Malone bug 403606 in launchpad-registry "ExpatError errors should be handled to not generate the OOPSes" [High,Triaged] https://launchpad.net/bugs/403606 [16:17] Bug #403606: ExpatError errors should be handled to not generate the OOPSes [16:18] Bug #403606: ExpatError errors should be handled to not generate the OOPSes [16:18] Bug #403606: ExpatError errors should be handled to not generate the OOPSes [16:18] sinzui: sure [16:18] thanks barry :) [16:19] barry: label only works if you remove fill-slot="heading" from your template. [16:20] EdwinGrubbs: i did remove that, and added label='People and teams' but it doesn't pick that up [16:20] EdwinGrubbs: it's getting the label apparently from the content object [16:21] EdwinGrubbs: and the Conversion page shows the fill-slot="heading" in there [16:22] barry: for which view is it not working? [16:23] PersonSearchView [16:23] people-index.pt [16:23] EdwinGrubbs: if you want, i can push the changes [16:29] sinzui: I thought the view/label was included by the base layout templates, but I can't find where it gets included. [16:29] EdwinGrubbs: no. It is optional for LaunchapdFormView [16:30] EdwinGrubbs: form-macros converts the label to a

[16:30] EdwinGrubbs: So I think the page you are working on does not use form-macros [16:30] barry: ok, ^^^^ clears it up. The LaunchpadFormView also has a "heading" slot, but since you are not using a form, the label isn't used. [16:30] EdwinGrubbs: you can manually call it to place it as the first element in the main slot [16:35] EdwinGrubbs: sorry, i'm back now [16:36] EdwinGrubbs: so i'm inclined to leave the heading slot in there, unless i can figure out why this isn't working [16:41] sinzui, beuno, shouldn't

s have some margin-top to make some space between them and what comes above, just like the space between them and what comes below them. [16:42] salgado: My instinct says yes, but I suspect they do not because we assume they are the first item in a portlet that sets a margin or padding. [16:43] sinzui, we have a rule to clear the margin when the h2 is in a portlet [16:43] hmm [16:44] I think they should be adjusted to look good, but I would ask beuno's opinion of the change [16:45] ah [16:45] then yes [16:45] good call salgado [16:45] beuno, should it be the same value used for margin-bottom (0.3em)? [16:46] salgado, yes [16:46] cool, /me changes it [16:47] thanks salgado [16:47] salgado, has the new breadcrumb layout landed yet? [16:47] beuno, layout? we didn't talk about layout [16:48] salgado, UI [16:50] beuno, we have the vhost-specific breadcrumbs for the 'bugs' vhost and the ones for 'blueprints' and 'answers' should land today. that will get us very close to the breadcrumbs we have on https://wiki.canonical.com/Launchpad/UI/Navigation [16:50] EdwinGrubbs: sigh. i don't know if you've been responding. irc is teh suck [16:50] leonardr: yes, i will work on that lazr.restful branch [16:50] sinzui: what do you know about fill-slot="heading" ? [16:50] barry, great [16:51] barry: everything [16:51] beuno, but we didn't talk about the presentation of breadcrumbs. I thought noodles775 was in charge of that, but I don't remember where I get that idea from [16:51] it should be named context-heading. It is not the page heading/title unless we are making the index of an content object or collection [16:51] ^ barry [16:51] barry: I'm pulling your branch again, just to make sure I'm not telling you something wrong. [16:52] salgado, ah, maybe. noodles775, was that on your plate? [16:52] sinzui: the UI/Conversion page says to use fill-slot="heading" [16:52] barry: what object are you working with? [16:52] barry: where is PersonSearchView. [16:52] EdwinGrubbs: lib/lp/registry/browser/person.py [16:53] barry: I think is you read more carefully it qualifies that the to +index of a content object, which most pages are nto [16:53] sinzui: this is for /person and /project [16:53] barry: is that a new part of your branch that isn't pushed up? I only see PersonSearchQuestionsView [16:53] barry: override the slot. for the +index [16:54] EdwinGrubbs: let me push an update [16:55] barry: if there are alternates, (like /projectgroup/+all) then you place a

in main. So that the context-heading is "Project Groups" and the page

and title is something like Browse all project groups. [16:57] EdwinGrubbs: r9161 lp:~barry/launchpad/415542-projects [16:59] sinzui: so wait, you're saying for the object's +index page, you do have to put the label in the template explicitly? === salgado is now known as salgado-lunch [17:01] barry: I still don't see a PersonSearchView. [17:03] EdwinGrubbs: sorry. it should be PeopleSearchView [17:06] barry: yes, you will need to fill in the heading slot yourself, since PeopleSearchView is not a LaunchpadFormView and probably wouldn't work well as one. === matsubara is now known as matsubara-lunch [17:07] EdwinGrubbs: agreed. question though, is this something we should push into LaunchpadView? not that i'm suggesting doing that right now :) [17:08] sinzui, it has become apparent that I have no idea what I'm doing with menus. Tell me again why I can't use the menus already created? [17:09] rockstar: Answers never got NavigationMenus [17:09] barry: I don't think it would hurt, but it probably wouldn't be as beneficial, since non-edit pages are more likely to use several templates with the same view class, which means you couldn't specify a distinct label in the view. [17:09] sinzui, okay. So maybe I need to figure out what the difference is between NavigationMenus and ApplicationMenus === beuno is now known as beuno-lunch [17:09] rockstar: It has ApplicationMenus (context/menu:facet/link_name) [17:10] rockstar: We want to remove all ContextMenus [17:10] EdwinGrubbs: you might be right. anyway, i'm not going to worry about it and it's good to know i'm not going crazy. also, moving page_titles is a good thing [17:10] sinzui, and how do I identify ContextMenus? [17:10] rockstar: We are using ApplicationMenu's for inline links. I think this is a waste [17:10] EdwinGrubbs: i'll respond to your review in a few minutes. thanks [17:11] rockstar: because the links are often in NavMenus. In many cases I moved the AppMenu links to a mixin, then let the AppMenu and NavMenus define the facet and the links [17:12] rockstar: class AMenu(ContextMenu) <- they are used by the menubox view and template [17:14] sinzui, what do you mean by "menubox view and template" ? [17:14] There seems to be a vocabulary you're using that I'm not familiar with. [17:17] rockstar: If you do not know about them, then it is clear we do not need them. The menubox draws the combined application and context menu in the 0 and 1 designs [17:17] sinzui, okay. So I'm not even going to worry about ApplicationMenus at all, because it seems there's no point. [17:18] rockstar: 2.0 switched to NavMenus and AppMenus. I have serious doubts about their overlap [17:19] rockstar: did you move any links inline? Wasn't answers crafting links without using a menu? [17:19] sinzui, it seems like it. That's a big concern of mine. [17:19] sinzui, I have not moved any links inline. I haven't yet found a case where I need to. [17:20] rockstar: I know answers did because when I added the FAQ portlet, it failed because the link from the page was trying to go to a context object that did not support the link. The menu will faile if you make a link to an unregistered view [17:20] * sinzui cursed answers at that point [17:20] sinzui, yeah, so the FAQCollection stuff is what I'm working on now. [17:21] sinzui, for instance, see https://answers.edge.launchpad.net/launchpad/+faqs [17:22] this outlines the expected way the menus will work: https://dev.launchpad.net/VersionThreeDotO/UI/Conversion#Adding%20a%20NavigationMenu [17:22] sinzui, yeah, I'm reading that, and I think I'm confusing myself. [17:23] rockstar: to get to this form., create a FAQLinksMixin and move the appmenu links into it. The appmenu just needs a facet and a list of links [17:24] sinzui, yeah, that's what I was doing. I'm wondering why we need the marker interface and all that. It seems like overkill. [17:25] rockstar: You may be special [17:25] rockstar: well faq and answers may be special. I am sure you did not ride the short bus [17:27] sinzui, well, the short bus was for gifted children here (because there were less of them) but I still just walked to school. [17:27] rockstar: To change a context object you can define a menu that will always be present on content object (IFAQCollection, IFAQ, IAnswersCollection, IQuestion) so you no not need a marker interface [17:27] sinzui, yeah, I think that's what I need. [17:28] rockstar: the marker interface is only need to tie a menu to 1 or more views. [17:28] Because it's always the same. When I discovered the FAQ views (I didn't know about them before yesterday) I thought they used separate views, but they don't. === gary_poster is now known as gary-lunch [17:28] https://answers.edge.launchpad.net/launchpad/+faqs [17:28] ^ The show... links are view based, th creation/modifcatiobn links are context-based [17:30] rockstar: so we want to move all the show links in line. If we cannot we create a navmenu on the view. I think this page has links we need to toss. [17:31] rockstar: (+) create a FAQ and (+) Set answer context belong in the action menu (a nav menu on the object) [17:31] rockstar: I do not know where we put (+) Ask a question, maybe inline maybe in the menu [17:32] sinzui, well, I think we need a large button for "Ask a question" like we have "Register a branch" [17:32] rockstar: There are no large buttons in 3.0 [17:33] Yes, I know this, but I don't like it. [17:33] There is an involvement portlet that provides that, but is also blurs out intent so I do not think it should be used [17:34] sinzui, yeah. So much for "only mechanical changes" in answers... :) [17:35] The other links (I) Open questions, (i) Answered questions, (i) My questions, (i) Need attention questions either go inline or we create a nav menu with a marker interface to add these to the bottom of every page so users can find the related pages. [17:35] menus are mechanical [17:35] sinzui, so, for the show (Open|Answered|Mine|Need Attention) - How should they be put inline? [17:36] rockstar: when you put the required icons on the links, it becomes easy to see which are actions and which as views [17:37] sinzui, could we have maybe a mid-implementation call then? [17:38] We know these links will be appears on most of the lists and _index pages in answers, so I think we want a navmenu attached to the view and we use view/@@+related-pages as the last portlet in main [17:38] sure [17:39] rockstar: I am ready === salgado-lunch is now known as salgado [18:01] okay guys, I'm off for the day [18:04] https://answers.edge.launchpad.net/launchpad/+question/80521 [18:12] rockstar: https://edge.launchpad.net/bzr === beuno-lunch is now known as beuno === abentley1 is now known as abentley === matsubara-lunch is now known as matsubara [18:15] rochttps://answers.edge.launchpad.net/launchpad-registry/+question/77453 [18:16] rockstar: https://answers.edge.launchpad.net/launchpad-registry/+question/77453 === gary-lunch is now known as gary_poster === EdwinGrubbs is now known as Edwin-afk === abentley1 is now known as abentley === abentley1 is now known as abentley [19:48] rockstar, thank you! [19:51] matsubara, no, thank you, and welcome to open source contributions. :) [19:51] :-) [19:56] sinzui, font is a tad big, no? [19:56] https://edge.launchpad.net/ubuntu/+search?text=gnome-do [20:00] tad? wtf? That is huge [20:01] :) [20:02] beuno: I think this is a byproduct of CSS changes. I did not look like that when I landed it...it had to be the same size as the 2.0. I think this is 50% larger [20:02] !! [20:02] sinzui, joey noticed it [20:03] beuno: The classes uses summary, which is intended for 1 per page. We are using the summary for listing so we need a rule to set the selector context right === danilos is now known as danilo-afk === Ursinha is now known as Ursinha-fud [20:09] flacoste: i think i got disconnected from our pvt chat [20:09] beuno, sinzui is there any good reason why project group searching shouldn't look very similar to project searching? [20:09] barry: you did [20:10] barry, none [20:10] beuno: i was hoping you'd say that :) [20:10] beuno: i might have some screen shots for you soon [20:10] barry, I aim to please [20:11] barry: make it look the same. Please. It is "broken" in that I think it prefers to search for products not projects. look at how the view does the search [20:11] * sinzui thinks it is using unwanted params too [20:14] sinzui: i'm not so sure. i think it is searching project groups. if you search on /projects for 'test' you get 4 projects, but if you search on /projectgroup for 'test' you get only the apache project group [20:21] barry: look at bug 60055 and bug 390922 [20:21] Bug #60055: IProductSet.search() and IProjectSet.search() have unused untested optional arguments [20:21] Bug #390922: lp.project_groups.search doesn't return a result for exact matches [20:21] Malone bug 60055 in launchpad-registry "IProductSet.search() and IProjectSet.search() have unused untested optional arguments" [Low,Triaged] https://launchpad.net/bugs/60055 [20:21] Malone bug 390922 in launchpad-registry "lp.project_groups.search doesn't return a result for exact matches" [Low,Triaged] https://launchpad.net/bugs/390922 [20:21] Bug #60055: IProductSet.search() and IProjectSet.search() have unused untested optional arguments [20:21] Bug #60055: IProductSet.search() and IProjectSet.search() have unused untested optional arguments [20:21] Bug #390922: lp.project_groups.search doesn't return a result for exact matches [20:21] Bug #390922: lp.project_groups.search doesn't return a result for exact matches [20:23] sinzui: it's a bit of a mission creep to address those while doing the 3.0 conversion. [20:24] We did commit to add functionality to features we committed to redesign, That is why it is not mechanical [20:25] barry: allI am asking is that you consider fixing them if they can be done in less that 2 hours [20:25] sinzui: cool, that's what i was looking for :) [20:26] barry: consider the pages were did not commit to redesign like answers. rockstar still needs to talk about the layout because the pages have sidebar content that has to move into the main area. He is doing layout work. [20:27] We we commit to redesign a page, we are really asking what features to users need this to do for this to be effective, and how do we design that. [20:27] barry, I'm learning that sometimes we end up doing things we didn't sign up for. abentley and bzr-pipelines to the rescue! :) [20:28] sinzui, rockstar sure. but given how many pages need to be redesigned, this doesn't seem like a high priority right now [20:28] sinzui: as we discussed, i think we do the mechanicals we can take care of quickly and then come back around and do deeper redesigns/fixes [20:29] barry, I don't know what you're working on, but what I'm working on blurs the line between "mechanical changes" and "redesign" to the point of there being no line. [20:30] barry: yes [20:30] rockstar: i sometimes stray too, but have to be careful! [20:30] rockstar: you are not asking what features does the user require of this page? That is true redesign [20:30] rockstar: btw, working on top level collections /projects /projectgroups /people /distros /sprints [20:31] (2/5 done) [20:32] sinzui, yeah, I guess you're right, but when I think redesign, I think CSS and markup and all that jazz, which is where I'm about to head (hopefully) [20:34] I have had to change the markup on most pages I have changed. We do not used the excessive table and div markup used in 2.0- [20:35] intellectronica, working on the edit icon problem. Will send you something to look at within the next 30-40 minutes [20:35] My only happy moments are when the changes are so extreme I can throw it all away and use generic-edit.py [20:35] beuno: that's excellent, thanks! [20:43] sinzui, yes. I've eliminated many templates that way. [20:48] rockstar: I did not mention that when I needed narrative about the page, I moved the 1.0 help section into the top-portlet [20:49] sinzui, I don't think I need to do that. [20:54] sinzui: I'm at the point where I only have four items to do to the team index page, but they are nontrivial. They are the info from karmacache, moving the contact this team link to sidebar, listing members with timezone, and fixing the recently approved query. [20:54] EdwinGrubbs: You have found a good stopping point [20:55] sinzui: I was also wondering if you had any idea why the google map stopped working. It looks like it falls back on some stubs that don't do anything but prevent errors. [20:55] EdwinGrubbs: I too hit the karmacache problem I will not fix it for 3.0 [20:56] EdwinGrubbs: I am not aware that the map stopped working. The page view registers that is needs the small map if the user has not deactivated it [20:57] sinzui: I must have broke it. It is disabled since this function is set to always return false: gBrowserIsCompatible = mapping.RETURN_FALSE; [20:58] * rockstar goes to lunch [20:59] sinzui: there's nobody oncall right now. Could you review it? [20:59] intellectronica, http://people.canonical.com/~beuno/400997.html [21:00] EdwinGrubbs: I would have thought the contact this team link would be easy to move the to sidebar. I am happy for that to be done later. I can do it when I do contact this person [21:02] sinzui: it's just that it is currently in a view and not in a menu. It shouldn't be too hard, but I'm not exactly sure how hard. [21:04] EdwinGrubbs: As I said. you are at a good point to start landing. You really do not want a branch open for more than two days. We can add the other features net week or the week after === abentley1 is now known as abentley [21:15] beuno: that looks lovely [21:15] especially if the icon will be better aligned with the text [21:18] intellectronica, so, I don't know if I'll have time to work on this [21:18] but I can land the icon, and see if someone else picks it up before I do [21:18] beuno: no worries, i'll take care of integrating it [21:19] intellectronica, will land today then, and re-assign it to you :) [21:19] \o/ [21:19] thank you [21:29] joey: ping [21:30] hi EdwinGrubbs [21:31] joey: can you check if bug 402747 is fixed for you now? I can't recreate the problem on my workstation and I don't have access to that page on edge. [21:31] Bug #402747: The requested URL /@@popup-window was not found on this server. [21:31] Malone bug 402747 in launchpad-registry "The requested URL /@@popup-window was not found on this server." [Low,Triaged] https://launchpad.net/bugs/402747 [21:31] Bug #402747: The requested URL /@@popup-window was not found on this server. [21:31] Bug #402747: The requested URL /@@popup-window was not found on this server. [21:31] hmm sure [21:31] mup vs ubot3 [21:32] Two men enter, one man leaves [21:32] hey, nice post a bug comments AJAX! [21:32] * sinzui thinks mup is cheating just like Master Blaster [21:33] EdwinGrubbs: so, there's still an error but not the same one. The new pop-up gives me a red error which says "Loading results failed." nothing further [21:33] EdwinGrubbs: let's see if I can send you a screenshot over irc [21:34] EdwinGrubbs: actually, how about if I just attach it to the bug === Ursinha-fud is now known as Ursinha [21:57] beuno: https://devpad.canonical.com/~barry/pgroup.png [21:57] beuno: that's project groups ui 3.0 [21:58] barry: The icons are missing from the links [21:58] sinzui: they're supposed to be. see beuno :) [21:59] barry: I assume you moves /people? [21:59] sinzui: all top level pages will be consistent [22:00] What of the alternate views like list all? [22:00] barry, I loves it [22:00] the description text is too tiny === salgado is now known as salgado-afk [22:01] sinzui: anything that uses the shared menu will look exactly the same [22:01] beuno: do you mean "There are 8 project groups..." part? [22:01] barry: projects and project groups have a +all view [22:01] barry, no, the results' description [22:02] barry: I fine with removing +all, maybe google will not be [22:02] beuno: do you want it the same size as the descriptive text at the bottom, somewhere in between? [22:02] Ursinha: do you know who owns ubot3? [22:02] hmm [22:02] ubot3`, owner [22:02] This bot is owned by jussi01 - Questions about ubottu should be asked in #ubuntu-bots [22:02] Ursinha: wondering if we can get it removed or similar so we don't have it competing with mup [22:02] the same as ubottu [22:03] barry, isn't there a standard CSS style for it? the answer would be in between [22:03] joey, I think ubot3` is better since it recognizes oops urls [22:03] sinzui: i can redesign +all pages next. those are different templates. are there bugs open for those pages? [22:03] :) [22:03] :( [22:03] ah [22:03] oooop [22:03] beuno: i don't think there is yet in style 3.0, that's why i was asking :) i'll add it [22:03] bad bad operator [22:03] beuno: lol [22:03] I knew I shouldn't of created an alias for that [22:04] LOL [22:04] barry: no, because I did not consider them separate. They are links the the same view, often with a template that should not exist [22:04] beuno: i want to make projects and projectgroups consistent [22:04] lol [22:04] :) [22:04] sorry, beuno [22:04] I couldn't resist [22:04] that was mean [22:04] I'll go back into my hole now [22:04] barry: +all is doing search trickery to the view [22:04] I desirved it [22:05] flacoste: : I still own the LP channels (I think). You should appoint someone to look after them probably. Like the ubot3 vs mup issue. [22:06] flacoste: I can make the request to make all the changes to the freenode staff (I think I'm the registered LP contact) [22:06] sinzui: i'll attack those as part of bug 273209 [22:06] Bug #273209: /projects, /distros, /people pages are missing application tabs [22:06] barry: thanks. [22:07] flacoste: but I'm happy to keep them if you don't really care. I know Ursinha will help me. :-) [22:07] joey: ok, i'm making a note of that [22:08] :) [22:10] morning [22:11] rockstar: ping [22:11] beuno: 116% looks good [22:11] sinzui, hi [22:12] rockstar: beuno okayed 'show' links on the top-level colleciton pages. You may want to ask for the same permission for the answers and faq listings [22:13] rockstar: I mean show links in the side portlet, separate from actions, but in the side [22:13] sinzui, yeah, I was planning on having all of this UI reviewed, because it's not really all mechanical anymore. [22:24] intellectronica: thanks! [22:31] thumper, hi [22:31] beuno: hi [22:31] I just bumped into something interesting [22:31] https://code.edge.launchpad.net/~beuno/launchpad [22:31] is context-less [22:31] yes? [22:31] for the tabs at least [22:32] bah, not context-less [22:32] wrong words [22:32] "tabs" don't take you anyway [22:32] anywhere [22:32] I guess because you don't know where to take me [22:32] that is because they are not enabled [22:32] no [22:32] it knows where to take you [22:32] but no other app supports it yet [22:32] aha [22:32] true [22:32] and there's no link to that anywhere, right? [22:32] not yet [22:33] we are wanting to change the personal listings [22:33] but there are so many edge cases [22:33] it is proving difficult [22:33] got it [22:34] ok, it's cool [22:34] thumper, I'm off home, have a 40 minute drive from this hotel [22:34] I'll try and catch you for that call [22:34] ok [23:02] thumper, standup? [23:02] rockstar: yesarooney [23:03] rockstar: skype says your not on line [23:03] thumper, I just saw abentley get on. [23:04] thumper, I just called you and hung up. [23:21] Can somebody please ec2test-submit https://code.edge.launchpad.net/~wgrant/launchpad/make-zeca-useful? cprov did overnight, but it failed due to the breadcrumb breakage. [23:48] thumper, up for that quick chat in 10? [23:53] wgrant: can you go to https://code.edge.launchpad.net/groff ? [23:53] wgrant: I'm wonding about timeouts [23:53] wgrant: I know it will follow a different code path for you and me [23:54] CP in progress? [23:54] beuno: sure [23:54] thumper: It's fairly quick, but the new templatehas lost the queries/time data. [23:55] wgrant: yeah, sinzui knows and I think is fixing [23:55] wgrant: but no timeouts? [23:55] thumper: Not even close. [23:55] cool [23:55] * thumper marks bug fix committed [23:56] Great. [23:56] thumper, ready when you are