=== hannosch [i=hannosch@e176112224.adsl.alicedsl.de] has joined #launchpad [12:29] uploading the tar.gz works correctly [12:33] good night === niemeyer [n=niemeyer@200.138.131.57] has joined #launchpad [02:00] jamesh: hows the branch status coming along ? [02:03] lifeless: I started working on the XML-RPC changes yesterday, but need to finish BjornT's review before continuing today [02:06] tha's cool === lamont [n=lamont@mib.fc.hp.com] has joined #launchpad === squinn [n=squinn@69.203.205.68.cfl.res.rr.com] has joined #launchpad [02:59] I recently went back to Ubuntu. Today, actually. In the process of not having Ubuntu, my email was hacked and the password was changed. So I created a new Launchpad account, but it won't let me edit the Wiki to redo my bio. Anyone know why? [03:10] squinn: so you can log into Launchpad but not the wiki? [03:10] correct. [03:11] Hold on. I use my email as username. I'm in I think. === AlinuxOS [n=Ubuntu@d83-176-127-153.cust.tele2.it] has joined #launchpad === hannosch_ [i=hannosch@e176112224.adsl.alicedsl.de] has joined #launchpad === jsgotangco [n=jsg@210.4.38.43] has joined #launchpad === stub [n=stub@gb.ja.97.9.revip.asianet.co.th] has joined #launchpad === hannosch [i=hannosch@e176112224.adsl.alicedsl.de] has joined #launchpad === jsgotangco [n=jsg@210.4.38.43] has joined #launchpad === Mez [n=Mez@ubuntu/member/mez] has joined #launchpad === mpt [n=mpt@222-154-181-62.jetstream.xtra.co.nz] has joined #launchpad [07:02] Gooooooooooooood evening Launchpadders! [07:07] hi mpt === mpt [n=mpt@222-154-155-110.jetstream.xtra.co.nz] has joined #launchpad === mpt_ [n=mpt@222-154-155-215.jetstream.xtra.co.nz] has joined #launchpad [07:47] mpt: what movie is that from? [07:52] was it something I said? [08:06] morning === lbm [n=lbm@cpe.atm4-0-1301006.0x50a0824e.vgnxx6.customer.tele.dk] has joined #launchpad === mpt__ [n=mpt@222-154-152-199.jetstream.xtra.co.nz] has joined #launchpad === mpt__ is now known as mpt [08:23] poningru, what movie is what from? [08:23] [01:02:32] Gooooooooooooood evening Launchpadders! [08:23] the goooooooooood evening was from some movie [08:23] iirc [08:23] hmmm [08:23] "good morning vietnam" [08:23] with robin williams [08:24] yeah, that [08:24] but more relevant is jdub's "GOOD MORNING FREEDOM LOVERS!" [08:24] Perhaps I'll shift (no pun intended) to capital letters once Launchpad becomes Free Software ;-) [08:26] true [08:26] hehe === carlos [n=carlos@84.76.255.40] has joined #launchpad [08:32] morning [08:35] hi carlos [08:36] SteveA, main-template.pt already contains the heading slot you suggested [08:37] it prints context/title only if something else isn't provided [08:37] which calendar-*.pt do [08:38] mpt: i want that to change. [08:39] i want it to be an error, not to fall back to context/title [08:39] but, that's for later [08:39] and currently it's always an

, which doesn't really work === mpt hacks [08:40] ah [08:40] fuck [08:40] i'm so confused [08:40] see, context/title [08:40] in the context of a page template [08:40] soiunds like it should be the page title [08:40] whereas we're talking about page headings [08:41] indeed [08:41] that confusion leaks into Launchpad's UI for some things [08:41] asking for a "title" for various things [08:41] well [08:41] that was a dublin-core-ish decision from early on [08:42] but it doesn't mean we should expose it in the UI === SteveA waves at the conversation about db<->code vs code<->UI [08:42] TotalExposure, dude [08:43] OverExposure can be fatal [08:43] I think of it as IndecentExposure [08:43] jdub says "yoyo, pants off" [08:46] so, something I've never fully understood [08:46] and it's not completely explained in the Zope book [08:47] for bar, if "something" doesn't evaluate, do I get "bar"? [08:47] mpt: in python that would be 'content = something or default' [08:48] mpt: or for more clarity, if something: content=something \n else content = defaut [08:48] sure, I understand that bit (it's in the book) [08:49] ok. what do you mean by 'does not evaluate' then ? [08:49] I mean what the book says by "if a path expression fails" [08:49] hmm, EJARGON. SteveA ? === mpt should have just tried it and found that he guessed correctly [08:51] "default" means the contents of the element [08:52] so is an obscure way of saying [08:52] bar in your example [08:52] lifeless, mpt: it's not exactly the same as in python. in tal, if 'something' is defined to be None, 'something|default' will evaluate to None. [08:53] There's not (yet) much use in trying to explain something to me by telling me the Python equivalent ;-) [08:53] mpt: foo | bar is different from python's foo or bar [08:54] it is also not the same as using tal:condition [08:54] e.g., I'm not familiar with the precise behavior of python's foo or bar [08:54] although there is some cross-over in uses [08:54] rather than use analogies [08:54] i will explain to you what the | operator does in TALES path expressions [08:54] nono, I've just worked it all out [08:54] thanks though [08:54] really? [08:54] cool [08:55] the summary for folks listening at home is... === robitaille [n=robitail@ubuntu/member/robitaille] has joined #launchpad [08:55] yes, half of it is in the book, the other half is in my experimental main-template.pt [08:55] the | operator is about catching "I cannot resolve this path" errors and dealing with them [08:55] the summary is, try things yourself before interrupting people much smarter than you to ask them silly questions [08:55] so, you have a path expression such as foo/bar/baz in TALES [08:56] and if the machinery that resolves paths to objects cannot do so for 'foo/bar/baz' [08:56] then usually, it will raise an exception [08:56] ... for instance, if there's no foo/bar ... [08:56] but, instead, you can use | to say [08:56] if the path cannot be resolved, then try this other thing instead [08:56] yes. [08:56] often, you'll want to end up with | default [08:56] or | nothing [08:56] or | string:hahayoulose [08:56] oh, nothing [08:57] that's better than default" /> [08:57] well, same result, but more obvious [08:57] better than string: too [08:57] and probably a teeny bit faster [08:58] no, it is all slow ;-) [09:02] for example, the bit of the product-index.pt template that shows the project portlet could use "context/project/@@+portlet-details | nothing" rather than using tal:condition [09:02] and would work when project is None === fabbione [i=fabbione@195.22.207.162] has joined #launchpad === fabbione [i=fabbione@gordian.fabbione.net] has joined #launchpad [09:06] the thing to watch out for is when you have foo/bar | nothing [09:06] or rather, when you have foo/bar | default [09:06] and you expect to get the default when bar is None [09:06] or some other false value [09:06] that won't happen though [09:07] because | is only about recovering from path errors, not about logic operations === Ubugtu [n=bugbot@ubuntu/member/seveas] has joined #launchpad === purple_cow [n=david@zero.navi.cx] has joined #launchpad [09:52] i don't suppose anyone knows anything about https://launchpad.net/products/rosetta/+bug/28851 ? [09:52] malone bug 28851 in rosetta "pot import failing" [Normal,Unconfirmed] [09:52] it's getting really frustrating not being able to update anything :( [09:53] purple_cow, ask carlos when he wakes up === carlos is here already === carlos reads the bug [09:56] hmm [09:56] ok, I think I can implement a workaround until I fix it. at least, It should work for you. [09:57] wonderful :) [09:57] purple_cow: what's your product? xchat? [09:57] purple_cow: what's your product? xchat-gnome? [09:57] right [09:57] the latter [09:57] purple_cow: try it again [09:57] it should work now [09:58] no oops this time [09:58] cool [10:01] looks like it worked [10:02] thanks a bunch! === purple_cow [n=david@zero.navi.cx] has left #launchpad ["Ex-Chat"] === ddaa [n=ddaa@nor75-18-82-241-238-155.fbx.proxad.net] has joined #launchpad === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad [10:25] mpt: yo [10:28] hi daf [10:29] let's talk people and users [10:30] ok [10:30] so, we have [10:30] (1) people who use Launchpad [10:30] (2) people who've never used Launchpad [10:30] (3) people who used Launchpad but want others to know that they don't use it any more [10:30] (3) people who've never used Launchpad but have Person objects representing them in the system [10:31] your (3) is my (2), I think [10:31] *(4) [10:31] (2a), perhaps [10:31] "so, we have" -> "there are Launchpad accounts for" [10:31] ah [10:32] ok [10:32] (1) is fine [10:32] wait a second [10:32] you used the term "account" there [10:32] yes... [10:32] Steve suggested (and I agree with him) that we only use the term "account" for Persons that have validated email addresses [10:32] i.e. Persons who are actively using Launchpad [10:33] person: somebody who may or may not be using Launchpad [10:33] In that case, what would we use for the Launchpad entity representing someone who isn't? [10:33] account: somebody who is using Launchpad [10:33] user: somebody with an account who is currently logged in [10:33] is the proposed terminology [10:34] Person is used to represent both account-holders and non-account-holders [10:34] That's straying a bit too far from the dictionary for my tastes [10:34] i.e. we could have a Person.has_account() method [10:34] I am a person [10:34] you are [10:35] whether or not I have a Launchpad account [10:35] agreed [10:35] maybe I'm getting distracted [10:35] the point is this: [10:35] with your terminology, I might have two or more Launchpad "persons" [10:35] if I haven't merged them yet [10:35] the UI should make a clear distinction between a Person who has an account, and a Person who doesn't [10:36] banks call account holders 'client's [10:36] or 'customer's [10:36] As much as all our software development should be focused on helping people get laid, it would seem very strange to me to talk about merging persons [10:37] Launchpad users are not clients or customers -- that implies a financial relationship to my mind [10:37] well, we can talk about merging accounts [10:38] right [10:38] a single person may have multiple accounts, especially if they haven't started using Launchpad [10:38] the point is to make the developers and users to keep the distinction between the two types of person clear [10:38] so Launchpad doesn't know the accounts refer to the same person [10:38] right [10:39] ok [10:39] when somebody unexpectedly sees a page about them in Launchpad, it should absoltely not imply that they use Launchpad [10:39] in fact, it should say that they don't [10:39] So for accounts that haven't been used, we need to make it clear that they haven't been used [10:39] are they two types of people [10:39] or are they people that have taken different actions ? [10:40] yes and no [10:40] a Person might have no account either [10:40] a) because they have taken no action to create an account (validating an email address) [10:40] or [10:40] b) they have deactivated their account because they've decided that Launchpad sucks [10:41] we don't support (b) currently [10:41] I think we should treat (a) and (b) equivalently [10:41] "This person does not currently use Launchpad." [10:42] right [10:42] the fact you say that 'a person might have no account' [10:42] suggests to me that they are not different types of people [10:42] its not like 'man' and 'women' where its an innate property of the person to be that thing [10:43] I'm not sure I follow [10:43] it's a sort of "can log in" property of Person [10:43] it is changable [10:43] does that clarify it? [10:44] when you say 'type' I, and I suspect most programmer think of subclasses [10:44] ok, then perhaps we should avoid that term [10:44] things that change behaviour without changing the innate nature of an object are rarely 'type' related. === mpt has nooooo idea what this discussion is about any more [10:44] I was using "type" in an informal English sort of way :) [10:45] mpt: [10:45] mpt (1) people who use Launchpad [10:45] don't say "people" here [10:45] because there is confusion between Person (in our database) and person (a real breathing human) [10:47] so, the database is using a confusing term [10:47] not really [10:47] it all depends on the context of a discussion [10:47] (1) humans who use Launchpad [10:47] because this particular discussion crosses a number of contexts [10:48] we need to be very careful about the terms we use [10:48] ... [10:49] but sure, you can sort all human beings into the following categories [10:49] ... [10:49] the database might have two or more "Person" things for one real-life person [10:49] therefore, bad term [10:50] another way to think of it is that the database represents real-life persons it knows about as Person records [10:51] but, the database is sometimes inaccurate [10:51] https://launchpad.net/people/debzilla [10:52] right, we have teams too [10:52] but for the purposes of a discussion, you can consider that the database has Person records and Team records [10:52] the fact that we use the same table for both is an implementation trick [10:53] ok, here's what I suggest [10:53] we could discuss this for quite some time yet [10:54] but at the moment it doesn't seem to be leading anywhere concrete [10:54] so, daf, apart from making it clear that "Foo doesn't use Launchpad" on the person page and in their icon [10:54] are there other specific things you think we should be doing? [10:55] we should support deactivating accounts [10:55] the terms i'd use (made up now) are: Person record, Person page, Team page, launchpad account, real person [10:55] we don't allow deleting Person records [10:55] so... [10:56] a real person who can log into launchpad has a launchpad account [10:56] the launchpad account links a real person with a Person record [10:56] on a Person page, we should state clearly whether that Person record is associated with a launchpad account, and thus a real person who can log into launchpad [10:56] we can say "this person has a launchpad account" [10:57] or "this person does not have a launchpad account" [10:57] we can provide a UI for real people to get a launchpad account [10:57] (we do already -- signing up) [10:57] we can provide a UI for real people who have launchpad accounts to delete their launchpad account [10:58] daf, I know of one other site which has this "we know about this person, but they don't use the site" situation [10:58] as a further future thing, we can remove Person records from the database where that Person isn't linked to anything significant in the database [10:58] mpt: what is it? [10:59] gah, it was working a moment ago [11:00] http://www.43people.com/profile/view/104310 [11:00] (this is a site where you make lists of people you'd like to meet) [11:01] '(placeholder)' [11:01] indeed [11:01] everything2 [11:01] wikipedia, in a sense [11:01] linkedin I think [11:01] When I'm logged in there's a link saying "Help us find the real John Kerry" [11:01] So I can suggest a merge with an existing account [11:02] or say "I'm the real John Kerry" [11:02] everything2 has a different namespace for users and persons in general [11:02] but they are both part of a larger namespace of articles (or "nodes") [11:02] Does everything2 represent people in that namespace who have never used the site? [11:03] in what namespace? [11:03] in the "users and persons in general" namespace [11:03] no [11:03] yes [11:03] that's the "stuff" namespace [11:03] and you can certainly write a node about me [11:03] oh, right [11:03] even though i am not a user [11:04] and then the real you can go and claim that account? [11:06] Nothing like that happens on Wikipedia [11:06] no, because it is not an account [11:06] it is just some information about me [11:06] no, the concept of an article about you and you having an account are completely separate in e2 [11:06] same in Wikipedia [11:07] daf is right. that's my point about separate namespaces [11:07] for instance: http://everything2.com/?node=Diane%20Duane [11:07] in launchpad, we have a single namespace [11:07] she has an e2 account [11:07] but we can choose to split the single namespace into two categories [11:07] (I was going to point to a friend of mine who has a Wikipedia article, but it got deleted after she suggested she wasn't notable enough) [11:07] that actually looks like a bug in Wikipedia [11:08] http://en.wikipedia.org/w/index.php?title=User:DafyddHarries&action=edit [11:08] I can go ahead and create a page for an account that doesn't exist [11:09] so, anyway... [11:09] mpt and daf, do you agree with what i said earlier [11:09] about saying clearly whether someone has a launchpad account or not? [11:09] yes [11:09] we can also add an API for .hasLaunchpadAccount [11:09] to Person [11:10] and use this to choose whether to display things that make sense only when you have an account [11:10] like your status of signing the CoC [11:11] I agree with all your feature ideas, though the terminology makes me go aaarggggh [11:12] mpt: which terminology would you like to replace? [11:12] "account" with "uses Launchpad" [11:13] and "Person" with "account" [11:13] i don't understand [11:13] can you say what you mean, but using more words? [11:13] sure [11:14] If I'm a Debian developer and Launchpad has sucked in data about me using two different e-mail addresses, and Launchpad doesn't know they're associated === irvin [n=irvin@ubuntu/member/irvin] has joined #launchpad [11:14] any English dictionary will agree they're not two Persons [11:14] so, are you proposing to use "account" for that? [11:15] yes [11:15] i don't support that [11:15] http://www.google.com/search?q=%22claim%20this%20account%22 [11:15] an account is something that someone owns [11:15] it is important that we do not have unclaimed accounts in launchpad [11:15] because that would be offensive to (for example) debian developers who do not support using launchpad [11:16] we would have an unclaimed account for them [11:16] sending someone a credit card that is made in their name ready to use [11:16] I'm not strongly attached to the word account, but I am strongly attached to not using person for things that aren't [11:16] when they did not request it [11:16] if you are into conspriacy theories, we have a Launchpad "file" about people === sevrin [n=sevrin@202.75.186.154] has joined #launchpad [11:17] mpt: Launchpad records information about humans that don't use Launchpad -- what else should we call them? [11:17] about some things they have done in the open source / free software world [11:17] when we show a distribution in launchpad [11:17] we don't say "A File on a Distribution" [11:17] we say "A Distribution" [11:17] it is assumed that launchpad does not actually have a distribution inside it === ddaa has a file, a maildir actually, with all tomlord rants for the past 2-3 years [11:18] but that we are displaying data about it [11:18] so, it is also obvious that launchpad does not actually contain people [11:18] and a Person page is not that person, but information about that person [11:18] (within the scope of what launchpad is for) [11:18] we don't contain two records about the Ubuntu distribution [11:18] if we did, that would be a bug [11:18] what kind of bug? [11:19] it would be a bug in the *use* of launchpad [11:19] not in launchpad itself [11:19] right [11:19] launchpad can easily contain two equivalent products [11:19] two people register a product [11:19] and didn't check with each other first [11:19] and so, we may in the future need a way to merge products === ddaa has fixed that situation like half a dozen times already [11:19] daf, perhaps "profiles" [11:19] the same can happen with distros [11:19] that's what 43people uses [11:20] but, distros are few [11:20] so the problem does not occur [11:20] people are many [11:20] so are products [11:20] mpt: yuck [11:21] Distros are few?????? http://lwn.net/Distributions/ [11:21] I also quite expect that we will have more non-human accounts like debzilla in future [11:21] the world of open source is made up of people, who organise themselves into teams, who write source code and documentation for products, which are packaged into source packages for use in distributions [11:21] take that sentence [11:21] and change the words [11:21] see if it still works [11:22] we should use "Person" in the launchpad UI [11:22] but when we're talking about adding or removing etc. [11:22] we should probably talk about Person records or Person profiles [11:22] but only there [11:22] most people just read launchpad, and maybe sign up for an account once [11:22] most real people, of course [11:23] so we can offer to "merge this person profile into your own" [11:23] but i would not want the main page of a person in launchpad to say "Profile of John Smith" [11:23] the word "profile" should be reserved for when you're logged in, about actions on person records [11:23] [11:23] ok [11:24] that's my opinoin [11:24] i'm open to discussion, and differing opinions [11:25] I agree about the use of the term "profile" [11:29] stub: yo [11:33] mpt: what do you think of ProductSeries? === BjornT_ [n=bjorn@clt-84-32-240-183.dtiltas.lt] has joined #launchpad [11:37] ddaa, as little as possible [11:37] what do you mean exactly? :-) === carlos -> bank [11:42] see you later [11:45] stub: ping === WaterSevenUb [n=WaterSev@195-23-238-211.nr.ip.pt] has joined #launchpad [11:49] jamesh: ping === cprov [n=cprov@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [11:54] morning, hackers [11:54] morning cprov [11:54] I have an interesting oops for you [11:54] I can reproduce it [11:54] https://chinstrap.ubuntu.com/~jamesh/oops.cgi/2006-02-10/A38 [11:55] daf: let's go [11:55] I'm guessing that you need to escape the contents of sourcepackagenametxt before interpolating it into the regex [11:55] lib/canonical/launchpad/browser/sourcepackage.py:74 [11:57] aha, I have a test case [11:58] https://chinstrap.ubuntu.com/~dsilvers/paste/filevRx2l2.html [11:58] daf: this method is 'the suck' ... already removed unused parts and it still making troubles. can you reproduce it locally [11:58] I'll file a bug [11:59] daf: good [12:00] Kinnison: pong === salgado [n=salgado@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [12:00] stub: I may need your assistance to do some brain surgery on the publishing records [12:00] stub: how long are you around for? [12:01] I'll be around for another 3 or 4 hours, on and off. [12:01] Cool [12:01] thanks [12:01] Hopefully I won't need you [12:01] we'll see :-) [12:02] I should be able to do all this surgery as lucille [12:02] stub: I'd like to be able to use my changes in r3018 === Kinnison mumbles something about nasty messes [12:02] stub: rolling it out either on staging or production would be great [12:02] stub: are you in charge of staging again? [12:02] daf: eh? [12:03] stub: Oh yeah, you have staging under your full control again and it'd be nice if drescher couldn't talk to asuka any more [12:03] daf: do you mean we are having troubles with the 'xx++' within the regexp ? [12:03] Kinnison: ok. [12:03] stub: well, unless cprov wants to retain it [12:03] cprov: ^^^? [12:03] cprov: y [12:03] [12:03] er [12:03] cprov: exactly === Kinnison hands daf some english fingers [12:03] cprov: https://launchpad.net/products/soyuz/+bug/31039 [12:03] malone bug 31039 in soyuz "changelog linkification doesn't work properly for package names containing "+"" [Normal,Unconfirmed] [12:04] daf: right, thx dude ! [12:04] no worries [12:04] re.escape is what's needed, I think === dholbach [n=daniel@ubuntu/member/dholbach] has joined #launchpad [12:05] Hello. [12:05] tango-icon-theme doesn't seem to exist as an upstream product - do I have to create it manually? [12:05] stub: so, I have a script that fetches information about bugs and displays it in ways that are useful to bug triage [12:05] Kinnison: stub: I ok to loose staging ... would be nice if we can sync production easily/on-demand in mawson (dogfood) then I can do some tests there [12:06] stub: however, it currently can't get dup information [12:06] stub: r3018 fixes this [12:06] stub: is that possible and not so much distressing ? [12:06] stub: having r3018 either in production or staging would be useful [12:07] oh, I mean r3118 === mpt [n=mpt@222-154-152-199.jetstream.xtra.co.nz] has joined #launchpad [12:08] stub: any idea what might cause "ERROR: duplicate key violates unique constraint "sessiondata_key" INSERT INTO SessionPkgData" [12:08] hello again mpt [12:08] dholbach: what are you trying to do? [12:09] mpt: so, my issue is that I grew convinced that RCS import details should be moved out of ProducSeries. [12:09] daf: I wanted to create an upstream task for a bug, so the upstream bug could be monitored. [12:09] dholbach: aha, then yes, you will need to create the product [12:09] daf: right now I just assigned the upstream bug just to the ubuntu task. [12:09] Maybe a new RcsImport object. And that ProductSeries may be attached to a RcsImport or an existing branch. === dholbach sighs under his breath. :) [12:10] daf: Bug in the session machinery - I'll be looking into soonish [12:10] stub: is there a bug filed? [12:10] daf: Dunno [12:10] Probably one of those oopses somewhere [12:10] mpt: I have a strong feeling that this "RCS imports in ProductSeries" is a case of "design by modelling the world". [12:11] stub: let's file one and worry about dups later [12:11] mpt: but it seems like I was unable to convince the other guys when I raised that topic on the launchpad mailing list. [12:11] daf: That patch will roll out to staging tomorrow [12:11] mpt: you here? [12:11] stub: ok, I can wait [12:12] Are you screen scraping? We can access the real database you realize. [12:12] We don't *have* to do things the hard way :-) [12:12] I have an API [12:12] of sorts [12:13] which Ubugtu is also using [12:13] I admit, it didn't occur to me to access the DB directly on mawson [12:13] it might have been easier in retrospect :) [12:14] Back in an hour - any last requests? [12:15] nope [12:16] cprov: Do you mean you would like to keep access to the staging database? If so, do you need the data preserved or can I start regularly resyncing it with production. [12:16] stub: a present: https://launchpad.net/products/launchpad/+bug/31041 [12:16] malone bug 31041 in launchpad "session machinery sometimes uses duplicate session package data keys" [Normal,Unconfirmed] [12:16] daf: if we access the database directly for launchpad bug triage, we're not helping launchpad be useful in general for bug triage [12:17] SteveA: if I'd written scrape.py to get information directly from the DB, would it have made a difference? [12:17] (aside from not having the text export API) [12:17] stub: yes, you can start the resync, I meant, atm some point in the future I'd like to have a fresh production sync on mawson, to perform dangerous tests [12:17] you can release scrape.py to the distro team today, for example [12:17] or to anyone else [12:17] that's true [12:17] cprov: Ok. [12:17] it's easy to build new kinds of display on top of it [12:18] so it might be useful to give it to people [12:18] stub: for example, could you do it today, then we can do the security upload tests during the weekend ? [12:18] (indeed, people can bzr branch sftp://chinstrap.ubuntu.com/home/daf/public_html/bugs) [12:19] hmm, it would be nice to have a way to cross off items on the OOPS summaries [12:20] so that Diogo doesn't waste time looking at ones I already have [12:20] cprov: I'm looking at today's OOPS summary [12:20] cprov: there are lots of OOPSes from search bots [12:21] cprov: https://chinstrap.ubuntu.com/~jamesh/oops-summaries/2006-02-10.html [12:21] cprov: the top 3 exceptions there are all on build pages [12:21] daf: do you mean related on soyuz searches ? yes, it was expected ... I'm reading [12:21] cprov: I'm not too worried about it, because it's only search bots and not users [12:22] cprov: but it would be nice to be able to convert these into 404s or something === lbm [n=lbm@cpe.atm4-0-1301006.0x50a0824e.vgnxx6.customer.tele.dk] has joined #launchpad [12:22] daf: ohh, there is a LOT ! [12:23] yes :) [12:23] 224 + 36 + 24 [12:23] in ~8 hours === BjornT_ [n=bjorn@clt-84-32-240-183.dtiltas.lt] has joined #launchpad === matsubara [n=matsubar@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === irvin [n=irvin@ubuntu/member/irvin] has joined #launchpad === niemeyer [n=niemeyer@200.138.131.57] has joined #launchpad === mpt [n=mpt@222-154-152-199.jetstream.xtra.co.nz] has joined #launchpad [12:49] SteveA: yesterday you said you'd tell me "later" about what you thought of what I'd done with "items from the last meeting" in the summary [12:50] daf: i'll look now [12:50] daf: i think the meeting summaries would be better most recent at the top, on MeetingAgenda [12:50] good idea [12:53] Somebody up for a quasi-trivial review? [12:53] daf: https://wiki.launchpad.canonical.com/DevelopmentMeeting20060202 reads very well [12:53] ddaa: ok, me === ddaa looks for Kinnison's nopaste URL [12:55] found it [12:55] SteveA: great -- the main problem you mentioned before was distinguishing new MeetingAction itmes from old ones [12:55] https://chinstrap.ubuntu.com/~dsilvers/paste/filefnYVFv.html [12:56] daf: there was no problem like that in 20060202 [12:57] SteveA: ok, then I'll stick to that format for this week's simmary [12:58] ddaa: that is a function defined inside a method's scope, right? [12:58] yes [12:58] but, the function doesn't use any of the names available in the method's closure [12:58] as you can see, it's just a helper for sort [12:58] so, rather than define the function on each call to the method [12:58] define the function as a staticmethod perhaps [12:59] does not matter, the method is called only once per page [12:59] it is confusing [12:59] okay [12:59] will make it staticmethod if such is your pleasure === ddaa does not find that confusing and likes the better code locality [01:00] display_order looks like it could apply to other things [01:00] such as? [01:00] so maybe that should be at the class level too [01:00] i don't know [01:00] but, i expect you'd want to have things displayed in that order, and not another variation [01:01] which class... not in Branch obviously, not in BranchView either because we are in BranchTargetView (which is a gross hack IMO, but sabdfl liked it that way). [01:01] the reason that functions defined within methods are often confusing is that it isn't clear whether names in the encompassing namespace will be used inside that function [01:01] whereas, as a separate function, the dependencies are clearer [01:01] BranchView is okay [01:01] or BranchTargetView [01:02] either works [01:02] i think it would end up in BranchView, and be imported into BranchTargetView, if it were in fact used widely === ddaa makes the staticmethod category_display_order [01:02] hu [01:03] Right, I'lll remember that, at the moment that would be needless indirection [01:03] ok === mantas_ [n=mantas@ctv-84-55-6-215.init.lt] has joined #launchpad [01:04] Hi all [01:06] labas mantai [01:07] Kinnison, I think I need to add a pocket attribute to MirrorDistroReleaseSource, like we have on MirrorDistroArchRelease. do you have any objection? [01:07] Nope, sounds right [01:08] stub: I managed the surgery without needing DBA powahs I think, I'm just verifying now [01:08] carlos: thanks for looking at the OOPS report and mailing the list about the rosetta ones, and their status. [01:08] np [01:12] Someone could tell me what is pulse type at http://lauchpad.net/distros/baltix/+newmirror ? [01:12] SteveA, labas [01:13] Kinnison: ok [01:13] mantas_: use "pull" unless you have a reason to use otherwise [01:15] Kinnison: should the page say so? [01:15] daf: I think salgado is still working on all the mirror stuff [01:15] salgado: are you changing the UI at all? [01:17] Kinnison, hehe, could you tell me what could be the reasons to specify push there ? [01:18] mantas_: if launchpad was managing your archive then it could in theory push changes to the mirror [01:18] mantas_: this is not yet well defined [01:20] Kinnison, thanks for info, maybe this info could be at http://lauchpad.net/distros/baltix/+newmirror ? [01:20] mantas_: Again, salgado is working on the mirror stuff right now so I suggest you ask him :-) [01:21] salgado, hi, are you alive ? [01:21] Btw, what is Pulse Source ? [01:21] cprov: hi, did you solved your testing problems? [01:22] mantas_: again, I think this isn't well defined. It's probably not worth your while trying to register mirrors with launchpad until we announce that it's ready [01:24] was this page created before our code review process? [01:24] hi guys, I was just discussing some issues on the MirrorManagement spec with cprov [01:24] (I suspect that we wouldn't get away with adding useless pages nowadays) [01:25] yes, the UI changed a bit in the branch I'm working on right now [01:25] daf, what page is that? [01:26] mpt: in the oops summary page stylesheet, can we get rid of bullet points except in the TOC? [01:26] ddaa: what's keeping your testsuite-lobotomy branch from being merged [01:26] salgado: +newmirror [01:27] daf: bzr bug in pqm AFAICT, it's in spiv's hands now [01:27] daf: initially, the problem was a 64bit compatilibyt problem in buildbot that caused the merge failure [01:27] fun! [01:27] (which obviously I did not catch here) [01:28] mh, I think I did not mention the burning hate I have for buildbot today [01:28] don't bottle up your feelings [01:28] So, my hate for buildbot burns of flame so bright and hot that it eclipses my screen and cooks my pizzas [01:29] it's kinda handy for the pizza, though [01:29] daf, why is it useless? [01:29] is it broken? === beyond [n=beyond@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [01:30] 12:22:18 mantas_: again, I think this isn't well defined. It's [01:30] probably not worth your while trying to register mirrors [01:30] with launchpad until we announce that it's ready [01:31] well, the only thing we're not doing right now is to check what content is mirrored and how updated a mirror is [01:31] but even so, if you register a mirror now, it won't be a problem when we start doing these checks [01:32] daf: mpool isn't expected to be at all launchpad meetings (for the summaries) [01:32] mantas_, ^ [01:32] SteveA: noted [01:33] salgado: My concern is that if we let people register mirrors now, we may have to change the content model before we can release and it might get confusing [01:33] salgado: if you think this isn't going to happen then I'll shut up and let people carry on :-) [01:33] daf: "Jordi to send spreadsheet to Steve" is missing the MeetingAction tag [01:35] Kinnison, the content model will change, and I'll have to write the migration scripts anyway, so I don't see a reason for telling people to not use it yet [01:35] SteveA: summary and MeetingAgenda updated [01:35] thanks [01:37] salgado: fair enough [01:37] mantas_: just ignore me :-) [01:37] cprov: how are you getting on with my soyuz-ui branch? [01:38] daf: merged and maintained, no action from the reviewers yet. I propably need to resend the review request email, will do it later today [01:39] cprov: cool === kiko [n=kiko@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === cprov nods [01:39] ahoy [01:40] ahoyhoy kiko [01:40] what's going on here? [01:40] it wasn't me === Kinnison skulks in a corner kicking his heels [01:41] kiko: the oops stuff is looking pretty smooth now. start here: https://chinstrap.ubuntu.com/~daf/bugs/oops.py === Kinnison points lackadaisically at salgado and says "please miss, he was *working*" [01:41] click on a bug. [01:41] click on an OOPS code in that bug [01:42] 1 fixed, 2 in progress, 18 other [01:42] matsubara, daf: you're doing a great job [01:42] thanks Steve [01:43] nice! [01:43] SteveA: thanks. [01:44] The bugs that are duplicates can be closed with 'Rejected' status, right? [01:44] shortly, they'll have a special Duplicate stauts, I think [01:45] I wouldn't bother changing the status of a dup [01:45] unless you have some particular reason [01:45] carlos, daf's right [01:46] ok [01:46] daf, I saw that bug report on Oprah yesterday and she was full of big words to describe it! [01:46] daf: #3176 is closed and would be interesting to close all the duplicates we got [01:46] but we can wait ;-) === bradb [n=bradb@modemcable033.209-70-69.mc.videotron.ca] has joined #launchpad [01:56] announcing: https://chinstrap.ubuntu.com/~daf/bugs/wishlist.py [01:58] salgado, Kinnison: so, when I'm registering new mirror then in Pulse Source I should write URL of primary download location ? [02:01] daf: how often are those pages updated? [02:01] carlos: constantly [02:01] Pulse Source? === kiko scratches head [02:01] kiko, yes [02:02] does that term make any sense to you? [02:02] daf: then you have a bug on https://chinstrap.ubuntu.com/~daf/bugs/oops.py [02:02] kiko, I don't know, but there is such entry - look at http://lauchpad.net/distros/baltix/+newmirror ? [02:02] daf: #3176 has the 'fix committed' status since yesterday [02:02] and I don't know what I should write there [02:02] but your page has the old status [02:03] carlos: that's right :) [02:03] carlos: the page includes fixed bugs [02:03] mantas_, actually, lauchpad.net is something completely different. :) [02:03] daf, can you fixed bugs? [02:03] or non-open bugs [02:03] daf: I'm talking about colors ;-) [02:03] it should be black instead of yellow [02:04] kiko, ? [02:04] mpt, salgado: can you please review the terminology on http://lauchpad.net/distros/baltix/+newmirror -- this pulse stuff is crazy [02:04] carlos: you mean "fix released"? [02:04] mantas_, unfortunately I have no clue what it means. I suspect cprov and Kinnison might. [02:04] daf: right, sorry, I gave you the wrong status.... [02:04] :-P [02:04] kiko, :) [02:04] daf: it's on 'fix released' status since yesterday [02:05] carlos: oh, right, it's pointed at staging [02:07] kiko, that pulse stuff thing needs to be documented in the spec. I added a question there but the answer was that it doesn't need to be documented [02:07] salgado, the pulse thing probably needs to be reworded [02:07] mantas_: basically pulse and probe are no working yet, but pulse is aim to be the mirror trigger url/method, which isn't yet well defined [02:07] or some text added telling me what the hell it is :) [02:07] yes, but in order to do that I need to know what it is. that's not clear in the spec [02:08] salgado: remove it from the UI for a while, so but don't get confused [02:08] cprov: so, when I'm registering new mirror then Pulse Source I should leave empty now ? [02:08] mantas_: yes, leave it blank, the form should pass [02:08] salgado: ^^^ [02:09] salgado: or not ? don't remember if it is required. [02:09] it's required if you specify Pulse as the mirror type === lbm [n=lbm@x1-6-00-13-10-7a-d1-e4.k233.webspeed.dk] has joined #launchpad [02:11] salgado: you mean Pulse Type as 'Pull' or what ? [02:12] yes, that's what I meant. sorry [02:12] Merge to devel/launchpad/: [r=spiv] Allow admins and rosetta experts remove entries from the translation import queue. + tests (r3120: Carlos Perell Marn) [02:12] but Kinnison told me, that I should use pulse type "pull" [02:12] salgado: it's ok, so mantas_ should add his mirror as 'push' for a while, correct ? [02:13] mantas_: You need to ignore everything I've said and go with what people are telling you now. I was mistaken when I was trying to help you :-) [02:16] Kinnison: no regret, the just-landed stuff still obscure, we can fix it improving form comments and maybe hidding some unused fields [02:16] form comments would be helpful :-) [02:16] even for me :-) [02:17] particularly for me === Kinnison prods at this test more [02:18] pass damn you [02:21] lifeless: you mentioned the sftp server required changes to the supermirror-pull-list.txt [02:21] lifeless: can you quickly fill me up on that? [02:21] Kinnison, cprov, salgado: thank you for info ;) === cogumbreiro [n=tiago@81.20.250.82] has joined #launchpad [02:22] mantas_: you're welcome [02:22] ddaa: the verb is "fill ... in", not "fill ... up" :) [02:22] cprov, you too ;) [02:22] lifeless: can you quickly fill me in on that? [02:22] ddaa: see the diff of spivs branch [02:22] url? [02:22] is it possible to integrate the (gnome) bugzilla with malone? [02:22] ddaa: pending reviews should have it === ddaa looks [02:24] actually, it's on the page, but it does not have a diff yet :( === carlos -> lunch [02:25] see you later [02:25] what's the difference between a product and a project? [02:26] People seem to want a slideshow-enabled wikipage for Malone. :-) [02:26] is rhythmbox a product or a project? [02:26] product [02:26] malone bug 31034 [02:26] malone bug 31034 in tango-icon-theme "evolution shows wrong trash icon" [Normal,Unconfirmed] http://launchpad.net/bugs/31034 [02:28] daf, what happened to some of the bugs that just disappeared from the oops bugs page? [02:28] kiko: just a second [02:29] btw, when I will have permissions to register Baltix releases through http://lauchpad.net/distros/baltix/+addrelease ? [02:29] mantas_, not in the short term, but if you email launchpad-users I could do it for you [02:29] mantas_, however, I would like to know with carlos if that's safe -- carlos, do we currently do translation processing only for ubuntu? [02:30] kiko: it's because I've temporarily pointed the script at staging [02:30] kiko: I will point it back at production shortly [02:30] kiko: only for Ubuntu? no, Ubuntu and upstream [02:30] carlos, but not for other distros? [02:31] kiko: or are you talking about 'automatic' imports? [02:31] right [02:31] only for Ubuntu [02:31] I'm talking about the impact of adding a distrorelease for baltix, another distro. [02:31] carlos, okay, thanks. [02:32] kiko: well, if launchpad build the packages and use the same system Ubuntu uses... it shouldn't be a problem [02:32] (talking about pkgstriptranslations) [02:34] baltix uses same packages like ubuntu, just some packages are backported from Ubuntu unstable and very few are from other, not ubuntu sources [02:34] ok can i search for the biild log for a package somehow? [02:34] tryign to find dapper/ctsims last upload [02:35] *build log [02:35] mantas_: but you build it by hand, right? [02:38] carlos, yes, very few are builded manually, with dpkg-buildpackage - I have no other way, because I have no automatic build system :( === WaterSevenUb [n=WaterSev@195-23-238-237.nr.ip.pt] has joined #launchpad === giftnudel [n=mb@p54A93497.dip0.t-ipconnect.de] has joined #launchpad === BjornT_ heads out for a couple of hours [03:08] carlos, can you tell me about bug 2036? [03:08] malone bug 2036 in rosetta "DistroRelease language page should show *all* templates" [Major,Confirmed] http://launchpad.net/bugs/2036 [03:08] kiko: what do you want to know about it? [03:09] kiko: it has two problems; [03:09] 1.- Current content/approach is a big performance problem [03:10] 2.- It lacks entries due a bad SQL query that misses things [03:11] carlos, can you fix #2 in the short term? [03:11] would it take long? [03:11] kiko: I don't think it should take too long [03:11] but that page is still useless because #1 [03:11] it fails to often [03:12] I could take a look on improve the performance with current approach at the same time [03:12] carlos, if you fix #2 I can look into the performance of the page. can you give me a URL? [03:12] or an oops [03:13] kiko: https://launchpad.net/distros/ubuntu/breezy/+lang/pt_BR [03:13] thank you [03:13] you are welcome === kiko hopes it times out [03:13] bummer man [03:13] it didn't :) [03:14] carlos, didn't we solve the do-not-use template problem? === Keybuk [n=scott@descent.netsplit.com] has joined #launchpad [03:14] kiko: not yet, we need to implement a way to remove the templates to stop using them [03:14] kiko: we are not creating new ones [03:14] that's the only thing done [03:15] but the old ones need to be handled === carlos goes to have lunch (this time is true...) [03:16] later [03:25] Merge to devel/launchpad/: [trivial] fix https://launchpad.net/products/malone/+bug/29182 (Can't (r3121: Brad Bollenbach) === jsgotangco [n=jsg@125.212.125.51] has joined #launchpad === jbailey [n=jbailey@modemcable139.249-203-24.mc.videotron.ca] has joined #launchpad [03:32] Is there any sort of aliasing system for searches in launchpad? Like, if I search for "powerpc" will it also search "ppc" ? [03:44] jbailey, no, there is not. [03:44] kiko: Thanks. [03:51] bradb, BjornT_: ping [03:51] in a few minutes [03:51] oops [03:52] dholbach: hi [03:52] bradb, BjornT_: can I forward you two mails of a bug report, I received, which don't contain the information that is displayed on the web? (malone bug 30648) - it's fishy too, that there are just two of them, but it might be a spam-filtering/whatever issue as well [03:53] dholbach: sure [03:53] bradb: done, thanks. [03:55] bradb: forget it... it seems that I just received the two empty ones, which are on the web also... sorry for the noise [03:55] ok, no worries [03:58] bradb: I just checked https://lists.ubuntu.com/archives/desktop-bugs/2006-February/thread.html - just the two empty mails were sent [03:58] bradb: so it was not a spam filter issue, but some kind of problem with launchpad [03:58] (search for "no run" :)) [03:59] Wow! The gimp baz2bzr ETA is decreasing! === lamont [n=lamont@mib.fc.hp.com] has joined #launchpad [03:59] about time, after running for ten days... about one more week left [04:00] dholbach: Thanks. I'll open a bug about this. [04:00] bradb: merci beaucoup [04:00] bienvenue [04:00] bradb: there seem to be entries missing in the bug activity log as well. [04:01] (supposing that additional comments should be logged) [04:01] Comments don't get logged atm. [04:01] Ah, right. [04:03] dholbach: bug 31059 for the emptiness [04:03] malone bug 31059 in malone "Empty comments and empty emails generated" [Normal,Unconfirmed] http://launchpad.net/bugs/31059 [04:08] ddaa: is gimp the worst? [04:08] yes [04:09] there are couple of other conversions outstanding for various reasons, but gimp is the bigger and meaner. [04:09] * biggest and meanest [04:10] It's a bit annoying when after two days the ETA is 140 hours, and it's still the same 5 days laters... [04:10] bug in the ETA code? [04:10] bug in baz replay and old bzr commit code methink [04:10] the ETA code is really trivial [04:11] should just report '1GE' when over 24 hours [04:11] GE? [04:11] geological era === _koke [n=koke@169.Red-217-127-113.staticIP.rima-tde.net] has joined #launchpad [04:11] it's useful to know that something is likely to finish within a week [04:11] at least, for my use case... admittedly, not all that common... [04:13] though admittedly... you could s/hour/too long/ and s/day/too frickin' long/ if you want a "humane" use interface :) [04:14] kiko: I have code in my branch for -updates and some better -security behaviour following the last attempts [04:14] kiko: Along with (wait for it) comprehensive tests [04:14] kiko: once cprov gets back we'll look at rolling this out to ftpmaster === jinty [n=jinty@196-28-45-146.jhb.netdial.co.za] has joined #launchpad === Kinnison goes for lunch, only 3h late === mgalvin [n=mgalvin@ubuntu/member/mgalvin] has joined #launchpad [04:18] cool Kinnison === Kinnison gives up on lunch [04:20] nothing I fancy [04:20] ! [04:20] kiko: I'll get on with the chroots for the -updates pockets [04:20] okay, cool [04:20] did you manage to see what happened to scott's uploads? [04:21] urgh no, not yet [04:21] I have an idea [04:21] but I need to verify it [04:21] okay. [04:21] I *think* he uploaded it twice inside the same five minutes [04:21] which might confuse process-upload [04:21] it's harmless but irritating [04:21] indeed. [04:21] chroots first, then I'll investigate that one [04:21] yeah, I uploaded the same source twice [04:21] with different diff.gz === Kinnison has no idea which one will have won [04:22] it was the fact it seemed to get processed twice that was confusing [04:22] each upload is independant in the new world order [04:22] utterly independant [04:23] surely they're at least sorted by time, so the later one wins? [04:23] that's probable [04:23] which one won? [04:23] I'll admit I never catalogued the behavioural modes when faced with developers doing odd things [04:23] it looks like the later one did, based on the diff.gz-in-the-archive [04:23] salgado-lunch: Did you ask stub to cherry pick the patch that added "_table = BinaryAndSourcePackageName"? It would fix a rather nasty bug on the filebug page, but I can't figure out which revno that fix went in on. [04:24] cool [04:34] Merge to devel/launchpad/: Fixes https://launchpad.net/products/malone/+bug/31005 (ValueError on bugtask traversal) r=kiko (r3122: Diogo Matsubara) [04:38] matsubara-lunch: first merge to RF? :) [04:40] could be :) === Mez [n=Mez@ubuntu/member/mez] has joined #launchpad === beyond is now known as beyond-rango === raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad [05:08] hi there [05:09] not sure this is the right place to report [05:09] the UserPreferences in the Ubuntu wiki don't work [05:09] validating the form doesn't update the data [05:09] tried on konqueror & firefox, on various ubuntu boxes [05:09] if anyone can confirm : https://wiki.ubuntu.com/UserPreferences [05:10] is this bug #3987? [05:10] malone bug 3987 in launchpad "Launchpad wiki UserPreferences causes mismatched passwords" [Normal,Needs info] http://launchpad.net/bugs/3987 [05:10] elmo: ping [05:10] hmm seems so saf [05:10] daf [05:11] yes that's it [05:12] I'll try and find out what happened to Andrew's fix [05:12] I've updated the bug daf [05:13] thanks [05:15] daf: yes [05:15] matsubara: congratulations [05:16] daf: thanks :) === hannosch [i=hannosch@e176109007.adsl.alicedsl.de] has joined #launchpad === aynur-lez [n=raptoid@85.99.64.113] has joined #launchpad === bradb & # lunch [05:44] Merge to devel/launchpad/: [trivial] Fix a bug from the Launchpad Errors report that was causing (r3123: Brad Bollenbach) [05:45] daf, can't you fix dilys? === beyond-rango is now known as beyond [05:50] Merge to devel/launchpad/: [trivial] Fix a bug from the Launchpad Errors report that was causing (r3123: Brad Bollenbach) [05:50] hmm [05:56] bradb? [05:57] SteveA, around? [06:02] salgado, SteveA's off for the afternoon. how may I help you? [06:02] bradbeeeeeee? === dredg [n=niall@80.169.137.162] has joined #launchpad [06:03] kiko, I need to test the mirror prober, and for that I think I need some zope magic to make all http requests on a path under, let's say, /foo/ to return a 200 OK === dredg wonders offhand how he can get some accounts cleaned up... [06:04] salgado, just build something on apache at async. === carlos [n=carlos@84.76.255.40] has joined #launchpad [06:04] dredg, tell me about your problems [06:05] kiko: on launchpad my wiki url points to NiallSheridan3. When i try to change it to 'NiallSheridan' I get told that "The Ubuntu WikiName NiallSheridan is already registered by Niall Sheridan." [06:05] looks like a merge of some things created a dupe somewhere [06:06] kiko, I need to make proper doctests/unittests for it. for manual testing I don't need anything [06:07] dredg, so you merged an account but the old wiki name is still taken? [06:07] salgado: use zeca [06:07] or is the problem that you have yet another unmerged account === lamont [n=lamont@mib.fc.hp.com] has joined #launchpad [06:08] salgado: talk to celso about how he did it [06:08] SteveA, cool, I'll do it. thanks :) [06:10] kiko: i'm not sure. i created the NiallSheridan wiki page a long time ago, and created a launchpad account sometime afterwards. this was before the wiki was changed to moin [06:10] let's do some investigating. [06:11] when pqm works well, it's pretty nice to use it as a test runner [06:11] kiko: my best guess is that launchpad thinks there is a few of me based on email address or something. it's hard to tell :) [06:11] write quick patch, send to pqm, fix test, rinse, repeat [06:12] dredg, that is definitely possible. care to /msg me your name and candidate email addresses? [06:13] SteveA: if you want some reading, I sent you the draft for the bzr publishing section, that I've been writing most of yesterday and today [06:13] ddaa: nice. i'll read it tomorrow. [06:13] bradbeeeeeeeeeeeeeeeee [06:14] SteveA: -ENOWEEKEND? === mdz_ [n=mdz@studiocity-motorola-bsr1-70-36-194-85.vnnyca.adelphia.net] has joined #launchpad === SteveA reminds everyone about the sysadmin work happening tomorrow [06:14] ddaa: i arranged with kiko to switch this afternoon for saturday afternoon [06:15] yes, today is officially saturday from now on, and tomorrow will be friday. [06:15] Merge to devel/launchpad/: [trivial] Fix a bug from the Launchpad Errors report that was causing OOPS-40A169 (r3123: Brad Bollenbach) [06:15] mdz_? [06:15] SteveA: there's also some open issues in the signing draft I sent yesterday [06:15] kiko: better? [06:15] daf, thanks :) [06:16] okay, da next one is how to do new imports... in particular howzdat gonna work for non-main branches... [06:17] man, writing implementation specs is hard work [06:18] kiko: laptop testing [06:20] bradb: does 40A169 have a bug? === raphink [n=raphink@ubuntu/member/raphink] has left #launchpad ["Konversation] [06:21] salgado: https://chinstrap.ubuntu.com/~jamesh/oops.cgi/2006-02-10/C400 [06:21] salgado, fixed? [06:22] kiko, yes, already in rocketfuel [06:22] have a nice weekend [06:23] thanks salgado [06:24] shit, the movie I wanted to see is four months old... [06:25] that's an annoyingly long lapse... === jsgotangco [n=jsg@125.212.125.51] has joined #launchpad [06:36] Merge to devel/launchpad/: [trivial] Fix bug # 31039, properly escaping source names before using regexp replace in changelog linkification, added new sampledata and tests for sourcepackage view classes (r3124: Celso Providelo) [06:37] cool [06:37] go cprov go [06:50] daf: Not that I know of. If it did, I would have mentioned it in the merge summary. [06:50] Just trying to knock off Malone problems appearing in the error reports. [06:53] bye guys, going for a movie, I'll be back for one one after that (in about three hours) [06:58] bradb, I need to talk to you === carlos [n=carlos@84.76.255.40] has joined #launchpad [06:59] kiko: sure === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad [07:34] Merge to devel/launchpad/: [r=SteveA] change ordering of categories in branch listings (r3125: David Allouche) === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad === carlos -> out [07:49] see you on Monday! === zyga_ [n=zyga@ubuntu/member/zyga] has joined #launchpad === AlinuxOS [n=Ubuntu@d83-176-110-216.cust.tele2.it] has joined #launchpad [08:56] bradb, can I assign bug 29174 to matsubara? [08:56] malone bug 29174 in malone "Distribution CVE report assumes bugtask.sourcepackagename != None" [Normal,In progress] http://launchpad.net/bugs/29174 [08:56] say yes [08:56] i was already working on it, hence In Progress. [08:57] ok [08:57] then I won't [08:57] but I would prefer you didn't spend time on trivialities if that bug is indeed trivial [08:58] it's trivial. i pass these types of bug on in future [08:58] kiko: Skype should be ready now [08:58] thanks [08:59] What's your skype username? [08:59] kiko-async === bradb tries calling [09:00] "Failed: Misc error". How Launchpadesque! [09:01] failed, Reason unknown [09:01] I think your skype is bustage [09:01] I've used it with SteveA a few times [09:02] I'll call you === zyga [n=zyga@ubuntu/member/zyga] has joined #launchpad [09:21] bradb: shouldn't that be a Mic error? === zyga [n=zyga@ubuntu/member/zyga] has joined #launchpad === AlinuxOS [n=Ubuntu@d83-176-110-216.cust.tele2.it] has joined #launchpad [09:40] ciau all [09:54] um mtodo como esse no precisa ter docstring? [09:54] hmm [10:13] Kinnison, was that a "hi" ciao, or a "bye" ciao? [10:13] mdke, It's the same [10:13] AlinuxOS, i want to know if he's gone or not [10:13] It deppends if you live or you meet :) [10:13] i know what "ciao" means >_< [10:14] if he's gone, does anyone else know if the breezy-updates thing is sorted out yet? [10:14] mdke, think that he is gone :) [10:20] people is there some alternatives to launchpad ? [10:21] AlinuxOS, for what? [10:21] for translating [10:21] on line [10:21] boh [10:24] bradb, kiko: echo123 in skype to test [10:26] SteveA, skype SUCKS :) [10:27] SteveA, so, do you have time for a quick phone call? [10:27] I want to talk to you about something [10:30] kiko, Ekiga rules then :) [10:30] heh [10:37] Merge to devel/launchpad/: [trivial] Fix https://launchpad.net/products/malone/+bug/29174 (Distribution CVE report assumes bugtask.sourcepackagename != None) (r3126: Brad Bollenbach) === bradb heads off, later all === bradb [n=bradb@modemcable033.209-70-69.mc.videotron.ca] has left #launchpad [] [10:53] lp +branch reports that branches are scanned at least daily, am I right this is currently not true? [11:02] eek! [11:03] https://launchpad.net/products/0.39 and https://launchpad.net/products/0.38 [11:08] kiko: in the next 5 minutes, yes === cyberix [n=cyberix@hoas-fe36dd00-251.dhcp.inet.fi] has left #launchpad [] [11:27] LarstiQ: that's currently true as far as I know, but I have seen less error report from the branch puller script lately... [11:27] one issue at the moment is that there is no reporting about when the last pull occured, whether it succeeded, and so on [11:27] so you cannot really tell whether there is a problem and where it lies [11:28] right [11:28] I believe jamesh is going to work on that pretty soon, since lifeless consider that lack of reporting will cause a degradation in service to rcs imports, and I have not yet found something more urgent for jamesh to do [11:29] though I have an error reporting system (not error visible) of my own I'd need him to help on soon [11:29] LarstiQ, could you report that to launchpad-users? I can get stub to clean it up on monday.. === LarstiQ checks to see how high traffic launchpad-users is [11:30] quite low traffic ATM, it as not really taken off yet [11:31] I'll subscribe then [11:31] kiko: do we have a gmane feed for launchpad users btw? [11:31] probably not yet ddaa [11:32] mh... I guess I should suggest that to stub, since anyway the gmane folks end up asking the list admin. [11:35] you might propose to gmane and then tell stub to accept? [11:36] https://lists.ubuntu.com/mailman/listinfo/launchpad-users claims kiko also has a hand in it [11:37] oh my god [11:37] so it is :) [11:38] ddaa: jamesh is already working on it [11:40] LarstiQ: bad boy, you scared him away! [11:40] lifeless: good to hear [11:41] ddaa: ah well, you'll have to wait till monday then [11:41] I do not have a direct stake, since as a devel I have to be subscribed to the users mailing list as well. [11:42] it's just that I came to be quite fond of gmane, news client have decades of experience in lurking technology === LarstiQ lurks with pipermail mostly === LarstiQ goes sleep before the subscription mail has arrived, will do tomorrow