=== niemeyer [n=niemeyer@200.169.124.132] has joined #launchpad === niemeyer [n=niemeyer@200.169.124.132] has joined #launchpad === tambaqui [n=patricia@200-208-53-25-mns.cpe.vivax.com.br] has joined #launchpad === niemeyer [n=niemeyer@200.169.124.134] has joined #launchpad === niemeyer [n=niemeyer@200.169.124.134] has joined #launchpad === stub [i=stub@sweep.bur.st] has joined #launchpad === Mez [n=Mez@ubuntu/member/mez] has joined #launchpad === stub [i=stub@sweep.bur.st] has joined #launchpad === stub [i=stub@sweep.bur.st] has joined #launchpad [06:47] bug 2162 [06:47] Malone bug #2162: front page cached In: launchpad (upstream), Severity: Normal, Assigned to: Stuart Bishop, Status: Accepted https://launchpad.net/bugs/2162 [06:48] Bug 2162 [06:48] Malone bug #2162: front page cached In: launchpad (upstream), Severity: Normal, Assigned to: Stuart Bishop, Status: Accepted https://launchpad.net/bugs/2162 === stub kicks Ubugtu [06:48] bug stub [06:49] lifeless, jamesh: Would making launchpad emit an Expires: header be a bad thing? [06:49] stub: depends on what you want to achieve === stub [n=stub@costello.z3u.com] has joined #launchpad [06:59] bum [07:03] (12:49:11) stub: lifeless, jamesh: Would making launchpad emit an Expires: header be a bad thing? === stub is missing scrollback in case that was already discussed [07:08] 16:49 < lifeless> stub: depends on what you want to achieve [07:08] 16:51 -!- stub [i=stub@sweep.bur.st] has quit [Remote closed the connection] [07:08] I wondered what I had said [07:09] Our pages are dynamically generated, so browsers should always fetch fresh copies. Although I'd rather they didn't if you hit the 'back' button [07:09] then expires is wrong [07:10] in fact, in general, you can't have it both ways [07:10] either browers are allowed to cache, or they aren't. [07:10] OR [07:10] you teach them how to know when things have changed. [07:10] (vary:) [07:11] read (now) section 14.44 of rfc 2616 [07:14] I'm not sure how that would help us in the Launchpad situation. [07:15] whats the precise situation that we are trying to address ? [07:15] Launchpad content should never be cached, because it is dynamic and could change at any time, and if that breaks the back button tough [07:15] lifeless: People visiting a page for the second time and the information not being up to date [07:16] lifeless: Such as people logging in, getting redirected to the front page, and the front page telling them they are not logged in. [07:16] But the problem exists everywhere - it is just less noticable. [07:17] then vary: *, as the spac says [07:18] A Vary field value of "*" implies that [07:18] a cache cannot determine from the request headers of a subsequent [07:18] request whether this response is the appropriate representation. [07:18] (browsers must meet the non shared cache requirements) [07:18] but the front page is *different* because the cookie: header changes when people log in [07:18] so there is actually a rule we can use there to signal that it should be refreshed. [07:19] we should try very hard to have cachable pages. [07:19] not 'cachable by squid', cachable by the client for reasonable times. [07:19] only some of our pages are infinitely variable over short time frames. [07:20] Almost all of them are - it is just the probablility [07:20] right, and thats what caching is about [07:20] and how much we care about the changes [07:21] until we satisfy If-Matches, we'll perform like a wounded dog if no caching is possible by the client [07:21] consider that this includes hackergotchi and emblems [07:21] and the If* matches and revalidation are still waay suboptimal [07:21] Nah - librarian stuff is never expires. Images and resources like the css will be cachable [07:22] (upload a new hackergotchi and your hackergochi gets a new URL) [07:22] so I think there are two important cases [07:22] one is 'Pages change when I change login'. [07:22] another is 'dynamic content just changed may not show until I refresh.' [07:23] (consider that the pathological case is me being on a page already when you change the content behind it) [07:24] fixing the first one (emit vary: Cookie) will solve the user frustation case, as 'refresh' is part of the web user experience and expectations, but 'refresh on login' is not. [07:25] If I submit a new bug, I expect that bug to show on my 'bugs I care about' list. [07:25] I don't know if it is reasonable to expect users to refresh [07:28] Which would happen if I emit Vary: Cookie for all HTML pages. [07:29] (and nearly all HTML pages change on login, as links disappear and change depending on your rights) [07:30] Vary: * would be correct, but will likely cause browsers to be too aggressive... [07:32] stub: less aggressive than Expires: [07:33] Vary: * lets browsers discriminate between 'back' and 'forwards' [07:33] so as a strawman, listing pages could be '*" [07:33] queries could be '*, expires: ' [07:34] front page could be 'vary: cookie' [07:34] its really just a matter of deciding on the refreshness constraints we are happy with. Once *that* is decided, we can craft caching rules to match, including must-revalidate, vary, and expires headers. [07:53] I think we can define 3 or 4 cases (update on login, update always, volatile). I'll talk to SteveA later about how a page registers its preferred caching scheme. We can then make Launchpad emit the headers we define for scheme that is selected, and a default. Although initially we can just hard code 'Vary: *' to fix issues now and tune later. === stub buggers off for a bit [08:12] right now i'm concerned mostly about the login case [08:13] and, i actually have code on a (converted) branch that handles it, as a prototype spike [08:41] SteveA: How does that branch handle the login case? Set a Vary: * header or similar as discussed above? [08:42] Vary: Cookie [08:43] most pages should be "Vary: Cookie", actually [08:46] Vary cookie means that database changes will not be seen. eg. add a bug, go to your bugs screen, and it won't be there because the cookie has not changed since your last view [08:47] (?) [08:52] stub: no [08:52] stub: it just tells a cache that it can't consider its version of a page valid if the request includes a different "Cookie" header [08:52] it doesn't say "if the Cookie header remains constant, then the returned content will also be the same" [08:55] jamesh: No - it says if the cookie header remains constant then you are welcome to use your cached version, which may give the effect I mentioned [08:56] Or at least, that will be the effect (just not-ing your first statement) === JanC [n=janc@lugwv/member/JanC] has joined #launchpad [08:57] (not that I have a clue how real browsers interpret it) [08:57] stub: see the "while the response is fresh" bit [08:58] morning all [08:58] stub: But that's true at the moment with Vary: Cookie too. As far as I can tell, except for the very few static files served by the launchpad webapp, Vary: Cookie would be an improvement on the current situation. [08:58] it is a little immaterial right now, since we don't provide a web browser or cache a way to tell whether a resource is fresh [08:59] s/at the moment with/at the moment without/ [08:59] stub: we'd need to be providing expiry information for browsers to decide whether the resource is fresh [08:59] Stupid fingers :) [08:59] Only stuff starting with /++resource or /@@/ can ever be considered fresh We need to add the relevant headers. [08:59] or enough information for them to guess: e.g. the Last-Modified header [09:00] stub: I think you are missing the fact that fresh content is usually not cached for more than a second or two [09:00] stub: stuff served with the static resource view sends enough information to allow proper caching [09:00] stub: it sets the Vary header on a special variable cookie that is used only for logging in [09:01] SteveA: doesn't the Vary header work in terms of other header names rather than cookie values? [09:01] s/cookie values/cookie names/ [09:02] So what is the suggestion re: Bug 2162 (which is not just the front page, but every dynamically generated page to some extent)? [09:02] jamesh: its a header-value check [09:02] Malone bug #2162: front page cached In: launchpad (upstream), Severity: Normal, Assigned to: Stuart Bishop, Status: Accepted https://launchpad.net/bugs/2162 [09:02] jamesh: for the listed headers, has the value changed? No -> fresh is ok. Yes -> must revalidate/reretrieve === carlos [n=carlos@23.Red-83-55-110.dynamicIP.rima-tde.net] has joined #launchpad [09:03] lifeless: that's what I thought. SteveA said he was setting the Vary header on a particular cookie [09:04] which I don't think is possible [09:04] morning [09:04] the heavy use of portlets makes it difficult to work out what is cacheable too [09:05] jamesh: the way the authentication works generally, the cookie never changes [09:06] jamesh: so i need to add a new cookie to make the cookie header change at all [09:06] i could change the zope3 session stuff, but this is easier and less tightly coupled too [09:06] SteveA: what I am saying is that you'll either be able to say the resource varies if "the cookie header changes" rather than if "a particular cookie changes" [09:07] so it's an assertion about all cookies for the site [09:07] i have one cookie that is used as a change marker [09:07] the others don't change [09:08] and an add-on to the Request / Response to say "something has changed" [09:08] which increments the cookie's value [09:08] this can be extended to things other than logging in [09:09] SteveA: I don't think the HTTP Vary header will work at that level for you [09:09] we can have an event listener or some such that notices when things change, or pages have been visited that deserve variability [09:09] and changes this cookie [09:09] if you put "Vary: Cookie", a cache will think it's copy of the resource is invalid if you change one cookie or all cookies [09:09] the Vary header is always sent [09:09] exactly [09:10] there is only one cookie that we change [09:10] there are two cookies needed: 1. session, 2. change [09:10] spiv: has your branch for the map generation been merged to rf ? [09:10] the session cookie never changes [09:10] okay. That makes sense [09:10] the change cookie changes when there's been a change [09:11] The other way to handle some of this stuff would be to use ESI, to construct the pages outside of the app server [09:11] that may be a good thing for portlets, eventually [09:12] such that we can define the caching characteristics of each page fragment easily [09:13] there are issues around transactions, though [09:13] so, we'd probably want to have some portlets rendered inline even then [09:13] so that the data comes from the same transaction as the main page [09:13] mmm esi. [09:13] I loike ESi [09:14] lifeless: i'll prod 1332 in RT [09:15] lifeless: Not yet. Give me a moment to take another look over it, and I'll put it up for review. [09:15] ...when it reaches the launchpad queue === hannosch [i=hannosch@e176098165.adsl.alicedsl.de] has joined #launchpad === jamesh wonders how rosetta will handle the new .po file extensions in gettext [09:20] a new "msgctxt" directive to go with "msgid" and "msgstr" === hannosch groans at rosetta: spammers! just got 224 mails telling me about successfully imported files ;( [09:34] hannosch: just use mutt ;-) [09:35] hannosch: can you forward me one of the emails? [09:37] hannosch: steve @ canonical.com [09:37] SteveA: sure [09:40] thanks hannosch. i have the email. i'll talk with the rosetta team about your suggestion of one email per tarball. [09:40] do you want to be subscribed to the bug about it? [09:41] BjornT, stub: henrik had an interesting idea about bug watches [09:41] SteveA: great. yeah subscribe me please. my account at launchpad is hannosch [09:41] that is to add a malone email address as a CC to a bug in an external bug tracker, and use this as a "push watch" kind of thing [09:42] also, there would be no need to explicitly register the watch in launchpad, perhaps [09:42] this, along with some kind of keywords, would make the accessibility stuff easier. they want to record the status of a disparate bunch of upstream bugs. [09:42] in upstream bugtrackers [09:44] SteveA: yeah, doko had the same idea. i would think that we still would have to register the bugwatch explictly, though, to make the connection. [09:44] SteveA: sounds nice, then we'd need ot have a list of whitelisted external bugtrackers URLs that lp would be willing to accept emails from ? [09:44] we do have scripts that should update bugwatch status, though, but i'm not sure if they are working or not. we definitely should take a closer look at bug watches soon. [09:45] anyway, gotta go now === BjornT heads off to the airport [09:46] bugwatch@launchpad.net might do it [09:46] and just have a magic black box interpret the bug information and route it to the right launchpad bug [09:48] jordi, hi, around? [09:52] hi carlos [09:52] SteveA, hi [09:53] can we make the tarball imports send a single email listing the files, and giving the success or failure of each? [09:54] the rosetta user hannosch received a large number of emails as a result of importing a tarball [09:54] Hmm, we would need then a way to store the import status [09:55] every file is imported as a different process [09:55] or perhaps change our script to group the imports by importer.... [09:55] yes, this solution is better... === Mez [n=Mez@ubuntu/member/mez] has joined #launchpad [09:58] SteveA: Interesting idea. We will need to allow 'anonymous comments' though in Malone (comments from email addresses not registered with Launchpad). === koke [n=koke@ubuntu/member/koke] has joined #launchpad [10:05] reviewwe meeting time! [10:05] stub: i imagine we would have a special case for bugs from these bugtrackers [10:05] whos here ? [10:05] spiv: phone call after the review team meeting? [10:05] i'm here === hannosch [i=hannosch@e176098165.adsl.alicedsl.de] has left #launchpad ["Quit"] [10:05] jamesh:, salgado:, bjornt:, spiv: here ? [10:06] SteveA: That assume we know what they are - if we just allow anonymous comments coming in, no registration of external bug trackers is needed for it. Just might be a spam problem. [10:07] daf: ping [10:08] I'm here. [10:08] SteveA: Sure. [10:09] daf: unping [10:09] Untriaged (0) [10:09] Finally!! :-D [10:09] we have a bot here, no? [10:09] ok [10:09] 3's enough to start :) [10:09] and we're a bit late. [10:09] agenda: [10:09] ------- [10:09] Wouldn't it be cool if the bot watched pings and unpings? [10:10] roll call [10:10] next meeting [10:10] any last minute requests ? [10:10] lifeless: yeah [10:10] ... [10:11] (that's yes I'm here, not last minute requests) [10:11] ok [10:11] any last minute requests ? [10:12] ok, meeting over. [10:12] next meeting, will be jan 4th 0900 UTC [10:12] thanks for you attention ;) [10:12] lifeless: what meeting was that? :-) (wow that was *quick*) [10:13] lifeless: Not a problem ;) [10:15] SteveA: call time? [10:16] sivang: ReviewerMeetingAgenda on the wiki === stub notices the --top-fifty option to test.py [10:17] Bug 5814 [10:17] Malone bug #5814: want to know breakdown of test run time by area of development In: launchpad (upstream), Severity: Normal, Assigned to: Nobody, Status: Accepted https://launchpad.net/bugs/5814 [10:18] spiv: sure, let me find my phone... [10:20] SteveA: my landline is best. === lbm [n=lbm@cpe.atm4-0-1301006.0x50a0824e.vgnxx6.customer.tele.dk] has joined #launchpad [10:31] SteveA: Are you looking at Z3.1 this week? I have some stuff to do with the test suite and am wondering if I should put it off until next week. [10:37] Ooh... looks like it already does everything I need... === BjornT [n=bjorn@212.47.97.19] has joined #launchpad [10:44] does lauchpad have a development mailing list? [10:44] please tell me the contact address [10:44] siretart: yes [10:45] BjornT: carlos and I got a bit confused because we were seeing different numbers of open bugs in Malone [10:45] BjornT: we worked out that it was because I'm not logged in, and it wasn't counting private bugs for me [10:45] BjornT: is that deliberate? [10:46] siretart: it is currently a closed subscription list [10:47] does the launchpad-users list exist yet? [10:47] http://lists.ubuntu.com/mailman/listinfo/launchpad-users [10:47] looks like [10:47] no posts yet, though. [10:47] daf: yes, but i agree that it can be confusing. maybe we should list number of public and private separately, so that it's more clear. [10:48] siretart: the users list is open subscription, yes [10:49] BjornT, I think that's a good idea [10:49] jamesh: I just CC:ed it [10:49] BjornT: hmm, I think that might be an unnecessary complexity [10:49] gnarf [10:49] BjornT: is there a security benefit to not giving un-logged-in users the full counts? [10:50] damn semi-moderated mailing lists ;) [10:51] BjornT, we found another UI problem with Malone, I suppose it's a bug... [10:51] BjornT, daf sees https://launchpad.net/products/rosetta/+bug/744 bug as untriaged (that's correct) [10:51] daf files a private bug [10:51] carlos triages bugs [10:51] Error: I cannot access this bug [10:52] BjornT, but I don't see it [10:52] carlos doesn't see the private bug as one that needs triaging [10:52] as untriaged [10:52] because he's not subscribed to it [10:52] but I can read the bug report [10:52] so I have access to it [10:54] lifeless: ping [10:55] daf: well, when i said we should list both counts, i was referring to the bug listings only. it's confusing if it says '1 -> 20 of 369' if you can see all the bugs. then again, that number is dependant of search text, which can be a security issue... [10:55] oh, I see [10:55] I was only thinking about the portlet with the different numbers in it [10:57] yeah, in the portlet it would be ok to list private bugs as well, but it's hard to get it right. both public and private counts take up too much space, and including private bugs that you can't see can be confusing. [10:58] i hope this will be less of a problem when we get more persistent logins, so that you can stay logged in for a longer period of time. [10:58] mmm [10:58] it is a tricky problem [11:00] persistent logins won't happen until someone reviews my PostgreSQL sessions branch [11:05] stub: that branch is currently in salgado's queue. you can nag him about it, and if he hasn't time, he can put in my queue and i'll review it tomorrow. [11:09] time to board the plane, see you later === jblack_ [i=jblack@static-209-158-45-74.scr.east.verizon.net] has joined #launchpad [11:15] jblack: pong [11:20] Kinnison: Do you need the staging database in its current state, or can I resync it from production? [11:21] so gina's going to be run in production sometime soon? [11:22] jamesh: It is running now [11:23] wooyeah [11:23] jamesh: So bugzilla migration can happen if you are happy with the scripts [11:23] elmo: Znarl: either of you ping [11:25] stub: yay. [11:25] we'll need to turn off write access to bugzilla before that happens though. [11:26] also need to check with bradb re: InitialBugContacts [11:29] debugs syncing too... [11:29] I wonder if that is still working... [11:30] lifeless : Pong [11:31] Znarl: rt 1332 [11:31] Znarl: thats highly urgent please. [11:31] jamesh: How is your schedule looking? Someone will need to test out the debugs code to ensure it still does the right thing, and I expect that is either me or you. [11:31] Znarl: I realise you've probably just woken up. [11:31] Znarl: it wasn't quite urgent enough to wake you guys [11:32] lifeless : My work day started an hour and a half ago. [11:32] Znarl: oh, oh :) [11:35] znarl: Cool, you're here. Can I talk to you for a moment? [11:35] jblack : Once I deal with lifeless's request, unless it's urgent. [11:36] jblack_: I need to talk about the other mapping script with you [11:36] stub: when I last looked at that code, it seemed to only handle creating new bugs from deb bugs (only copying the initial debbugs comment), and status synching [11:36] znarl: Lifeless first. I'll talk with lifeless in the meantime. :) [11:36] stub: it'll probably need a bit more work to do full comment synching like debzilla did [11:36] (although it should be possible to do better, since we keep track of message IDs) [11:38] lifeless: that hash doesnt' look like it breaks up well. [11:38] jblack_: its not a hash [11:38] jblack_: it has high locality of reference, which is desirable [11:38] Ok. if its wanted. [11:39] jamesh: Mark was happy with what he is written, so we just need to ensure his code is still working - extra features are later. I'm aware of at least one issue to fix (it is connecting as the wrong db user) [11:43] stub: okay. The first thing to do would probably be to add some tests to make sure it works and doesn't get broken again [11:45] lifeless: hi [11:46] hi [11:46] I have unchanged this: [11:46] from /%d/%d/%d/%d to /%d/%d/%d/%d/launchpad id [11:47] it *was* %d/%d/%d/%d . [11:47] thats what it should be [11:47] It _is_ that. :) [11:47] great. [11:47] I put it back as soon as you said. [11:47] That *IS* the launchpad id. [11:48] thank you. [11:48] I suppose 4 billion products is enough for anyone. :) [11:48] well [11:48] we dont show the launchpad id to the user [11:48] so we can just update our disk format at 3.99999 billion [11:48] The formula itself will need a change. [11:48] but yeah. [11:49] I'm reading it now, we're fine for my lifetime. :) [11:50] Actually, even longer than that. It fails gracefully [11:50] I lied. it doesn't. [11:50] hex = "%08x" % int(branchnum) [11:51] its fiiiine [11:51] It fails on the hundred millionth exactly. [11:51] we'll have to adjust postgresql way before then === daf needs to go out for a bit [11:52] back in about 90 minutes, I think [11:52] stub: we have a script that is not yet in rf main that I'd like to roll out today on gangotri [11:52] ok [11:52] I still have a bug when it comes to nonexistant branches that I need to fix. [11:52] lifeless: Just a single script, or does it need a full launchpad update? [11:53] stub: it needs anew lp branch [11:53] I also think I have one on the lockfile [11:53] stub: I'm inclined to do a separate checkout for now [11:53] ok [11:53] stub: is that ok with you? [11:53] Sure - seperate directory won't affect production in any way === stub tries to remember the name of the new appserver [11:54] vanessa ? [11:54] stub: parallel to the production dir ? [11:55] lifeless: Yes - /srv/launchpad.net/somethingnew [11:56] Znarl: You remember the name of the new Launchpad appserver that we currently arn't using? I think ddaa had bzrsync stuff on there. [11:58] stub : Mmm.. [11:59] stub : Gandwana? [12:04] Yup - looks like it [12:13] thats appserver 2 ? === thisfred [n=thisfred@a80-127-80-154.adsl.xs4all.nl] has joined #launchpad [12:17] carlos: here [12:18] jordi, don't worry, it was about the tin template request [12:18] I assigned you that bug [12:18] nod [12:18] so feel free to close it if you already fixed it [12:18] not yet === cprov [n=cprov@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === matsubara [n=matsubar@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [12:26] good morning! [12:27] jamesh: bugzilla import: is it importing just open bugs, or all bugs? [12:27] SteveA: all bugs [12:28] hi matsubara [12:28] lifeless: Yes - appserver 2. Running breezy so we are not using it yet. I'll switch it on after staging is happy on breezy. [12:29] matsubara: I still didn't manage to attend to that bug, hopefully will do so this evening. [12:31] sivang: no problem. I'm working on another one instead. [12:32] stub: ak [12:32] ack === jinty [n=jinty@205.134.224.215] has joined #launchpad === Mez [n=Mez@ubuntu/member/mez] has joined #launchpad === salgado [n=salgado@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [12:36] Yay testdisconnects pqm failures [12:49] stub: ? [12:49] stub: is there a stale process as pqm ? [12:50] spiv: ping [12:50] lifeless: pong [12:50] lifeless: Not that I can see [12:50] stub: weird [12:50] spiv: should I hack the cronscript to call rsync ? [12:50] spiv: via 'system' ? [12:50] spiv: and what frequency do you suggest ? [12:51] Hmm, I'm not sure what's the best taste for the rsync step. I'd be tempted to make it part of the cron line rather than part of the script. [12:51] For frequency, how about 1 hour (to pick a random value :) ? [12:51] spiv: via && ? ewww [12:51] cprov, Should we allow mirrors to have an httpbaseurl, an ftpbaseurl and an rsyncbaseurl at the same time or are they mutually exclusive? [12:52] The script should be quick fast, it's database needs are fairly simple. [12:52] s/quick/quite/ [12:53] (It could almost certainly be made faster with a single explicit SQL statement rather than the current SQLObject code, if needed). [12:53] lifeless: How do you want to expose via launchpad id to ddaa? A rewrite rule? [12:53] jblack: there is a rewrite mapping already given to you [12:53] Two, actually. Those two are in [12:53] salgado: yes, they can have those 3 access methods at the same time, unfortunately we can only check HTTP properly [12:54] jblack: right, I need to know what they look like and what hostname they are on, to answer ddaa's question [12:54] spiv: the reason to put it in the script is to eliminate the tempfilename issue [12:54] I believe ddaa wants /+branches/lpid [12:54] spiv: consider it a bug report :) [12:54] jblack: he doesn't care about the prefix [12:54] SteveA: one other thing I just thought of w.r.t. bugzilla migration: it might be worth trying to generate an apache mod_rewrite map to redirect show_bug.cgi-style URLs to the corresponding Launchpad page [12:54] lifeless: tempfile(1) [12:54] jblack: just needs to know [12:54] lifeless: I'm confused you already have a private launchpad port open - can the file not be transferred via that? [12:54] We currently have these two: [12:54] RewriteRule ^(~[^/] +/[^/] +/[^/] +)/ branches/${branch-list:$1}/ [12:54] RewriteRule ^branches/([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})/ branches/$1/$2/$3/$4/ [12:55] spiv: I am so not putting all that in crontab. Which means another script. Which may as well be python [12:55] elmo: different behaviour, this is conceptually able to be pushed on-demand, the pull behaviour occurs via cron [12:56] lifeless: ok, define high priority - do I need to drop everything else I'm doing or can it wait till this evening? [12:56] elmo: but yes, we can in theory do that in the future, though I'm not sure it fits the problem well. [12:56] elmo: I'd *like* to have this working before I go to bed. [12:56] lifeless: well, I'm super not keen on ssh in either direction - will normal rsync do? [12:56] elmo: it was not 'wake you and znarl up' when we noticed at 11am. [12:56] rsync is all we need [12:57] my documentation was in hindsight unclear. Heres a clearer statement [12:57] rsync outputfile [12:57] bah [12:57] rsync afile vostok.ubuntu.com[whateveryouwanthere] :/srv/sm-ng/config/launchpad-lookup.txt [12:57] ^ if that works from the user launchpad on gangotri, I am happy. [12:58] ok [12:59] spiv: you have a question in email [12:59] Ok. [01:00] jblack: that second rule is the interesting one, it seems inactive [01:00] spiv: ^^ [01:00] lifeless: yeah [01:00] RewriteRule ^branches/([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})/ branches/$1/$2/$3/$4/ [01:00] I suspect it should be: [01:00] ^branches/([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})/ /$1/$2/$3/$4/ [01:00] ok [01:00] lets try that [01:01] k [01:01] mind if I change that to Rewriterule ^\+branches as well? [01:02] works for me [01:02] I'd actually like this on a new VHost if possible [01:02] so that it does not expose to the outside at all [01:02] but that can wait for once its all working in whatever form [01:02] Thats no problem to me... what do you want for a hostname? [01:02] oh, ok [01:05] elmo: how do I reload apache on vostok? [01:05] You gave me sudo access for it a while back, but I've since forgotten which script it was. [01:06] jblack: I don't think I ever did for vostok [01:07] ah. mind reloading apache2 on vostok for me? [01:07] jblack : I checked this a while ago, you can't reload apache I believe. [01:07] jblack: sudo apache2ctl graceful [01:08] jblack: but at some stage (just not today or this week) we may need to revisit this and how slack we/I've gotten WRT permissions on vostok ;) [01:09] Yeah. We need that conversation. I'd like it really soon though, because not having ssh access to the supermirror account is causing heck on rollout. [01:09] ok, [01:09] more cron spam [01:09] spiv: may want to disable the 'info lockfile acquired' :) [01:24] jblack: how you going with that redirect [01:24] I'm trying. [01:24] jblack: I get infinite redirect now [01:24] I have this: [01:24] RewriteRule ^(~[^/] +/[^/] +/[^/] +)/ /\+branches/${branch-list:$1}/ [01:24] RewriteRule ^/\+branches/([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})/ /$1/$2/$3/$4/ [01:25] which gives me this: [Wed Dec 21 12:25:06 2005] [error] [client 209.158.45.78] File does not exist: /srv/sm-ng/mirrors/+branches [01:26] oh, duh [01:26] ok [01:26] ^\+branches [01:26] The first rule gobles up .* [01:26] I think is what you want [01:27] shouldn't [01:28] it needs ~ === carlos -> lunch [01:28] so the it wonter interact [01:28] no I think the problem is the leadng / [01:28] lifeless: rsync target is launchpad@bazaar.launchpad.net::config/launchpad-lookup.txt [01:28] lifeless: password is in /srv/launchpad.net/rsync-password [01:28] WFM [01:29] NB: you need to use b.lp.net, not vostok (and that's a feature) [01:29] ok [01:29] lifeless: also be careful of permissions on vostok, they're delicate, but will do for now [01:29] I'm AFK for a bit, but please shout soon if it's not sufficent as I have to go to the DC [01:29] elmo: how do I tell rsync the password ? [01:30] elmo: launchpad:pw@... ? [01:30] Nope, that didn't do it. Nor did ^\\+ [01:30] jblack: I know that spiv tested this [01:30] lifeless: RSYNC_PASSWORD or --password-file [01:30] jblack: so lets reset to what he had. [01:31] lifeless: (btw, I didn't intend that rsync-password file to be final, it's just a temporary thing, if you keep it in a file, please put it somewhere more sane :) [01:31] elmo: oh, ok [01:31] uhm crontab safe enough ? [01:32] yeah [01:36] ok [01:36] jblack: can you check launchpad-lookup.txt [01:36] it should be valid now [01:36] elmo: thank you hugely [01:36] lifeless: Looks like it has useful data [01:37] jblack: ok [01:37] jblack: ok, show me your current rewrite rules ? [01:38] I've disabld that one for the moment [01:38] ok, can we go back to what you had an hour ago ? [01:38] i.e. both enabled, with spivs values which we know to be wrong ;) [01:40] I'm guessing that you're not aware that I'm talking to spiv [01:40] I'm not [01:40] may I suggest this channelo [01:40] is an appropriate forum === niemeyer [n=niemeyer@201.23.160.9] has joined #launchpad [01:41] Ok. I've got progress. ;) [01:41] Of a sort. [01:41] The / is necesasry. [01:41] what do you mean 'of a sort' ? [01:42] The rewrite rule is rewriting [01:42] However, its rewriting the wrong thingh [01:42] show me ? [01:42] 209.158.45.78 - - [21/Dec/2005:12:42:45 +0000] [bazaar.launchpad.net/sid#80b7f30] [rid#81961e0/initial] (2) prefixed with document_root to /srv/sm-ng/mirrors/00/00/05/31/ [01:42] 209.158.45.78 - - [21/Dec/2005:12:42:45 +0000] [bazaar.launchpad.net/sid#80b7f30] [rid#81961e0/initial] (1) go-ahead with /srv/sm-ng/mirrors/00/00/05/31/ [OK] [01:43] the rule I meant :) [01:43] oh [01:43] RewriteRule ^(~[^/] +/[^/] +/[^/] +)/ branches/${branch-list:$1}/ [01:43] RewriteRule ^/branches/([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})/ /$1/$2/$3/$4/ [01:44] All of the branches sm-mg writes are in /srv/sm-ng/mirrors/00/00/02/... [01:44] ok [01:44] the doc root is /src/sm-ng/mirrors to right ? [01:44] /srv/sm-ng/mirrors actually [01:45] yhehe [01:45] thats what I meant [01:45] ok. [01:45] I'm falling asleep. [01:45] so its infinitely redirecting [01:45] which is a two-step problem [01:45] I get 404s [01:45] Good luck :) === thierry [n=thierry@modemcable084.72-131-66.mc.videotron.ca] has joined #launchpad === spiv -> bed [01:46] the first step is that something is issueing 302s [01:46] spiv: did you have this working ? [01:46] lifeless: On my local system, yes. [01:46] spiv: differences ? [01:46] My email gave all the information that seemed relevant to me. [01:46] The url needed for launchpad id lookup is /branches/00000531/ [01:46] lifeless: Sorry, I'm just too tired to be helpful right now. [01:46] spiv: ok, np [01:47] jblack: lets focus on the name mapping first === SteveA [n=steve@195.182.78.95] has joined #launchpad === spiv -> really bed. [01:47] sure [01:47] what does http://bazaar.launchpad.net/~mdz/ltsp/ubuntu-main/ generate for youo, and whats the rewrite rule for it ? === SteveA 's DSL comes back [01:49] Heh. Lets slow up for a moment? [01:49] jblack: ok [01:49] The problem with the infinit redirect is the two rewrite rules [01:50] ok. comment out the one for b.l.p/xxxxxxxx [01:50] (because if that goes on a different vhost anyway, it wont be an issue) [01:51] done [01:51] ok [01:51] so whats the other rewrite rulle look like ? [01:51] # RewriteRule ^\/branches/([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})([[:xdigit:] ] {2})/ /$1/$2/$3/$4/ [01:52] sorry, the uncommented one [01:52] RewriteRule ^(~[^/] +/[^/] +/[^/] +)/ branches/${branch-list:$1}/ [01:52] ok [01:52] can you change that to [01:52] RewriteRule ^(~[^/] +/[^/] +/[^/] +)/ ${branch-list:$1}/ [01:52] sure. [01:53] I think its missing a leading / [01:53] well [01:53] 220.240.131.107 - - [21/Dec/2005:12:53:27 +0000] [bazaar.launchpad.net/sid#80d1f98] [rid#81cf200/initial] (1) pass through /~mdz/ltsp/ubuntu-main/ [01:53] ok [01:53] so lets add [01:54] RewriteRule ^/(~[^/] +/[^/] +/[^/] +)/ ${branch-list:$1}/ [01:54] 209.158.45.78 - - [21/Dec/2005:12:54:03 +0000] [bazaar.launchpad.net/sid#80c9f78] [rid#81800b0/initial] (2) local path result: 00/00/02/13/ [01:54] Thats not what I did actually [01:54] what did you do ? [01:54] RewriteRule ^\/(~[^/] +/[^/] +/[^/] +)/ ${branch-list:$1}/ [01:54] but that gave a 400 [01:54] wont work [01:55] Ok. thats close [01:55] RewriteRule ^/(~[^/] +/[^/] +/[^/] +)/ /${branch-list:$1}/ [01:55] ok === beyond [n=beyond@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [01:55] Its looping still [01:55] now its directing blarh/ to blarh/index.html [01:56] Yeah [01:56] and that is missing [01:56] whats strange is the repeat redirect [01:56] theres something else in your config causing this [01:57] 209.158.45.78 - - [21/Dec/2005:12:56:50 +0000] [bazaar.launchpad.net/sid#80b9f38] [rid#8197100/subreq] (2) prefixed with document_root to /srv/sm-ng/mirrors/00/00/02/13/ [01:57] 209.158.45.78 - - [21/Dec/2005:12:56:50 +0000] [bazaar.launchpad.net/sid#80b9f38] [rid#8197100/subreq] (1) go-ahead with /srv/sm-ng/mirrors/00/00/02/13/ [OK] [01:57] I think the redirect is catching again [01:57] no [01:57] it cant match, theres no ~ [01:57] its sending replies to the browser [01:58] I've checked with tethereal [01:58] SteveA: around? [01:59] I'll happily paste you the whole virtualhost directive in msg [01:59] might be in the default section [01:59] which affects all vhosts [01:59] That'll take elmo. Thats outside of my control [01:59] daf: yes [01:59] this is what happens [01:59] GET /~mdz/ltsp/ubuntu-main/ HTTP/1.1\r\n [02:00] HTTP/1.1 301 Moved Permanently\r\n [02:00] .. [02:00] Location: http://bazaar.launchpad.net/~mdz/ltsp/ubuntu-main/index.html/\r\n [02:00] thats a different rule kicking in [02:00] now [02:00] SteveA: carlos and I have triaged all the bugs in Rosetta [02:01] branch-format is kicking this in too [02:01] SteveA: we're left with 106 open bugs [02:01] oh, I may know [02:01] one sec [02:01] oh? [02:01] SteveA: we're wondering if you had any ideas about how to go about prioritising them [02:01] No. [02:01] ok [02:01] paste it to me baby! [02:01] sure [02:02] msg me? [02:03] stub, jamesh: https://wiki.launchpad.canonical.com/BugzillaImportProcess [02:04] jblack: done [02:04] you're done with what? [02:04] I msged you [02:04] I didn't see anything from you [02:05] daf: how about you and i do a voice call to talk through the bugs? [02:05] msged again [02:05] ack [02:05] it would be nice to have carlos involved, but i think three people would make things slower [02:05] yes [02:05] I agree [02:05] we can call out to carlos on irc later for tricky questions [02:06] and the conferencing stuff doesn't seem to reliable anyhow [02:06] * too [02:06] it wasn't so bad once we got it going [02:06] although carlos' voice kept breaking up for me [02:06] likwise [02:06] and getting it going did take some time [02:07] this is true [02:07] carlos, daf: is there a bug about sending email once for a whole tarball import? [02:08] not that I know of [02:08] is that a bug? [02:08] a user uploading one tarball [02:08] and later receiving 250 emails [02:08] is a bug [02:09] a single action should not result in such a response [02:09] oh [02:09] I got the impression from what you said that the problem was opposite [02:09] yes, that is a bug [02:09] http://people.ubuntu.com/~fabbione/irclogs/launchpad-current.html [02:09] see today's log, seach for hannosch [02:09] hannosch would like to be subscribed to that bug [02:10] I think few enough people have tried to use the tarball upload that they haven't complained much [02:11] hmm, I was trying to get a list of all 121 open bugs at once by setting batch_start and batch_end by hand [02:11] but that doesn't seem to work: it just gives me 20 from batch_start [02:11] i think there is a malone bug on that === daf wonders where dilys has gone [02:12] there should be a hardcoded absolute limit [02:12] although, even that isn't needed now === dilys [i=daf@muse.19inch.net] has joined #launchpad [02:12] because we have timeouts on long queries / expensive pages [02:12] indeed [02:12] so, people should be able to change the batch boundaries [02:13] Within limits, or else people are just going to engineer timeouts [02:14] i don't follow [02:14] if someone gets a timeout, then the page doesn't work [02:14] but it still isn't so expensive [02:14] Indeed. People set their batch size to 5000, and some pages stop working [02:14] if they file a bug, we can say "batch sizes of 5000" are not supported [02:15] if they're messing with the URL directly... [02:15] Rosetta's translation form has a limit of 100 entries per page [02:15] then they can expect that [02:15] quite [02:15] Batch size can be stuffed in the session and used everywhere we batch [02:15] now, if we have a UI for setting prefered batch size, of course there should be limits [02:15] Just a user preference [02:15] and mpt has said in the past that there are different appropriate sizes for different things [02:15] daf, are you going to file that bug? [02:15] (the one SteveA asked) [02:16] yes [02:16] just as soon as I've filed this Malone bug [02:16] ok === Mez [n=Mez@ubuntu/member/mez] has joined #launchpad === JanC [n=janc@lugwv/member/JanC] has joined #launchpad [02:18] hmm, isn't there a way to search for bugs across all products? [02:18] everything in a context [02:18] we'll want this when we have keywords, though [02:19] well, I was thinking that if there was an existing bug about tarballs, it might be filed against Launchpad rather than Rosetta [02:19] so I have to search both by hand [02:19] we should be able to seach within a project, at least [02:20] but, it is not possible today [02:20] stub: when's the code on staging going to be updated? [02:20] erm... now? [02:21] Kinnison: ping [02:21] oh, cool [02:21] i want to see how some of the recent PQM landings look [02:24] I'll set it up for daily code updates again. [02:24] But need to talk to Kinnison about the database [02:24] (or is he on leave?) [02:25] he is on leave, I believe [02:26] i updated https://wiki.launchpad.canonical.com/BugzillaImportProcess [02:27] stub, jamesh: maybe subscribe to it? [02:27] ack [02:28] Staging updated (up to r2930) [02:30] hmm, the site map's CSS causes it to shift around a bit when different things are selected === SteveA mails mpt [02:34] carlos: so the "can't add people to groups" bug, it's quite important if I'm going to create and manage Translation Project teams [02:35] (for tin, xkbconfig etc) [02:35] jordi, I don't understand the issue there... [02:35] the owner of the team will be able to promote anyone either to member or to admin [02:36] carlos: I'm talking about groups, not teams [02:36] Translation Project, GNU Translators, etc. [02:36] jordi, and for the GNU teams we cannot let anyone to do it... it's a rosetta expert task [02:36] jordi, but there you appoint a team [02:36] no a list of people [02:36] so the owner of the team handle the people [02:36] carlos: ok, but a rosetta expert can't do it yet [02:36] I have no perms [02:36] jordi, ok, you cannot appoint new teams, right [02:36] carlos: still, I can't appoint teams [02:37] daf: when do you want to do that call? [02:37] but If that's the issue, I think we already have that bug... [02:37] I just filed it [02:37] and it's Rosetta specific [02:37] no, I think it's older than one month === carlos checks [02:38] jordi, https://launchpad.net/products/rosetta/+bug/1882 [02:38] Malone bug #1882: Rosetta Experts cannot add members to existing groups In: rosetta (upstream), Severity: Major, Assigned to: Carlos Perell Marn, Status: Accepted https://launchpad.net/bugs/1882 [02:39] jordi, so, can I set the other bug as a duplicate of this one? [02:39] so I filed the same bug twice.. [02:39] right [02:39] jordi, you suck :-P [02:39] yup [02:39] the second one was more verbose. :) [02:39] ok, I will set the 1882 as the duplicate === asw [n=asw@karuna.med.harvard.edu] has joined #launchpad [02:41] SteveA: hmm, not sure [02:41] jordi, done [02:41] daf: well, i could make some food now, and we can do it in a while [02:41] ok, I could eat too [02:41] daf: how much longer do you have at work today? [02:42] about 1:45 [02:42] we could both eat, and then do a couple of hours of bug conversation [02:43] ok, sounds good === Mez [n=Mez@ubuntu/member/mez] has joined #launchpad [02:56] Merge to devel/launchpad: Implement http://wiki.launchpad.canonical.com/ProperSignUpWorkflow. r=lifeless (r2931: Guilherme Salgado) [02:57] Gina is up to breezy with no ERRORs [02:58] cool === heyko [n=heyko@tor/session/x-55a39bf7daff8eb6] has joined #launchpad === bradb_ [n=bradb@modemcable033.209-70-69.mc.videotron.ca] has joined #launchpad === mgalvin [n=mgalvin@ubuntu/member/mgalvin] has joined #launchpad [03:09] elmo: still around? [03:10] stub: ping [03:10] stub: check gangotris crontab -e [03:10] stub: for that new script entry. === jblack despeartely hopes karlR is znarl === lbm [n=lbm@cpe.atm4-0-1301006.0x50a0824e.vgnxx6.customer.tele.dk] has joined #launchpad [03:14] SteveA: FYI, branch publication of pulled branches is now live, kudos to jblack, spiv [03:14] partially live. [03:14] its not cronned yet and it breaks if a branch doesn't exist [03:14] jblack: it publishes successfully pulled branches [03:15] jblack: cron it man! [03:15] and I'll do up a test case with you tomorrow [03:15] first thing when you and I are both around [03:15] it publishes successfully until the first unsuccesfully pulled branch. [03:15] And there's a problem iwth the lockfile in that it doesn't timeout. [03:15] jblack: one step at a time. [03:15] hit a bad one, dump. won't restart because... [03:16] i need an admin to help me clean up gnomebaker in launchpad, anyone? [03:16] yeah, one step at a time [03:16] jblack: its not bug free, but it is live. [03:16] live != finished [03:16] you will now get feedback and questions from people, which you could not before [03:16] anyhow, zzzz for me. [03:19] Anybody want me before I do some christmas shopping? [03:26] SteveA: ready when you are === bradb [n=bradb@modemcable033.209-70-69.mc.videotron.ca] has joined #launchpad [03:33] jblack: How do I unlock a branch with bzr? [03:36] lifeless: The --story code was already approved. The branch has been outstanding for a couple of weeks, and if I'm blocked on adding tests for --story it's unlikely that this code will land before 2006. Can I get your sign-off on landing it, if I open a High priority bug on adding a test for it? [03:36] daf: hi [03:37] SteveA: hi [03:38] ready? [03:38] yes === GoRoDeK [n=gorodek@p5083D7D7.dip.t-dialin.net] has joined #launchpad === Mez [n=Mez@ubuntu/member/mez] has joined #launchpad === matsubara is now known as matsubara-lunch === Mez [n=Mez@ubuntu/member/mez] has joined #launchpad [04:40] carlos: saw my addenum to the groups bug? [04:41] jordi, yes [04:41] jordi, the problem is that the system was not designed to have many translation groups [04:41] but it's just a matter of adding the owner concept [04:41] so it should not be too hard to implement [04:43] carlos: yup. But it's clear we need a few more than what we thought. [04:43] for some people it's completely necessary. === matsubara-lunch is now known as matsubara [04:44] salgado, stub: Could you subscribe me to the launchpad-devel mailing list? === lbm [n=lbm@x1-6-00-13-10-7a-d1-e4.k233.webspeed.dk] has joined #launchpad [04:48] jordi, yeah === carlos needs to go out for a while [04:48] will be back later [04:49] SteveA, daf do you need anything from me now? [04:49] I suppose I will be out for an hour or so [04:50] carlos: if you could answer the OOo question... [04:50] which OOo question? [04:51] carlos: you have a minute? [04:51] carlos: wait [04:51] lbm, is it really urgent? I need to leave for an hour... [04:51] doko answered [04:51] jordi, ok [04:51] carlos: it's fine [04:51] ok [04:51] carlos: no, just need a little help to clean up gnomebaker in launchpad [04:51] carlos: will you have a minute later tonight? [04:52] lbm, ok [04:52] lbm, sure [04:52] lbm, anyway, talk with jordi just in case he can help you (if he has time) [04:52] carlos: great [04:52] lbm, I will ping you when I'm back [04:52] hey lbm [04:52] cheers [04:52] see you in an hour [04:52] jordi: hi, maybe you can help me [04:53] lbm: hopefully! [04:53] are you a gnomebaker maintainer? [04:53] well, i'm the translation coordinator for gnomebaker [04:53] i'm a maintainer yes [04:53] but i need to understand this system [04:54] just ask [04:55] it's possible for every user to translate the template in ubuntu packages, right? [04:55] no, only people in the "Ubuntu translators" translator group [04:56] anyone can translate the template in thep roduct, though [04:56] https://launchpad.net/products/gnomebaker/+series/main/+pots/gnomebaker === beyond is now known as beyond-rango [04:58] jordi: okay, are these translations backported to the packages from time to time? [04:59] and how do people get in the "Ubuntu translators" group? [05:01] nevermind about the last question, i didn't realise all the different i18n groups was linked to "Ubuntu translators" [05:11] sivang: are you around? === mez_ [n=Mez@ubuntu/member/mez] has joined #launchpad [05:19] lbm: we're working on the "backported" thing. For now, it's responsability of the translators to move them from one branch to the other, but we have a plan to be able to say "put all my translations I'm doing for gnomebaker MAIN in all ubuntu releases" [05:19] etc [05:24] stub: hello [05:28] jordi: great! so users shouldn't really translate missing strings in the ubuntu package templates? [05:28] yet it is === beyond-rango is now known as beyond [05:32] since all work essentially aren't used [05:32] lbm: they are used in language packs for ubuntu [05:32] lbm: what they should do, is export their work and import it in the distro [05:32] it'll be a lot easier when we have this feature in place [05:33] okay [05:34] jordi: i see one branch, MAIN, which is fint [05:35] but also two "versions" [05:35] why? [05:44] let me see [05:45] ok [05:45] so you have a branch [05:45] which is your CVS/SVN trunk version [05:45] and, someone has registered two releases coming from that branch. [05:46] so when 0.5.4 releases, you can register that release too [05:46] they shouldn't be there [05:47] and what is the difference between release series and branch? which type is "MAIN" in the product? [05:48] i can't see why other people should be able to create these releases [05:55] hmm. [05:55] They shouldn't be able [05:56] if they are able to, it's a very grave bug [05:56] the former maintainer did one of them, but the other person i don't know [05:57] shouldn't i as the maintainer be able to edit all aspects of the product, such as removing those releases? [06:03] yes, these are current limitations in the system. It's improving, but it takes time. [06:04] okay, could you please delete those releases [06:04] what is the difference between release series and branch? which type is "MAIN" in the product? === auth00 [i=auth@fiji.grd.sgsnet.se] has joined #launchpad [06:12] bazaar.launchpad.net isn't reachable for me, should it be? === niemeyer [n=niemeyer@201.23.160.10] has joined #launchpad [06:27] lbm: MAIN is a series [06:27] a Branch is a "bazaar branch", nothing to do with the series [06:29] okay, and branch can also contain translations? === auth00 [i=auth@fiji.grd.sgsnet.se] has joined #launchpad [06:32] i don't get the idea, really [06:34] no [06:34] forget about branches, you should have in mind there are templates for a given series [06:34] and templates for ubuntu releases [06:34] okay :) [06:35] branches is to register a bazaar branch with gnomebaker code, which isn't your case now. === lbm is really looking forward to read some in-depth documentation of launchpad [06:35] aha [06:35] oh, i see [06:35] maybe this helps a little bit, because it explains the difference between the two [06:36] http://wiki.launchpad.canonical.com/RosettaNewImportPolicy [06:37] thanks ;) [06:38] np! [06:38] I know we're missing docs. I'm working on it, but you imagine it's qutie a huge task [06:38] for now, just ask me! :) [06:39] SteveA: I wonder if you have access to removing product releases from a rpoduct page [06:39] if so, can you get rid of those two xqf releases? [06:40] jordi: the two gnomebaker releases in MAIN series also, please === mez_ [n=Mez@ubuntu/member/mez] has joined #launchpad [06:43] SteveA: doh [06:43] I said xqf, I meant gnomebaker! [06:43] lbm: oops! [06:44] :) [06:44] jordi: i can't do that. only stu can remove things, in general. [06:44] ok. [06:44] I'll mail the list. [06:46] done [06:46] lbm: I expect this to be done in the next few hours. [06:47] jordi: thanks alot [06:47] np! [06:47] jordi: are templates (pot) and translations (po) sync'ed from, in this case, cvs yet? [06:48] i see launchpad have the details already: https://launchpad.net/products/gnomebaker/+series/main === jinty [n=jinty@205.134.224.215] has joined #launchpad [06:52] not yet [06:52] tis "syncing" thing is that it's syncing CVS with the bazaar branch launchpad creates for it. === marc`` [n=marek@195.146.147.83] has joined #launchpad [06:53] lbm: for now, you need to manually upload new templates. [06:54] jordi: okay, i'm close to get a basic understanding :) [06:54] keep the questions coming ;) [06:55] jordi: maybe you guys should write a weekly update and throw it at launchpad-users [06:58] Merge to devel/launchpad: [r=jamesh] implement InitialBugConctacts and fix a nasty login() bug (r2932: Brad Bollenbach) === niemeyer_ [n=niemeyer@200.169.124.132] has joined #launchpad [07:01] I come to register, but email of confirm don't come yet... [07:02] hi marc`` [07:03] how long have you been waiting? === sabdfl [n=mark@ubuntu/member/pdpc.silver.sabdfl] has left #launchpad [] [07:04] 10min [07:05] I hope it's automatic... so normally I would have it :) [07:05] jordi: let's say i edit the danish translation of MAIN locally and another guy do it through rosetta, he saves and i upload my changes, how is this merged? [07:05] marc``: well, it should have come to you [07:06] lbm: will depend on the kind of upload you do. [07:06] marc``: can you /msg me the email address you used? [07:06] i'll try sending you a test message from the server [07:06] if you do a "published upload", the guy will have preference [07:06] if not, you'll have precedence [07:07] actually, marc``, that might not work [07:07] SteveA: thanks, I will wait yet... [07:07] jordi: https://launchpad.net/products/gnomebaker/+series/main/+pots/gnomebaker/+upload says nothing about published or not [07:08] unless you are registered with this irc server [07:08] lbm: a general upload (for a pot + all languages) is always considered a published upload [07:08] marc``: if you still have problems later, mail me: steve @ canonical.com [07:09] lbm: compare that to this [07:09] be sure to tell me what email address you use to sign up with [07:09] https://launchpad.net/products/gnomebaker/+series/main/+pots/gnomebaker/ca/+upload [07:11] lbm: see? [07:14] jordi: oh, i see, thanks === gneuman [n=gneuman@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === siretart [i=siretart@tauware.de] has joined #launchpad === stub [n=stub@costello.z3u.com] has joined #launchpad === JanC [n=janc@lugwv/member/JanC] has joined #launchpad === dilys [i=daf@80.1.73.118] has joined #launchpad === Nafallo_away [n=nnnafall@80.237.233.3] has joined #launchpad === \sh [n=nnsherma@80.237.233.3] has joined #launchpad === Kinnison [n=dsilvers@haddenham.pepperfish.net] has joined #launchpad [07:24] lbm, I'm back. It took me much more time than I expected... [07:24] lbm, did jordi solved all your questions? [07:25] carlos: for now :) [07:27] jordi, cool, thanks! === jblack [i=jblack@static-209-158-45-74.scr.east.verizon.net] has joined #launchpad [07:28] :) [07:33] I'm out of office now === kjcole [n=kjcole@pchb1f.gallaudet.edu] has joined #launchpad === marc`` [n=marek@195.146.147.83] has left #launchpad [] [07:47] daf: now I am , what's up? === niemeyer [n=niemeyer@200.169.124.132] has joined #launchpad === xester [i=lfrf@ganza.biz] has joined #launchpad [08:06] bradb: https://wiki.launchpad.canonical.com/BugzillaImportProcess === bradb looks [08:08] SteveA: The status of InitialBugContacts (as per the "To do" item) is that it's landed and ready to go. [08:09] yep [08:09] i added that to the notes [08:09] would you update the notes when the status changes land? [08:10] Sure. [08:10] Do you mind if I remove the todo item about checking the IBC status? [08:11] bradb: does the import script take account of IBC? [08:12] I specifically added PackageBugContacts beforehand so that jamesh could work with it, so it should. jamesh would have to confirm the default assignee => package bug contact conversion. [08:12] so, you can change it to specifically confirm this [08:12] ok [08:14] updated [08:35] carlos: around? [08:35] lbm, yes [08:36] carlos: about translation export [08:36] lbm, yes? [08:37] carlos: rosetta doesn't retain the original comments in the top, which is quite bad [08:37] carlos: many groups have word conventions and comments there [08:38] lbm, hmmm, we store them [08:38] lbm, if you don't get them, it's a bug [08:39] carlos: one second, maybe it's my fault [08:39] ok [08:40] carlos: but there should be a way to edit comments in the top and individual string comments [08:41] lbm, yeah, that's a planned feature [08:41] carlos: great, do you have this list on the wiki? [08:41] the list of features? [08:41] well, we have a RosettaWishList [08:42] planned features, yes [08:42] but I think it's a bit outdated [08:42] okay, let me take a look [08:42] wiki.ubuntu.com/RosettaWishList [08:42] lbm, we have also some things at malone [08:42] okay [08:42] but the place where you can see our priorities is at https://launchpad.net/products/rosetta/+specs [08:43] lbm, the ones Approved with Essential or High priority are the features we are going to implement really soon [08:43] great, thanks [08:44] carlos: did you see the notes on fixing some of the timeout problems in one of the bugs daf and i worked on today? [08:44] on the suggested / wikimode translations [08:44] Where is the latest and greatest LP tree? I need access to the bleeding edge to resolve conflicts/failing tests in the status changes branch. [08:44] I though it would be in /home/warthogs/archives/rocketfuel/launchpad/devel, but my patch is not there. [08:45] bradb: maybe jblack can help with that, and add the answer to the bzr-for-launchpad docs [08:45] bradb: remember about pqm being elsewhere [08:45] it may take a few minutes for them to sync up [08:45] Yep. [08:45] but i do not know the details [08:45] I've been waiting for almost two hours, that's why I ask. [08:46] in a few hours more, lifeless will be around for a definitive answer [08:46] SteveA, yes, I saw them [08:46] it would be good to get these things documented, though [08:46] indeed [08:46] SteveA, and it's a good start to improve that timeout problem, thanks [08:46] carlos: i think fixing that would make a huge difference to people using rosetta [08:47] SteveA, ok, I will implement them now, it's one of the most reported bugs we have atm... [08:47] that's great carlos === eruin [n=eruin@unaffiliated/eruin] has joined #launchpad [09:02] carlos: my fault, comments was exported as well, sorry [09:03] lbm, no worries === lucasvo [n=lucasvo@www.wservices.ch] has joined #launchpad [09:07] is launchpad offering to host a branch of bzr? We need a place to host Edubuntu cookbook === niemeyer_ [n=niemeyer@200.169.124.132] has joined #launchpad === bradb & # not feeling too good, bbiab [09:21] lucasvo, launchpad mirrors bzr branches, yes (or at least will do it soon) but you still need a public place from where launchpad fetchs it [09:22] carlos: ah, ok [09:23] cprov, I added two more questions (the ones at the bottom) to https://wiki.launchpad.canonical.com/MirrorManagement. would you check to see if you know the answer? [09:24] carlos: so it is only a mirror, not meant as a place where all the developers merge togehter? [09:24] salgado: sure === asw [n=asw@karuna.med.harvard.edu] has joined #launchpad [09:26] lucasvo, yes, at least now. Perhaps in the near future it would host archives... Anyway, is better if you talk with lifeless, ddaa or jblack about it [09:26] lucasvo, I don't know all the details [09:26] ok === GoRoDeK [n=gorodek@p5083D7D7.dip.t-dialin.net] has joined #launchpad === highvoltage [n=Jono@196.207.41.251] has joined #launchpad [09:50] hi. any launchpad admins around? === jinty [n=jinty@205.134.224.215] has joined #launchpad === Nafallo_away is now known as Nafallo [10:19] carlos: I think supermirror is the place where archives will be hosted, and launchpad will just watch them? [10:21] sivang, supermirror is part of launchpad at least I think it will be [10:21] highvoltage, hi, what do you need? [10:22] carlos: i need to change the e-mail address my @ubuntu.com forwards to. === snotling [n=snotling@laf31-5-82-235-128-93.fbx.proxad.net] has joined #launchpad [10:22] carlos: ah :) [10:23] hello, there's a package in dapper which is not present in malone -- a package for which i'd like to file a 'bug', an update wish that is [10:24] highvoltage, hmmm, I'm not sure I'm able to do that.... [10:24] carlos: ok, thanks. i'll hang around a bit more. [10:24] highvoltage, what's your current address? [10:25] it currently forwards to jonathan@shuttleworthfoundation.org (from jonathan@ubuntu.com) [10:26] highvoltage, I think it does not depends on launchpad (at least now) [10:26] highvoltage, ask Znarl or elmo [10:26] ah, ok. [10:26] carlos: hey I saw the distro info on gnomebaker today [10:26] highvoltage, they are our sysadmin [10:26] that's very cool [10:26] carlos: I'll contact them, thanks. [10:26] highvoltage, you are welcome [10:27] jordi, ? [10:27] carlos: I hadn't seen that at all yet [10:27] if you go to gnomebaker/breezy, you have the distro info [10:28] jordi, https://launchpad.net/products/gnomebaker/breezy ? [10:28] it's a 404 page [10:30] carlos: no, in the distros/uubntu tree [10:31] jordi, oh! you mean the distro info === niemeyer_ [n=niemeyer@200.169.124.132] has joined #launchpad [10:31] jordi, gina run ;-) [10:32] yeah [10:45] lifeless: ping [10:50] lifeless: Ah, n/m, I see on launchpad@ that you're working on fixing the chinstrap code synching problem. === GoRoDeK [n=gorodek@p5083D7D7.dip.t-dialin.net] has joined #launchpad === jblack [i=jblack@static-209-158-45-74.scr.east.verizon.net] has joined #launchpad [11:03] spiv, around? === kjcole [n=kjcole@pchb1f.gallaudet.edu] has joined #launchpad [11:08] ping any launchpad wizard. ;-) [11:12] what's up kjcole ? [11:13] Hi, I'm looking at launchpad.net and it appears the only way to get a bzr branch there is to import it from something other than bzr. True? [11:14] kind of [11:15] this will be changing during next month [11:15] and you'll be able to sftp push a branch to the supermirror [11:15] and have it appear in launchpad [11:16] morning [11:16] morning lifeless [11:17] SteveA: kjcole: you can have launchpad.net copy your existing bzr branches today. [11:18] how does that work? [11:18] SteveA: login to launchpad, visit your home page, click 'code', click 'add branch' [11:19] bradb: pong [11:19] lifeless: how does that copy my existing bzr branch? [11:20] SteveA: a cron job will copy the branch from the location you give to http://bazaar.launchpad.net/~YOU/product/branchname [11:22] wow. advanced tech [11:22] lifeless: Are you still working on the problem of synching the latest Launchpad code onto chinstrap? [11:23] SteveA: better believe it [11:23] lifeless, so if I wait, my bzr branch will get picked up? (I did the "add branch" several weeks ago.) [11:24] kjcole: yes. [11:24] kjcole: the statistics wont operate until early jan [11:25] kjcole: http://bazaar.launchpad.net/~kjcole/edubunto.cookbook/wip is your branch [11:25] kjcole: thats where it will be published once picked up [11:25] lifeless, oh goodie. ;-) [11:25] bradb: I dont know what you are talking about === niemeyer_ [n=niemeyer@200.169.124.132] has joined #launchpad [11:26] lifeless: The problem BjornT reported to launchpad@: not being able to synch up with the latest revision. === jblack [i=jblack@static-209-158-45-74.scr.east.verizon.net] has joined #launchpad [11:30] bradb: there was something 3 odd days ago now [11:30] bradb: which was fixed [11:30] bradb: are you talking about something more recent ? [11:31] bradb: w.r.t. the story patch, I'm offering to do the tests for it. If it passed the review team without tests before, well - you can of course land it, its not my call to stop it, but I'd much rather that it land with tests. [11:32] *MUCH* [11:32] lifeless: I thought it was the same problem. The most recent revision is not available at chinstrap:/home/warthogs/archives/rocketfuel/launchpad/devel. [11:33] lifeless: I didn't merge --story with the InitialBugContacts merge. I reversed the patch to avoid blockage. [11:34] lifeless: i.e. this rev is not available in anywhere I'm used to looking: http://lists.canonical.com/mailman/private/arch-commits/2005-December/005132.html [11:34] Not having access to this patch is blocking merging the status changes. [11:35] bradb: its being pushed up at the moment [11:35] that takes upwards of 40 minutes or more [11:35] ok. presumably this problem is being fixed then? [11:35] bradb: there is no specific problem here [11:36] bradb: just the general performance issues that are in the pipeline [11:36] bradb: there *was* a problem earlier in the week. [11:37] lifeless: I'm not sure what you mean. I've been waiting to get access to this code for six hours. How is that not a specific problem? [11:37] bradb: thats how long it can take right now [11:37] oh [11:37] An email to launchpad@ might have helped avoid some head-banging. ;) [11:38] but thats an extreme case [11:38] its from you right [11:38] why dont you just merge sideways ? [11:38] I wasn't sure if I could trust that. If I can, I will. [11:39] its been merged (the email is only sent out after pqm passes it by policy). [11:39] it then gets pushed locally on balleny, which is a almost-impossible-to-fail operation [11:40] it then gets pushed to chinstrap, which was failing because of a stale sftp lock, probably because someone killed pqm. [11:40] if the push to chinstrap fails, the local push to balleny is uncommitted. [11:40] so you cant -trust- it. But it *has* passed the pqm test run successfully. [11:40] I hope that helps clarify it [11:42] Clearer. Hopefully this won't meet with the same chinstrap push failure next time. I just want to land. ;) [11:45] if it meets the same failure as earlier this week, pqm will now email you to tell you [11:47] ok. btw, I'm not sure why there's another InitialBugContacts merge request from me in pqm's queue. It seems to have been there for a while now. [11:47] thats this one [11:48] until it finishes the mirror to chinstrap its still the active job [11:48] once that finishes you will get your 'its all ok' confirmation from pqm. [11:48] ah === niemeyer_ [n=niemeyer@200.169.124.132] has joined #launchpad === jblack [i=jblack@static-209-158-45-74.scr.east.verizon.net] has joined #launchpad [12:03] lifeless, thanks for the help. Between you and ogra, I'm slowly digesting it all... I think. ;-) I'm going to run now and ponder the great mysteries of bzr/launchpad, etc.