=== doko [n=doko@217.205.109.249] has joined #launchpad [12:37] lifeless: Hmm, ok. [12:37] carlos: I'm very rarely around at 5am :) [12:50] spiv: that would be muchly appreciated === lfittl [n=lfittl@83-65-244-232.dynamic.xdsl-line.inode.at] has joined #launchpad [01:09] spiv: yeah, I thought it after pinging you :-P === lfittl [n=lfittl@83-65-244-232.dynamic.xdsl-line.inode.at] has joined #launchpad === doko [n=doko@217.205.109.249] has joined #launchpad === zyga [n=zyga@ubuntu/member/zyga] has joined #launchpad === poningru [n=poningru@n128-227-61-6.xlate.ufl.edu] has joined #launchpad === fabbione [i=fabbione@gordian.fabbione.net] has joined #launchpad === Ubugtu [n=bugbot@ubuntu/member/seveas] has joined #launchpad === Kamion [n=cjwatson@83-216-156-196.colinw664.adsl.metronet.co.uk] has joined #launchpad === lamont-work [n=lamont@mib.fc.hp.com] has joined #launchpad === SteveA [n=steve@195.182.78.95] has joined #launchpad === mdke [n=matt@ubuntu/member/mdke] has joined #launchpad === mantiena-baltix [n=vytis@bonamens.lt] has joined #launchpad === \sh_away [n=shermann@ubuntu/member/backslash-sh] has joined #launchpad === Kinnison [n=dsilvers@haddenham.pepperfish.net] has joined #launchpad === Lathiat [i=lathiat@ubuntu/member/pdpc.basic.lathiat] has joined #launchpad === lifeless [n=robertc@static-147.29.240.220.dsl.comindico.com.au] has joined #launchpad === JanC [n=janc@lugwv/member/JanC] has joined #launchpad === dilys [n=dilys@193.28.45.42] has joined #launchpad === sivang [n=sivang@ubuntu/member/sivang] has joined #launchpad === jamesh [n=james@203-59-207-160.dyn.iinet.net.au] has joined #launchpad === spiv [n=andrew@adsl-66-203.swiftdsl.com.au] has joined #launchpad === Znarl [n=karl@bb-82-108-14-161.ukonline.co.uk] has joined #launchpad === sevrin [n=sevrin@202.75.186.154] has joined #launchpad === LarstiQ [n=larstiq@cust.7.157.adsl.cistron.nl] has joined #launchpad === dooglus_ [n=dooglus@rincevent.net] has joined #launchpad === spiv_ [n=andrew@adsl-66-203.swiftdsl.com.au] has joined #launchpad [01:35] Merge to devel/launchpad/: [r=spiv] Fixed the filtering form submission and added the missing tests. (r3107: Carlos Perell Marn) === carlos -> bed [01:45] see you tomorrow! === doko [n=doko@217.205.109.249] has joined #launchpad === mpt_ [n=mpt@222-154-182-215.jetstream.xtra.co.nz] has joined #launchpad === suodla is now known as dous [03:00] Goooooooooooooooooood afternoon Launchpadders! === doko [n=doko@217.205.109.249] has joined #launchpad === stub [n=stub@gb.ja.98.136.revip.asianet.co.th] has joined #launchpad === stub [n=stub@gb.ja.98.136.revip.asianet.co.th] has joined #launchpad === doko [n=doko@217.205.109.249] has joined #launchpad === dous [n=dous@efreet.edu.ms] has joined #launchpad [05:06] stub: I think the value of oops_root_url in the production configs is wrong [05:06] stub: missing a slash at the end. [05:06] jamesh: Yes - I didn't get around to the cherry pick I needed yesterday [05:18] spiv, jamesh: I've tracked down a bug (at least from our point of view) in SQLObject and I think identified the bits that need changing. Details are in the launchpad@ mailing list. I don't suppose either of you know if 'foo is 0' or 'foo is false' are valid under mySQL? It looks like sqlbuilder.py is attempting to generate platform agnostic SQL so fixing this for PostgreSQL will likely break mySQL. [05:22] stub: I don't know much about mysql [05:28] stub: I've only ever seen "IS" used to compare against NULL [05:28] stub: surely Postgres can tell that "=" and "IS" are equivalent for a non-NULL column though, right? [05:30] jamesh: The case we noticed this was a NULLable column. It uses three state logic (approved, not approved or pending) [05:31] stub: SQLObject is a bit of a mess here. sqlbuilder will figure out that "column==None" should be "column IS NULL", but a selectBy(column=None) produces "column = NULL". [05:31] And doesn't seem to have any special casing for booleans, as you've noticed. === spiv checks current sqlobject SVN [05:32] jamesh: I doubt the planner would bother anyway with detecting NOT NULL columns in this case. It needs to be generic, and in many cases there won't be a physical column there. [05:32] spiv: current SVN has the same behavior [05:36] stub: Well, at least SVN appears to make Foo.selectBy(bar=None) emit "bar IS NULL" now. [05:37] But again, only for None. [05:38] spiv: Can you see anyway of making sqlbuilder generate database-backend specific code? ie. fixing this so it only has an effect if you are talking to a PostgreSQL backend? I could patch it now I think, but it would mean we have effectively forked. [05:38] We've already got a painful amount of divergence from upstream :( [05:39] (__eq__ and __neq__ of sqlbuilder.SQLExpression) [05:39] jamesh: do you know how to get urllib2 to make a HEAD request ? [05:40] lifeless: no. You might have to go down to httplib [05:40] jamesh: just found that 'transport.has' in bzr is doing 'get' :[ [05:40] lifeless: actually, if you subclass urllib2.Request, you could ... [05:40] stub: Well, the place in sqlbuilder to hook db-specific stuff is in __sqlrepr__ methods [05:41] override the get_method() method [05:41] jamesh: thanks [05:41] looks like pycurl transport is better already, so I'm going to ignore it :) [05:43] stub: So, there's two parts, I think. [05:44] stub: converters.py has this atm: [05:44] def BoolConverter(value, db): [05:44] if db in ('postgres',): [05:44] if value: [05:44] return "'t'" [05:44] else: [05:44] return "'f'" [05:44] else: [05:44] Which judging from your post to launchpad@ is suboptimal. [05:44] spiv: Yes - that is the other part. But that can be done specifically for postgresql. [05:45] spiv: If I update sqlbuilder however, I don't see a way of doing it without breaking other backends. Which is fine for us, but means it can't be fixed upstream. [05:45] (without refactoring everything - urgh) [05:46] I *think* we can do it by hacking SQLOp.__sqlrepr__ [05:47] With a nasty check for "if db == 'postgres' and self.op == '=' and isinstance(self.expr2, bool):" [05:48] Ahh... [05:48] Which is hardly elegant. [05:48] But should only change behaviour for postgres. [05:48] I don't see how that expression is relevant when talking about SQLObject :-) [05:48] hardly elegant would be an improvement :) [05:48] And hope no-one is silly enough to want "False==Table.q.column" to work as well as "Table.q.column==False"... ;) [05:50] Or, just change the shipit code to not use sqlbuilder ;) [05:51] And again, this doesn't help selectBy at all :( [05:51] This will bite us elsewhere too - we have other boolean flags :) [05:51] Is upstream selectBy using the same sqlbuilder hooks now? [05:52] spiv: https://chinstrap.ubuntu.com/~jamesh/oops.cgi/2006-02-08/B724 <- from queries #24 - #1286 look like they should have been done as a single query. Have you seen this behaviour from sqlobject before? [05:52] stub: No, not at all. [05:52] stub: selectBy invokes self.dbconn._SO_columnClause or some such on the **kwargs. [05:52] The definition of which includes this gem: [05:53] ops = {None: "IS"} [05:54] Anyway, the short answer is the logic that makes "Foo.q.column==NULL" produce "column IS NULL" is totally seperate to the logic that makes Foo.selectBy(column=NULL) produce the same (in current SVN). [05:56] stub: Sure it wouldn't be easier to just remove all boolean columns from our schema? ;) [05:57] Maybe easier to rewrite SQLObject sanely [06:00] jamesh: Yes, unfortunately. [06:02] jamesh: I can't quite remember why it does that, I'll see if I can figure it out. === doko [n=doko@217.205.109.249] has joined #launchpad [06:03] spiv: from playing around a bit, it sounds like a lazyColumns query [06:07] jamesh: That would do it, but we aren't using that feature to the best of my knowledge. [06:07] spiv: bugger. I think it is caused by a bug I just noticed in my __nonzero__ implementation a few minutes ago [06:07] jamesh: Ouch. [06:07] I've submitted the merge request [06:07] Merge to test/launchpad/sourcecode/sqlobject/: [trivial] make SelectResults.__nonzero__() correctly handle self.ops['end'] ==None (r44: James Henstridge) [06:08] there it goes [06:08] What's the 10-second summary? [06:09] spiv: the __nonzero__ implementation tries to do a select query that will return minimal data to determine if any results would be returned [06:10] it has to do some special stuff to handle offset queries, and I was assuming that SelectResults.ops['end'] would be unset if no end interval was set [06:11] instead it seems to be set to None, so the query returns a lot more rows [06:11] Ah. [06:11] I think it is filling the cache with a lot of SQLObject instances for those rows which only have their ID set [06:12] (that's just a guess though) [06:13] Sounds plausible... so long as the behaviour is correct, it shouldn't matter. [06:18] anyway, it should get the limit correct now === mpt [n=mpt@219-89-140-79.jetstart.xtra.co.nz] has joined #launchpad === mpt_ [n=mpt@219-89-157-175.jetstart.xtra.co.nz] has joined #launchpad === jsgotangco [n=jsg@210.4.38.43] has joined #launchpad === doko [n=doko@217.205.109.249] has joined #launchpad === mpt [n=mpt@219-89-148-52.jetstart.xtra.co.nz] has joined #launchpad [08:18] Merge to devel/launchpad/: [trivial] queued user database permissions (r3108: Stuart Bishop) === Mithrandir [n=tfheen@c5100BC63.inet.catch.no] has joined #launchpad [08:37] hmm; it looks like my specs page has a lot of specs which I've never seen before.. a bunch of LP specs. https://launchpad.net/people/tfheen/+specs has such specs as "Publishing morgue" and I can't understand why it's listed on my list of specs? [08:37] Merge to devel/launchpad/: [trivial] more suggested changes to analyse-error-reports.py script (r3109) === mpt [n=mpt@219-89-154-46.jetstart.xtra.co.nz] has joined #launchpad [08:43] hmm [08:43] Mithrandir: there's a dodgy query in there [08:43] thanks for pointing it out [08:44] do you want a bug about it? [08:45] I'll just point it out on the mailing list [08:45] stub: with the query you did for Person.specifications, I think the two subqueries are incorrect [08:45] ok, coolie, thanks. [08:46] stub: they select SpecificationFeedback.id and SpecificationSubscription.id respectively, when they should be selecting ....specification [08:47] yet the tests passed. yay. === ddaa [n=ddaa@nor75-18-82-241-238-155.fbx.proxad.net] has joined #launchpad === carlos [n=carlos@84.76.255.40] has joined #launchpad [08:52] morning [08:55] hi carlos [08:55] SteveA, ping === lfittl [n=lfittl@83-65-244-232.dynamic.xdsl-line.inode.at] has joined #launchpad === doko [n=doko@217.205.109.249] has joined #launchpad [09:05] stub: I regenerated the oops summary reports to try and group timeout errors a bit better (trying to ignore integer and string constant differences in SQL queries) [09:05] what do you think? === iwj [n=ian@xenophobe.extern.relativity.greenend.org.uk] has left #launchpad [] [09:07] mpt: hello === Mithrandir [n=tfheen@c5100BC63.inet.catch.no] has left #launchpad [] [09:10] stub: since the proper rollout, have you picked any patches for shipit? [09:11] jamesh: where are the reports? [09:11] SteveA: There is one going in now [09:12] stub: okay. think it will be done in 20 mins? [09:12] 20 mins the tests will have finished running, then the rollout. So 30/40 mins. [09:12] (assuming tests still pass) === dooglus_ is now known as dooglus [09:14] SteveA, got time for a call? [09:14] stub: https://chinstrap.ubuntu.com/~jamesh/oops-summaries/2006-02-08.html <- it's linked in the mail to the list [09:14] https://chinstrap.ubuntu.com/~jamesh/oops.cgi/summaries [09:14] Ubugtu, pardon? [09:14] spiv: i'd love to rewrite sqlobject sometime... or at least refactor the selection of Converters to use multiadapters on database-type and data-type [09:15] mpt: sure. in 10 mins? [09:15] ok [09:16] oops ubugtu did it again [09:16] oops-a-daisy [09:16] https://chinstrap.ubuntu.com/~jamesh/oops.cgi/a [09:18] we could give seveas a better regex [09:18] jamesh: That looks really good [09:19] jamesh: excellent report! [09:19] mpt: how about some CSS styling love for it? [09:19] oh, and some portlets too. gotta have portlets [09:20] I could move the whole report into a portlet [09:20] jamesh: A minor tweak would be to collapse \$INT, (\s\$INT,)* \$INT to $INT [...] $INT [09:21] (second and third last hard timeouts are really the same) [09:23] what does this $INT stuff mean? [09:23] arbitrary integer [09:23] some string of digits [09:24] The oops will have the real values, but it lets james group queries nicely [09:24] oh i see [09:24] so, collapsing it is only for display [09:24] not for sorting [09:24] well, it does affect the sorting [09:25] if it causes two groups of oops reports to collapse into one, the higher count might put it further towards the top [09:25] or should i say "grouping" [09:27] Sooo.... the test suite isn't passing on our production branch :-/ [09:27] I might have to roll out HEAD [09:27] :-( [09:27] We could give Launchpad a better regex too, I just reported a bug on that [09:27] launchpad a better regex for what? [09:28] for DPOT? [09:28] 771 occurrences of AttributeError: 'POMsgSetView' object has no attribute 'context' yesterday [09:28] jamesh: That might be due to cherry picks [09:28] (One of the errors I'm seeing running the test suite) [09:28] so... tests don't pass on production, but do pass on HEAD [09:28] any database changes since? [09:29] I don't think so [09:29] nope [09:30] i reckon moving from errors to no errors is a good bet [09:32] jamesh: I saw that error and requested stub to cherrypick some code that rewrites that class and indirectly fixes it [09:32] gah [09:32] carlos: Can't cherry pick it due to conflicts [09:32] but I don't understand how is that we got that error if last production updated didn't have any change there (at least from me) [09:32] stub: oh [09:33] stub: give me the production branch and I will fix them for you [09:33] carlos: production branch is broken - the test suite doesn't pass. I'm moving it to HEAD, which will include your patch [09:33] ok [09:37] stub: would you let marilize know when the new code is running? [09:41] stub: thanks for that grant - source accepts as lp_archive@drescher work now [09:41] np [09:43] BjornT: note that we're losing "priority" from malone soon [09:43] while keeping severity, and renaming it "importance" [09:44] oh yeah, i remember that now. === mpt [n=mpt@219-89-129-190.jetstart.xtra.co.nz] has joined #launchpad [09:49] SteveA, back === mpt had Words with the router === SteveA waits for the lag to recover === SteveA waits for the lag to recover again [09:53] mpt: waiting for you to tall [09:53] mpt: waiting for you to call [09:54] SteveA, "call refused" [09:54] how odd === ddaa [n=ddaa@nor75-18-82-241-238-155.fbx.proxad.net] has left #launchpad [] [09:58] Kinnison: Any idea what the current status of GIna running on prat is supposed to be? === ddaa [n=ddaa@nor75-18-82-241-238-155.fbx.proxad.net] has joined #launchpad [09:59] mpt: more router problems? [09:59] SteveA, no, my connection's fine === thisfred [n=thisfred@a80-127-80-154.adsl.xs4all.nl] has joined #launchpad [10:12] oooooh man [10:12] oooooooh man [10:12] A guy [10:12] called, apparently, Pacman [10:12] sent a mail to bazaar@lists.canonical.com [10:13] with subject Ubuntu [10:13] saying: [10:13] > If this software is free why is there a guy on ebay selling copy after copy of this software? Here is a link to one of his Auctions he has lots more! [10:13] > http://cgi.ebay.com/WHY-PAY-300-for-OPERATING-SYSTEM-TRY-OUR-NEW-OS_W0QQitemZ7217957922QQcategoryZ41881QQrdZ1QQcmdZViewItem [10:13] It should be illegal to be so stupid. [10:15] We have to sell some copies or else it will be impossible to pirate it. And if it doesn't get pirated, we lose out on the 3133t users [10:15] BTW, the ebay announce would probably be illegal in many countries for lying advertisment... [10:16] since it's prominently displaying artwork that's not part of the package [10:18] ddaa: the "We are the copyright owner of this product." is probably the main problem with that auction [10:19] oh, that too... but after spending the alloted half a second thinking about it I assumed it was a meant to mean something else... [10:20] at least they don't say "shipping: 6-8 weeks", then use shipit to fulfill the order [10:20] I think this copyright claim might be worth escalating to the business folks [10:23] it also happens in ebay.ph [10:24] i asked about it too but marlize said we don't have power over what happens to a cd when it arrives to the one who ordered it === jsgotangco remembers sabdfl saying it over lunch last week that he doesn't mind [10:26] oh copyright [10:26] jsgotangco: the problem I was pointing out was them claiming copyright [10:26] yeah [10:26] reselling the CDs isn't an issue [10:26] "our" [10:26] or pressing their own and selling them [10:26] yeah that's pretty bad [10:28] also, a number of the screenshots are obviously swiped from the internet rather than being their own [10:29] maybe just write to ebay and let them know the copyright notice is wrong === doko [n=doko@217.205.109.249] has joined #launchpad === lucas [n=lucas@ubuntu/member/lucas] has joined #launchpad [10:39] I've told cvd on #canonical about the auction. [10:40] Kinnison: ping? [10:40] And replied a very polite and informative email to the helpful idiot that posted to the bazaar mailing list in the first place. [10:40] Kinnison: the last few messages on dapper-changes have some very unusual headers [10:41] mdz: I already filed https://launchpad.net/products/launchpad-upload-and-queue/+bug/30938 about that [10:41] malone bug 30938 in launchpad-upload-and-queue "manual source accepts from new result in bizarre mails" [Normal,Unconfirmed] [10:42] ah, so that's what was different about them [10:42] I probably should have tried just one and then waited to ensure the mails were sane [10:43] it seems to take a dreadfully long time for builds to be kicked off after source upload [10:43] source accept rather [10:43] language-support-te was accepted before 09:00, but there are still no builds recorded on https://launchpad.net/distros/ubuntu/+source/language-support-te/1:6.04+20060208 [10:44] I would expect it to have at least hit needs-build after the 09:00 publisher+sequencer run finished [10:47] is there a way to get a machine-readable version of https://launchpad.net/distros/ubuntu/+source/flashplugin-nonfree/+bugs ? [10:49] lucas: Not yet. We want an XML-RPC interface for that sort of thing and RSS feeds but it hasn't been implemented yet [10:50] ok [10:57] ah, language-support-te builds showed up at last [10:57] not quite sure what soyuz was doing in the meantime ... [10:57] mpt: shall we continue on irc? === dholbach [n=daniel@ubuntu/member/dholbach] has joined #launchpad [10:58] hello [10:58] dholbach: dude! [10:58] malone/bugtrackers/ubuntu-bugzilla/ seems to be oopsing [10:58] Did somebody complain already? :-) [10:58] got an oops code for me? === dholbach hugs SteveA [10:59] oops-40c305 [10:59] https://chinstrap.ubuntu.com/~jamesh/oops.cgi/40c305 [10:59] thanks Ubugtu [10:59] dholbach: will have to wait a couple of minutes for it to be rsynced [11:00] Ok. [11:00] jamesh: suggestion for oops page -- if it can't find the oops, include a single redirect to retry after the 0 or 5 minute (and a bit) time, when the rsync will be done [11:02] lucas: hello [11:02] lucas: https://launchpad.net/distros/ubuntu/+source/flashplugin-nonfree/+bugs-text [11:04] lucas: https://launchpad.net/bugs/3204/+text for an individual bug [11:04] malone bug 3204 in flashplugin-nonfree "Font missing after breezy upgrade !" [Normal,Fix released] [11:05] SteveA: where is it documented ? [11:05] lucas: it's a brand new feature, so it isn't well documented. There is a spec about it, though. [11:05] ok [11:06] but i think the feature has progressed beyond the spec [11:06] any plan to output Yaml or XML instead ? [11:06] eventually [11:06] but, this rfc-822 stuff is easy to parse [11:06] (yaml is very easy from python) [11:06] rfc822 is easy [11:06] talk with Seveas about the code he wrote for ubugtu [11:06] yeah, but yaml is easier :-) [11:07] i can't argue with that [11:07] Python YAML support has been buggy in my experience === WaterSevenUb [n=WaterSev@azevedo.astro.up.pt] has joined #launchpad [11:07] dholbach: I'll look into it [11:07] jamesh: i can't see that oops report from dholbach, oddly [11:07] but it's been a while since I've used it [11:08] SteveA: it is a case sensitivity issue. I should fix the oops script to upper case what people give it [11:08] oka [11:08] try the link from http://bugzilla.ubuntu.com/11200 for example. [11:08] got it [11:08] Oh, sorry. [11:09] stub: gina should never be running on prat again (well, unless we decide to import debian) [11:09] dholbach: this is jamesh's area, so as he said, he'll look into it === pitti [n=pitti@ubuntu/member/pitti] has joined #launchpad [11:09] hi guys [11:09] hello pitti [11:09] https://launchpad.net/distros/ubuntu/+source/flex/+bug/30940 [11:10] Sorry, you don't have permission to access this page. [11:10] what's up? [11:10] mdz: I'll look into the headers [11:10] this was a security bug just filed [11:10] and I'm logged in [11:10] SteveA: any idea whether this changed recently? === SteveA looks [11:10] IIRC I could see security bugs a while ago [11:10] pitti: you (or a team you are a member of) needs to be subscribed to the bug [11:11] who is [11:11] mirko@pittschaft.net ? [11:11] jamesh: dooglus just filed that bug, but do people explicitly have to subscribe the security team? [11:11] pitti: you can see it now [11:11] but i am concerned that mirko@pittschaft.net has the launchpad name 'pitti' [11:11] i almost subscribed that person to the bug instead of you! [11:11] oouch [11:12] https://launchpad.net/people/pitti is pitti [11:12] https://launchpad.ubuntu.com/people/pitti <- me [11:12] right [11:12] interesting [11:12] i wonder why launchpad told me that mirko@pittschaft.net was pitti... [11:13] https://launchpad.net/people/mirko-pittschaft -> display name: "pitti" [11:13] BjornT: can you help answer pitti's question? [11:13] Kinnison: kamion filed a bug about it already, see slightly below that [11:13] thanks Kamion [11:13] i'll bring this up with salgado [11:13] jamesh: so, do people explicitly need to sub the security team? or will that happen automatically usually? [11:14] SteveA: ok, thanks Steve for handling that [11:14] mdz: thanks, Got that now [11:14] pitti: at the moment people need to subscribe the security team explicitly, yes [11:14] BjornT: ok, good to know for the future [11:15] BjornT: any plans to change that so that the security team for a distro is automatically subscribed to private bugs? [11:15] or something like that? [11:15] pitti: there are plans to have security teams subscribed automatically, i'll see if i can find a bug or spec that specifies it === pitti suggests ubuntu-security [11:15] that's a team I recently created [11:15] we should ask bradb about it later today [11:15] pitti: i don't think we have code to do this yet, but we'll check with brad later [11:16] ok, for now I assume that dooglus just subscribed 'pitti', which just caught the wrong person [11:16] pitti: no, dooglus didn't subscribe anyone [11:16] he just assumed it would work [11:16] I didn't subscribe anyone. [11:17] it told me I have to 'manually CC it' to the people I want to be able to see it. [11:17] that's why I asked who should see it [11:17] (which is a good assumption). it is ithat almost subscribed the wrong person [11:17] ah, ok [11:17] pitti, SteveA: https://wiki.launchpad.canonical.com/SecurityTeams, check with bradb about the status of it [11:17] I didn't assume it would work, either. I went to #ubuntu-devel asking who I needed to subscribe [11:17] Can somebody confirm, that Ubuntu bug 11200 wasn't moved over to Launchpad? At least, I can't find in searches. [11:17] malone bug 11200 in linux-source-2.6.15 "Therm modules fail to load on 1st gen powerbook G4" [Normal,Rejected] http://launchpad.net/bugs/11200 [11:17] dooglus: thanks for being a test guinea pig :) === dholbach strangles Ubu. [11:17] dooglus: okay. i would have assumed it would work :-) and been wrong. [11:17] I would never assume that anything to do with launchpad would 'just work' ;) [11:18] dooglus: harsh [11:18] just kidding [11:18] (me too) [11:18] dholbach: all better [11:18] jamesh: Woohoo! :) [11:18] Thanks. === mpt [n=mpt@219-89-129-190.jetstart.xtra.co.nz] has joined #launchpad [11:19] TimeOut. I have been unable to process your humor. Please report this failure in the form of a joke, which I will also fail to process. Code (435234). Thank you. [11:19] gargh. It recreated a bugs.gnome.org bugtracker :( [11:20] mpt: can you put a .css in your public_html on chinstrap, and ask jamesh to point the oops summaries at it. [11:20] then you can tweak the css independently. [11:21] oh, ok [11:21] i mean, an empty css file, or one containing just the css that james is currently using === mpt was just starting to tweak the Python-generated CSS [11:21] jamesh: is there a way to find out how many bug watches pointing to Ubuntu bugs were created before the migration? [11:21] dholbach: for future reference, the URL of bugzilla.gnome.org is not bugs.gnome.org [11:22] ... how do I put a file on chinstrap? [11:22] jamesh: do you think we need aliases for bugtrackers? [11:22] mpt: ssh [11:22] mpt: scp, rather [11:22] daf: there is a creation date in the BugWatch table [11:23] mpt: open a nautilus window, and choose "Connect to Server" from the file menu [11:23] SteveA, why wouldn't this CSS belong in the Launchpad tree? [11:23] jamesh: perhaps we can ask Stuart to find this out so we know how many bugs might not have been imported [11:23] mpt: because i want it to work right away [11:23] ok [11:24] james can sort it out in the launchpad tree afterwards [11:24] SteveA: aliases might be useful (especially if we start to automatically create bug watches from text more [11:25] the bug I raised and set to be 'hidden' now tells me "This bug has not yet been reported in malone (upstream). Do you want to report it?". is that asking me if I want to 'unhide' it? Or what is it really meaning? [11:25] Kinnison: ok. I guess prat can be handed back to elmo then. [11:26] SteveA: of course, having multiple URLs for a bug tracker isn't that great from the other end either. We ended up configuring http://bugs.gnome.org/ to redirect to bugzilla.g.o because of cookie issues [11:26] i see [11:28] stub: yes [11:28] jamesh: erm, wouldn't that involve changing a HUGE load of bug watches? [11:29] dooglus: it means that you looked at it from a URL that implied you were coming to it as a Malone bug, e.g. https://launchpad.net/products/malone/+bug/... [11:29] Kamion: that's exactly what I did. sorry! === stub [n=stub@gb.ja.98.136.revip.asianet.co.th] has joined #launchpad [11:29] dooglus: no need to apologise [11:29] Kamion: is there a URL I can use which implies I don't know what product or distro is it for? [11:29] dholbach: nah. I cleaned them up the majority after the migration [11:29] dooglus: since Malone bugs can be on more than one entity - so if you come at it from a URL that implies a different entity then it wonders if you might want it filed there too [11:29] dooglus: any suggestions on how we might improve the text you saw to make that clearer? [11:30] just "show me bug 12345" [11:30] jamesh: I see. [11:30] dooglus: https://launchpad.net/bugs/... [11:30] dooglus: /bugs/12345 [11:30] dholbach: the bugs I just imported referenced bugs.gnome.org again, so the duplicate bugtracker object got created again [11:30] dooglus: (yes, the UI is odd, though) [11:30] Ah, right. [11:30] that re-writes the URL [11:31] I want it to stay as "/bugs/12345" to I can easily remove the 12345 and put 23456 instead, without having to remove all that other stuff it's added to the URL [11:32] dooglus: if you are using firefox, create a bookmark to "https://launchpad.net/bugs/%s", and set the keyword to "lpbug" [11:32] dooglus: then you can just type "lpbug 1234" in the URL bar to go to the bug [11:32] I think the "This bug has not yet been reported in malone" message was particularly confusing since it *has* been reported in malone (since malone is the system which holds all the bugs). It just hasn't been reported *against* the malone *component* or some such. [11:32] jamesh, https://chinstrap.ubuntu.com/~mpt/oops.css [11:33] jamesh: good idea [11:34] dooglus: that's a good point [11:34] dooglus: could you file a bug against malone saying so? :) [11:34] SteveA, when you've finished reviewing SimplifyingMalone and FixingProjects, https://wiki.launchpad.canonical.com/DuplicateBugHandling is ready [11:37] daf: is malone an 'upstream product'? I thought it was internal? [11:37] malone is not free software, no [11:37] but we track its bugs in Launchpad [11:40] dooglus: in that specific case, "upstream" is a misnomer. But it's reasonable to expect that people filing bugs in malone know enough not to be confused by that. [11:40] s/in/on/ [11:41] "upstream" only makes sense if you happen to be downstream of the upstream === doko_ [n=doko@217.205.109.249] has joined #launchpad [11:41] jamesh: exactly [11:41] ddaa: I wouldn't make that assumption. when malone crashes it tells you to raise a bug against malone... [11:41] yeah [11:41] dooglus: we're changing that, i think [11:41] ddaa: that happens to everyone, doesn't it? or is it picking me out for regular special treatment? [11:41] there's a launchpad development meeting in 1 hour or so [11:41] mpt: thoughts on the term "upstream"? [11:41] and on the agenda is whether we should encourage people to file support requests rather than bugs [11:42] about problems with launchpad [11:42] daf, before I started working on Launchpad, I'd never heard the term "upstream" used about software [11:42] because often people really want to get on with using launchpad, and find a workaround [11:42] and as a secondary thing, want to get the underlying problem fixed [11:42] mpt: well, it's a term taken from Debian [11:42] what do you think about this, dooglus ? [11:42] mpt: it's Debian/Ubuntu jargon [11:42] daf, the question is not so much whether it's good or bad, as whether there's a better way of putting it [11:43] mpt: true -- my question should have been "can you think of a better way to put it?" [11:43] SteveA: last time I checked, the request tracker was essentially unusable. [11:43] for lack of email notifications [11:43] ddaa: and the reson for this is... [11:43] ddaa: that we don't use it! [11:44] nah, e-mail notifications are the chicken AND the egg [11:44] ddaa: but, do bring this up in the meeting [11:44] I actually suggested using it as part of the rcs import workflow at some point. [11:44] dooglus: no, it's not singling you out [11:44] dooglus: Launchpad is very egalitarian about OOPSing on people [11:44] SteveA: but, like all the rest, it fell through the cracks as I was called to some fire or other. [11:45] another thing: is it by design that malone fails to respect leading whitespace in bug reports, and sometimes even line-breaks? [11:46] there's a bug about that, I think [11:46] I've seen it join lines together where I know I've hit return... [11:46] there is? I've not seen it. [11:47] yes, that's the "oh, this must be hard-wrapped e-mail" bug [11:47] That assumption should just be ripped out, really [11:48] it's #3002 perhaps [11:48] bug 3002 [11:48] malone bug 3002 in malone "malone mess comments formating" [Normal,Confirmed] http://launchpad.net/bugs/3002 [11:48] that's one of them [11:49] daf, perhaps we should (1) special-case products that belong to the Launchpad product group to never use "upstream", and (2) only use "upstream" elsewhere where we really need to for disambiguation purposes [11:50] https://launchpad.net/distros/ubuntu/+sources/evolution/+bug/3001 is an OOPS. it doesn't tell me to report it. should I ignore it? [11:50] malone bug 3001 in evolution "evolution crashed at click "send" email" [Normal,Unconfirmed] [11:50] mpt: bug targets are currently formatted as either "$product (upstream)", "$package ($distribution)" or "$distribution" [11:51] mpt: what would replace "upstream" in the first case? [11:51] dooglus, it's a Not Found [11:51] dooglus, because of the way the database works, some numbers don't have bugs [11:51] Kinnison: hi, around? [11:51] carlos: hi [11:52] Kinnison: I'm working on the tests [11:52] mpt: it says 'OOPS' in big red letters... and it's link from https://launchpad.net/products/malone/+bug/3002 [11:52] malone bug 3002 in malone "malone mess comments formating" [Normal,Confirmed] [11:52] daf, nothing at all [11:52] Kinnison: I asked pitti for a pmount build with the translation tarball [11:52] (the other link on that page is also a not found) [11:52] Kinnison: how could I do to validate pitti's gpg key? [11:52] dooglus, uh oh [11:52] stuuuuuuuuuuuuuuuuuub [11:53] mpt: fair enough :) [11:53] carlos: I'm not sure quite what you mean [11:53] mpt: looks like he's written /sources/ instead of /source/ [11:53] dooglus: the URLs got changed slightly since then :( [11:53] Kinnison: when I do the upload, I get: [11:53] raise UploadError("GPG verification of %s failed: %s" % (filename, [11:53] UploadError: GPG verification of pmount_0.9.7-2ubuntu2_amd64.changes failed: Invocation of op_verify: No data: GPGME (7,58) [11:53] dooglus, ah, that's why the description has been changed, to update the URLs [11:53] the two URLs appear in the initial report, and in the 1st comment. the initial report has correct URLs and the 1st comment has 404s [11:53] dooglus: did it give you an OOPS code? [11:54] carlos: Is this in the test harness? [11:54] OOPS-40D348 and OOPS-40D350 [11:54] https://chinstrap.ubuntu.com/~jamesh/oops.cgi/40D348 [11:54] https://chinstrap.ubuntu.com/~jamesh/oops.cgi/40D350 [11:54] dooglus, the 1st comment is an earlier version of the description (that will be much clearer when https://wiki.launchpad.canonical.com/BugHistory is implemented) [11:54] Kinnison: so I suppose I need to add pitti's public gpg key [11:54] oh [11:54] carlos: you need to add the relevant key to the gpgkey sampledata [11:54] Kinnison: distroreleasequeue.txt [11:54] carlos: also you need to add his key to the zeca test dirs [11:54] mpt: we should probably make +sources redirect to +source [11:54] zeca is our keyserver which gets fired up during the test suite [11:55] there's no time stamp on the initial report? only on the comments? [11:55] dooglus: there is, and it's displayed on the left hand side [11:55] daf: ideally +sources/whatever/goes/here to +source/whatever/goes/here too [11:55] First reported: [11:55] 2005-10-09, you mean? [11:55] I don't know if our current nav stuff does that [11:55] jamesh: right, that's what I'm thinking [11:55] ok, I think I know how to do the first step. For the second step... I suppose we have something like the standard .gnupg directory in any place of the source tree, right? [11:56] jamesh, no, *ideally* +sources/whatever/goes/here is the actual URL ;-) [11:56] daf: that's just a date; comments have times and initial reports have just dates? [11:56] dooglus: that's just a matter of formatting [11:56] mpt: ideally we want one URL for each unique resource [11:56] dooglus: I can see why you'd want to see the time also [11:57] mpt: nicer for caching (if we ever handle that right0 [11:57] carlos: The first step simply involves you adding the relevant row to the gpgkey sample data, should be fairly easy, just use gpg --verify to get the keyid of the key, then gpg --keyserver keyserver.ubuntu.com --recv-keys to fetch it locally and gpg --fingerprint to get its fingerprint [11:57] daf: mostly just for consistancy. an initial report is much like a comment really - it has a subject, date, time, author - why not format it the same way? I wouldn't expect to have to look in the left hand side for that information. [11:57] carlos: In order to add it to zeca, look in lib/canonical/zeca/ftests/keys/ [11:57] ok [11:57] carlos: For example, 0x20687895.get in there is what zeca returns for my gpg key [11:58] dooglus: the initial report is included in the comment flow, but only sometimes (yes, I know) [11:58] jamesh, then you get to the problem of defining a unique resource ... for example the bug pages for two tasks are 99% the same [11:58] daf: I always thought the left hand side was there to make the interesting middle third of the screen too narrow to fit useful logfile output into for laptop users. [11:58] carlos: If you need more help on this, cprov wrote zeca and may be of more use [11:58] dooglus: haha [11:58] Kinnison: ok, thanks [11:58] I think that's enough [11:58] dooglus, I like your attitude [11:58] dooglus: it's true that the left and right hand columns tend to be something of a blind spot [11:58] mpt: but they're not the same [11:58] mpt: I think we should stop using the initial report as a description [11:59] carlos: you need symlinks for the subkey key IDs in zeca's keys directory [11:59] mpt: it means you get two slightly-differently-worded things all too often === mpt scratches his chin [11:59] daf, what should we use as the description instead? [11:59] daf: "latest bugs in malone"? I ask you. If that isn't someone just trying to waste the space that should be used for the bug we're currently dealing with... [11:59] jamesh: yeah, I saw it, thanks [11:59] mpt: leave it blank to start with === cprov [n=cprov@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [11:59] daf: what's the chance that the latest bug is of any interest to me? [11:59] mpt: people can either add a proper description [11:59] mpt: or let the comments speak for themselves [11:59] whoa, you're actually serious [11:59] carlos: the PGP signature blob includes the key id of the signing key, which is not always the primary subkey [12:00] that's ... interesting [12:00] mpt: and not make a half-arsed attempt at turning the intial report into a description [12:00] can I maybe switch these side boxes off? [12:00] mpt: it's weird when you edit a description bases on the initial report, and leave in first-person stuff [12:00] mpt: it implies the reporter said things they didn't [12:01] mpt: we can't stop reporters saying things in first person [12:01] jamesh: so I should use the primary one on zeca [12:01] mpt: and we can't stop people who edit descriptions from doing a half-arsed job of it [12:01] dooglus, try a user style sheet with #portal-column-one, #portal-column-two {display: none;} [12:01] jamesh: Surely he only needs the symlinks if he's trying to decrypt? [12:01] mpt: :) [12:02] morning guys [12:02] hi cprov [12:02] mpt: I'd like to still see a list of duplicates of this bug though, for instance. I just don't want to dedicate a whole 30% of my screen to it :) [12:02] mpt: hi mpt [12:02] jamesh: would you edit the latest daily oops summary to point at mpt's stylesheet please? [12:02] mpt: (I've seen a couple of good examples -- I'll forward them to you if I find htem) [12:02] Is the format of OOPS ids likely to change? It is now \d+[A-Z] \d+ (I assume day-of-year, year-since-2006, oops-id) [12:02] https://chinstrap.ubuntu.com/~jamesh/oops.cgi/id [12:02] Ubugtu, shaddap [12:03] daf, if the description looks like it's all the reporter's work, that's a presentation problem IMO === cprov reads the log and try to help carlos [12:03] Seveas: day since jan 1 2006, application-server-letter-id, oops-id [12:03] https://chinstrap.ubuntu.com/~jamesh/oops.cgi/id [12:03] mpt: how can we stop them from being misleading, though? [12:03] Ubugtu: learn to recognise what a real oops id looks like, or give up talking about them [12:03] Seveas: so, always numbers, letter, numbers. it might be numbers, letters, numbers in the future [12:03] Kinnison: my oops linkification code has the same bug :) [12:04] Kinnison, that's what I'm trying to do, the regex is has now is clearly suboptimal :) [12:04] daf: Clearly you also suck :-) [12:04] Seveas: coolio [12:04] some older oops IDs are only letters-numbers [12:04] Kinnison: clearly :) [12:04] Kinnison: i asked for ubugtu to give urls for oopses to help out launchpad developers, despite it being not directly useful for Seveas or other people on this channel. [12:04] hmmm [12:04] Kinnison: Seveas agreed to do it, and he's been improving it as we go. [12:04] @reload Bugtracker [12:04] Seveas: I'm planning to use \d*[abcd] \d+ [12:04] pitti didn't sign the .changes file [12:04] ubugtu is very helpful [12:05] daf: that won't work [12:05] grr, I didn't see it [12:05] SteveA, I'd like to change the way displayWidth="whatever" is handled in ZCML -- is that an upstream Zope problem? [12:05] Kinnison: why not? [12:05] cprov: so, my needs just changed [12:05] daf: Consider that the ftpmaster stuff uses U [12:05] daf: and staging uses S [12:05] good point === niemeyer [n=niemeyer@200.193.149.22] has joined #launchpad [12:05] cprov: I think it's enough if I use one of the testing keys we already have to sign that .changes file [12:05] I now use OOPS-\d*[a-z] \d+ [12:06] SteveA: done [12:06] that should keep most false triggers out [12:06] carlos: if you want me to re-sign them, mail me the .dsc and .changes and I'll do it [12:06] cprov: like Foo Bar [12:06] carlos: my key is already in the test set [12:06] nice red headings [12:06] carlos: good, it'd be easier for you [12:06] Seveas: case independant? [12:06] Kinnison: ok, thanks [12:06] thanks jamesh [12:07] yeah, there's no way to do without since I can only control the regex, not the options [12:07] daf: oops ids will grow more than [abcd] in the future [12:07] OOPS-40A385 [12:07] https://chinstrap.ubuntu.com/~jamesh/oops.cgi/40A385 [12:07] daf: and may have a few letters, not just one [12:07] daf: and may be reported in upper or lower case [12:07] Kinnison: sent [12:08] SteveA: it's already case-insensitive [12:08] SteveA: I'll extend the regex now [12:08] ok, thank you [12:08] SteveA: and add a test case for the false positives we're getting [12:10] mpt: on the oops report, i think we don't need a lot of the bullet-points in the body of the report. [12:10] dooglus: bug 30959 [12:10] malone bug 30959 in launchpad "+sources/something should redirect to +source/somethingo" [Normal,Unconfirmed] http://launchpad.net/bugs/30959 [12:12] mpt: nag: update LaunchpadGoodlification for February [12:12] Heyho! [12:12] daf: it's not right that I can edit the description and it looks like you did it... [12:13] daf, it's not the middle of the month yet [12:13] dooglus: agreed [12:13] mpt: ok, it doesn't say when in the month you do it [12:13] daf, iirc the Google Dance happens around the beginning of the month, so I try to avoid that [12:13] daf: is there any way to tell the difference between an initial report which has since been edited and the 1st comment to an un-edited report? [12:13] ah, I see [12:14] dooglus: if the initial report has been edited, the original version appears underneath [12:14] carlos: replied [12:14] daf: yes, but it looks exactly like a comment, doesn't it? [12:14] dooglus: the edited description is formatted slightly differently [12:14] dooglus, as I said, that will be fixed once https://wiki.launchpad.canonical.com/BugHistory is implemented. [12:14] oh, ok [12:15] Kinnison: cool, thanks! [12:15] carlos: no problem === Kinnison sits and reviews a diff carefully [12:17] daf: how is it formatted differently? ( https://launchpad.net/products/launchpad/+bug/30959 ) [12:17] malone bug 30959 in launchpad "+sources/something should redirect to +source/something" [Normal,Unconfirmed] [12:18] dooglus: the first instance is the description [12:18] dooglus: the second is my initial report [12:18] dooglus: the third is your comment [12:18] dooglus: confusing, isn't it? [12:18] the description defaults to the initial report [12:18] daf: can you see any difference in formatting between the initial report and the comment? [12:18] no [12:18] they are formatted exactly the same [12:19] daf: and can you see my first comment? [12:19] In the time you two took to have this conversation, daf could have implemented 5% of BugHistory [12:19] daf: (comment 2) is the 2nd comment I added [12:19] but the initial report and the comment are formatted differently to the description [12:19] no, I can't see the first comment [12:19] daf: I think it was silently deleted [12:19] daf: possibly because it was an exact copy of the edited description === salgado [n=salgado@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [12:21] carlos: https://chinstrap.ubuntu.com/~jamesh/oops.cgi/2006-02-08/D409 [12:21] carlos: do we have an open bug on this? [12:22] daf: yes [12:22] daf: and it's waiting for a production update [12:22] daf: https://launchpad.net/malone/bugs/3176 [12:22] what's the bug #? [12:22] malone bug 3176 in launchpad "Error when trying to save AbiWord pt-BR translations" [Normal,Fix committed] [12:22] thanks === matsubara [n=matsubar@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [12:24] carlos: https://chinstrap.ubuntu.com/~jamesh/oops.cgi/2006-02-09/B311 [12:27] daf: that submit does not come from one of our forms [12:27] are you sure? [12:27] SUBMIT Save & Continue [12:27] HTTP_REFERERhttps://launchpad.net/distros/ubuntu/dapper/+source/knetworkconf/+pots/knetworkconfmodule/sv/+translate [12:28] I changed it long ago... [12:28] oh, I didn't see the REFERER... [12:28] hmm, what does it say now? [12:28] submit_translations [12:29] ? [12:29] anyway... I'm not sure now if that change was done before my merge last week of PoMsgSetPage [12:29] oh, I see [12:29] the input name, not hte value [12:30] daf: right, sorry [12:31] daf: anyway, the update that stuart is going to install on production changes a lot the translation form and adds more tests too [12:31] cool [12:31] daf: so I'm sure that if that's a bug, it's fixed [12:31] jamesh: one thing i would find useful on the OOPS summary is the HTTP method for the URLs. so, maybe GET https://launchpad.net/foo/bar [12:32] if the header is in a then mpt can tweak the colour or size [12:32] REQUEST_METHOD GET [12:32] what's the "-C"? [12:32] daf: it is a bug in zope [12:32] ah :) [12:32] in fact, in python [12:32] to do with how the cgi lib picks up environment variables [12:33] the -C is ultimately from the command line [12:33] carlos: #3176 seems to have about a million duplicates [12:33] daf: yeah [12:33] that's why I requested a cherry pick [12:33] instead of wait until next Tuesday [12:33] good idea :) [12:34] daf: the problem is that I don't understand how is that we got that error now if last Tuesday update didn't have any patch from me... [12:34] strange [12:44] cprov, Kinnison: I'm getting another error: pmount_0.9.7-2ubuntu2_amd64.deb: Unknown architecture: 'amd64'. [12:45] Meeting in 15 minutes. [12:45] carlos: Hmm [12:45] where should I add amd64 as a valid architecture? === gneuman-zzz is now known as gneuman [12:45] That Dino Solon A. Agcambot guy seems to make a habbit of reporting the same bug 10 times slightly differently each time he does so [12:45] malone bug 10 in malone "It says "displaying matching bugs 1 to 8 of 8", but there is 9" [Normal,Rejected] http://launchpad.net/bugs/10 [12:45] carlos: you need to add the relevant distroarchrelease to the sampledata [12:45] ok [12:45] carlos: yes, add a new distroarchrelease [12:46] We are so totally unprepared for spam [12:48] Kinnison: hmmm, the build is for dapper and we don't have it either with our sampledata... [12:48] Kinnison: If I change the files by hand to be i386 and hoary, would you sign them again? will that work? [12:50] carlos: I can't guarantee it won't break horribly. better to add dapper and dapper/amd64 to the sampledata [12:50] ok [12:50] carlos: or even better, add them within the test only [12:50] Kinnison++ === jbailey [n=jbailey@modemcable139.249-203-24.mc.videotron.ca] has joined #launchpad [12:55] meeting in five minutes? [12:56] yes [12:58] heehee. you said "meeting" === daf sniggers [12:58] jeff has come to mock us [12:58] jamesh: Hey, only the best for the best ;) === mpt doesn't get the joke [12:59] MEETING TIME! [12:59] welcome to the launchpad development meeting [12:59] who is here today? [12:59] me [12:59] here [01:00] me [01:00] here [01:00] here [01:00] me [01:00] me [01:00] me [01:00] me [01:00] me [01:00] jbailey: welcome === iwj [n=ian@xenophobe.extern.relativity.greenend.org.uk] has joined #launchpad [01:00] iwj: welcome [01:01] lifeless: here? [01:01] kiko-zzz: ? [01:01] here [01:01] here [01:01] Hi. [01:01] here === bradb [n=bradb@modemcable033.209-70-69.mc.videotron.ca] has joined #launchpad [01:01] hi bradb [01:01] here [01:01] let's go [01:01] hi, here [01:01] == Agenda == [01:01] 7 here, 7 me, 2 hi [01:01] * Roll call [01:01] * Agenda [01:01] * Next meeting [01:01] * Activity reports [01:01] * Items from last meeting [01:01] * Launchpad oops milestone report [01:01] * Production / staging (stub) [01:01] * Any details about the developer summit in May? (AndrewBennetts) [01:01] * Stopping tests after the first error. (AndrewBennetts) [01:01] * Emphasizing support requests rather than bugs on Launchpad (JeffBailey) [01:01] * Ian Jackson's upstream bugs use-case. (SteveAlexander) [01:01] * Keep, Bag, Change [01:01] * Three sentences [01:02] === niemeyer is around as well [01:02] lifeless sends apologies [01:02] next meeting -- same time next week? [01:02] any objections? [01:02] 4 === mpt yawns [01:02] 3 [01:02] 2 [01:02] 1 [01:02] swap me and Ian please? [01:02] (If ian's okay) [01:02] NP. [01:02] I'm still waking up and writing. [01:02] hmm, Kinnison would you replace the channel topic please? [01:03] it seems to have gone missing [01:03] jbailey: ok [01:03] * Activity reports === ..[topic/#launchpad:mpt] : launchpad.net | developer meeting: Thur 16 Feb, 1200UTC (wiki:MeetingAgenda) | launchpad-users@lists.canonical.com (wiki:MailingLists) | Channel logs: http://tinyurl.com/72w39 [01:03] Up to date [01:03] up to date [01:03] up to date [01:03] Up to date [01:03] up to date [01:03] up to date [01:03] up to date === SteveA is not up to date this week. [01:03] up to date [01:03] up to date [01:03] up to date [01:03] up to date (well, it's in the mail...) === SteveA remembers about not /me-ing too late [01:04] I'm three days behind [01:04] I missed some days last week, but I'm back on track since monday [01:04] not up to date [01:04] I'm sending two right now, which'll put me up to date [01:04] kiko-zzz: wake up === carlos will be up to date tonight [01:04] cprov: would you call kiko to see if he is coming? [01:04] jblack: ping [01:05] daf: jblack is at a conference, i think [01:05] daf, he's coming [01:05] SteveA: yes, will do [01:05] not a bad show overall on activity reports. [01:05] ahoy [01:05] thanks launchpad developers! [01:05] * Items from last meeting [01:05] I am up to date [01:05] : Kiko to talk to James (?) about dependency packages [01:05] sorry for being late, was assisting a kid who was run over by a car [01:05] wow [01:06] tell us about it later, maybe [01:06] Dafydd to try and make old meeting actions distinct from new ones in meeting summaries [01:06] I didn't do that, but I can [01:06] kiko: also, there has been mail traffic with mdz and jblack on the subject [01:06] daf: ? [01:06] SteveA: I tried that with last week's summary === ddaa is impressed by kiko's excuse-making skills ;) [01:06] Steve to work out a doc about how we act on oops reports [01:06] SteveA: what do you think? [01:06] I'm aware [01:06] SteveA: fwiw, I am not going to be able to follow up on that [01:06] launchpad-dependencies is in need of delegation [01:06] daf: i'll tell you later, but the MeetingAgenda page is good and up to date, so that you for that [01:07] mdz: okay, thanks. noted [01:07] SteveA: That's cool [01:07] (the doc about oops) [01:07] daf and matsubara have been working on the oops report process. jamesh has been supporting with better report summaries [01:07] daf: please point people at the wiki page that everyone should read, to know how things work [01:07] I have done some work on that too [01:07] Steve to check how asterisk stuff is going [01:07] https://wiki.launchpad.canonical.com/LaunchpadBugTriage [01:07] https://wiki.launchpad.canonical.com/LaunchpadBugTriage [01:08] (I've just replied to Bjorn on lp-users.) [01:08] kiko did some work on that too, analyzing some top timeouts and OOPSes [01:08] thanks kiko [01:09] I have spent some time explaining the process of debugging errors and timeouts using the oops logs to matsubara [01:09] on asterisk, latest news is that it should happen shortly after the DC move (that is on saturday), but is waiting on getting a quote from some supplier [01:09] he'll be writing tests and patches for some today [01:09] kiko: can we get some of these explanations added to the wiki? [01:09] James B to help Daniel diagnose his bzr problem [01:09] We talked [01:09] Jordi to send spreadsheet to Steve [01:09] and decided that it may be an already fixed problem because I was using an old bzr [01:09] jordi: ? [01:10] with jordi's answer (answer when you read this), that concludes items from last week's meeting [01:10] SteveA, it was kinda haphazard but I could try. the patch I sent you is essential, though. [01:10] * Launchpad oops milestone report [01:10] kiko: okay, noted [01:10] daf, matsubara [01:11] SteveA: I've been working on finding/reporting all the top 20 hardtimeouts and programming errors. [01:11] ok, matsubara and I have been assigning OOPS bugs to the new "oopS" milestone [01:11] for now, we're only considering hard timeouts and programming errors [01:11] daf: can we see them in your scrape.py output? [01:11] I'll take care of some of the programming errors in this afternoon. [01:11] SteveA: jordi told me that he's a bit busy at the other job he has so I'm not sure if he will be able to attend this meeting. Let me call him [01:11] I've set up a new page to keep track of these bugs [01:12] https://chinstrap.warthogs.hbd.com/~daf/bugs/oops.py [01:12] carlos: it's okay [01:12] carlos: we'll catch up with jordi later [01:12] ok [01:12] these bugs will also be included in the weeky Bug Report Report [01:12] daf: do we expect to see more bugs added to this milestone? [01:13] absolutely [01:13] we're just getting started [01:13] the daily oops report summaries should categorise the timeouts better now (by replacing string and integer constants in the exception value), which might affect what the top 20 timeouts are for a day [01:13] ok [01:13] jamesh: great [01:13] jamesh: that's excellent news [01:13] jamesh: thank you [01:13] the web reports linked in the last two mailings have been updated [01:13] as a general rule, i think we should prioritize bugs on these oops milestones higher than other bugs, or new features [01:14] what do you think kiko ? [01:14] that sounds reasonable [01:14] we should really try to get crashes down to zero [01:14] that's the aim of the game [01:14] okay. we'll have a more full OOPS session in next week's meeting, when daf and matsubara have done more work on the bugs to be filed, and fixing some of them [01:15] meanwhile, we'll follow up on urgent OOPS fixing on the launchpad mailing list [01:15] any further comments? [01:15] (we have a full agenda today, so i want to keep moving along...) [01:15] * Production / staging (stub) [01:15] Might want to ignore tomorrows oops report - the update from earlier today will fix a number of the issues [01:16] Staging is happily having daily code updates. I'll restart the regular database syncs too if Daniel and Celso no longer need it. [01:16] Production systems were all updated to HEAD today after I discovered the production branch we were using did not pass its test suite. [01:16] Elmo has announced some downtime on the weekend for data centre work - see the emails in the launchpad and launchpad-users mailing lists for details. [01:16] mizuho (the Librarian server) has successfully undergone updates, and I believe Znarl and elmo are now more confident about the hardware. [01:16] We are no longer using prat (temporary gina) and macaroni (old librarian) - I've emailed rt@ ensuring elmo and Znarl are aware. [01:16] About half of our servers have the launchpad-dependancies package installed. I've emailed rt@ requesting installation on the others I'm aware of. [01:16] stub: oh, we had already the production update with HEAD? [01:17] carlos: yes. About two hours ago I think. [01:17] daf: that's the explanation for https://launchpad.net/products/rosetta/+bug/30952 [01:17] malone bug 30952 in rosetta "An OOPS in launchpad while trying to translate knetworkconf. OOPS-40B311 is the reference name." [Normal,Fix committed] [01:17] meeting action: stevea to find someone to maintain the launchpad-dependences packages [01:17] daf: the user got the form with the old code and the submit was handled by the new one [01:18] carlos: aha -- Fix Released? [01:18] daf: no, Rejected ;-) [01:18] daf, carlos: please focus on the meeting [01:18] sorry [01:18] * Any details about the developer summit in May? (AndrewBennetts) [01:18] SteveA and I are going to do some planning on that [01:18] I have some ideas and so does he [01:18] Right. I'm just curious to know if there's any news on that front. [01:19] you mean may, spiv, not march, right? [01:19] steve will spend the week before the sprint in brazil [01:19] SteveA: Right. [01:19] Should we start getting our plane tickets? [01:19] oh [01:19] The whole-compnay one. [01:19] may? [01:19] things about may are still being discussed by the management team and others [01:19] I see. [01:19] no news there yet [01:19] I seem to recall May was the proposed timeframe at UBZ. [01:19] carlos: for march, please do get your plane tickets [01:19] meeting action: steve to set up wiki page for march meeting [01:19] ok [01:20] * Stopping tests after the first error. (AndrewBennetts) [01:20] You can now do "python test.py --stop-on-first-failure ...". It stops the test suite as soon as a test fails. [01:20] This can obviously be much faster than a full run, depending on how broken your branch is ;) [01:20] We have a march meeting? [01:20] Possibly we should make PQM use this, to give up on bad merges faster, but PQM seems faster these days anyway. [01:20] stub: you're not invited :-p [01:20] :-) [01:20] although, if you want to come, talk to me later [01:20] That's all. Enjoy! :) [01:20] Unless you are visiting sunny Bangkok [01:20] spiv: In my experience, it's handy to know what else is failing on projects for automated test builds if it's quick enough. [01:20] spiv, I wouldn't do that. it's useful to have PQM help [01:21] as a full testing service ;) [01:21] jbailey, kiko: I agree. === lbm [n=lbm@cpe.atm4-0-1301006.0x50a0824e.vgnxx6.customer.tele.dk] has joined #launchpad [01:21] although a grepper for pqm debug output would help [01:21] Although PQM can take commands like "debug" [01:21] to quickly view the first failure [01:21] btw, i need to talk with lifeless about re-enabling a lot of tests that aren't running with pqm at pressent [01:21] So potentially a "debug" merge attempt would run the full suite anyway. But at the moment, I don't think there's really enough of an issue. [01:21] spiv: will this stop mid-doctest? [01:21] this will slow down pqm runs compared to where they are now [01:21] but will give us better QA for the wider launchpad systems [01:21] bah, first failure is often not the most interesting one because tests are ordered essentially at random (lexically I think) [01:22] Kinnison: Hmm. I don't think so, but I'd have to check. [01:22] spiv: is --stop-on-first-failure documented on the developer wiki pages? [01:22] spiv: please talk with daf about that [01:22] i want to move on [01:22] meeting action: spiv to document --stop-on-first-failure on the wiki, talk with daf [01:22] spiv: also, if you're taking suggestions -- it'd be really nice to be able to see where in a doctest you are, E.g. by getting it to spew what it's running in some specific --debug-doctest mode or something [01:22] * Ian Jackson's upstream bugs use-case. (SteveAlexander) [01:23] quick poll... who is subscribed to launchpad-users here? [01:23] me [01:23] me [01:23] me [01:23] me [01:23] me [01:23] me [01:23] me [01:23] Kinnison: interesting idea. File a bug :) [01:23] me [01:23] me [01:23] spiv: against products/launchpad or somewhere more specific? === doko [n=doko@217.205.109.249] has joined #launchpad [01:23] me [01:24] me [01:24] Kinnison: products/launchpad I guess [01:24] iwj, this is your five minutes of fame [01:24] spiv: okay [01:24] mpt: :-). [01:24] me [01:24] You are all different people! [01:24] I'm not [01:24] me [01:24] me [01:24] me [01:24] I'm not [01:24] n === sivang has just joined the meeting as well [01:24] okay, cool [01:25] daf: so are you, or are you not subscribed to the mailing list? [01:25] so, ian jackson (iwj) sent a detailed email to launchpad-users [01:25] ddaa: I'm not a different person [01:25] describing a particular way that he would like to use malone in launchpad === beyond [n=beyond@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [01:25] today or yesterday, bjorn responded, and there has been a discussion [01:25] spiv: bug 30964 [01:25] malone bug 30964 in launchpad "doctest debug output would be handy" [Normal,Unconfirmed] http://launchpad.net/bugs/30964 [01:26] i'd like to encourage people to use launchpad-users. launchpad developers do read it and respond on the list. [01:26] iwj: are you happy with how the discussion is progressing? [01:26] stevea: You're preaching to the choir, I think. [01:26] Yes, I think so. [01:26] we will now join our voices in psalm number 65536 [01:27] okay [01:27] * Emphasizing support requests rather than bugs on Launchpad (JeffBailey) [01:27] Support Tracker vs. Bugs [01:27] ======================== [01:27] . [01:27] Over the course of a conversation with Steve and a few other folks, the support tracker has shown up. The question is one of dealing with users and what we expect. The problem as I see it is that we're conditioned to be succinct and offer solutions in bugs reports. ("The best bug report contains a patch" type of thing.) [01:27] . [01:27] In a support request, I imagine that people are more free to describe what they're trying for, what they did without worrying about the underlying system. There are then two resolutions to a support request, which can happen simultaniously. 1) A quick fix workaround can be offered ("The data you want is FOO, or can also be found at ...") 2) It can spawn a number of bugs that actually talk about the system in terms that the [01:27] programmers think in - tweaks to SQL tables, etc. [01:27] . [01:27] The last point to this is that this lets us start dogfooding (Mmmm... vegan dogfood /me makes homer noises.) the support tracker. [01:27] [01:28] I agree with what ddaa's about to say [01:28] me too, I think === SteveA /nick PhillipKDick precogs! [01:29] I think jbailey's approach is spot-on [01:29] jbailey++ [01:29] ... that we can't reasonably be expected to use the support tracker while it doesn't know how to e-mail us [01:29] mpt: don't eat babies [01:29] Apart from that, I like the idea [01:29] what is dogfooding all about anyways? :) [01:29] sivang: using the work we produce [01:29] sivang, "eating your own dogfood" = using your own product [01:29] sivang: ESRism meaning using your own product. [01:30] :-) [01:30] thanks all [01:30] Last time I used the support tracker I found it unusable for lack of email notifications. [01:30] Queries people want me to go over can go through as support requests [01:30] ddaa++ [01:30] making (a) the support tracker support email and (b) it really easy to file bugs from support requests would make this much more practical, I think [01:30] email interface for the support tracker is on its way, jamesh any chance of getting my branch reviewed soon? [01:31] all the other problem we'll surely find can be fixed later, but email notification is a prerequisite for any serious use of the tool. [01:31] BjornT, it's been in review for ages, hasn't it? [01:31] daf, you could plausibly implement b) [01:31] BjornT: yes. I'll do it first thing in the morning. Sorry for the delays [01:31] kiko: yeah, and i haven't cared enough to nag people enough... [01:31] Since January 3rd [01:31] this is a good discussion then [01:31] lifeless -- a branch has been up for over a month with no review? [01:31] daf: how do you make it easy to file bugs other then bugs against nothing specific from the support tracker? that is, we cannot expect the user to know ...or can we? [01:32] kiko: lifeless isn't here [01:32] I ask myself how this hasn't come up in a reviewer meeting [01:32] kiko: use email for that. [01:32] he can see the backlog [01:32] meeting action: stevea or kiko to mail lifeless about review queue and bjorn's branch [01:32] sivang: I mean, if a support request indicates a bug, I want to be able to turn it into a bug [01:32] kiko: You're clearly an imposter. The real kiko always tells me that irc isn't good enough ;) [01:32] jbailey, I am emailing him already, but he does read backlog [01:33] so, to summarize [01:33] daf: ah , yes, that makes much sense. [01:33] we'll make a few improvements to the issue tracker [01:33] such as landing bjorn's email branch for it [01:33] and look at making it easy to file bugs from an issue === thisfred_ [n=thisfred@a80-127-80-154.adsl.xs4all.nl] has joined #launchpad [01:34] and then, when those things are in production, look at switching emphasis from bugs to issues for launchpad [01:34] right [01:34] it will be a fairly high priority for bjorn to get these things landed [01:34] SteveA: Is there a "not-sooner-than" time, after which I should look again? [01:34] good plan [01:34] I imagine we could change the text in the system error and help pages? [01:34] mpt: please talk about the changes you made to oops page templates [01:34] ok [01:35] item for next meeting: check progress of issue tracker readyness next meeting [01:35] jbailey: ^^^^ [01:35] SteveA: Tx. [01:35] I've just put up a branch for review that no longer mentions the possibility of reporting bugs in the error pages [01:35] I think that's the right thing to do now that the Oops summaries are going [01:35] because they're a much more reliable guide as to which crashers are biting people most often [01:36] mpt: does the text state clearly that because we have an OOPS, that launchpad developers will be made aware of the problem? === jsgotangco [n=jsg@210.4.60.139] has joined #launchpad [01:36] mpt, SteveA: I think people need an outlet to explain their problem and ask for a solution or a workaround [01:36] mpt: we still have the issue that people are going to be in the middle of some task, which they can't complete. where do they turn to for support? === SteveA high fives kiko [01:36] so I agree with that SteveA's driving at [01:36] SteveA: "We've recorded what happened, and we'll fix it as soon as possible." [01:36] no, that's unacceptable. [01:36] kiko, right, that was my one concern [01:36] mpt: My problem with the older system was that it left me feeling disconnected from the process. At least with filing a bug, I could feel good that it got looked at. [01:36] however [01:37] we could use the support tracker in lieu of the bug tracker for this [01:37] So, the pages should link to the support tracker [01:37] and it would likely work well [01:37] yes [01:37] all righty, that's easily done [01:37] ok [01:37] tvarka! [01:37] * Keep, Bag, Change [01:38] BAG: buildbot, it can't even pass its test suite anymore and what's left cries bloody deprecation all over the place. === sivang assumes this is lithuanian for thanks === SteveA waits 30s at most... [01:38] ...for people to announce their keep bag change items [01:38] ddaa, hadn't you and spiv a plan for this? [01:38] ddaa: Change: make pqm run buildbot tests! [01:38] KEEP: The high level of high quality reports from the disto team about soyuz [01:39] kiko: spiv has some changes, I asked him to try merging them. [01:39] ddaa, kiko: I have a patch that fixes that, but it's blocked by a PQM/bzr bug [01:39] It's in lifeless' hands. [01:39] spiv, well FFS. === ddaa giggle hysterically [01:40] meeting action: spiv to mail lifeless, cc list, about making progress on that [01:40] ah [01:40] CHANGE: spiv to take up lifeless' story branch [01:40] 30s well and truly up [01:40] * Three sentences [01:40] kiko: Yep. [01:41] go ahead! [01:41] CHANGE: stop PQM accepting empty merges [01:41] kiko++ [01:41] DONE: MirrorManagement, cronscript to flag expired memberships, code review, fixed some random bugs [01:41] TODO: finish MirrorManagement, code review, any other urgent trivialities that show up daily [01:41] BLOCKED: No [01:41] DONE: Bzr/Launcpad doc, RCS imports bzr transition planning [01:41] TODO: RCS imports transition planning, merge Bzr/Launchpad doc, merge various pending branches [01:41] BLOCKED: no [01:41] DONE: lots of bug triage, meetings with stevea and daf, fixed needs info bug not appearing on reports, fixed a bug on bugtracker name field validator. [01:41] TODO: fix bugs from oops reports, bug triage, paperwork for passport renewal. [01:41] BLOCKED: No [01:41] DONE: Serialization & deadlock exception handling [01:41] TODO: Finalize serialization exception handling, SQLObject boolean fix [01:41] BLOCKED: SteveA to look at Z3.2 resource handling [01:41] lifeless DONE: branch-formats on the final steps to land. Many design discussions w/mpool making 0.8 features concrete. [01:41] lifeless TODO: PQM updates, production cherrypicking. [01:41] lifeless BLOCKED: Z3 update [week ???] [01:41] DONE: Landed bug contact reports. Fixed bug preventing bug contacts with no email (i.e. some teams) from being set. Advanced search design fest; collected user feedback. Moved bug batch list size into a config file. [01:41] DONE: work on bug watches improvements, and some general discussions about that . looked at a few bugs, and how to fix them. [01:41] TODO: Land the new layout in +assignedbugs too, to make iwj's life somewhat easier. Help perf tweak bug list batches. Implement the advanced search. [01:41] TODO: continue bug watches improvements. look at the state of support tracker, and see what needs to be done short them. [01:41] DONE: bug fixing and reviewing codeline for Soyuz [01:41] BLOCKED: No. [01:41] TODO: merge Soyuz codeline in RF asap [01:41] BLOCKED: none [01:41] BLOCKED: no [01:41] DONE: soyuz sprint, reports, oops analysis, etc etc [01:41] DONE: get oops summary reports working well, SelectResults.__len__ removal, address some bugzilla migration issues, XML-RPC stuff for updating branch status [01:41] TODO: XML-RPC branch status code, other supermirror related stuff with ddaa [01:41] BLOCKED: no [01:41] DONE: Malone spec work, a little bugfixing [01:41] TODO: get completed specs approved, page headers, MaloneFrontPages spec [01:41] BLOCKED: Reviews of SimplifyingMalone, FixingProjects, MaloneSearch [01:41] DONE: adjustments on small bugs [01:41] TODO: more of the same [01:41] BLOCKED: no [01:42] DONE: Large amounts of fixes to soyuz, helping cprov with the branch review [01:42] NO CHANGE [01:42] TODO: more fixes and get new bugs [01:42] meeting action: steve to mail lifeless about getting pqm to stop accepting empty merges [01:42] BLOCKED: no [01:42] TODO: pocketed uploads and approval process for -updates [01:42] BLOCKED: Not currently [01:42] correcting myself: BLOCKED: need a dedicated reviewer for Soyuz codeline (it needs merge ASAP) [01:42] DONE: PoMsgSetPage branch merged (needs a second stage to finish the spec), #29814, added permissions to admins/rosetta experts to edit translations, dapper translation imports [01:42] kiko: Could you review that branch for us? You know it well by now [01:43] DONE: bug text pages, bug triage, oops handling documentation, oops linkification, meeting summary, bug triage tools [01:43] DONE: Reviews, fix buildbot only to be thwarted by pqm, stop paramiko from causing gc.garbage warnings to spew all over the test suite, merge stop-on-first-failure and gpg-rdf branches, polish SFTP. [01:43] TODO: meeting summary, people and users document, land optional-branch-title, finish malone search changes [01:43] TODO: Sort out Twisted-for-sftp-in-rocketfuel. [01:43] BLOCKED: no [01:43] BLOCKED: No [01:43] bradb, "advanced search design fest"? [01:43] DONE: OOPS and Bug process guidence, various management, pair-programmingn with carlos, review of docs and discussion with ddaa, various other... [01:43] TODO: Zope 3 stuff for stub [01:43] BLOCKED: no [01:43] Kinnison: kiko: yes, it would be very handy atm [01:43] Kinnison, hmmm, maybe I could be the second pair of eyes. I still think somebody that doesn't know the code should look at it [01:43] actually, BLOCKED: mysterious librarian failure when merging importd2br branch [01:43] kiko: right, perhaps salgado could take a break from MM to look? [01:43] TODO: dapper translation imports, implement POMsgSetPage second stage to finish the spec, finish AJAX implementation for suggestions and #1681 [01:43] BLOCKED: no [01:44] who will review cprov's code? [01:44] ddaa: Hmm, that's probably my department [01:44] Kinnison, I think MM is close. I will talk to him [01:44] SteveA, salgado and I I guess. [01:44] [trivial] more suggested changes to analyse-error-reports.py script [01:44] whoever landed that [01:44] landed an empty merge [01:44] PQM doesn't tell me who landed it [01:44] mpt: I made some prototypes (this http://flickr.com/photos/84096161@N00/97201142/ being the final one), like I did for the bug contact reports design fest. I showed them to users, and recorded their feedback. [01:44] meeting action: spiv to work with ddaa on librarian issue in importd2bzr === kiko sighs [01:44] kiko: looks like I forgot to push my branch first [01:45] jamesh, that's cool, but I want PQM to stop accepting those. [01:45] okay [01:45] we're just about done [01:45] kiko: there's a meeting action for it [01:45] bradb, ok [01:45] whee! [01:45] MEETING ENDS [01:45] bradb: looks good [01:45] thanks for being here. [01:45] jamesh: after he branch status stuff, it would be nice if you could have a look at the importd error reporting system I outlined in email a couple of days ago. But SteveA will tell you in time, the focus might change before you get ther. [01:45] Another on-time meeting. Thanks Steve! === spiv -> break === Kinnison -> workrave === kiko -> crackpipe === bradb -> shower === carlos -> lunch [01:46] I would like to talk to someone about wiring AutomatedTesting into the build infrastructure. At the moment I need to do requirements capture from the relevant LP and sysadmin types. Who should I start with ? [01:46] bradb, that prototype is pretty sweet [01:47] iwj: Kinnison would be a good bet, since he's the buildd mastermind. [01:47] mpt: thanks. it received unanimously positive response from the Ubuntu devs too. [01:47] iwj: ideally, you'd arrange to meet with Kinnison in person. But that depends if Kinnison can do this as part of his distro team secondment [01:47] iwj: otherwise, kiko i think. [01:47] or maybe cprov-afk [01:48] bradb: looks very nice [01:48] iwj, wouldn't that be a good task for Kinnison as a feature goal as distro guy? [01:48] SteveA: I'll see if I can catch Kinnison. I think this probably counts as distro team secondment but I'll see what he says. [01:48] Thanks. === Kinnison returns [01:48] iwj: Carlton tonight? [01:48] Ah, hello. [01:48] Sure. [01:48] we'll cover it then [01:48] :-) === Kinnison will try and remember paper and a pen [01:48] I'll be there in time to order my dinner :-). === Kinnison grins [01:49] bradb, have you had time to read through ? [01:51] iwj: have you not still uploaded the modified mawk to the/a repo? [01:51] mpt: I've only skimmed it, really, because I don't think there'll be time to implement that stuff before, say, London. (Though, at a glance, it looks like some really cool stuff.) [01:51] bradb, the nice thing is it covers pretty much everything *except* the advanced search form :-) [01:51] heh [01:53] sivang: Yes, it should be in dapper by now, and the bug is in the Debian BTS. [01:54] TBH I didn't check that it built but since I just added some files that the build doesn't even touch ... [goes to check] [01:55] 1.3.3-11ubuntu1, yes. [01:56] cool, I'll glance at it. === SteveA --> run then lunch [02:02] iwj: you're logged as Diziet in -devel ? why two differnt nicks? [02:04] carlos, are your revisions landed then? [02:04] kiko: landed and on production [02:04] great [02:04] well, I still have one review pending [02:05] it's the one for #29814 === jbailey [n=jbailey@modemcable139.249-203-24.mc.videotron.ca] has left #launchpad ["Ex-Chat"] [02:07] daf, look at my last comment in bug 3176, add a test and a fix and rs=kiko :) [02:07] malone bug 3176 in rosetta "Error when trying to save AbiWord pt-BR translations" [Normal,Fix released] http://launchpad.net/bugs/3176 [02:10] kiko: bug #30919 [02:10] malone bug 30919 in launchpad "The string "OOPS code" should not auto-linkified" [Normal,In progress] http://launchpad.net/bugs/30919 [02:20] bradb, around? [02:20] salgado: yeah [02:20] AttributeError: type object 'SourcePackagePublishing' has no attribute 'selectFirst' [02:21] bradb, what happened with that fix you had for the advanced search on the +bugs page? [02:21] mpt, update the trees inside the sourcecode/ directory of your launchpad tree [02:22] salgado: It's sort of dead. I can't get the darn thing by pqm without disabling a test, which is evil. I can try re-fixing it again today, in the hopes that I'll be able to land it. [02:24] salgado, "bzr merge ../rocketfuel/launchpad/sourcecode/" says "Nothing to do." [02:25] rsync -a ../rocketfuel/launchpad/sourcecode sourcecode [02:26] daf, not rsync -a --delete ? [02:26] mpt, link your sourcecode trees into prebuilt. [02:27] that makes this problem go away for good [02:27] sh utilities/link-external-sourcecode.sh ~/rocketfuel-built/launchpad === mpt feels REALLY dumb now [02:27] mpt: sure, --delete [02:27] I just cp -al ../rf-built/launchpad launchpad/branch-name each time [02:29] ddaa: Tell me about this librarian failure with importd2bar [02:29] Er, importd2bzr [02:29] ok, that seems to be doing useful stuff [02:30] bradb, ouch, that's bad. what's the failing test? does it fail on your box too? [02:30] Thanks salgado, kiko, and daf [02:30] any moment now, my branch on PendingReviews will actually work... [02:30] ddaa: Or mail me if you prefer [02:34] salgado: If failed only with pqm, not locally (that's what made it so hard to debug.) It's been a few days now, but it was one of the doctests, like bugtask.txt or something. [02:35] bradb, that's weird. did you merge from pqm after you got the failure? [02:35] salgado: Yep. [02:38] spiv: there's not terribly much to say about it [02:39] I got weird failures when I tried to merge my branch, and my local tests were inconclusive to reproduce the problem. === mpt [n=mpt@219-89-129-190.jetstart.xtra.co.nz] has joined #launchpad [02:39] I'll try again, it will be less painful now that I have my real laptop back. [02:40] sivang: I'm too lazy to get a better IRC client, so I run two copies of it. === doko [n=doko@217.205.109.249] has joined #launchpad [02:40] iwj: heh [02:43] salgado, did you see stub's Re: shipit query mail? [02:44] kiko, the one which he said he added an index? [02:44] yes. [02:44] did he fix the query, or was he implying we should? [02:44] stub the mystery man [02:45] well, that query is generated by sqlobject, IIRC [02:45] = 'f'? [02:45] that is surprising === ddaa [n=ddaa@nor75-18-82-241-238-155.fbx.proxad.net] has left #launchpad [] === ddaa [n=ddaa@nor75-18-82-241-238-155.fbx.proxad.net] has joined #launchpad [02:45] kiko, he said that in his email [02:45] he said that sqlobject does that [02:46] q = AND(ShippingRequest.q.cancelled==False, [02:46] ShippingRequest.q.approved==None) [02:46] results = ShippingRequest.select(q, orderBy='daterequested', limit=1) [02:46] SQLObject needs a fix. I've talked to spiv and it looks doable. I'll be looking at it tomorrow. [02:46] that's the query [02:46] I see. [02:46] ddaa: Fair enough. Fire me an email about it if it persists. [02:46] cool, thanks stub [02:46] thanks stub! === thisfred [n=thisfred@a80-127-80-154.adsl.xs4all.nl] has joined #launchpad [02:57] matsubara, can you test your PQM account? [03:00] ok, that's still not working [03:01] mpt, did you link the external sourcecode? [03:01] kiko, yes [03:01] tell me what ls -l sourcecode/ looks like in a privmsg [03:03] kiko: i'll try it in a few minutes. === mpt is now known as mpt__ [03:18] It's going to take me a while to get used to the lesser stuff Launchpad prints when starting up [03:18] I keep thinking it's not ready yet [03:24] we should disable trebuchet [03:25] meh, cant sleep [03:25] kiko, bjorns branch did come up in the review meetings, and early this week I transferred to salgados queue to review [03:25] so that I would not be blocking bjorn [03:26] salgado is a bad option [03:26] he has cprov's branch to review and he is very busy [03:26] spiv: I have not yet fully isolated the bzr during make check_merge so its not corrected yet [03:26] actually I already started reviewing cprov's branch [03:27] err [03:27] BjornT's branch [03:27] bjorn's branch? really? [03:27] kiko: I'm not a mind reader, I can't tell that people are too busy unless the wiki page says so or I get an email to that effect [03:27] it's small, wouldn't take long [03:27] lifeless, you can talk to people during the review meetings, though [03:27] kiko: you think? [03:27] but there's two branches of him there [03:27] I find it surprising that the branch was left lingering for a month, just that [03:28] kiko: last review meeting as it happens, I had ESTEVE and did something he considered higher priority [03:28] so I did not run the meeting [03:28] I see [03:28] well, let's try and get this done this week, it's a feature I crave [03:28] the date on the branch should be a warning sign [03:29] kiko: also, if reviewers are busy, the process says they should bounce it back to general/my reallocation queue [03:29] perhaps the pending page can show branches over 2 weeks old in red [03:29] daf, that sounds like a good idea [03:29] (except it already does that for baz branches) [03:29] kiko: which is extremely small amount of work to do [03:29] lifeless, you're right about that [03:29] chide thy reviewers [03:29] well, I wasn't aware of this new branch that I was just told I'll have to review [03:29] and it's not in my queue [03:30] kiko: well, I'm responding to you telling me salgado was a bad choice [03:30] salgado: sftp://chinstrap/home/warthogs/archives/bjorn/launchpad/SupportTrackerTweaks [03:30] so I assumed I could review both of BjornT's branch [03:30] * [03:30] thats the one we are talking about ? [03:30] ddaa: remind me, what's stopping the merge-approved importd2bzr branch from being merged? [03:30] yes, this is the one I already started [03:30] great [03:30] daf: mysterious test failures [03:30] great [03:30] ddaa: suck [03:30] daf: I have to run the tests locally, and forward whatever I find to spiv [03:31] Kinnison: buildd-fixes is in "unkown" state on the pending branch summary [03:31] Kinnison: it has a date of 11-09 [03:31] kiko: also, side but related issue, I'm in the middle of a sprint to get bzr 0.8 locked down [03:31] lifeless, I know you're busy, just let me complain :) [03:31] and thats taking all my time, which sucks as I'm not getting to do things I really like, like making lp test enhancements [03:31] daf: pqm seriously hates me, every branch I've tried to merge in the past branch has failed because of strange problems... [03:31] * in the past month [03:31] ddaa: ouch :( [03:32] lifeless: your story branch doesn't have a date on it === jbailey [n=jbailey@modemcable139.249-203-24.mc.videotron.ca] has joined #launchpad === jbailey [n=jbailey@modemcable139.249-203-24.mc.videotron.ca] has left #launchpad ["Ex-Chat"] [03:32] daf: yah, copy past borkage [03:32] hey lifeless [03:32] pls fix kthx [03:33] salgado: sqlobject/2/smallfixes -- date of 07-22? [03:33] something bothering me about stale sftp locks and centralised importd branch publishing === daf wields his pointy IRC poke stick [03:33] daf, that branch depends on having pylib packaged and available in Ubuntu [03:33] lifeless: I've found that stale sftp locks are rare but do happen in importd [03:33] and working [03:33] salgado: ah, I see [03:34] ddaa: yup [03:34] and I've been wondering whether we coud find a way to automatically break them [03:34] salgado: is somebody working on that? [03:34] daf, right now it's available but not working. in dapper it's working [03:34] lifeless: in normal operation, that should be safe [03:34] salgado: can we ask one of the distro team to do a backport? [03:34] daf, yes, I was. [03:34] ddaa: see the branch locking mk2 thread in bazaar-ng@ [03:34] lifeless: but I already observed buildbot running the same job twice at once in the past, so normal operation is not enough [03:34] daf, maybe [03:34] doko, around? [03:34] lifeless: something new? === ddaa checks [03:35] ddaa: stale lock detection and cleanup facilities [03:35] a implementable spec [03:35] kiko: what do you think about these baz branches on the review page? [03:35] kiko: should we get people to import them into bzr or just drop them? [03:35] salgado: yes [03:35] what is baz? [03:35] baz-the-fork-of-tla [03:35] yes, I think they should be converted to bzr and die [03:36] daf: if you could heckle the folk that have not converted those branches. *cough mpt* [03:36] daf: that would be great [03:36] lifeless: the procedure is documented, isn't it? [03:36] daf: yes [03:36] somebody needs to take over debonzi's branch [03:36] doko, was that newer version of the codespeak-lib package accepted? [03:36] SteveA: please convert your launchpad-unittest-authentication branch to bzr [03:37] mpt__: oi [03:37] lifeless: why do you always say "extant" instead of "existant", is that a nzism? [03:37] salgado: http://qa.debian.org/developer.php?package=codespeak-lib&comaint=yes [03:37] extant != existant [03:37] ddaa: because I mean extant ? [03:38] ha okay [03:38] that might be a good reason [03:38] never seen that word used anywhere else... [03:38] http://www.m-w.com/dictionary/extant [03:38] meaning 2a [03:39] daf, hmm? === ddaa fails to see the distinction with "existant"... [03:39] actually existent [03:39] there is no word existant [03:39] mpt__: mpt@c.c/launchpad--menus--0509 [03:39] doko, I thought I had mailed you a 0.7-svn20050721-3 with some bugfixes, haven't I? === jinty [n=jinty@196-28-45-86.jhb.netdial.co.za] has joined #launchpad [03:39] daf: no need. [03:39] afaik, extant has more of an emphasis on "still remaining" [03:39] http://www.m-w.com/cgi-bin/dictionary/existent [03:39] meaning 2 [03:39] daf: this is fixed upstream [03:40] salgado: oops, I see, uploading it now [03:40] SteveA: ok, then please remove it from the pending reviews page [03:40] doko, great. thanks [03:40] daf: done [03:40] mpt__: yes, I think of it as "still applicable" [03:40] SteveA: thanks [03:42] daf, yes, sorry, that's been way down my priority list === WaterSevenUb [n=WaterSev@azevedo.astro.up.pt] has joined #launchpad [03:42] mpt__: ok, but the longer you leave it the more work it will be to salvage it, I think [03:42] true [03:42] ddaa: in that thread I used it because it emphasises the clients we cant force to upgrade [03:43] ddaa: not that I said 'existing' in the paragraph above where no emphasis was needed [03:44] kiko: have you filed a bug on empty merge commits in pqm ? [03:44] lifeless, I first wanted to see whether you (and others) thought it was a good idea, but I can if you say so [03:45] I think it will prevent noise in the system [03:45] salgado, does it make sense to get the mirrors for ubuntu entered in production? [03:45] lifeless, okay. I will do so now [03:45] and if done as an option we can always change our mind [03:45] with pqm, we have occasional community contributors [03:45] theres a bunch of folk (not just Kinnison) using it outside canonical [03:46] so, bugs good, because theres a change someone else will write a patch :) [03:46] I see [03:46] bug 30972 [03:46] malone bug 30972 in pqm "PQM should reject empty merge requests" [Normal,Unconfirmed] http://launchpad.net/bugs/30972 [03:46] mpt__: we were going to talk about overlap between WhyTheSmegAmIHere and LaunchpadPeopleAndUsers [03:49] yes [03:50] but it's 3.50am [03:50] but, but, but === mpt__ waits for pagetests === mpt__ is now known as mpt [03:50] So basically [03:51] We need an obvious way of saying "this person doesn't use Launchpad" [03:51] where that is defined by either [03:51] (1) having never used Launchpad [03:51] daf, mpt: arrange a time tomorrow. [03:51] mpt: hi, before you leave... could you add to your TODO list a fast review of the translation form to fix the layout problems it has? I fixed some of the problems as you told me but there are something else that I'm not able to fix [03:51] carlos: sent mpt an email [03:51] (2) having clicked some button somewhere saying "Launchpad and I will never meet again" [03:51] sure [03:52] hooray, tests pass [03:52] mpt: i thnk you should arrange a time with daf, and stop for the day. no sense pushing it into the late hours over this spec [03:52] mpt: I agree with Steve [03:52] mpt: let's talk when I get up tomorrow [03:52] ok === mpt just wanted this branch to be reviewable [03:53] it's nearly there [03:53] kiko, no, I think it's better to wait until the prober lands [03:54] wouldn't the prober benefit from existing data? but okay. [03:54] lifeless: I think that design would be adequate with the hostname, timestamp and pid stored in the lock. [03:54] pqm seems to be processing one of daf's branch for more than one hour now. is it possible that something is wrong? === gneuman is now known as gneuman-lunch [03:55] has daf gotten an answer back? [03:55] no, he hasn't [03:55] kill it [03:55] well [03:55] have lifeless investigate where it is [03:55] lifeless: importd would need an utility function to retrieve the lock data and check whether the hostname is the current hostname, and the pid does not name an existing process. If that's true, then the lock can be safely broken. [03:56] cron is disabled [03:56] carlos, did your recent permissions landing make the problem of not being a launchpad admin go away? [03:56] stub must be doing maintenance [03:56] kiko: that branch is not yet reviewed so it's not merged [03:56] carlos, but the code is there? great [03:56] lifeless, can we have a package from dapper installed on pqm's box? [03:57] kiko: not all the permission problems are fixed [03:57] okay [03:57] lifeless: the cron that launchpad pqm or the one that kills it if it's hung? [03:57] but I'm on it [03:57] salgado: mail me, and canonical RT. [03:57] kiko: The one that landed into production is the one that fixed the 147 .po files that were stalled on the import queue [03:57] salgado: or mail canonical RT, then forward me the ticket number and I'll confirm it for elmo [03:58] kiko: we talked about that issue, not sure if you remember it [03:58] hoho [03:58] salgado: be sure to include why we need it, as its running dapper [03:58] salgado: and what the impact of that will be on production boxes which also need to have it installed presumably [03:58] lifeless, good, I'll do it once the package is uploaded [03:58] kiko: so the error log should be smaller now [03:58] lifeless, we don't need it in production, I think. we only need it to run sqlobject's tests [03:59] salgado: awesome [03:59] lifeless, I want it so we can run sqlobject's tests on a commit hook === mpt really goes to sleep now [04:00] mpt: sweet dreams [04:01] doko, is that new version going to be propagated to dapper automatically? [04:02] no, after UVF updates from unstable are not done automatically. please ask elmo for a sync (giving the package name and version) [04:02] salgado: you sure? [04:02] doko, okay, I'll do it. thanks. :) [04:02] in general only those permitted to upload may ask for syncs [04:02] that means I can't [04:02] or s/may/should/ anyway; if somebody else asks we need to think harder [04:03] on the basis that an uploader could just have uploaded something equivalent anyway [04:03] lifeless, you mean, if I'm sure we don't need that on production boxes? [04:04] Kamion, right, that makes sense [04:04] salgado: yes [04:04] salgado: dapper is irrelevant anyway [04:05] salgado: elmo will have to rebuild the package, so if its not in dapper, just give him the location of the source package he can use [04:05] lifeless, I don't think we need. what do you think? [04:05] salgado: I dont even know what the package is, so ??? [04:05] salgado said that it's only needed to run SQLObject tests [04:05] daf: yes, I saw that [04:05] daf: does not mean I believe it [04:05] lifeless, python-codespeak-lib, which contains py.test [04:06] ah, yes, I'm aware of that project [04:06] lifeless: you could have said "I don't believe it" :) [04:06] salgado: we can also stash a copy of that in rf [04:06] salgado: if it is moving sufficiently fast that its a problem for the admins, but I'd rather we try to get the package installed [04:06] lifeless, I discussed that with Steve and we preferred the option of packaging it [04:07] I don't recall why we choose that, but anyway, it's now packaged [04:07] policy, ease of install for developers who aren't changing it [04:08] probably [04:12] lifeless: are those arch-style locks meant to be used for local-fs access as well? [04:12] yes [04:13] atexit is your friend, I guess... [04:13] ?! === lifeless has no idea why that is relevant [04:13] so locks are released when process is killed by SIGTERM [04:13] finally [04:13] or SIGQUIT [04:13] finally works for SIGINT [04:13] no, we definately do not want global lock registration [04:14] I do not think it works for harsher signals. === ddaa tests === iwj [n=ian@xenophobe.extern.relativity.greenend.org.uk] has left #launchpad [] [04:21] lifeless: yup, sigterm is not caught by finally [04:21] so, if some one logs out while a lock is held it becomes stale. [04:21] we'll live with that I think [04:22] if a system is rebooted while a daemon is holding a lock, it becomes stale [04:22] sigterm and exit handlers are there for a reason [04:22] anyway, I don't want to fight over that [04:23] bradb: suggestion: Malone shouldn't suggest assigning to milestones with a date in the past [04:23] also, sigterm is the default for "kill" so people use it a lot to kill runaway processes [04:23] bradb: s/suggest/allow/ === doko [n=doko@217.205.109.249] has joined #launchpad [04:24] ddaa: well we have stale lock detection. [04:24] only heuristically, it can only be reliably in controlled environments [04:24] daf: Can you please file those suggestions as bug reports? Otherwise we'll lose track of good ideas. [04:24] bradb: will do [04:24] thanks [04:24] ddaa: yes, and within a single system which is your example, that is quite controlled [04:25] whatever, I'll just way for users to start having broken locks because they killed a process that was taking too long [04:25] or eating too much cpu, or too much ram [04:26] bradb: #30973 [04:27] ddaa: thats what they get right now on remote branches [04:27] God I hate rsync's slash vs. no-slash distinction. Clearly this tool was written by a non-human. [04:27] lifeless: yes, it can be better [04:27] bradb: it's not only annoying, but dangerous [04:27] indeed [04:27] ddaa: I don't think that that a python defect is a good reason to add a bare except - which is what atexit is essentially [04:27] it's a really bad UI [04:28] lifeless: I think that releasing a lock when a process is dying is something good to do. That's why bzr uses kernel level locks for local fs access at the moment. [04:28] it's not like releasing a lock is going to corrupt data anymore than it currently might be [04:29] anyway discussion over, we're not going to agree [04:29] ddaa: actually thats not why bzr uses kernel locks [04:29] daf: In fact, the only real accident I've ever had with software development was an episode with slash vs. no-slash and --delete. [04:30] But I know I'm not the only one. [04:30] lifeless: oh really, for what reason then? (genuinely curious). In any case that's a useful side effect worth preserving. [04:31] Of course, it would have been a complete non-issue if said client had been using version control or backups, but bah, who needs THAT? [04:32] bradb: people that do not make mistakes are not the ones who assume they do not make mistakes. Right? === bradb recalls the time a boss at his former job in Quebec City ran the test suite...against production. [04:32] ddaa: essentially because they were handy and reinventing arch locks at that point wasn't productive [04:33] it didn't have a vfs when it started [04:33] okay, makes sense === Ubugtu [n=bugbot@ubuntu/member/seveas] has joined #launchpad [04:33] bug 1 [04:33] ddaa: Indeed. There are those who never make a mistake, and then the rest of us! :P [04:33] malone bug 1 in Ubuntu "Microsoft has a majority market share" [Critical,Confirmed] http://launchpad.net/bugs/1 === lamont-away [n=lamont@mix.mmjgroup.com] has joined #launchpad [04:40] night all, trying sleep again [04:40] 2:30am :[ [04:41] night lifeless [04:41] in case its not clear, chase stub re pqm, as he disabled it I dont want to trod on him [04:41] in case there is something important pending [04:41] I will chase him tomorrow if its still disabled === Kinnison returns from the bank [04:46] daf: I should remove it, it's irrelebant === mgalvin [n=mgalvin@ubuntu/member/mgalvin] has joined #launchpad [04:50] Kinnison: ta [04:51] daf: the work was subsumed into the soyuz branch [04:51] daf: and then almost certainly refactored beyond recognition :-) [05:07] lifeless: what's happening about PQM? === beyond is now known as beyond-rango [05:08] oh, he went back to bed [05:08] kiko: can we poke it? [05:09] daf, in case its not clear, chase stub re pqm, as he disabled it I dont want to trod on him [05:09] daf: elmo, karl, stu and lifeless are the people who can poke at pqm [05:09] daf: if stub disabled it, then we just have to wait until tomorrow when stub is around. [05:10] daf: i was just talking about this with kiko, and there is something i want to ask you about... === bradb & # lunch === mpt [n=mpt@219-89-129-190.jetstart.xtra.co.nz] has left #launchpad ["http://mpt.net.nz/"] === doko [n=doko@217.205.109.249] has joined #launchpad === lbm [n=lbm@x1-6-00-13-10-7a-d1-e4.k233.webspeed.dk] has joined #launchpad === beyond-rango is now known as beyond [06:01] salgado: I'm looking at bug #29655 [06:01] malone bug 29655 in launchpad "selecting ValidAssignee times out" [Normal,Unconfirmed] http://launchpad.net/bugs/29655 [06:01] salgado: do you think it has been fixed? [06:01] daf, quite possibly, close and let the reporter reopen? [06:02] good idea [06:02] bradb, you know, you could use your package bug contact report as a template for a project bug report. [06:02] sivang: ^^^ [06:02] have you considered that? [06:02] kiko-afk: Yeah. [06:02] kiko-afk: I got the idea vaguely from the discussions with SteveA in .lt. [06:02] daf: I'm here [06:03] (i.e. the discussions we had about project bug reports.) [06:03] bradb, I'd pay a pound of flesh for a report on launchpad counts [06:03] sivang: see my last comment on the bug [06:03] kiko-afk: isn't that what I posted to LP last night? [06:04] daf, online, for the project, auto-generated, but yes [06:04] kiko-afk: At least daf's reports should get you a bit of what you need. Meanwhile Ubuntu devs are suffering hard on the 20 bugs per page and non-tabular listings, which is why I put focus on those areas atm. [06:04] daf: I see, well, it was timeing out for me every time I tried to search for a Scott or a Keybuk === ceviz-asigi [n=raptoid@85.100.208.42] has joined #launchpad [06:06] kiko-afk: can I get you to cast your eyes over: https://chinstrap.ubuntu.com/~dsilvers/paste/filepHl1Ix.html [06:07] kiko-afk: It's my proposed patch to allow -updates uploads to soyuz [06:08] kiko-afk: maybe half a pound of flesh then? [06:08] Kinnison, I don't like that there are two ifs: in nascentupload.py [06:08] Kinnison, see if you can centralize the decision. [06:08] I like the general design of the solution [06:08] kiko-afk: I'll look at it, but I'm not sure I can, the separation is the separation of the process of accepting, from the decision of which mails to send [06:09] kiko-afk: but I'll see if there's a sane way to combine the decisions [06:09] those actions should probably be linked together.. [06:09] They're linked via the transaction, but I don't think they can be linked more directly than that === Kinnison glares at the code flow for a bit [06:10] I don't like the extra ifs in uploadpolicy either [06:10] daf: cool, I can't reproduce it either. seems it's working alright! [06:10] sivang: great! [06:10] sivang: I think it's salgado's work that's done iot [06:11] kiko-afk: I'd far prefer those to be a table, but I wasn't sure how to do it neatly [06:11] kiko-afk: do you know if we spoke to the admins about bug 30680? [06:11] malone bug 30680 in launchpad "presenting SSL client certificate from unknown CA prevents connect to https://launchpad.net" [Normal,Unconfirmed] http://launchpad.net/bugs/30680 [06:11] daf: yes, he also gave an elaborate explenation on the bug body itself which gave me an idea what was wrong and how it had been fixed, I think. (by narrowing the people vocabelury) [06:12] cool [06:13] daf: how can I reject a test bug I've just opened to test that? [06:13] sivang: mark it Rejected? [06:14] actually, I can see it would not be obvious how to do that [06:14] kiko-afk: https://chinstrap.ubuntu.com/~dsilvers/paste/fileQUVTwF.html [06:14] daf: ah right, I looked for more of a "closed" operation [06:14] kiko-afk: I've tidied the ifs in the upload policy a bit [06:14] s/closed/close/ [06:14] kiko-afk: is that better or worse? [06:14] it is much better [06:14] however [06:14] there is the central problem of band-aiding three ifs to implement this [06:15] which weakens the original strong design that you had [06:15] That goes away once we have the embargo stuff finished [06:15] it becomes "if release and open or non-release and closed => permit" [06:15] we should not have ifs at all if you get my meaning [06:15] kiko-afk: do you know if we spoke to the admins about bug 30680? [06:15] malone bug 30680 in launchpad "presenting SSL client certificate from unknown CA prevents connect to https://launchpad.net" [Normal,Unconfirmed] http://launchpad.net/bugs/30680 [06:15] the design of the code should avoid having ifs [06:15] kiko-afk: Well, we have to have some ifs, since the idea is to make sure we're happy to allow an upload [06:16] the object structure should take care of it [06:16] kiko-afk: you mean you want all the lofic in c.l.scripts? [06:16] kiko-afk: I'm confused about how the object structure can make a decision without an if statement [06:16] daf, no, rather that I think the object design should account for it === Kinnison is probably misunderstanding kiko [06:17] Kinnison, well, think about how the existence of upload policy potentially avoids many ifs in your code [06:17] now it could be factored even better === ddaa found one more reason to move rcs import out of productseries... [06:17] kiko-afk: dude, did you see my question? [06:17] so that you asked upload policy to do things [06:17] instead of asking it if you could do things [06:17] kiko-afk: (the one I asked twice) [06:17] anyway [06:17] I knew I had a CHANGE item... darn, forgot about it. [06:17] I noticed it daf [06:18] aha [06:18] I am thinking [06:18] ok :) [06:18] launchpad.net has a valid ssl cert for me [06:18] that's not the issue at all [06:18] kiko-afk: I'm really really confused now [06:18] kiko-afk: can you give me an example of how you'd rather I did it? [06:18] kiko-afk: it's about the client presenting a certificate [06:18] Kinnison, never mind. I'll take time in london to explain this to you further [06:19] Kinnison, just make sure a bug is filed on it [06:19] kiko-afk: and Launchpad rejecting it instead of ignoring it [06:19] oh [06:19] I didn't read "client" there [06:19] kiko-afk: Okay, thanks, hopefully I'm just being dense and it'll be obvious once we sit down together [06:20] it's an interesting thing, we'll look into it together Kinnison [06:20] kiko-afk: Steve seemed to think it might be an Apache config issue [06:20] kiko-afk: bug 30983 [06:20] malone bug 30983 in launchpad-upload-and-queue "upload policy engine needs simplification" [Normal,Unconfirmed] http://launchpad.net/bugs/30983 [06:21] Kinnison, fine by me -- mark the ifs with XXXs [06:21] kiko-afk: *nod* [06:21] daf, it most likely is [06:22] # XXX: dsilvers: 20060209: This is way too hairy/complex. bug#30983 [06:22] Kinnison, not only that -- it is also fragile. if you update the if in one place you need to remember to update it in 3 locations. [06:23] Well, this decision is entirely self-contained in the one method [06:23] I think you've conflated the issue of the hairiness of InsecureUploadPolicy.policySpecificChecks() with NascentUpload's calling of self.policy.autoApprove() [06:23] the diff may not have enough context for you to see this === Kinnison will see if he can make a more contextual diff [06:24] no, I am concerned that multiple ifs were added to account for this [06:24] but again, it is a design issue [06:24] and we can talk about it later === Kinnison nods [06:30] is our openpgp stuff actively maintained? [06:31] do you mean gpgme? [06:31] I mean our code that handles keys [06:31] in Launchpad [06:31] the answer should be yes [06:32] who's maintaining it? [06:32] jamesh last looked at it [06:33] I'm wondering who to prod about #30277, #30276, #3052 [06:33] if you don't say bug Ubugtu can't help us [06:33] bug 30277 [06:33] malone bug 30277 in launchpad "launchpad recommends generating a new key but shouldn't" [Normal,Unconfirmed] http://launchpad.net/bugs/30277 [06:33] bug 30276 [06:33] malone bug 30276 in launchpad "launchpad claims a key is expired when it's not" [Normal,Unconfirmed] http://launchpad.net/bugs/30276 [06:33] bug 3052 [06:33] malone bug 3052 in launchpad "GPG upload of newly-changed key fails because we cache the old key" [Normal,Confirmed] http://launchpad.net/bugs/3052 [06:33] all jamesh material. [06:34] ok, I'll assign him for now [06:35] kiko-afk: do you know how the @ubuntu.com aliases work? [06:36] (re bug 28671) [06:36] yes [06:36] there is a script that creates the alias entries [06:36] I said bug! I said it! [06:36] Ubugtu: you don't love me [06:36] bug 28671 [06:36] malone bug 28671 in launchpad "Ubuntero can not change @ubuntu.com destination e-mail address" [Normal,Unconfirmed] http://launchpad.net/bugs/28671 [06:36] daf, that is a salgado bug [06:36] it involves the creation of a "forwarding email" address === toby [i=ss7986@host86-134-209-185.range86-134.btcentralplus.com] has joined #launchpad [06:36] and having ubuntu.com redirect to t [06:37] hi [06:37] kiko-afk: why? [06:37] I need to skip out for a bit, daf, but will brb [06:37] ok [06:37] awesome, half op [06:37] hello toby [06:37] daf, will you be in in 30 minutes? [06:37] yar [06:37] hey toby [06:37] hi [06:37] so will I. see you then [06:37] salgado: yo [06:38] how long will it take if i ask for the cd to be posted to uk? [06:38] usually 2-4 weeks [06:38] oh cool the site says 4-6 [06:38] the UK is usually fast [06:39] yey [06:39] brazil is terrible [06:39] can i run irc server on it? [06:39] on Ubuntu? [06:39] yeah [06:39] toby: whereabouts in the UK are you? [06:39] certainly [06:39] midlands [06:39] gd [06:39] Should be pretty fast delivery then [06:39] yey [06:40] Kinnison: where do we ship them from? [06:40] daf: somewhere else entirely, another country iirc [06:40] daf: but outer-hebrides might take a while to get to :-) [06:40] heh [06:40] I have a feeling it's Holland [06:40] plausible [06:41] daf: I very much doubt that, or at least, not when I ordered them === Kinnison won't be passing through the midlands any time soon so I can't offer to drop some CDs off in person :-) [06:41] hey daf [06:41] hey [06:42] about bug 28671 [06:42] malone bug 28671 in launchpad "Ubuntero can not change @ubuntu.com destination e-mail address" [Normal,Unconfirmed] http://launchpad.net/bugs/28671 [06:42] kiko thinks this needs a new "forwarding" type of address [06:42] but that's to stop people making their @ubuntu.com addresses preferred yes? [06:43] We need the forwarding address so that we don't automatically forward ubuntu.com to the preferred address [06:43] entirely because for many people their ubuntu.com address should be their preferred one [06:43] e.g. the distro team [06:44] "we don't automatically forward ubuntu.com to the preferred address" [06:44] oh, I see [06:44] displayed address vs. contact address might be better terms [06:45] Hmm [06:45] Or else we need a specific column for their ubuntu.com forwarding address [06:45] which would seem nasty when we have this multi-address magic already [06:45] yeah [06:45] why cant i just get 1 pc cd? === gneuman-lunch is now known as gneuman [06:46] toby: because it's way uneconomical to ship [06:47] I suppose you could make a custom request [06:47] toby: If you really just one one PC CD, I could probably rustle one up from downstairs and pop it in the post to you [06:47] k [06:47] toby: but then again you may as well download it and burn a CD yourself if you only want one [06:47] are all the options free? [06:47] yes, we don't charge for shipit [06:47] cool [06:49] k req [06:49] requested [06:50] salgado: anyhow, is this something you're going to be working on? [06:50] salgado: can I confirm it? [06:51] daf, sure, that's really a bug. but I don't think I'll have time for it soon [06:51] no worries [06:51] just trying to get the untriaged bug count down [06:54] ah, right [06:54] hmmm. almost 16h, must be time to have some lunch [06:55] salgado-lunch: you mean 18h [06:58] carlos: or daf: could you help me with a rosetta test failure -> https://chinstrap.ubuntu.com/~dsilvers/paste/fileVCaVJG.html [06:58] let me check it... [06:59] cprov: and you don't get anything else before that error? [06:59] that's weird [07:00] carlos: nop ... test suite noise , I suppose [07:01] seems like the 'CLOSED' mode to do translations is not set for your tests... [07:01] cprov: have you changed anything related to sqlobject or caching? [07:01] cprov: did you "make -C database/schema" recently? [07:02] daf: I think I didn't change anything related to schema or sampledata... but it's good to check that [07:02] daf: btw, 'make schema' from the top directory works too [07:02] carlos: nothing unusual, got new sqlobject last week (selectFirst) is there anything newer ? [07:02] carlos: cool, I didn't know that [07:02] cprov: don't think so [07:03] daf: I discovered it this week [07:03] carlos: schema is up, as I used 'make check' [07:03] very odd [07:03] cprov: would you try the make schema command, just in case... [07:03] carlos: sure [07:04] cprov: also, could you run the test alone? ./test.py -vvv --test=pofile.txt [07:05] carlos: the point is, if you're sure about the code and the test output is weird, I can try clever things like re-merge rf from our local rf copy and so on [07:05] cprov: it should not fail [07:05] that test was added recently to rocketfuel [07:06] and I know why it fails, but not what causes that error [07:06] carlos: running it alone fails too (after make schema), as expected [07:07] cprov: ok [07:07] if you want to check somethings, on line #197 [07:08] we set the restrictions that seems it's missing your test run [07:08] try to check that you are not having caching issues [07:08] carlos: >>> product.translationpermission = TranslationPermission.CLOSED (#197) [07:08] carlos: pofile.txt [07:08] right [07:09] carlos: I see, that's why it shoudl return False on canEdit() [07:09] the first error you get is because the code is getting TranslationPermission.OPEN there [07:09] instead of the CLOSED one [07:09] right [07:10] cprov: what did you change on your branch? [07:10] carlos: ehe, you don't wonna know (16K lines) it's the soyuz codeline [07:11] so it doesn't change anything related to team members [07:11] carlos: what do you think could affect your test ? maybe a remaining logged context ? [07:11] it's the other thing that I can think on causing such errors [07:12] maybe kept you as admin member .. right, let me check [07:12] cprov: could be... [07:12] cprov: did you removed me from the admin team on sample data? === cprov checking [07:14] whoa! [07:14] https://launchpad.net/products/0.38 [07:14] https://launchpad.net/products/0.39 [07:15] carlos: no unfortunatelly bzr did weird stuff on merge, I think [07:15] daf: who registered them? [07:15] https://launchpad.net/people/dimitris-kalamaras [07:15] cprov: so it's a half done merge? [07:18] carlos: don't know yet, I simply see you as admins member and that's is the problem [07:18] cprov: oh, I didn't know we were removed from the sample data too... that's going to break many tests... [07:19] carlos: don't screw up ;) i said you are a member of admins in the sampledata [07:20] carlos: don't know yet, I simply see you as admins member and that's is the problem [07:20] carlos: so, diffing with my RF-build tree it looks correct [07:20] then, what's the problem? ;-) [07:20] carlos: yes, I suppose as admin you can do CLOSED translations, is that true ? === cprov hopes it's not ... [07:21] yes [07:21] and as a Rosetta Expert [07:21] but my account is used only to set the CLOSED mode nothing more [07:22] carlos: uhm .. didn't get it, right [07:24] carlos: no_priv and valentina got True instead of False from canEdit() what does it means for you ?: [07:25] cprov: as I said, it means that canEditTranslations get the OPEN mode instead of CLOSED [07:25] either that or someone added Valentina and no_priv to rosetta_experts/admins team [07:26] check that first, the value you have and add a pdb.set_trace call inside the _can_edit_translations function at lib/canonical/launchpad/database/pofile.py [07:27] that would tell you why you get TRUE instead of FALSE [07:27] carlos: it'll need to wait a while (20 min) need to do the soyuz rollout now [07:27] ok [07:28] I need to leave for a while too so it's not a problem for me [07:28] ping me when you know why it returns True and I will try to figure what's going on [07:28] also, a push of your branch would be a good idea [07:28] just in case I can reproduce the error here [07:29] carlos: already there `uploader-tests` [07:30] oh, I have that branch already. I'm working on it [07:30] I will merge it when I back and will take a look [07:33] carlos: thanks dude ! [07:41] see you lot tomorrow [07:46] grah... the publishing of bzr imports makes my head blow... [07:46] when you look at it really closely there's an incredible number of annoying details, loose ends, and interrelated design choices... [07:47] it's like a fractal onion [07:48] not only it has layers, but it has infinite dark corners, and each layer has sublayers [07:59] ddaa: you make me want to cook [07:59] and I was just done with that [08:02] Merge to devel/launchpad/: [rs=kiko] 30919 in launchpad The (r3110: Dafydd Harries) [08:02] wow that took a long time [08:02] yeah [08:02] daf, I talked to elmo about bug 30680 [08:02] malone bug 30680 in launchpad "presenting SSL client certificate from unknown CA prevents connect to https://launchpad.net" [Normal,Unconfirmed] http://launchpad.net/bugs/30680 [08:03] he seems to have said he knows how to fix it [08:03] yay [08:03] is he going to? :P [08:04] that is anoher matter [08:04] elmo: ? [08:05] in launchpad the [08:05] wtf is that? [08:05] it's a typo [08:06] I didn't realised I'd sumitted it [08:06] and submitted one straight after with the right title [08:06] Seveas: I'm going to add a new duplicate-of field to the text pages [08:10] bradb: I have this pattern [08:11] bradb: I go to a bug [08:11] bradb: I think of something to say [08:11] bradb: I type it in the comment box [08:11] bradb: I then realise I also want to change the status [08:11] bradb: I copy the comment I wrote to the clipboard [08:11] bradb: load the editstatus page [08:12] bradb: paste the comment, change the status, submit [08:14] daf: In your ideal world, how would that workflow be made better? [08:14] bradb: I'm not sure [08:15] bradb: I was hoping it might be a useful data point [08:16] daf: You seem to be reinforcing another user's point of view: [08:16] WHY CAN'T I FIX THE BUG FROM THE SCREEN WITH ALL THE COMMENTS ON IT, AND WHY CAN'T I VIEW OTHER BUGS IN THE SAME THING FROM THE SAME SCREEN. GNARGH! [08:16] -- Scott James Remnant, 2005-09-16 [08:16] https://wiki.launchpad.canonical.com/MatthewPaulThomas/DesignProblems [08:16] :) [08:17] also, bug 28574 [08:17] malone bug 28574 in malone "+editstatus and +edit should be one page" [Normal,Confirmed] http://launchpad.net/bugs/28574 [08:22] while I wouldn't word it as strongly as Scott, yes! [08:22] daf: If you want to ensure your data point doesn't get forgotten you might want to a. comment on that bug or b. file a new bug (because this is slightly different, though a symptom of the same underlying UI issue). If you file a new one, we could also add it to the DesignProblems document. [08:23] Merge to devel/launchpad/: [rs=kiko] fix #30919: the string "OOPS code" should not be linkified (r3111) [08:24] Come to think of it, bug 1328 should be in that document too. [08:24] malone bug 1328 in malone "Can't add a comment while editing title/description/confidentiality" [Normal,Confirmed] http://launchpad.net/bugs/1328 === bradb adds it [08:29] LarstiQ: FWIW, I don't mind, *ahem*, "strongly worded" feedback on Malone, because if users are that annoyed about something, there's almost surely a seriously good reason to do something about it sooner rather than later. === LarstiQ nods at bradb [08:30] bradb: I'll keep it in mind when I get annoyed at malone again [08:30] absolutely [08:32] bradb: apart from Bazaar, which upstreams do you know of using Malone? [08:32] (and Launchpad, of course) [08:33] daf: upstream from an lp or ubuntu pov? [08:33] let me rephrase [08:33] how many products? [08:33] daf: bazaar is the only major one that I know of. Launchpad should be able to answer this question, but I guess it kind of doesn't atm. [08:34] daf: anewt isn't big, but it is using malone === AlinuxOS [n=Ubuntu@d83-176-127-153.cust.tele2.it] has joined #launchpad [08:34] LarstiQ: cool, thanks [08:34] According to https://launchpad.net/products there are 249 that have bugs reported. [08:34] aha [08:35] perhaps I can ask stub to give me the 20 with the most bugs === poningru [n=poningru@n128-227-61-6.xlate.ufl.edu] has joined #launchpad [08:36] I imagine the distro team could tell you more too. === poningru [n=poningru@n128-227-61-6.xlate.ufl.edu] has joined #launchpad [08:44] Merge to devel/launchpad/: [trivial] Fix broken query in Person.specifications (r3112: Stuart Bishop) === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad === zyga_ [n=zyga@ubuntu/member/zyga] has joined #launchpad [09:18] do get bugs in malone get closed via upload mentioning the bugno in the changelog? [09:18] Merge to devel/launchpad/: [trivial] fix #29743 (clarify the purpose of +registeredbranches) (r3113: David Allouche) [09:23] siretart: not yet, but not that dapper is running on Soyuz, it might be possible with relatively little effort [09:23] s/not that/now that/ [09:24] bradb: because I see so many bugs having the relevant changelog in the last message [09:24] I was wondering if maintainers are doing this themselves or if launchpad does this for them [09:24] Launchpad's not doing it yet, to be sure. [09:25] okay. thanks [09:40] Merge to devel/launchpad/: [trivial] include dup information in text pages (r3114) [09:41] night guys === carlos [n=carlos@84.76.255.40] has joined #launchpad [10:02] Merge to devel/launchpad/: [trivial] Fix https://launchpad.net/products/launchpad/+bug/30821 (Trying to merge an old Launchpad account into my new one led to an oops), another regression caused by untested code and the removal of SelectResults.__len__() (r3115: Guilherme Salgado) === bradb [n=bradb@modemcable033.209-70-69.mc.videotron.ca] has left #launchpad [] === zyga_ [n=zyga@ubuntu/member/zyga] has joined #launchpad === lamont-a` [n=lamont@mib.fc.hp.com] has joined #launchpad === cogumbreiro [n=tiago@81.20.250.82] has joined #launchpad [10:20] lo all [10:21] can I ask questions about rosetta here? === lamont-work [n=lamont@mib.fc.hp.com] has left #launchpad ["Client] [10:24] when I try to upload a pot file I get this error: OOPS-40A801. [10:24] https://chinstrap.ubuntu.com/~jamesh/oops.cgi/40A801 [10:24] does anyone know why it happens? [10:24] cogumbreiro [10:24] hold on [10:24] gneuman, yes? [10:24] ok then [10:24] I will [10:25] Merge to devel/launchpad/: [trivial] Fix bug # 29548, remove pointless sourcepackage-buildlog page, it was confusing and superseded by +builds page. (r3116: Celso Providelo) === lamont-a` [n=lamont@mib.fc.hp.com] has joined #launchpad [10:26] sorry, its unavailable yet [10:26] maybe in 5 min === lamont-away [n=lamont@mib.fc.hp.com] has joined #launchpad [10:36] cogumbreiro matsubara is having alook at it [10:37] bug 1982 === lamont-away [n=lamont@mib.fc.hp.com] has joined #launchpad [10:38] cogumbreiro: what was the file that you're trying to upload? === zyga_ [n=zyga@ubuntu/member/zyga] has joined #launchpad === JanC [n=janc@lugwv/member/JanC] has joined #launchpad [10:42] night all === lamont [n=lamont@mib.fc.hp.com] has joined #launchpad [10:48] Merge to devel/launchpad/: [trivial] increase bug list batch size to 50 on staging (r3117: Brad Bollenbach) [11:05] matsubara, I tried uploading a pot file and a tar.bz2 file [11:05] matsubara, i can send it to ur email === Mez [n=Mez@ubuntu/member/mez] has joined #launchpad [11:06] don't need [11:06] kk [11:06] cogumbreiro: you've run into a know problem. [11:06] oh [11:06] s/know/known/ [11:07] as a workaround I suggest you to try to upload a tar.gz file and check if it works [11:07] also there's already a bug reported for that, no need to report it again. [11:08] have you reported it on Malone? [11:09] no i didn't [11:10] Merge to devel/launchpad/: [trivial] include dup information in text pages (r3118: Dafydd Harries) [11:10] ok, thanks for helping. try the workaround and see if it works for you. === Mez [n=Mez@ubuntu/member/mez] has joined #launchpad [11:11] I appended the OOPS id you informed to the original bug. It's bug 1982, but it's marked as a private bug and you'll not be able to see it. :-( === poningru [n=poningru@n128-227-61-6.xlate.ufl.edu] has joined #launchpad [11:20] i will do it in a sec === zyga_ [n=zyga@ubuntu/member/zyga] has joined #launchpad [11:35] Merge to devel/launchpad/: [trivial] Add the recipient's email address to shipit exports and add a test for it, fix https://launchpad.net/products/malone/+bug/30979 and another test for it. (r3119: Guilherme Salgado) === poningru [n=poningru@n128-227-61-6.xlate.ufl.edu] has joined #launchpad === poningru [n=poningru@n128-227-61-6.xlate.ufl.edu] has joined #launchpad === poningru [n=poningru@n128-227-61-6.xlate.ufl.edu] has joined #launchpad