[12:09] New Malone bug 1378 filed on product Malone by Brad Bollenbach: MaloneApplication needs to be refactored to not use db classes [12:09] https://launchpad.ubuntu.com/malone/bugs/1378 === sabdfl [~mark@sabdfl.silver.supporter.pdpc] has left #launchpad [] === Mez [~mez@cpc2-lich4-3-0-cust115.brhm.cable.ntl.com] has joined #launchpad [12:17] ok, I'm disabling the status page for today, theres a bug affecting result mail outs. [12:18] I'll reinstate it as soon as I trck it down === terrex [~terrex@84-122-69-8.onocable.ono.com] has joined #launchpad [12:34] Merge to rocketfuel@canonical.com/sqlobject--test--0.6: [trivial] use list comprehension instead of list constructor to stop use of __len__, and avoid a commonly repeated warning. (patch-26: steve.alexander@canonical.com) === asgeirf [~asgeirf@131.181.46.5] has joined #launchpad === terrex se va a mimir, tamn [02:32] Merge to rocketfuel@canonical.com/launchpad--devel--0: [trivial] typo on browser logintoken and testing new email addition and not adding revoked uid with the modified 1024D/DFD20543 key. (patch-2074: celso.providelo@canonical.com) === spiv [~andrew@fuchsia.puzzling.org] has joined #launchpad [03:15] so changing the pending-reviews/ page to use "baz get --link" instead of "baz get" shortened the runtime from ~ 1 hour to ~ 10 minutes [03:15] could probably afford to run it more often === rob^ [~rob@dsl-202-52-55-156.qld.veridas.net] has joined #launchpad === cprov [~cprov@200.169.127.133] has joined #launchpad [04:06] jamesh, I think the only problem with it is with zope [04:07] oh? [04:07] but as you are not touching any file, should be ok for pending-reviews page [04:07] jamesh, something related to file changes [04:07] carlos: yeah. I just get, merge, diff, rm [04:08] carlos: things that use "touch" on tracked files cause problems for hard linked trees [04:08] I think that's the issue for zope [04:11] there is a package to solve that [04:11] but I don't remember its name [04:12] carlos: fl-cow -- apparently daf uses it [04:12] yes, that one [04:12] but it's not in hoary [04:12] neither in breezy [04:12] it is an LD_PRELOAD hack [04:13] right, but it makes bazaar really fast ;-) [04:15] there was a kernel patch a while back: http://lwn.net/Articles/77972/ [04:48] is there an easy way to test that a warning is not printed with a test? [04:48] I mean, we were getting a warning while importing po files, I fixed it and I want to add a test to check that we don't get that warning anymore [04:52] carlos: warnings.filterwarnings() maybe? [04:53] with warnings.resetwarnings() first to clear the existing handlers [04:53] jamesh, I don't want to remove the warning, I fixed the code that raised that warning [04:53] now, I want to test that it does not appear again [04:53] in the future [04:53] carlos: I mean add a filter that matches the warning you fixed [04:54] carlos: and e.g. make the filter raise an exception [04:54] that would make the warning fatal [04:54] carlos: test_initZopelessTwice in lib/canonical/lp/ftests/test_zopeless.py does that sort of thing. [04:54] There may be an easier way to achieve it that what that code does, though. [04:56] carlos: ah. setting action='error' in a warning filter would do what you want [04:56] jamesh: The problem with filterwarnings/resetwarnings is what if there are existing filters you don't want reset? [04:56] spiv: poke around in the undocumented internals of the warnings module instead of using resetwarnings() ? [04:56] All you really want is a way to add a filter and then remove it, and the public api doesn't seem to allow that. [04:57] jamesh: Right :) [04:57] jamesh, spiv but the warning would appear in other places [04:57] del warnings.filters[0] [04:57] it comes from sqlobject [04:57] UserWarning: Getting a slice of an unordered set is unpredictable. [04:57] carlos: so in your test case, you do warnings.filterwarnings(), invoke your code, del warnings.filters[0] [04:58] carlos: you can filter by module and lineno of where the warning was caused from. === stub [~stub@203-217-37-199.dyn.iinet.net.au] has joined #launchpad [04:58] it'd be nice if the unittest module had some helpers to check for warnings [04:59] Yeah. [04:59] hmm, sounds too complex and the code works exactly the same with or without the warning... [04:59] jamesh: did you implement all the changes I suggested ? [04:59] test.py or test_on_merge.py already has some stuff to change warning filters. [05:00] spiv, do you think jamesh solution is a good one?, it sound easier :-P [05:00] stub, the question is how to test that a warning is not there anymore [05:00] carlos: sure, but with a comment saying this isn't part of the public api of the warnings module. [05:00] spiv: What happened to that Librarian branch with the extra config items and the upstream facility? [05:01] stub: I told you where it was, and I thought you were going to use it and it was back in your hands :) [05:01] lifeless: the pending-reviews/ page is just doing a diff between rocketfuel and rocketfuel+branch, rather than diffing two versions of a branch [05:01] spiv, in that case, I prefer to leave that code without a test as it's not a problem if we get the warning, I'm removing it just to reduce the verbosity of the cronscript... [05:01] carlos: Configure the warning handler to die instead of print the message. The test runs, there is no warning. [05:01] spiv: Argh! [05:01] lifeless: so only the "baz get --link" part was relevant (but made a huge performance improvement) [05:02] stub: I seem to recall this happened on irc, which probably wasn't a good idea in hindsight :/ [05:02] hmmmm [05:03] stub: andrew.bennetts@canonical.com/launchpad--librarian-upstream--0 is the branch. [05:03] spiv, what about changing sqlobject so instead of a warning, you raise an exception as stub suggests? [05:03] Doesn't need to change SQLObject - just need to change what warning filters we have installed [05:03] carlos: you can add a warning "filter" that raises an exception. [05:03] spiv, 99.9% it will be a programming error... [05:04] carlos: It will break launchpad :) [05:04] spiv, pqm should reject any code that does it, right? [05:05] iirc, it happens in quite a few places, but I could be wrong. [05:06] spiv, then we should fix those ;-) [05:06] Install the new filter in test.py or test_on_merge.py (I forget which is already doing this). Its been on my todo to make *all* warnings fail tests, but fixing all the callsites could be difficult ;) [05:07] stub, I think SteveA's work is a first step in that direction, isn't it? === stub has no idea since he missed the start of the conversation [05:08] stub, well, I'm talking about SteveA's mail about tests output [05:09] Steve's mail mentioned two warnings in Rosetta that shouldn't be there - they should be logging an error. The Warnings framework is very specific. [05:15] stub, yeah, that's another thing I'm going to fix [05:17] jamesh: k === ChanServ [ChanServ@services.] has joined #launchpad === mpt [~mpt@203-167-186-120.dsl.clear.net.nz] has joined #launchpad [05:30] stub, btw, did you see SteveA's suggestion to handle emails on staging? === lamont-away is now known as lamont [06:08] carlos: Yes. Sucky method, which I've told him before ;) All emails will go to launchpad-error-reports instead where people can see them easily rather that stuffing around with mailboxes. [06:09] But we still need t make the same fixes to the mail libraries, which nobody has done yet. [06:12] stub, that will help me a lot to debug poimport script [06:12] it's completely broken and I'm taking production output to fix it [06:12] that means we have it broken on production [06:12] with real data [06:13] well, that would be useful to debug any script ;-) [06:15] carlos: Feel free to add the required intelligence sendmail.py [06:16] I don't have any idea about how it should be updated 0:-) [06:19] It needs an option so all outgoing email is redirected to a configurable email address instead of going to the requested email address. I think we can already do this for emails from Zope using the existing stub emailer, but the Zopeless email needs this too. [06:56] stub, spiv is it a big issue if I execute a query that returns 17000 rows?, I'm not getting their SQLObject mapping at the same time, I'm using 'yield' to iterate over them [06:57] it's not inside Launchpad but inside a Rosetta cronscript [06:57] carlos: probably fine. [06:57] ok [07:02] Sure === ddaa [~ddaa@marvin.xlii.org] has joined #launchpad [07:36] tests take so much time to run.... [07:38] carlos: you know you can restrict tests to a specific module or class? (at least with unittest-based ones) [07:39] like "python test.py canonical.arch" === rob^_ [~rob@dsl-202-52-55-156.qld.veridas.net] has joined #launchpad [07:43] ddaa, hmmm, I thought make check just executes launchpad's tests.... [07:43] yes [07:43] carlos: make check sets up the db and runs the test suite [07:43] I see no contradiction [07:44] ddaa, I mean canonical.launchpad [07:44] lifeless, yeah, the db setup is fine, the 'test suite' is the issue if it executes tests outside canonical.launchpad ;-) [07:45] huh... AFAIK it will run test_suite() that appears under ./lib/ [07:45] * will run any test_suite() [07:45] except things that are in different trees, of course [07:46] ok [07:47] thanks [07:47] maybe I'm the one confused... [07:55] stub, the tests are failing with 'Unable to start Librarian' errors, anyhint? I didn't touch anything related with Librarian.... [07:55] ddaa, next run I will use your suggestion and will confirm if you are confused or not ;-) === BjornT [10183@82-135-221-189.ip.takas.lt] has joined #launchpad [08:04] carlos: There might be a librarian process running already, which you should kill [08:09] stub, no librarian process running === ddaa [~ddaa@marvin.xlii.org] has left #launchpad [] === dda1 [~ddaa@marvin.xlii.org] has joined #launchpad [08:39] spiv: i'm going to the dentist shortly, but i'd like to catch up with you later [08:41] spiv: see sqlobject/dbconnection.py, line 639. I think there may be transactional issues with the librarian tests, or the librarian libraries. [08:46] SteveA: Ok, I'll take a look. [09:01] spiv, is there any possibility that aSQLObject.sync() call produce a transaction commit? [09:02] SteveA, I'm geting lots of pagetest failures with 404 errors with latest rocketfuel code and my local changes are unrelated to those pages [09:05] lifeless: Your pqm queue seems to be down [09:05] stub: yes, theres a bug, I've reverted the code [09:11] carlos: no, syncing won't ever commit. [09:11] spiv, perfect, thanks [09:13] spiv: do you think it would be useful to have a function somewhere to retrieve the database transaction time? (like UTC_NOW, but usable in comparisons within Python code) [09:15] stub, seems like the problem with librarian is that it's executed once but it does not ends and the next test is not able to relaunch it [09:16] carlos: Sounds like a test forgot to teardown properly. [09:16] ie. called LibrianSetup().setUp() but not LibrarianSetup().tearDown() [09:17] I will check it again, but I don't think I changed/added anything related to librarian setup or teardown in my branch [09:20] jamesh: It could even be made into a method of UTC_NOW ;) [09:20] jamesh: UTC_NOW.what_am_i_really() ;) [09:20] spiv: I just remember catching a problem in Mark's debbugs branch where he misused UTC_NOW [09:20] spiv: doing "if some_datetime_object > UTC_NOW: ..." [09:21] which always evaluated to True [09:21] jamesh: I guess at least UTC_NOW should raise an exception in that case. [09:21] since "some_datetime_object > UTC_NOW" returns an SQLBuilder object [09:21] spiv: it is useful being able to compare with UTC_NOW though [09:22] spiv: eg. Table.select(Table.q.datefield > UTC_NOW) [09:22] Sure, but only with objects that can be meaningfully compared to it. [09:22] e.g. other SQLBuilder objects. [09:22] hmm === asgeirf [~asgeirf@131.181.46.4] has joined #launchpad [09:22] good point [09:22] there isn't much reason to compare UTC_NOW against a constant date [09:23] alternatively, it could magically do the right thing if you do so :) [09:24] Yeah. It *could* go an issue a "SELECT CURRENT_TIMESTAMP AT TIME ZONE 'UTC';" I guess... [09:24] although raising an exception or returning NotImplemented would probably be better [09:24] so people don't confuse UTC_NOW with an actual datetime object === spiv nods [09:27] Anyone got time to give me a little baz help? [09:29] mpt, just ask [09:32] I need to know which was the last patch to alter a particular file [09:32] and baz annotate looks like what I want [09:33] but when I type "baz annotate lib/canonical/launchpad/images/user.gif", it just sits there [09:33] it doesn't exit, or do anything [09:33] mpt: its not very optimal at the moment [09:33] mpt: if its sitting there its working. wait. [09:33] Well, last time I tried it had still done nothing after 30 minutes [09:34] so I thought maybe it was expecting input from stdin or something [09:34] mpt: nope [09:35] mpt: it hits every revision ever. Takes a while - you might want to do a checkout on chinstrap and run it there [09:35] oh, and its not tested on binary files. :/ [09:35] heh [09:35] in fact, for you, just run baz changelog | less, grep for \.gif [09:37] ok, I've found it [09:38] It's in the middle of a bunch of other modified files [09:38] ah, even better, I've found a patch I want to replay [09:39] ok, that looks easy enough [09:39] lifeless: pqm is hung [09:40] stub: ack [09:42] stub, https://chinstrap.ubuntu.com/~dsilvers/paste/filer5OmVN.html [09:43] stub, Any hint to debug the problem a bit more? [09:43] spiv, ^^^ [09:44] I'm not sure, but the fact that several tests are executed more than once seems also as something broken, isn't it? [09:45] The multi-tests are deliberate - I run some of the harness tests multiple times to ensure that they teardown stuff correctly [09:45] ok [09:45] tachandler.py is new - it isn't in any of mu trees [09:46] it's not mine [09:46] so it should come from rocketfuel === stub kicks off a merge === ChanServ [ChanServ@services.] has joined #launchpad === ddaa [~ddaa@marvin.xlii.org] has joined #launchpad === mpt [~mpt@203-167-186-120.dsl.clear.net.nz] has joined #launchpad === spiv [~andrew@fuchsia.puzzling.org] has joined #launchpad === Burgundavia [~corey@S0106000000cc07fc.gv.shawcable.net] has joined #launchpad === carlos [~carlos@69.Red-80-33-181.pooles.rima-tde.net] has joined #launchpad === dilys [daf@muse.19inch.net] has joined #launchpad === lamont [~lamont@mix.mmjgroup.com] has joined #launchpad === Kinnison [~dsilvers@haddenham.pepperfish.net] has joined #launchpad === comadreja [~comadreja@comadreja.active.supporter.pdpc] has joined #launchpad === spiv [~andrew@fuchsia.puzzling.org] has joined #launchpad [09:52] carlos: i was getting lots of errors the other day [09:52] but i found out what it was [09:52] Oh botch your own damn invariant [09:53] SteveA, does it means the error is in my computer? [09:53] well [09:53] what happened with me is two things [09:53] 1. i had a librarian process running [09:53] 2. i had a /var/tmp/fatsam.test/ directory [09:53] the librarian parts of the test suite don't handle those cases well [09:53] and cause lots of failures [09:54] me too, but I killed the librarian and removed the directory [09:54] and you still get the errors? [09:54] and tests are still failing [09:54] okay, do two things: [09:54] seems like librarian is not killed after a test [09:54] 1. get a diff from your tree to rocketfuel [09:54] SteveA, I did it already, and I don't see any change that should affect librarian [09:55] 2. turn off chunkydiff in launchpad.conf, and run the tests, output to a file with python test.py canonical 2> errors.txt === carlos tries that === SteveA removes unused imports from mail/handlers.py === SteveA removes unused imports from mail/commands.py [09:57] BjornT: there are still two database imports into commands.py [09:57] mpt: I have a small question about list box vs. combo box usage [09:57] You mean listbox vs. where n > 1, combo box being "1"> and "1"> for the single-select case [10:03] there's those too [10:03] i think brad is handling canonical.launchpad.systemhomes [10:03] carlos: how's your test runs going? [10:03] jamesh: If you wanted to go to the trouble of making it crystal clear, you could use
with radiobuttons inside it instead of checkboxes. [10:04] SteveA, stub https://chinstrap.ubuntu.com/~dsilvers/paste/file4qUVdn.html [10:04] mpt: I don't think that is necessary. I think it is fairly clear from the context that it is a single select box [10:05] carlos: you're sure you have no librarian processes? [10:05] carlos: ps aux | grep python or something [10:05] SteveA, when I start executing the test I don't have any [10:05] SteveA, after the test run, I have one [10:05] I kill it, rerun the tests and it appears again === sivang [~sivang@box79162.elkhouse.de] has joined #launchpad === carlos cannot remember last time he was able to get a success with all tests [10:07] spiv: ping [10:07] carlos: are all of your other trees up to date? [10:07] SteveA, yes, I checked it twice [10:08] I'm using the same command that the refuel script uses [10:08] carlos: I suggest updating tacserver.py to output the log file before raising the RuntimeError - might have some hints. Possibly something similar in the tearDown [10:09] stub, where is it? [10:10] Where the exception is being raised [10:10] I mean, the file [10:10] File "/home/carlos/Work/dists/launchpad/lib/canonical/launchpad/daemons/tachandler.py", line 33, in setUp [10:10] oh [10:10] ok [10:10] I was looking for tacserver.py O:-) [10:11] it's spelled "tachandler" but pronounced "tacserver" ;-) [10:14] SteveA: ok, i'll fix bugactivity and bugprivacy as well [10:14] thanks! [10:14] when you fix one, you can remove it from the set of warned_database_imports in importfascist.py [10:16] lifeless: Can you please check if production--1.25 has been tagged but not mirrored? [10:17] stub: good guess [10:18] erm... 'the usual' you mean :) === sabdfl [~mark@pc-n253.wlan.inet.fi] has joined #launchpad [10:22] hey guys [10:22] Hi sabdfl, review sent [10:22] thanks mpt [10:24] BjornT: Can you point me to an example of a test that demonstrates the necessity of a change to security.cfg? [10:27] sabdfl: Currently if you set a bounty subscription from CC/Watch to None, does that leave behind a record in the database that wouldn't have been there if you'd never subscribed to the bounty at all? [10:28] mpt: i don't remember. i have a slight allergy to deletions, which stub tells me is paranioa. so i might have done it that way [10:30] status queue back up - status emails should now be sent properly. === elmo [~james@a130-233-4-133.debconf5.hut.fi] has joined #launchpad [10:35] stub, I'm using pdb [10:36] Merge to rocketfuel@canonical.com/dists--devel--0: [trivial] New production config (patch-95: stuart.bishop@canonical.com) [10:36] stub, and setUp is not called ever for librarian :-? [10:36] it's only called with buildd [10:37] Most tests don't use the librarian, so won't set it up or tear it down. [10:38] stub, but I get the error that it cannot execute librarian [10:38] even without entering into pdb :-? [10:39] mpt: it does get deleted. the easiest way for you to add a test is to edit pagetests/bounty/04-bounty-subscriptions.txt. copy the last test, change Content-Length: 45 to Content-Lenght: 44, subscription=watch to subscription=none, and adjust the expected output === carlos tries again removing some crap he added... [10:39] BjornT: ok, thanks [10:40] fuck [10:40] stub, ddaa there is a hardcoded message talking about Librarian, but buildd is using also that code. the error comes from buildd [10:41] -ECONTEXT [10:41] carlos: what is it your are talking about? [10:41] ddaa, I'm not able to run test in my computer [10:41] ddaa, https://chinstrap.ubuntu.com/~dsilvers/paste/file4qUVdn.html === ddaa kicks firefox in the balls [10:42] ddaa, if you look at the RuntimeError exception, it says Librarian, but it's buildd [10:43] somebody gotta teach the firefox devels that popping up a certificate dialog in _another_ workspace is WRONG, even if that's the workspace of the first firefox window :( [10:43] I think I'm going to file this bug, it's way too annoying. [10:43] So fix the message? [10:43] stub, anyway, I still have the problem with the tests [10:44] So did the logfile give you any useful information? If twisted doesn't start, the information will be in there. [10:45] stub, I don't see any log file write there, just a read one, that's why I'm using pdb [10:45] carlos: why where you addressing this message to me? I cannot see anything in the error log that I'm better qualified to fix that you are... [10:45] ddaa, I thought buildd is your code... [10:46] The output is redirected to self.logfile [10:46] IIRC it's mostly debonzi, with some real chunks of Kinnison, and spiv seasoning for the review. [10:46] take or give one... [10:46] ddaa, oh, right, sorry, I confuse it with the import code [10:47] stub, ok, lets try... [10:47] yeah, my lair is importd... that's is _not_ buildd or and _not_ the other importd rosetta used to run :) [10:49] stub: which branch is going to production today? [10:49] launchpad--production--1.24 [10:49] erm.... 1.25 [10:50] stub: when was it tagged off rf? [10:50] i have a branch that tagged off friday morning [10:50] it's almost entirely ui [10:50] i was hoping to slip it into that production update [10:50] Fri Jul 8 09:06:58 BST 2005 [10:50] was when it last merged rocketfuel [10:50] patch-2069 [10:51] how can i tell the match level i merged into a patch in my branch? [10:51] I look at the messages returned by pqm [10:52] sabdfl: what do you mean ? [10:52] sabdfl: do you mean 'when did patch-FOO land in my branch' ? [10:52] lifeless: baz log shows me the last time my commit message said "merged rocketfuel" [10:52] sabdfl: patch-2069 was from Sunday, so yours is in there. [10:52] i want to know what patch level of rocketfuel i merged === Mez [~mez@cpc2-lich4-3-0-cust115.brhm.cable.ntl.com] has joined #launchpad [10:53] sabdfl: 'baz changelog' is probably the best tool here. baz 1.5 has 'baz log --merges' which will give you that extra detail. [10:53] stub: ok, so if i merge from production-1.25, fix tests, get a review... [10:53] sabdfl: if you are running 1..5, baz log --merges. [10:54] stub, the log file does not exists when we get the exception === terrex [~terrex@84-122-69-8.onocable.ono.com] has joined #launchpad [10:56] carlos: So twistd is not starting at all I guess. Need to debug that os.system call just above to work out why (I'd suggest switching it to use subprocess.Popen() and the communicate() method so you can capture the output easily. [10:56] Perhaps you don't have twisted installed? [10:58] stub, the problem is that we have another twisted process running for buildd [10:58] stub, but /var/tmp/buildd is empty [10:58] so I think the problem is that those files are removed before the process is executed [10:58] I mean, It's killed [10:59] is that possible? [11:00] stub, https://chinstrap.ubuntu.com/~dsilvers/paste/filelyRHHV.html [11:00] I have no idea - I know little about twisted or buildd ;) [11:01] Kinnison, ? [11:01] I'd see if that other process actually *is* running [11:01] carlos: Hmm? [11:02] Kinnison, I'm having problems with buildd [11:02] and tests [11:02] carlos: cprov wrote the test harness [11:02] carlos: having multiple twistd processes is probably ok, as the buildd and librarian are separate. === Kinnison is pleading ignorance :-( [11:02] carlos: what's up exactly [11:02] lifeless, it's not a problem with librarian at all, the message talks about librarian, but it's 100% buildd [11:03] Kinnison, a process is left behind [11:03] so next test fails because buildd cannot be executed [11:03] carlos: so the buildd stuff isn't being torn down? [11:03] Kinnison, it is [11:03] but seems like the files at /var/tmp/buildd are removed before the process is killed [11:04] That's a bit odd [11:04] Launchpad and the database are currently down for production upgrades btw. [11:06] stub: so i've missed today's production drop? ok [11:07] carlos: could it be buildd using librarian ? [11:07] lifeless, don't think so, with pdb I only saw buildd executions [11:07] sabdfl: It can be cherry picked when you are done. Code only updates are pretty quick. [11:08] Assuming it is a bugfix... features should be run on staging and by other developers for a while before getting to production [11:09] stub: baz merge and 00star0merge are failing against production--1.25 [11:09] i'll just skip this cycle - fix, lots of ui cleanup in there [11:09] anyway, I got the test failure with librarian now [11:11] stub: will you setup the update-stats.py cronscript too? [11:11] sabdfl: Yup. Thanks for the reminder. [11:11] I should do Malone email too [11:11] maybe run it after the update [11:13] could someone paste the file '/var/tmp/fatsam.test/librarian.log' content so I can see how it looks like? === carlos found the fucked problem [11:28] carlos: oooh [11:28] breezy is using twisted 2.0 now [11:29] and we have a really weak check to know that the server is running [11:29] Aaah [11:29] "if 'set uid/gid' in open(self.logfile, 'r').read():" [11:29] eww [11:29] that's always False with twisted 2.0 [11:29] Merge to rocketfuel@canonical.com/launchpad--devel--0: [trivial] revert person icon, again (patch-2075: mpt@canonical.com) [11:29] Go us! [11:30] SteveA, any suggestion to fix it in a way that it's compatible with twisted 2.0 and 1.3? [11:31] spiv: ^^^ [11:31] carlos: spiv is da twwsted god [11:32] right, I'm a bit confused atm this debug session burned my brain... === rob^_ is now known as rob^ === rob^ [~rob@rob-ubuntu.student.supporter.pdpc] has left #launchpad ["Leaving"] [11:36] stub: update-stats.py running now? [11:37] sabdfl: Yes [11:37] cool thanks, can't wait to see the results === mpt stares at production uncomprehendingly for a couple of minutes, then Shift+Reloads [11:49] that's better [11:55] mpt, I hate that firefox caches the .css... [11:55] carlos: Why shouldn't it? [11:55] I think every browser does [11:56] mpt, if you change the file in the server, it should refresh it [11:56] mpt, launchpad looks really ugly unless I force a reload [11:56] with the ui changes [11:56] that would mean HEADing the style sheet on every page load [11:57] mpt, or setting a timeout for it [11:57] and delaying the page layout until that response arrived [11:57] Setting a timeout for it is the server's job [11:57] But the server didn't know, yesterday, that the style sheet was going to have major changes in it today :-) [11:58] mpt, then launchpad has a bug, it needs to know the future [11:58] :-) [11:58] spiv: i've put a branch in your queue, should be quick and easy it's 90% templates which mpt has already reviewed [11:59] the code changes are primarily just shuffling code into the right places, especially DummyFooBar's [11:59] carlos: If we were really worried about it, we could temporarily rename launchpad.css to something else, and change the main template to match, so that it appeared to be a new file [11:59] and then change it back to the old name after a week or two [12:00] mpt, so every week the .css changes its name? ;-) [12:00] only for major changes [12:02] mpt: what's the current timeout? [12:02] sabdfl: I can't tell, I don't have LiveHTTPHeaders installed, and none of the online cacheability checkers seem to do HTTPS [12:03] ah, lynx to the rescue [12:03] Cache-Control: public,max-age=86400 [12:04] So, you shouldn't be stuck with the old style sheet for more than 24 hours [12:06] you beat me to it :-) [12:07] oh schweet [12:07] new lp ROCKS [12:07] great work [12:07] sabdfl: I'm having trouble tracking elmo down. [12:07] sabdfl: are you near him ? [12:08] carlos: https://launchpad.ubuntu.com/distros/ubuntu/hoary/+translations [12:08] i think that's worth a mail to the ubuntu translators list [12:09] lifeless: i haven't seen him today [12:09] wow [12:09] sabdfl, nice [12:09] sabdfl: well, if you do ... please ;0 [12:10] carlos: will you point our translators at that page please? [12:10] this one is pretty cool too, if you are Jordi :-) [12:10] https://launchpad.ubuntu.com/distros/ubuntu/hoary/+lang/ca [12:10] sabdfl, sure, let me try to contact daf first so we can use the same Rosetta announcement [12:10] jordi: ^ [12:10] carlos: i need to edit that announcement [12:10] i think it's worth infomrally pointing people at that page now that it's in production [12:11] sabdfl, I know, but I don't know where is it [12:11] ok === terrex [~terrex@84-122-69-8.onocable.ono.com] has joined #launchpad [12:12] carlos: what's the twisted issue? [12:12] SteveA: a twisted 2.0 incompatability, hes running breezy [12:13] SteveA, https://launchpad.ubuntu.com/malone/bugs/1385 [12:14] lifeless, carlos, SteveA: this issue was already fixed by daf :( [12:14] spiv: heh [12:14] spiv: I thought you would know [12:15] spiv, then it's not merged into rocketfuel [12:15] carlos: It was :( [12:15] sabdfl: stats have finished their first update [12:16] carlos: patch 1922, I think. === carlos checks [12:16] stub: looks wonderful, thanks! [12:18] stub: i got a pqm rejection, couldn't set up the database as another user was accessing it [12:18] * Creating database "launchpad_ftest_template" with sample data. [12:18] createdb: database creation failed: ERROR: source database "template1" is being accessed by other users [12:18] createlang: could not connect to database launchpad_ftest_template: FATAL: database "launchpad_ftest_template" does not exist [12:18] send it again [12:18] i have done [12:18] why does it fail? [12:19] spiv, seems like cprov changes to add buildd tests reverted daf's changes === carlos tries to recover the patch and reapply it [12:20] SteveA: Some connection hadn't dropped. Can't drop or duplicate databases if there are open connections. [12:20] do you know why open connections hadn't been dropped? [12:20] SteveA: That case could be fixed by trying again [12:20] OOI is malone meant to list 'Fixed bugs' rather than simply hiding them? [12:21] sabdfl: cvd needs you to call SA [12:21] SteveA: Nope. Just happens - when you close a connection at the client, the backend might take a while to actually kill the process. Or some process left by the previous test was still hanging around. [12:21] In this case process 9231, but it died before I could see [12:22] jamesh: how often does the pending-reviews script run now? [12:24] spiv, ok, I see daf's patch, but I still see it too hacky [12:24] still every 6 hours. It managed to complete a run in 20 minutes using "baz get --link", but the next one ran in 40 minutes [12:24] jamesh: does it have a revlib ? [12:24] spiv, isn't there a better solution than check log's output? [12:24] lifeless: yeah [12:25] jamesh: mmm [12:25] lifeless: could depend on whether pqm is active during the run [12:25] disk contention [12:25] right [12:26] but it is probably feasible to do more frequent checks [12:26] carlos: There's a more complex solution I used to have for the librarian, but really the added complexity isn't worth it. [12:26] ok... [12:27] carlos: (a TCPService subclass in the .tac that writes a foo.ready file that the launching process can wait for) === SteveA [~steve@adsl-213-190-44-43.takas.lt] has joined #launchpad === Kinnison finishes his weekly play with Production having filed a few bugs [12:41] BjornT: I'm getting mails from malone saying a new bug has been filed [12:42] but it doesn't tell me who filed the bug [12:43] i'd also like to see the summary of the bug included above each comment in mails notifying me of comments [12:43] SteveA: hmm. it's brad who changed the notification mails. better to talk to him about it. [12:45] Merge to rocketfuel@canonical.com/launchpad--devel--0: [r=jamesh] Utility to run meld on a launchpad branch against the most recent merge of rocketfuel (patch-2076: stuart.bishop@canonical.com) [12:45] maybe the spammers have joined launchpad without realizing it... [12:45] ---- [12:45] I get online and I get this email from this girl [12:45] Gina. She invites me to join her favourite dating [12:45] site and see all her friends. [12:45] ---- [12:45] no dude, it was a launchpad error message === Kinnison sniggers [12:46] SteveA: dude, gina *loves* you [12:46] SteveA: bend over and prepare to be filled with binary packages [12:53] sabdfl: spiv's getting dinner. I looked through the code on that branch. [12:53] sabdfl: there are some minor PEP-8 issues. The only code issue I have is this [12:53] in browser/person.py, you have added the method no_bounties [12:54] the method name should represent its boolean status, so something like "has_no_bounties". [12:54] i think it would be clearer with a positive method name, such as "has_bounties". [12:54] even though it is used in the opposite sense in page templates [12:55] "not: view/has_bounties" reads well enough to me. [12:55] sabdfl, I have the email ready to be sent, do you want to read it first? (regarding the statistics) [12:56] carlos: no, go ahead [12:56] ok [12:57] I got also the draft from daf [12:57] will review it and send it to you after lunch [12:57] just in case you want to take a look now, https://wiki.launchpad.canonical.com/RosettaOneDotZeroAnnouncement [12:58] sabdfl: i'm happy for you to merge that branch. i'll polish up the minor pep-8-isms later, as that'll be easier than commenting on it, and will free up spiv to work on some librarian issues i want him to work on. [12:59] SteveA: thanks! [01:00] test fixes in progress (lots of little page changes) [01:00] i'll change the view/has_bounties thing [01:00] cool [01:00] the dummy language stuff reads well [01:01] tests are taking a long time to run these days [01:01] what do you do to run the tests? [01:01] i tend to run them selectively, except immediately before landing [01:03] BjornT: I remember what is needed doing for the inbound email configuration now. We have no way of configuriring the mailbox without hacking script.zcml directly now, because scripts do not load any .zcml overrides. I'll sort .zcml overrides for zopeless since it is quick. === terrex [~terrex@84-122-80-126.onocable.ono.com] has joined #launchpad [01:12] Merge to rocketfuel@canonical.com/launchpad--devel--0: [trivial] fixed up some unneeded imports (patch-2077: steve.alexander@canonical.com) [01:18] I am a duplicate code removal GOD [01:19] you replaced hackerlib ? ;-p [01:19] if only it was duplicate code ;0 [01:20] no, I finally drilled in enough to remove arch_changeset_rewrite_indexes, which was a stupendously stupid function to ever exist [01:20] theres now only a couple of places the changeset format leaks through in on the creation side, which I'm well placed to attack with extreme prejuidice. [01:22] SteveA: we're up to changeset 11K in zope3 [01:22] thats the svn number === terrex_ [~terrex@84-122-80-126.onocable.ono.com] has joined #launchpad === terrex [~terrex@84-122-80-126.onocable.ono.com] has joined #launchpad === debonzi [~debonzi@201-13-41-28.dsl.telesp.net.br] has joined #launchpad === cprov [~cprov@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [01:25] is there a simple way to get vim to understand that a filename that ends in :NNN like foo.py:123 means "open foo.py and go to line 123" ? It knows about vim foo.py +123 [01:27] lifeless: are you able to answer a question about the hct path API for launchpad? [01:27] SteveA: write a simple shell script in ~/bin/vim [01:28] sabdfl: hehe [01:28] oh yeah, i could write a simple python script in ~/bin/vim [01:29] python seems a tad overkill [01:29] okay, lua [01:29] i object to shell [01:29] why do you object to shell? [01:30] and I'd recommend python over lua [01:30] you'd have to do fun shell escaping with lua [01:30] lua lacks an exec() wrapper [01:30] it only has system() [01:30] do i need a reason to object to shell? [01:33] https://launchpad.ubuntu.com/people/stevea/+assignedbugs takes a while [01:35] SteveA: yes, for shell is handy and neat [01:38] Merge to rocketfuel@canonical.com/launchpad--devel--0: [trivial] Reapplied daf's patch to use twisted 2.0 with launchpad (Closes: #1385) (patch-2078: carlos.perello@canonical.com) [01:44] BjornT: i'm having a weird problem with finding bugs assigned to me [01:44] SteveA: what kind of problems? [01:45] well, i've just spent 15 minutes searching in various ways for but 1240 [01:45] i didn't know its number until i found it [01:45] so, it doesn't appear here: https://launchpad.ubuntu.com/people/stevea/+assignedbugs [01:45] but, it does appear here: https://launchpad.ubuntu.com/malone/assigned === spiv is back from dinner [01:45] i want a place where i can see all the bugs assigned to me, no matter how many, no matter what the priority [01:46] spiv: i handled mark's ui review [01:46] SteveA: I just saw. Thanks! [01:46] did you get a chance to look at the librarian tests? [01:46] Looking now. [01:47] i'd like to make transactions obsolete on commit [01:47] and these tests are the only things that seem to stop that [01:47] I suspect my librarian-cleanups branch is relevant here, but that's just a guess at this stage. [01:47] what do you need to do to land it? [01:47] jamesh: when is the next update of your pending reviews page due? [01:48] SteveA: A review. [01:48] SteveA: It was added to the general review queue before I went on holidays, but for some reason hasn't been reviewed. [01:49] + # XXX: There really should be a formal interface that both this and [01:49] + # ZopelessTransactionManager implement. [01:50] own it [01:50] + # XXX: update the whole file to use 2.4's decorator syntax. [01:50] looks more like a bug to be filed [01:50] own the other XXXs you added [01:51] note that i made some changes to sqlos and sqlobject recently [01:51] including changing the ConnectionDescriptor [01:52] spiv: looks good to me, with the comments above taken into account. [01:53] Ok, I'll act on those. Thanks! [01:58] SteveA: ok, +assignedbugs seems to show bugs on packages/products that you maintain, not bugs where you are the assignee. i'll talk to salgado and brad about it, we should coordinate a bit better in that area. [01:58] my own use cases are like this: [01:59] - 1. stuff that i need to code: what bugs that aren't rejected or fixed, do i need to work on. i want to see them all. [01:59] ddaa: ping [01:59] - 2. stuff i'm responsible for makeing happen indirectly. these will be open launchpad bugs that no one else has claimed. [02:00] jblack: heya [02:00] on https://launchpad.ubuntu.com/people/stevea/+assignedbugs, there's some very confusing text [02:00] How are you? [02:00] The bugs with greater priority assigned directly to Steve Alexander or to one of the packages/products (s)he maintains. [02:00] What does "The bugs with greater priority..." mean? [02:01] jblack: filing a bug on firefox... that's incredibly painful when you follow the steps, but I'm seeing the end of it. [02:01] heh. [02:01] btw, do you have that url for roomba-readyy-to-enable page? [02:01] Lifeless asked me to scan that this mornign. Its built up apparently. [02:02] launchpad.ubuntu.com/bazaar [02:02] you've got a link somewhere there to the search form [02:02] SteveA: i don't know. salgado is responsible for that page [02:02] (I could give you the exact url, I prefer to let you find by yourself) [02:02] cprov, debonzi: where's salgado today? [02:02] Manage upstream imports? [02:03] yup [02:03] SteveA: coming soon, I hope [02:03] That can't be right. There's only one there. Robert asked me about 1-2 hours ago to do 30 [02:03] the tricky bit on the form is the "ready" checkbox, AIUI it roughly means "restrict only to series whose product was approved". [02:04] That's "Testing" === carlos -> lunch [02:04] you are interested in "Auto Tested" [02:05] SteveA, don't know.. working from home today [02:05] 06:08 there are 30 autotested-ok but not enabled imports - can you move them [02:05] all to enabled today ? [02:05] I only see one link there. :) [02:05] did you read what I just wrote? [02:06] Oh, ok. there we go. I had to change filter criteria to auto-tested. [02:06] and turn off ready as you suggest. [02:06] Thanks, ddaa === terrex [~terrex@84-122-80-126.onocable.ono.com] has joined #launchpad [02:08] SteveA: My librarian-cleanups branch does make those tests pass. [02:09] cool [02:09] what was the critical change? === terrex [~terrex@84-122-80-126.onocable.ono.com] has joined #launchpad [02:10] SteveA: Explicity beginning and committing transactions, probably. === terrex [~terrex@84-122-80-126.onocable.ono.com] has joined #launchpad [02:19] daf: ping [02:23] Merge to rocketfuel@canonical.com/launchpad--devel--0: [trivial] Add upstream librarian support for the staging environment (patch-2079: stuart.bishop@canonical.com, andrew.bennetts@canonical.com) === salgado [~salgado@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [02:29] hi salgado [02:29] hi SteveA [02:29] on https://launchpad.ubuntu.com/people/stevea/+assignedbugs [02:29] what does "The bugs with greater priority..." mean? [02:30] i had a problem finding a bug that is assigned to me [02:30] i eventually found it on https://launchpad.ubuntu.com/malone/assigned. it was not on https://launchpad.ubuntu.com/people/stevea/+assignedbugs [02:30] very confusing [02:31] as i was explaining to bjorn earlier, i have two use-cases for seeing bugs assigned to me [02:31] 1. bugs that i'm directly responsible for fixing [02:31] 2. bugs that i need to sort someone out to fix -- that is, launchpad bugs with no one assigned to them [02:32] yes, this is true. that page on foaf is supposed to be only the 10 most recent/prioritized bugtasks assigned to you [02:32] i need to see all such bugs that are not rejected or fixed, no matter what the priority [02:32] the 10 most recent is useless to me [02:32] and the page doesn't make that clear [02:32] the 10 most recent is okay, if i can get to a page that shows them all [02:33] but, i simply can't use malone to do my job if i can't find out what bugs are assigned to me, or what bugs i need to get handled by someone. [02:33] well, when I created that page we didn't have this page where you could see all bugs assigned to you (we had but it was unusable) [02:33] as i'm using malone more and more for launchpad development, that's what i'm finding i need [02:34] brad asked me the other day whether it would work to assign a bug to me to get me to work on it [02:34] i said "okay", but i was assuming i'd be able to find the bug later :-) [02:35] as an instant improvement, the +assignedbugs page needs to clearly say it shows at most 10 bugs in each category, and be clearer about what the categories are. [02:35] doesn't actually help my problem, but would have stopped me thinking i'd lost a bug from the system, or it had been fixed. [02:37] I see your point. I'll fix this and get that page linking to malone/assigned [02:38] what's the longer term plan? [02:39] people suggested that it should be possible to search and see all bugtasks assigned to you on that page [02:40] I don't think this is reasonable because of the portlets. we don't have enough space to display a bugtask listing with all these options [02:40] okay. i have those two categories of assigned bugs i want to see. [02:40] i'd be happy to see the two categories on the same page, or on different pages. [02:40] i typically want to see either one or the other, not both at once. [02:41] stub: ping ? [02:41] the categories being: 1) bugs assigned to you. 2) bugs assigned to packages/products you're the owner/maintainer. [02:41] is that right? [02:42] carlos: pong [02:42] stub: me ... [02:42] cprov, blame nick autocompletation ;-) [02:42] 1. open bugs assigned directly to me. 2. open bugs not assigned directly to a person, on packages / products i'm the owner/maintainer of. [02:42] stub: have you seen my mail to cherrypick the patch-2054 ? [02:42] Blame Carlos bugging me too often ;) [02:43] in case 2, the bugs are my responsibility to get assigned to someone. [02:43] stub, O:-) [02:43] cprov: That would be in. production was tagged from 2069 [02:43] carlos: the situation is against you now [02:44] stub: great, second question: Staging and emails, do you have any plan or agree with the intra DC POP account ? [02:45] cprov: I think it is a silly idea - pain in the arse to interrogate a remote pop server and multiple people will have trouble monitoring it. I'd rather just have all the emails bounced to launchpad-error-reports@ instead, where people can see them by subscribing to the relevant topic or in the Mailman archives. [02:46] cprov: Not that it matters - launchpad still needs the same fix no matter what approach we use. [02:46] wow, make check shows me real bugs! finally! [02:47] carlos: eh? [02:48] SteveA, just that I'm able to see tests breakage due my changes instead of random failures like this morning [02:48] cool [02:51] stub: cool, and indenpendent of the solution adopted when is the ETA ? [02:52] mpt, around? [02:53] cprov: There is no ETA as far as I'm aware. I haven't had a chance to look at it and I don't know of anyone else giving it a go. [02:55] 14:19:03) stub: It needs an option so all outgoing email is redirected to a configurable email address instead of going to the requested email address. I think we can already do this for emails from Zope using the existing stub emailer, but the Zopeless email needs this too. [02:55] stub: uhm ... bad, but not that much ... [02:57] sabdfl, I think we should hide the languages that we have disabled by default from the list at https://launchpad.ubuntu.com/distros/ubuntu/hoary/+translations [03:00] it would help to make rosetta look more used [03:00] and the more used something appears to be, the more people feel like using it [03:01] SteveA, I'm talking about remove fr_FR, es_ES, es_MX, etc... [03:01] yes [03:01] those are useless because never will be at 100% [03:01] yes [03:01] oh, I thought you mean you prefer to leave all languages so we have "more" [03:01] no [03:02] i am arguing for removing them, so that the overall appearence of % translated appears higher [03:02] I appreciate your direct answers. Thanks ;-) [03:02] yeah [03:03] I need to prepare a script to remove POFiles that are empty so we remove other uncommon languages that were added by mistake when we were creating POFiles just when someone selected that language === ddaa [~ddaa@ordo.xlii.org] has joined #launchpad [03:37] ddaa, https://launchpad.ubuntu.com/products/imp/+addseries [03:38] ddaa, I thought you said that you don't want branches/series called 'head' [03:38] nah [03:38] SteveA, do you know if we have a commit hook on sqlobject to run its tests? [03:38] carlos: the help text is wrong, I should fix it whenever I can come around to it. [03:38] i think to run its tests, but not to run any other tests [03:38] not sure though [03:38] ddaa, you prefer 'main', right? === carlos is creating one branch atm [03:39] yes, "main" in the emerging standard for all mainlines [03:39] (cvs, svn, tarballs only, other rcs in the future) when a specific series is not needed. [03:40] besides, HEAD is absolutely _not_ a branch in CVS. [03:40] it's a magic tag [03:40] SteveA, looks like we don't have it. one test is failing here on a rocketfuel tree [03:41] lifeless, can you confirm to me that we don't have a commit hook to run sqlobject's tests? [03:42] salgado: what do you mean ? [03:42] lifeless, if sqlobject's tests are run when I merge something into rocketfuel [03:43] they should be [03:43] if not its a bug [03:43] cool, sourcerer falls over on one of the linda "bad example" test cases [03:44] ok. I'll find out in a few minutes [03:44] cprov, debonzi: https://launchpad.ubuntu.com/products/imp/+series/main/+source <- That page is useless for HEAD/MAIN series [03:44] cprov, debonzi you say "Don't select a sourcepackage for MAIN/HEAD unless you are sure the package comes from that branch" but you cannot leave that field blank [03:46] carlos, sorry but I don't know anything about this page [03:46] hmm [03:46] sorry [03:46] duded [03:46] dudes [03:46] I'm a bit tired today... [03:46] morgs, ? [03:46] carlos: I see, blame morgs or lifeless, they are more related with those pages [03:46] cprov, right, I got confused with the sourcepackage, sorry [03:46] carlos: hi [03:46] carlos: no worries ;) [03:47] carlos, hey.. no problem.. [03:47] morgs, do you see my complain about the +series/main/+source URL? [03:48] carlos: yes, but it IS sourcepackage stuff... [03:48] morgs, but it's a 'Register' form [03:48] carlos: I'll have to dig a bit to see what the purpose of it is, and if there is a reason for the current way it works. [03:49] morgs, My point is that I don't care about the sourcepackage link [03:49] carlos: Yes... I'm not sure who added the source package bit in there, so I'll check it out. [03:49] ok [03:49] thanks === carlos opens a bug so we don't forget it [03:49] thanks [03:51] hi brad [03:51] morning [03:51] hey SteveA [03:51] so, i've been ranting on the channel about malone, person pages, and finding bugs that are assigned to me [03:51] i'd lost a bug [03:51] but also === debonzi makes a break while make check ir running [03:52] i'm suprised that emails i've received lately from malone don't tell me who made the change that's being reported [03:52] it's made the mails much less useful to me [03:52] SteveA: that's my fault. i'll fix that this morning (it didn't make the cutoff for trying to keep my FBN patch down to a reasonable size) [03:52] also, when a comment is left on a bug, i'd find it really helpful to get the bug's summary included in the email [03:52] phew -- so it isn't a design decision :-) [03:53] can you talk with salgado about the issues i had with looking for bugs that are assigned to me? [03:53] SteveA: do you find the bug summaries useful? [03:53] bradb: yes, and i edit them when they're not. [03:53] basically, i want to be able to find two lists of bugs assigned to me. [03:54] 1. the list of bugs directly assigned to me. that is, the ones i have to write code and such in order to fix. i want to see ALL such bugs that are open. [03:55] 2. the list of bugs that are on products i maintain, that aren't assigned to an individual. it is my responsibility as launchpad owner / maintainer to ensure that someone gets assigned to these bugs. [03:55] right, makes sense [03:56] my issue today is that [03:56] Merge to rocketfuel@canonical.com/launchpad--devel--0: [trivial] New database baseline (patch-2080: stuart.bishop@canonical.com) [03:56] 1. i crashed my X by pressing ctrl+alt+backspace accientally. WHY is this enabled by default? [03:57] 2. i lost my browser state, in which i had a bug report i was about to work on. [03:57] 3. i restarted X and tried to find the bug. i couldn't find it anywhere. [03:57] i knew daf had reported it, but i'm not allowed to see what bugs daf has reported. [03:57] Merge to rocketfuel@canonical.com/sqlobject--test--0.6: [trivial] Break a test to see if the tests are run when merging into rocketfuel. If this gets in, salgado will have to fix the test and make sure we have a commit hook to run the tests on rocketfuel. (patch-27: guilherme.salgado@canonical.com) [03:57] i knew it had "facet" in its name, but i could find no text search box [03:58] about your browser state you can use the session saver extension [03:58] great. we don't run the tests for sqlobject. all tests I wrote where in vain [03:58] SteveA: [03:58] bah [03:58] salgado: you sure about that? [03:58] i knew it was assigned to me, but it didn't appear in the list of bugs assigned to me [03:58] yes, I am [03:59] then salgado told me that these lists of bugs only show a maximum of 10 bugs. there's no link to get to a full list of such bugs. [03:59] SteveA: you could find no text search box...interesting... [03:59] i eventually found it on the "assigned bugs" list under /malone/ [03:59] is there one? [03:59] salgado: sqlobject commits, or rocketfuel commits that should trigger sqlobject tests ? [03:59] jakob n. says there should be a search box on every page. but then again, he's on the board of google. [03:59] I guess rocketfuel commits, as we have for launchpad [04:00] lifeless, ^^ [04:00] salgado: uhm, I meant launchpad vs sqlobject commits to rocketfuel in both cases. [04:00] SteveA: (since this isn't a "user testing" session per se, i'll just cheat and tell you) yes, on the contextual bug listing page itself. but i agree with you that it's not very obvious how to get there. [04:00] salgado: which are you sure doesn't test. [04:00] SteveA: e.g. https://launchpad.ubuntu.com/products/launchpad/+bugs [04:00] lifeless: when pqm is committing code into sqlobject, i'd like sqlobject tests and then launchpad tests to be run. possible? [04:01] SteveA: yes, we commented it out for some reason [04:01] enabled now [04:01] someone should test that asap incase its borked [04:01] lifeless, so, if I commit to sqlobject now it should run all sqlobject /and/ launchpad tests? [04:01] bradb: thanks. oddly enough, i think i went to that page. [04:02] bradb: i think i just missed seeing the search box. i think i know why. [04:02] SteveA: why's that? [04:02] bradb: it says "Bug ID or Keywords" where i scan pages along the left hand edge. It doesn't say "Search with Bug ID or keywords" [04:02] the word "search" is missing [04:02] ah [04:02] it only occurs over towards the right [04:03] and the box is so minimalist and ploney [04:03] it just doesn't stick out as a text entry box [04:03] it just looks like a random rectangle [04:03] i think i might have other ideas of why you missed that. we slightly violate nielsen's recommendations re: what users expect a search to be. [04:03] right [04:03] a subheading saying "search..." [04:04] in a different coloured div... something to draw attention to it [04:04] SteveA: imagine this possibility for improving the page: [04:04] salgado: salgado yes [04:04] 1. don't show any "results" by default (i.e. when first entering into the page.) [04:04] it certainly is odd to get results when i haven't searched [04:04] 2. just show a search box, and a button labelled search, and possibly further down the page some columns of info (your involvement, random bugs, etc.)... [04:04] instead, it could show some kind of overview of canned searches [04:05] 3. search results returned on a separate page [04:05] like "unassigned open launchpad bugs, 600 results, use this search" [04:05] right [04:07] mpt: around? [04:17] SteveA: there's are lots of page titles that need lovin' in Malone atm, but there's not much i can do until I have a way to set page titles for pages that don't have their own specific .pt. might you have a chance to look into the titles problem in the next couple days? [04:18] sure [04:19] great, thanks [04:26] Merge to rocketfuel@canonical.com/launchpad--devel--0: [trivial] Add karmacacheupdater section to production config (patch-2081: stuart.bishop@canonical.com) [04:29] lifeless: pqm queue traceback - coming to your inbox === SnakeBite [~SnakeBite@84.242.143.64] has joined #launchpad === kiko [~kiko@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === SnakeBite [~SnakeBite@84.242.143.64] has joined #launchpad === SnakeBite [~SnakeBite@84.242.143.64] has joined #launchpad [04:36] morgs, https://chinstrap.ubuntu.com/~dsilvers/paste/fileLrYXDX.html [04:36] is this the traceback you got? [04:45] i seem to be having a slight "ant" emergency in my house. damn bugs. [04:45] bbiab [04:45] bradb: that is so ironic, oh malone hacker. [04:48] hey, production looks cool [04:48] SteveA, how's linkify going? [04:48] I bet it's forgotten [04:49] kiko, I need to talk with you about cronscripts and lock files [04:49] kiko, but not now, I need to leave [04:49] kiko, will you be around this evening? [04:50] in a few hours? [04:52] SteveA: pong [04:52] carlos: I have a branch up for review that tweaks quite a few bits in the cronscripts (but not the lockfiles). So you might want to merge or look at that branch to avoid conflicts. [04:53] kiko, in about 3 hours or so perhaps a bit later, I need to go to the flat to see things about the electric installation and the AC [04:54] stub, are you touching anything outside cronscripts/? [04:54] stub, I'm only touching at lib/canonical/launchpad [04:54] carlos: I don't think that branch touched anything else. [04:54] stub, except for the lock code that I didn't start yet [04:55] carlos: If the interface stays the same, there won't be any conflicts. [04:55] stub, then we should not conflict [04:55] right [04:55] lifeless, https://chinstrap.ubuntu.com/~dsilvers/paste/fileLrYXDX.html === carlos -> out [04:55] see you later [04:56] carlos, okay. [04:59] Merge to rocketfuel@canonical.com/launchpad--devel--0: [trivial] Bug 1391: RDF export format still missing bits (patch-2082: morgan.collett@canonical.com) [04:59] salgado: fixed [05:01] argh [05:01] bradb! [05:02] syndicate modified-sources% diffstat -p1 libapache-mod-auth-mysql_4.3.9-2ubuntu1.diff.gz | head [05:02] ,,changes.1110405409.7948.1/mod-dirs-index | 14 [05:02] Matthew Palmer, come on down [05:03] aiee === lamont__ [~lamont@15.238.5.49] has joined #launchpad [05:10] morgs, do you have a south african passport or is the one with a number ending in 729 not safrican? === terrex [~terrex@84-122-80-126.onocable.ono.com] has joined #launchpad [05:23] Merge to rocketfuel@canonical.com/launchpad--production--1.25: Cherry pick patch-2081 into production (patch-1: stuart.bishop@canonical.com, rocketfuel@canonical.com) [05:24] lifeless: ping [05:26] lifeless: could you cherrypick also the patch-2074 into production, it solves the bug 1395 [05:33] Merge to rocketfuel@canonical.com/sqlobject--test--0.6: [trivial] Fix the test I (intentionally) broke on last commit. (patch-28: guilherme.salgado@canonical.com) [05:39] kiko: Yes it is south african. [05:40] salgado: no, it was a traceback in the pqm status page on chinstrap... === morgs [~morgan@wblv-146-236-76.telkomadsl.co.za] has left #launchpad [] === morgs [~morgan@wblv-146-236-76.telkomadsl.co.za] has joined #launchpad [05:40] thanks morgs === bradb returns, symbolically killing the ants [05:41] ant killer powder, raid and ant traps, WDFA [05:42] kiko: what's up? [05:42] bradb, EMAIL NOTIFICATIONS ARE HEADLESS [05:43] i'm fixing that right now (two things: the From: address and the individual deliveries to each recip) [05:43] i.e. From: Christian Reis via Malone <42@...> [05:44] NOW [05:44] NOW!!! [05:44] it was one of the things i left out to keep the patch manageably small and hadn't yet gone back to finish that bit [05:44] no joke, that is a very serious regression [05:44] it makes bugmail a lot less valuable [05:45] it should not have landed in the intermediate state [05:45] (for future record) [05:47] right, the fix'll be in shortly for that [05:47] kiko: how does one avoid landing it in an intermediate state, btw? [05:47] (without creating 2000+ line patches, i mean) [05:50] hmmm [05:51] well, my point is that regressions should be avoided [05:51] if your patch will cause an intermediate regression, you need to negotiate with your reviewer [05:51] have him review up to patch X and then only from patch X to Y later? [05:52] true, that might work. i'll try that for keeping big patches manageable in the future. [05:58] Merge to rocketfuel@canonical.com/launchpad--devel--0: [trivial] New database baseline (patch-2083: stuart.bishop@canonical.com) [06:02] salgado: might you be available in a few minutes (baz time) to review this small patch? it's a fairly urgent last bit of the implementation of FormattingBugNotifications. [06:08] Merge to rocketfuel@canonical.com/sqlobject--test--0.6: [trivial] Break a test again (this is the last time, I swear) because it still looks like tests are not being run. (patch-29: guilherme.salgado@canonical.com) [06:10] rock on! somebody made the description display not look horrifyingly ugly!!! [06:10] was that you kiko? [06:10] and, well, all the comments, really [06:11] bradb, how big is the diff? [06:11] bradb, what are you referring to specifically [06:13] salgado: 2 files changed, 54 insertions(+), 38 deletions(-), but really straightforward (just adding an arg to a function and changing callsites, and, of course, small test updates.) [06:13] bradb, mail it to me, then [06:13] kiko: https://launchpad.ubuntu.com/malone/bugs/365. description is no longer in that horrifying blue box, and comments are no longer
'd, by the looks of it.
[06:13]  daf: ping again
[06:14]  bradb, isn't that DPoT?
[06:14]  oh, perhaps
[06:15]  makes a huge difference on the bug page
[06:17]  salgado: sent
[06:17]  bradb, I removed the reply to comment expander thingy though :)
[06:19]  there are some spacing issues left there, I'll polish further
[06:19]  kiko: do you like the "boxy" look of comment display?
[06:19]  I hate it
[06:19]  but one step at a time
[06:19]  me too :)
[06:20]  right
[06:24]  man, web links are crack.
[06:24]  https://launchpad.ubuntu.com/malone/bugs/478
[06:24]  look at that portlet
[06:25]  so, that's a launchpad link
[06:25]  but only because it is reported on the "rosetta" product
[06:26]  here's a suggestion
[06:26]  1. in "related web links", abbreviate all links to [launchpad.ubuntu.com]  or [fish.shallowwater.net] 
[06:26]  2. make the title of the links be the full url, so you can see the url on a hover
[06:27]  3. add an expando-button that shows an otherwise hidden div that shows all the links
[06:27]  SteveA, you already see the full URL in the webbrowser statusbar, so the title is overkill
[06:27]  you have a status bar?
[06:27]  SteveA: why not just show the title of the link in the portlet?
[06:28]  bradb, that's the right approach
[06:28]  if we want to avoid magic, then at the bottom of the bug report, have a section called "links" that has the links in full
[06:28]  using the body of the page for it
=== SnakeBite [~SnakeBite@84.242.143.64]  has joined #launchpad
[06:28]  the title of the link?
[06:28]  what does that mean?
[06:28]  in the example kiko shows, i see no title
[06:28]  click on [Edit] 
[06:29]  oh cool. i never would have guessed.
[06:29]  so yeah, show the title, with the url as the, um, title attribute
[06:29]  right
=== bradb files a bug
[06:29]  it means i can use my mouse to see the titles without having to look several inches down to the status bar
[06:29]  assuming i have left it on the screen
[06:30]  bradb: be sure to add a related web link to that bug
[06:30]  !
[06:30]  maybe to the bug kiko pointed out
[06:30]  placing the URL in the link title is bad usability, I'm quite sure
[06:31]  I agree with the other points
[06:31]  well...
[06:31]  usually a link points to other data.  in this case, the link itself is the data.
[06:31]  i'm not passionate about the point though
[06:32]  for 99% of the web browsers the statusbar will be visible and you will be displaying the same information twice
[06:32]  it is inconsistent behaviour with 99% of all the other links that exist on the web today
[06:32]  (ask yourself, have you ever seen a URL in a link title?)
[06:33]  Merge to rocketfuel@canonical.com/launchpad--devel--0: Buildd packaging stuff. r=jamesh,daf (patch-2084: daniel.silverstone@canonical.com)
[06:40]  daf: is dilys unable to cope with the new bugmail format?
[06:40]  she doesn't appear to have noticed the bugmail for 1401
[06:47]  anyone know of a tool that can tell me if i'm calling a method or func with spaces around the "="? i can't seem to find such an option in pylint.
[06:48]  hm, interestingly, it warns me of exactly the opposite
[06:50]  bradb, remind me why it is no longer possible to retarget a task?
[06:50]  that's causing bugspam and taskspam as people report bugs on launchpad that need to be retargetted to malone, etc.
[06:52]  i can't remember the exact reason but, as you point out, experience has shown that to not be the right approach.
[06:53]  ideally, i'm hoping that we can fix that with a small workflow.
[06:56]  why is it not the right approach?
=== kiko is confused
[06:56]  kiko-fud: sorry, i meant experience has shown that the *not* allowing retargetting is not the right approach
[06:57]  so we should allow retargetting. ah.
[06:57]  I see -- the workflow would make it clear to the end-user that this change has some more severe impact that simply changing a severity
[06:58]  on the same grounds changing the status would warrant also a different widget or a workflow, don't you think?
[07:00]  kiko-fud: to the former, exactly.
[07:00]  kiko-fud: to the later, yeah, maybe. currently, there doesn't seem to be enough "impact" when a bug is marked Fixed.
[07:00]  s/later/latter/
[07:01]  or ASSIGNED
[07:01]  or REJECTED
[07:01]  etc
[07:01]  right
[07:04]  some days i wish mpt was in my timezone
[07:04]  most days, actually
=== elmo [~james@a130-233-4-133.debconf5.hut.fi]  has joined #launchpad
=== terrex [~terrex@84-122-80-126.onocable.ono.com]  has joined #launchpad
[07:37]  Merge to rocketfuel@canonical.com/launchpad--devel--0: [r=salgado]  implement the From address part of FormattingBugNotifications (patch-2085: brad.bollenbach@canonical.com)
=== ChanServ [ChanServ@services.]  has joined #launchpad
[08:03]  Merge to rocketfuel@canonical.com/launchpad--devel--0: [trivial]  make the login page work when there are several query parameters that have the same name.  this fixes a lot of the broken links on staging. (patch-2086: steve.alexander@canonical.com)
=== Burgundavia [~corey@24.68.140.150]  has joined #launchpad
=== terrex [~terrex@84-122-80-126.onocable.ono.com]  has joined #launchpad
[08:56]  bradb, he will be -- soon.
[08:56]  heh
[09:02]  Merge to rocketfuel@canonical.com/launchpad--devel--0: Fix PersonSet's methods to always return results ordered by Person._defaultOrder if no orderBy argument is provided. r=SteveA (patch-2087: guilherme.salgado@canonical.com)
[09:04]  salgado, bradb: email.
[09:10]  i can write a docstring and rename that method to clarify
[09:11]  and perhaps rename the user parameter to something that better communicates "the user who made the change" or something.
[09:12]  why can user be none?
[09:13]  from what I saw it looks like the user will be none if we allow not-logged-in people to report bugs
[09:13]  in that case event.user will be None
[09:13]  mm, basically, the API isn't communicating the following two possibilities very well:
[09:14]  1. we want to see "From: Foo Bar via Malone <...>" (e.g. after Foo Bar edited the bug)
[09:14]  2. we don't want to see "From: Foo Bar via Malone <...>" (e.g. for a transactional error message when Foo Bar tried to change the bug.)
[09:15]  maybe i'll break it up into two methods
[09:15]  get_bugmail_from_addr and get_error_mail_from_addr
[09:15]  what do you think?
[09:19]  that's the correct approach
[09:19]  I have no clue why you are using the same method for both things
[09:20]  def a(foo, bar=None):
[09:20]     if bar: 
[09:20]       do_x()
[09:20]    else:
[09:21]      do_y()
[09:21]  there is no commonality
[09:25]  kiko: changed locally. they changes'll be merged with the one-email-per-recipient change
[09:25]  s/they/the/
[09:29]  that's fine.
=== jamesh [~james@203-59-251-126.dyn.iinet.net.au]  has joined #launchpad
=== debonzi -> 15min break while make check runs
=== Burgundavia [~corey@S0106000000cc07fc.gv.shawcable.net]  has joined #launchpad
=== terrex [~terrex@84-122-80-126.onocable.ono.com]  has joined #launchpad
[10:32]  bradb, when adding a remote watch to a bugtask, the task_delta generated is zero in watch
[10:33]  ok, i'll file a bug report on it. thanks for pointing it out.
[10:34]  sorry in karma.py:bugtask_modified
[10:35]  it should be in mailnotification.py
[10:35]  bradb, no, my point is that task_delta is None there
[10:35]  in karma.py:bugtask_modified
[10:35]  ah
[10:36]  i have a function that calculates task deltas, but it looks like that feature went in untested
[10:36]  right
[10:36]  can you fix that and add a test?
[10:36]  it's broken in production..
[10:37]  maybe BjornT can fix it?
[10:37]  ask?
[10:37]  BjornT: can you fix the problem kiko's talking about above?
=== kiko sighs
[10:42]  kiko: btw, have you confirmed that it sends out an empty bugmail when assigning a bugwatch to a task?
[10:42]  (from what you've said so far, i'm not 100% sure on what i should file as the bug report)
[10:43]  bradb, it currently crashes
[10:43]  indeed, it sends out an empty bugmail
[10:43]  er, by "crashes", you mean, you can't even /save/ an external bug watch from the task page?
[10:43]  right
[10:43]  wow
[10:43]  traceback boom-boom
[10:44]  non-tested features courtesy of the sab himself :)
[10:44]  I'll see if I can fix it
[10:44]  great. now that i have an idea of the extent of it, i'll file the bug and assign it to you for now, ok?
[10:45]  btw
[10:45]  get_task_delta is totally in the wrong place
[10:45]  right
[10:46]  maybe it should be in helpers.py? or, where do you want it to be?
[10:46]  (helpers.py is slightly evil, imho, but i'm not sure what other package it's better suited for, atm)
[10:47]  it should probably be in database/bugtask.py
[10:47]  (for lack of a better place)
[10:47]  SteveA is the man with the plan for that though
[10:47]  i think bjorn is moving the task delta stuff to components
[10:48]  I scratch my head because for all the N-M relationships it seems that bugtask and remote bugwatch are N-1..
[10:48]  thank god
[10:48]  if it is in database, then we would need an API via getUtility to get at a bugdelta 
[10:48]  i don't really see the point
[10:48]  it really is a component
[10:48]  well
[10:48]  okay, whatever, not helpers.py
[10:48]  bradb, have you seen this: https://launchpad.ubuntu.com/errors/showEntry.html?id=1121201203.030.164754340775
[10:48]  as it is database independent, and stores the differences between two different components, depending on their interfaces
[10:49]  salgado: it doesn't ring a bell offhand. how did you make it happen?
[10:51]  bradb, go to https://launchpad.ubuntu.com/malone/bugs/1311 and click on the 'Ubuntu' link
[10:52]  daf: when's dilys going to be back in service?
[10:52]  daf: she appears to not understand the format of the new bugmails
[10:52]  salgado: i'm filing a bug on that now, thanks.
[10:53]  filed as 1403
[10:54]  how weird
[10:54]  a bugtask without a bug?
[10:54]  regression?
[10:55]  dunno, don't have much time to look deeper atm, but it seems like an isolated case
[10:57]  very very odd
[10:57]  kiko, hi
[10:57]  ah, i think i might know why
[10:57]  but only maybe. /me tests something.
[10:58]  hey carlos 
[10:58]  kiko, I'm a bit tired atm do you think the explanation will take too long?
[10:59]  carlos, probably not
[10:59]  ok
[10:59]  kiko, do you have time now?
[10:59]  yeah
[10:59]  kiko: right, i think it's because canonical URLs are not setup for distro release tasks.
[11:00]  bradb, that needs to be fixed asap, drop everything and do it
[11:00]  ok
[11:00]  carlos, what's the problem
[11:00]  kiko: ok
[11:00]  kiko, we have a script that is executed every 10 minutes
[11:00]  that creates a .lock file
[11:00]  bradb, mailnotification problem fixed, can you add a test for it for me later?
[11:01]  carlos, sounds good. :)
[11:01]  and under some circunstances, the lock file is left behind when the script is killed
[11:01]  so it locks new runs
[11:01]  kiko: sure, am i testing to make sure that a notification email gets sent when the watch info is changed on a task?
[11:01]  stub suggested me to add a timeout for that lock file 
[11:01]  but with the poimport script it's a problem when it has a high load to import (like breezy)
[11:01]  bradb, well, perhaps two tests -- checking that the notification email gets sent correctly, and that the page doesn't bork. 
[11:02]  right, ok
[11:02]  i'll file the bugs for those in malone
[11:02]  (i.e. that they need tests)
[11:02]  as it takes more than one day to finish (the default lock timeout is 1 day)
[11:02]  bradb, thanks.
[11:02]  carlos, I see your problem. 
[11:02]  well
[11:02]  kiko, stub told me that you have a way that removes always the .lock file even with a kill -9 
[11:03]  carlos, it doesn't always remove the lock file -- it checks to see if the process holding the lock is still alive 
[11:03]  I sent it to the mailing list
[11:03]  oh really?
[11:03]  yes
[11:03]  I missed it ....
[11:03]  and that solution makes much more sense, I was not able to understand how is that kill -9 was working ;-)
=== carlos searches for the email...
[11:04]    F 2709 Jun 21 To Dafydd Harries   (  11K) Re: urgent production fix: patch-1899 
[11:04]  attached to that message
[11:04]  SteveA: btw, sorry, but it's looking like I have to delay the systemhome.py cleanup for another day.
[11:05]  carlos, hoho, I lied, the kernel actually does ensure the lock is released
[11:05]  see my follow-up email
[11:05]  kiko, ok, thank you
[11:06]  enjoy.
[11:06]  that thread should help you understand my point
[11:06]  everything there is untested
[11:06]  :)
[11:07]  bradb, mailnotification has some hairy functions but is pretty easy to follow
=== jamesh [~james@203-59-251-126.dyn.iinet.net.au]  has joined #launchpad
[11:08]  kiko, I don't have any answer from you to that thread
[11:08]  kiko: good to know that it's not /too/ hairy then ;)
[11:08]  kiko, I only have mails from stub and daf
[11:08]  carlos, that's because I don't love you
=== kiko sends to carlos directly
[11:09]  kiko, I know that ;-)
[11:09]  thank you
[11:09]  I may love you if you bring me a 19" monitor
[11:09]  but maybe not
[11:10]  bradb, I'm going to ask you to review my changes
[11:10]  kiko: sure, whenever you're ready
[11:11]  it's not a trivial branch because there are other fixes with it
[11:11]  but it's all healthy
[11:12]  kiko, dude, I think you choose the wrong person ;-)
[11:12]  kiko: is this something you'll have ready today, or tomorrow?
[11:12]  kiko, my sould is not mine any more it belongs to my bank
[11:12]  bradb, tomorrow is okay
[11:12]  kiko: ok, cool
[11:12]  for the next 30 years...
[11:12]  :-P
[11:12]  carlos, your bank needs to give me a 19" monitor dammit
[11:12]  carlos: is your move complete?
[11:13]  bradb, not really, I got the keys on Saturday
[11:13]  I'm planning to move this weekend
[11:13]  ah, right on, welcome to the club
[11:13]  it depends If I'm able to connecto to my university wireless from my home (the link works, the VPN does not work) or I get my DSL line installed
[11:14]  bradb, thank you!
[11:15]  kiko, I will try to integrate that into Launchpad using that code as a library in its own file so we don't have legal issues.
=== carlos -> bed
[11:15]  carlos, cool, thanks
[11:15]  I think it's time to sleep after a 37hours day...
[11:15]  good night
[11:15]  37!
[11:16]  i wish every day had that many hours in it
[11:16]  bradb, christian.reis@canonical.com--lozenge/launchpad--devel--0--patch-64 contains the fix if you want to look at it
[11:17]  kiko: is it going to be part of the thing i'm going to review tomorrow? if so, i'll wait so i can fix this canonical url thing now instead.
[11:17]  bradb, don't think it's a good idea to do it often, I do it every one / two months and at the end I'm really tired, but the night without sleep is a good one talking about productivity ;-)
[11:18]  bradb, yeah, sure, wait
[11:18]  carlos: cool, sleep well then ;)
=== bradb catches up on more bugmail while waiting for baz
[11:20]  adding a bugwatch is horrific
[11:20]  BjornT: how many Malone bugs do you have assigned to you?
[11:20]  it should obviously take a URL and parse it
[11:20]  bradb, that's easy to check :)
[11:20]  is it?
[11:21]  maybe that's one of those foaf things
[11:21]  no
[11:21]  malone/assigned?
[11:22]  ew, that makes me /count/ the rows :)
[11:22]  it looks better than it did before though, which is nice
[11:22]  bradb, I can add a counter, doh
=== kiko sighs
[11:22]  and paging?
[11:22]  NO
[11:22]  searching?
[11:22]  go away horrible man
[11:22]  filtering?
[11:22]  yeah yeah
[11:22]  ANORAK 
[11:24]  kiko: one question: in what way is my life made easier by clicking on a page that shows 150 bugs assigned to me? what do i do with that information?
[11:24]  what would make me want to look at that information?
[11:25]  (ok, that was more than one question)
[11:26]  well
[11:26]  I like looking at it to see what I need to do
[11:27]  with column-click sorting, it would be more useful to that end, i think
[11:28]  kiko: btw, re: paging, i hate the 20 bugs/page thing too (*hate*). but sabdfl shot me down pretty quickly when i suggested bumping it up to something usable.
[11:30]  kiko: strangely, based on his "Malone UI" email he also seems to indicate that the table layout "isn't working for us". i wonder if showing him a google-style listing of 150 assigned bugs would change that viewpoint.
[11:31]  I think a google-style listing is pretty much the only way to go with bugs and tasks (and tasks on upstream versus distro, for that reason)
[11:32]  kiko: i.e. are you imagining a scenario where you're looking at the list of Malone bugs (say there are currently 75 on your screen) in a google-style listing?
[11:33]  yeah
[11:33]  (making each style optional makes 100% sense to me, but i'm trying to figure out how a 50+ bug long google-style listing would meet scannability requirements)
[11:35]  Google gets away with it pretty well. I rarely read more than 2-3 search results, /maybe/ the whole first page in somewhat rare cases. they batch bigtime though.
[11:35]  well, the problem is that bugtasks are heterogeneous enough to make a tabular listing kinda impractical
=== zer [~hor@p5480A425.dip0.t-ipconnect.de]  has joined #launchpad
[11:36]  morning all
[11:37]  good evening
[11:37]  kiko: let's say you're looking at a row result for bug #42 in package Ubuntu Foo. let's say it's also reported in 3 other places. to what extent do you want to know anything about those three other places when looking at the listing in the Ubuntu context? (i can think of exactly one thing that matters re: any context that isn't mine)
[11:38]  bradb, they could be expanded (little plusses)..
[11:39]  kiko: other than "does a fix exist for this bug?" what else is an average malone user going to want to know about the bug re: the other contexts in which it exists?
=== sabdfl [~mark@pc-n253.wlan.inet.fi]  has joined #launchpad
[11:43]  SteveA, kiko: can i delete the absolute_url stuff left around for bug tasks?
[11:44]  bradb, think it's still used here and there
[11:44]  kiko: shouldn't everything use canonical url now?
[11:49]  no turning back now!
[11:54]  well
[11:54]  bugwatch for instance is a bit tricky
[11:54]  there is no parent for it :)
[11:54]  ?
=== kiko fixes some braderisms in dbobjects.py
[11:55]  you assume too much young padawan
[11:56]  kiko: bugwatch isn't effected by this.
[11:56]  i've already changed all the callsites
[11:57]  (i.e. that were using @@absolute_url)
[11:57]  great
[11:57]  s/effected/affected/
[11:58]  bradb, can't you make the bugtask page in view mode link to the assignee and remote bug?
[11:58]  that's a really annoying bug
[11:58]  kiko: sure
[11:58]  is it trivial?
[11:58]  I don't know how to deal with this autogenerated content, it makes me cry
[11:58]  now that i've made them two different pages, it should be pretty straightforward (i.e. more flexibility to move away from the widgets in the view page)
[11:59]  thank god
[11:59]  you can even change it, if you want. just change the call to view/assignee_widget (or whatever it is), to context/... whatever you wanted.
[12:00]  if you already know what you want it to look like, that is, and know the ZPT that will get you there
[12:01]  in the meantime, i've cleaned up a whole bunch of abs url cruft and fixed that exception
[12:01]  fun fun
[12:01]  filing distro bug tasks is broken
[12:02]  bradb, please confirm to me that the bugtask table doesn't have a submitter column?
[12:02]  salgado: it doesn't
[12:03]  kiko: the tabindex, you mean?
[12:03]  bradb, no. file a package bug but forget to type in the distribution name.
[12:04]  ok. I'm asking because both IBugtaskSet.search() and IBugTaskSubset.search() have a submitter parameter, which is not tested, obviously
[12:04]  kiko: oh, we have to get rid of that page.
[12:04]  kiko: i.e. better drilldown to the distros, instead of treating distro like a piece of info in the form.