[12:03] :-) [12:25] spiv: how do I reopen an IZopeConnection once I've closed it? [12:25] I can't reopen the same object directly, but there must be some way. [12:26] I need to disconnect long enough to drop the db I'm connected to, then reconnect again. === debonzi [~debonzi@200.158.100.251] has joined #launchpad [12:42] BradB: Hmm, I don't know how to do that. The interface certainly doesn't give any way to do it. [12:45] indeed [12:51] carlos: yo [12:52] daf: hi [12:52] daf: spiv found the answer to my question already, thanks :-) [12:55] carlos: ah, good [12:55] carlos: how're you doing? [12:56] well, all bugs I'm working on have dependencies on other people to be finished, out that, fine :-P [12:58] shall we have a quick meeting or is it too late? [12:59] it's 1:00 here and I'm tired, do we need it before tomorrow's meet? [12:59] no, it can wait [12:59] hmmm, in the other side.. will you attend the meeting? [12:59] 12:00 UTC [01:03] yes [01:04] daf: ok, then, could we have the meeting after the launchpad one? [01:04] if it's still necessary, sure [01:05] ok === kiko is now known as kiko-afk [02:19] !Md:*! Hi everybody. Just wanted to let you know that there is discussion and live coverage on this year's US presidential election in #election2004 [02:27] http://paste.husk.org/1910 [02:29] It looks like the exit status is confused. [02:29] Oh, no, hmm. [02:30] test_ok = errlines[-1] == 'OK\n' [02:30] So, apparently, despite the last line of stderr being 'OK\n', there was still a traceback. [02:30] the failure email i got back to me there were 6 failures. from my command line, uh, that just doesn't make any sense at all. === BradB runs the UT's [02:31] s/back to me/back told me/ [02:32] spiv: do the UT's get run by the wya? [02:33] I believe so, yeah. [02:34] i hope not, because otherwise it becomes difficult to explain how a batching failure got checked in [02:35] print 'Running tests.' [02:35] stdin, out, err = os.popen3('cd %s; python test.py %s < /dev/null' % [02:35] (here, ' '.join(sys.argv[1:] ))) [02:35] (from test_on_merge.py) [02:37] Oh, hmm! [02:37] i see stuff like this: [02:37] I think the test_on_merge.py script has a bug :/ [02:37] http://paste.husk.org/1911 [02:38] (when i run the ftests) [02:38] my brain is in the freezer right now, but damn i just wanna land these page tests [02:38] test.py runs several "batches" (for lack of a better word) of tests, but test_on_merge.py only looks for a final "OK". [02:38] That's fine. [02:38] Those are all ok. [02:39] Just a bunch of warnings, but they don't break the tests. [02:39] yeah, it ends in "OK\n", so... [02:39] Right. [02:39] how is "Exception exceptions.AttributeError" "ignored" though? [02:39] It's from a __del__ [02:39] why is that ignored though? :) [02:40] ok, it's outside a test, presumably [02:40] Because it's triggered by the garbage collecter... [02:40] Where would you expect an error in __del__ to get raised to? :) [02:41] i dunno...does it happen in tearDown? [02:41] No idea. Quite likely. [02:42] But __del__ isn't something that's called directly by your code, it's called by python internals. [02:42] that would make sense then. if i just del foo in a test and it raises an error, i'd expect the test to be an error. [02:42] So the exception bubbles up to python's internals, which goes "Oh! Fancy that. I'll make a note of that on sys.stderr and get on with my life." [02:42] but in tearDown, i'd expect it to be ignored. [02:43] heh [02:43] Well, doing "del foo" may or may not cause __del__ to be triggered. [02:43] It's triggered when there are no references left, which can happen for all sorts of reasons. [02:44] I've looked into that particular error, and although the warnings are annoying, I don't think it has an significant sideeffects. [02:46] (so it's not that it's outside a test, it's that it's outside the normal execution path of python code altogether) [02:46] yeah...well that's arse then, my tests end in "OK\n" when I run "make check" locally, but I get 6 failures on the server. [02:47] I think there's possibly a seperate problem, which is that test_on_merge might not notice failures all the time -- I'm not convinced that checking that the end is "OK\n" is sufficient. [02:47] one should be checking $?, not string output [02:47] If that combines with e.g. the server running the tests in a different order to you.... (easy to imagine, you have a different FS, yeah?) [02:47] lifeless: Yeah. [02:47] Actually, I can't figure out if http://paste.husk.org/1910 means everything passed, or means something failed. [02:48] it failed [02:48] BradB: It means something failed. [02:48] there was a traceback. [02:48] BradB: But it means that test_on_merge.py didn't realise it. [02:48] (Due to aforementioned issues :) [02:49] spiv: ...and yet i still got a failure email. [02:50] BradB: Right. But I suspect that if the tests had run in a different order, it would have noticed. [02:50] spiv: What's the exact command pqm runs to check if all the tests pass? [02:51] make check, I believe. [02:51] ouch, pain pain pain === spiv tries checking the return value. [02:55] i'm seeing errors in the PT's though on the server, which is more worrying [02:55] where's the log of the failed test run? the email doesn't give me enough info. [02:55] I don't know; lifeless? [02:56] lifeless: Can we get more detailed failure logs from PQM that what it mails to us? [02:56] define more detailed ? [02:56] lifeless: i wanna see all the failure output [02:57] ok, thats doable. [02:57] rather than "Last 20 lines of log output" :) [02:57] lifeless: for now, where's the file that i can read to see it? [02:57] BradB: there isn't one. [02:57] its mail and toss. [02:57] oh, heh [02:58] my brain's pickled for tonight anyway, but if there's a chance to have that output in the mail for tomorrow, that'd be really good [02:58] I'll see what I can do. [02:58] I plan to add a new command [02:59] so you'll want your command email to have 'debug' on a line on its own. [02:59] that will trigger the output-from-hell mode. [02:59] BradB: I'll see if I can make test_on_merge a little more sensible. [02:59] lifeless: i think we'd probably always want it [02:59] spiv: look at the cscvs make check. [03:00] lifeless: it's only one person that'll get it anyway, so if one person gets an email-from-hell every once in a while, it's no big deal (and they have all they need to figure out what failed on the server.) [03:00] BradB: well, some build processes make a hella lotta output, and kindly do fail at the first error. [03:01] spiv: that'd be nice. :) [03:01] lifeless: In theory, so does this one :) [03:01] I'm not a big fan of no output. "All tests OK." or something would be nice. [03:02] BradB: mmm, for now, you can change your submit-arch-merge to just have debug in there. [03:04] have it where? [03:05] presumably at the end of the body [03:06] echo -e debug\nstar.. [03:06] you'll want it before star merge :) [03:06] oh, ok [03:07] I'll code it up this afternoon, things going well elsewhere. [03:11] Any code that relies on __del__ is broken. There is a Canonical Buzilla bug open on this about SQLObject [03:11] (which is broken) [03:14] (well... probably not broken, since it doesn't rely on it, but damn annoying) [03:31] hi stub, is it possible to update launchpad.ubuntu.com? there are some soyuz stuff missing there [03:34] Sure. I'm not sure now to restart the server though. [03:34] BradB: ping [03:35] yo [03:36] stub, I must go home now.. its realy late.. if you need something else from us please drop me an email.. thanks [03:36] i can restart it if you're ready...or i could just stop it and let you restart it when you want [03:36] How do we restart the dogfood launchpad server atm. Last time you did it, which I suspect means it is running under screen? [03:36] yeah [03:36] see you guys [03:36] see ya [03:37] stub: how 'bout i just stop it now and you do what you want with it? [03:38] Gee... thanks ;) [03:38] heh [03:39] So you just did 'make run' ? If so, kill it and I'll take it over. [03:39] launchpad@rosetta:/srv/launchpad.ubuntu.com/launchpad-dogfood $ make run [03:40] Blergh.... can't run screen as launchpad... :-P [03:40] no, you run it as your normal user :) [03:40] then sudo, etc. [03:40] I was hoping other people could connect until proper start/stop scripts were running :-) [03:42] So the test suite brick walls hurt? [03:42] painful. very painful. [03:43] i was completely boggled by that connection bug [03:43] took me a hell of a long time to find out where the heck the stray connection came from [03:43] Well.. makes me feel better anyway. I wasted two days on it and was wondering if I was just being real stoopid :-) [03:43] which was in the placelessauth service [03:44] i've only wasted about 3/4 of day, and have ready the stage of only being really confused now, instead of completely lost :P [03:44] mmm.... which the rosetta tests were using in conjunction with initZopeless, which seemed rather dodgy... [03:44] s/ready/reached/ # it's affected my typing [03:44] I'll owe you a big sloppy kiss if you can crack it [03:44] heh heh [03:44] if i would have known that today, it'd have taken an hour to fix, no doubt [03:45] stub: you read z3 checkins? [03:46] the "docs" (i.e. functional doctests) for the PAS are just so...discouraging. it's like 95% http session barf and 5% telling the user how to use the PAS. [03:46] I scan them once or twice a week [03:47] If it is http session stuff I should have a look - I've been waiting on people to actually use it to see how it goes :-) [03:48] stub: it's horrid. the concept of functional doctests is brilliant, but i'm starting to think of how better to do it. ideas so far: none. [03:49] "better" i.e. make them actual readable documentation. [03:49] at the end of today i had all the tests passing locally (so i could land the malone forcefield), but somehow 6 fail on the server, and i don't get enough error output back in the email to know what the problem is (so hopefully lifeless have time to fix that by tomorrow.) [03:51] Mmm... my first suspicion is the launchpad databases. Tests may be making assumptions about the databases, but the db's on chinstrap only get updated if 'make check' bothers to do so. [03:52] stub: the ftests should get init'd properly no? [03:52] Are you back for the meeting in 9 hours time? [03:52] (i have no idea how or where, but i thought that just somehow worked) [03:52] 9 hours? :) [03:52] er, crap, yeah, it's only 9 hours from now [03:53] BradB: In theory, yes. However, until recently tests were doing dodgy things like connecting to launchpad_dev (which the test suite doesn't touch, because it shouldn't be using it). [03:53] they still do [03:53] BradB: I think I've got a handle on what you have been chasing, so if you need to skip the meeting go for it. [03:53] i did much watch -n 2 'psql launchpad_dev -c "select * from pg_stat_activity"' today [03:54] Mmm... fragile tests. Once this damn harness is debugged it should be fairly simple to fix the remaining tests (my approach was more brute force - I just dropped the launchpad_dev database and looked at what broke ;) ) [03:55] i got to: http://paste.husk.org/1912 [03:56] in pgsql.py, line 70, setUp [03:56] i just couldn't figure out how to reopen the conn after closing, so everything after that dies [03:58] that's after having first explored the possiblity that it was a problem with our custom publisher, or with the base class that bootstraps individual tests, or with the placeless auth, etc. heh [03:59] Mmm... I had monkey-patched psycopg.connect to give me connections with a 'reconnect' method, allowing me to close them all, drop and recreate the db, and reconnect them. I didn't finish chasing it hrough though. [04:00] why knowing how to say "hey, connect back to the db" didn't come obvious to me (and still doesn't), i'm not sure [04:01] Hmm... looking at that paste, I suspect we are going to have to get the adaptor and poke into its internals Urgh :-( [04:02] Or close it and delete the utiliity, drop the db, and recreate it... [04:03] yeah, that's what i was thinking [04:03] Anyway... I have db patches for kiko and dogfood rollout stuff to do. I won't touch the test stuff today since it would just conflict with your work. [04:03] indeed. i'll take a look again after the meeting tomorrow. [04:04] steve might have some ideas. [04:04] if he'll be there? maybe it's you admining it then. [04:04] I suspect I am, which will be amusing ;) [04:04] heh [04:05] Hmm. That's not a good sign. [04:06] Trying to merge a change to test_on_merge to make it check exit values as well as stderr fails. [04:06] hur hur hur [04:06] And the last line of stderr is indeed "OK" [04:06] dounds like its not quite right :) [04:06] Although FAILED (failures=1, errors=1) [04:07] occurs higher up. [04:07] so, who ever looked at stdout ? [04:07] actuall, I don't want to know === BradB is now known as BradB|away [04:09] BradB|away: And from what I can see in the limited output from PQM, batching does indeed fail. [04:10] spiv: have you looked at the cscvs make check ? [04:10] I've patched unittest to stop on the first error. [04:10] rather than blindly careening off into never never land. [04:10] lifeless: did you follow the dogfood rollout thread? I was going to create a configs directory in launnchpad--devel--0 for build-config files so we can just to 'tla get launchpad--whatevver--0 whatever; cd whatever; tla build-config configs/whatever'. Sane or stoopid? [04:10] stub: we have 'dists' for that. [04:11] what would be different ? [04:11] lifeless: The difference would be that the rollout build-config files would be version controlled with the codebase. [04:12] I'm confused, I don't see what you mean. [04:12] (well... at least all the stuff in the launchpad package - pyarch and a few others are seperate). [04:13] pyarch, cscvs, zope, sqlobject, sqlos, pyscopgda [04:13] buildbot [04:13] twisted [04:13] I could just do 'tla get launchpad--dogfood--0.6' and I would have the build-config file that listed all the revisions of the 3rd party tools that were rolled out with it. [04:13] python [04:13] stub: so, what is different to 'tla get dists--devel--0', 'tla buildconfig configs/canonical/launchpad/dogfood--0.6' ? [04:14] have you looked at the production-* configs in 'dists' ? [04:15] lifeless: That would work, although doesn't lend itself to automatition. If instead of using versions we just used 'launchpad--dogfood--0', we could do an automatic update of the dogfood server (cron job just does 'tla get launchpad--dogfood--0; tla build-config' and it all magically works...) [04:15] right, so you just do that with configs/canonical/launchpad/dogfood [04:15] New bug 2155 for Launchpad/Launchpad: test_on_merge.py doesn't check exit status, and thus ignores failures. [04:15] https://bugzilla.warthogs.hbd.com/bugzilla/show_bug.cgi?id=2155 [04:16] its as automatible. [04:17] I have several production configs, so that I can roll back trivially, but if you just have one, that will work just as well. [04:17] ok - I see that now. We just have to list the explicit revision of launchpad--dogfood to allow us to easily retrieve historical revisions. [04:17] in fact, its more automatable. [04:17] lifeless: The problem isn't unittest. The problem is the script that runs the test script fails to interpret the results of that script correctly (i.e. it ignores the exit status) [04:17] spiv: I was meaning for reducing the output to sane lengths :) [04:18] lifeless: Oh, right. I'm not particularly concerned by long output :) [04:18] stub: its more automatable because a dogfood config can hold you at a specific level in the dogfood branch, if something is wrong with newer revisions. [04:19] so your release process would be: get the code ready, then generate the config to a dists tree that you merge with rocketfuel. [04:19] done. [04:19] tla logs -rf | head -n 1 gives you a tree revision. [04:22] how does that sound to you ? [04:22] tla inventory --nested -t gets you the trees [04:23] lifeless: we don't want it to stop on the first failure [04:23] Sounds like a winner. I think the '--dir' option to build-config solves controlling where the checkout goes which is also good. [04:23] tla inventory --nested -t | xargs bash -c "tla logs -d $0 -rf | head -n1" or similar gives you the config [04:23] stub: erm, no. [04:23] the -d says where to go to get the configs [04:23] the config says how its checked out under there. [04:23] stub: failing UT's are allowed to sneak by the checker, it seems [04:23] so you just build the config to match your checkout desires. [04:24] BradB|away: Sod [04:24] BradB|away: K. [04:24] stub: just a guess, but it's because a failing UT doesn't affect the fact the last line can still be "OK\n" [04:24] since the FT's run last [04:25] AFAIK [04:25] BradB|away: its simpler: checking stdout is not a reliable process for interrogating the test routines. [04:26] indeed [04:26] I guess so. Problem is we can't really fix it until the tests all pass ;-) [04:26] hehehe [04:26] I think Steve designed makeoncheck to just work with page-tests [04:27] I could just force the merge in. [04:27] of course, you couldn't commit anything else until the tests pass. [04:27] Bad lifeless - bad! [04:27] :) [04:27] technically, I'd be fixing a bug. === BradB|away goes on a late night grocery run [04:28] I'll change my 'enforce explicit FROM clauses' warning to an error at the same time :-) [04:32] BradB|away, stub: see bug 2155 :) === doko [doko@dsl-082-082-065-116.arcor-ip.net] has joined #launchpad === mdz [~mdz@69-167-148-207.vnnyca.adelphia.net] has joined #launchpad [05:31] stub: did steve say you're officially "chairing" the meeting tomorrow then? [05:32] if so, and i don't need to be there, maybe i'll wake up at a more reasonable time, like 8:30, instead of 6:30, heh === sabdfl [~mark@196.38.108.242] has joined #launchpad [05:35] hi all [05:35] what's news at the launchpad? [05:39] meeting tonight, dogfood rollout today, people working on the more fragile aspects of the test suites [05:40] production schema update was run yesterday, as lifeless did a production code rollout. [05:41] gina seems to need some lovin' to get it to import the Hoary archive [05:42] stub: thanks [05:43] i'm in back to back meetings all day through to post-dinner, so will try get an update from you again in your morning [05:43] no worries :-) [05:44] sabdfl: gnu arch issue resolved, in flying colours. [05:45] lifeless: good job [05:45] I've emailed you the outcome, can you please ok that for elmo to act on ? [05:58] lifeless: i'm way behind on email, just get a couple of minutes each day this week, please fwd this irc comment to elmo [05:58] if he needs the nudge [05:59] sabdfl: Now that you have delved into the Z3 form machinery stuff, do you think we need to do work to improve Z3 in this area? The December conference could be an opportunity to hold a Z3 sprint if Garrett Smith is interested in coming (we would need to fund him). [05:59] sabdfl: ok. [05:59] elmo: please get the arch community servers up for jblack asap, we discussed it in october and i never heard anything to suggest they would not be ready for the termination of jblack's bandwidth, we need to get them up and running at once [06:00] stub: yes, some small tweaks [06:00] but i may not have unlocked the full power of z3 [06:01] for example, i noticed you created an IMaloneBugAddForm schema [06:01] so you could do more than just create a bug [06:02] that seemed unnecessary to me but i couldn't easily find a way around it [06:03] Mmm.... that one doesn't particularly worry me. The form machinery simply generates forms based on a specification. In most cases, that specification already exists in the form of an existing interface so we get used to it being magic ;) [06:05] I'm more concerned with the dead-chicken functions I had to add to the containers to get the addforms working - that seemed to be simply because they were designed to add persistent objects as children of ZODB folders. It works the way we have done it, but seems to be a hack. [06:08] Should I approach Garrett (who didn't write the form machinery, but has been the person most actively involved in championing and refactoring the implementation over the last 12 months) to see if he is interested in coming to Barcelona? [08:28] Merge to rocketfuel@canonical.com/launchpad--devel--0: soyuz views (patch-725) [10:00] lifeless: ping [10:31] !Md:*! rehubbing in progress === netjoined: irc.freenode.net -> sendak.freenode.net === ChanServ [ChanServ@services.] has joined #launchpad === doko [doko@dsl-082-082-065-116.arcor-ip.net] has joined #launchpad === ddaa [~ddaa@nemesis.xlii.org] has joined #launchpad === stub [~stub@dsl-246.248.240.220.dsl.comindico.com.au] has joined #launchpad === spiv [~andrew@fuchsia.puzzling.org] has joined #launchpad === daf [daf@muse.19inch.net] has joined #launchpad === dilys [daf@muse.19inch.net] has joined #launchpad === lifeless [~robertc@dsl-78.1.240.220.rns01-kent-syd.dsl.comindico.com.au] has joined #launchpad === netjoined: irc.freenode.net -> sendak.freenode.net === ChanServ [ChanServ@services.] has joined #launchpad === doko [doko@dsl-082-082-065-116.arcor-ip.net] has joined #launchpad === ddaa [~ddaa@nemesis.xlii.org] has joined #launchpad === stub [~stub@dsl-246.248.240.220.dsl.comindico.com.au] has joined #launchpad === spiv [~andrew@fuchsia.puzzling.org] has joined #launchpad === daf [daf@muse.19inch.net] has joined #launchpad === dilys [daf@muse.19inch.net] has joined #launchpad === lifeless [~robertc@dsl-78.1.240.220.rns01-kent-syd.dsl.comindico.com.au] has joined #launchpad === stub [~stub@dsl-246.248.240.220.dsl.comindico.com.au] has joined #launchpad === debonzi [~debonzi@200.158.100.251] has joined #launchpad === lulu [~lu@host217-37-231-28.in-addr.btopenworld.com] has joined #launchpad === elmo is now known as elmo_away === cprov [~cprov@200.158.100.251] has joined #launchpad === Kinnison [~dsilvers@haddenham.pepperfish.net] has joined #launchpad [11:31] Morning [11:32] Meeting in 1h30m yes? [11:33] Kinnison, yep [11:33] morning debonzi [11:34] debonzi: how does the db on mawson look? gina finished an import yesterday [11:34] Kinnison, morning [11:34] there were some failures so I'm investigating those [11:34] Kinnison, it seems to be very nice, but the soyuz code still need to be update.. [11:35] stub, did the soyuz update failed? [11:35] stub, better, the launchpad.ubuntu.com update [11:39] debonzi: I see. Well; I'm glad the data looks okay [11:40] Kinnison, me too :-) [11:43] Kinnison: may I run Nicole over it ? [11:43] cprov: as far as I'm concerned; yes. I certainly have no intention to start deleting data :-) [11:52] Kinnison: ok in some minutes [11:59] You can see the output of the latest top-up run of gina in /tmp [11:59] I'm going through trying to work out why some packages fail to import properly [12:00] Kinnison: should I backup the the lp_dogfood DB before start ? [12:00] cprov: probably worth it; in case nicole breaks horribly === carlos_ [~carlos@69.Red-80-33-181.pooles.rima-tde.net] has joined #launchpad === carlos_ is now known as carlos [12:10] Merge to rocketfuel@canonical.com/launchpad--devel--0: general templates fix; related with bug #2089. Authorization required for +edit soyuz pages (patch-726) === Kinnison does another gina run; don't worry guys; this won't break anything; I need more debugging output :-) [12:14] debonzi: the launchpad.ubuntu code drop hasn't been done yet. [12:14] stub, right.. [12:14] Kinnison: do you know why restoring a dump from lp_dogfood fails (psql soyuz_tmp -f lp_df-20041103.sql) ? [12:14] Kinnison: Do you need launchpad_dogfood for this run? Or can up upgrade now? [12:14] stub: I'm running gina out of ~ I only need the db [12:15] cprov: Nup; sorry [12:15] stub: I can cancel the run if you want; I'll have enough data by now to carry on fidding [12:15] keep it going for the time being [12:16] Kinnison: does it works for you ? how did you copy the DB ? [12:16] cprov: copy the db? [12:18] Kinnison: I want to run Nicole in a copy of launchpad_dogfood [12:18] I see [12:20] Kinnison: so, any suggestion ? [12:21] I'd probably do something like: createdb -E UNICODE -t template0 ; lp_dump launchpad_dogfood | psql [12:30] Kinnison: yes :) "createdb -E UNICODE -T launchpad_dogfood soyuz_df" should work for me, but the DB is being accessed by other users [12:31] cprov: which is why I suggested my way [12:35] urgh.... the hourly dump is trying to create the functions used as constraints *after* the tables :-P [12:35] Kinnison: psql -f always fails [12:36] cprov: Hmm [12:37] cprov: Not sure what to suggest. stub is our database stud :-) [12:42] ok - disabling triggers works. I'll update the latest hourly dump. [12:42] how is going the bugzilla -> malone move? === morgs [~morganc@wblv-249-229.telkomadsl.co.za] has joined #launchpad === Kinnison goes to do a few bits before the meeting === lulu [~lu@host217-37-231-28.in-addr.btopenworld.com] has joined #launchpad [12:53] stub: I can't use the hourly dump to generate my own (tmp) lp_dogfood, I got "invalid command \N", does it means something to you ? [12:54] Yes - I'm looking at that now. Creation of the tables is failing, as the dump has decided to create functions the tables need *after* the tables. [12:55] If you create a freshdb and run database/schema/trusted.sql in it, the restore should work [01:00] stub: psql:trusted.sql:13: ERROR: language "plpythonu" does not exist [01:01] createlang plpythonu mydbname [01:02] I hope it isn't a postgresql upgrade problem - the dumps are in the correct order on my local box ;-/ [01:02] Anyway.... [01:02] who is here! === spiv waves [01:03] stub, yes [01:03] I believe I am acting Steve for this meeting unless anyone else feels like volunteering ;) [01:04] I'm also acting BradB who won't be joining us === carlos is here [01:04] daf: ping [01:05] stub: do the USA people change the hour like we did this weekend? [01:05] stub: the restore seems to be working === Kinnison is here === morgs is here [01:07] carlos: IIRC USA goes forward one week later; comes back the same time [01:07] Mmm... I'm now at UTC+11 now btw. [01:07] so it's 11pm for you? yowch [01:08] better than UTC-11 I guess :-) [01:09] carlos: Are you able to give a short state-of-rosetta? [01:09] stub: I could try, but I only know the status of my work [01:10] daf: told me that he is going to attend the meeting [01:11] ok. We can wait to see if daf comes online in a tick. [01:11] but I think that perhaps he will be late [01:11] ok [01:11] As for Malone, work has been progressing on dogfood-for-launchpad, in particular email notifications. Brad has also been beating his head against test harnesses so he can land a full suite of page tests. [01:11] I'm sure people who have been playing with it have noticed usability issues - please submit them as bugs in the dogfood malone, or in Bugzilla if that fails. [01:12] BradB wants to get the Ubuntu people on board with it as soon as possible, but I feel a little more conservative and want to concentrate on the launchpad group. Maybe we can do both. [01:13] can we make the default https://launchpad.ubuntu.com/ use the port which gives tracebacks to the browser? [01:13] stub: are we able to use malone for launchpad bugs then? [01:13] Kinnison: That would be a great idea [01:13] carlos: I filed 3 bugs against malone in malone yesterday :) [01:13] Kinnison, I agree with you [01:14] Does the dogfood malone do emails yet? [01:14] Kinnison: I'll try and do that when I drop a fresh snapshot in, which I'll do after this meeting if enough Gina data has been collected or people don't want to wait another 9 hours [01:15] stub: feh; anyone would think you thought gina was slow :-P === kiko [~kiko@200-206-134-238.async.com.br] has joined #launchpad === Kinnison notes that the collection run I started earlier has actually finished! [01:16] spiv: but we don't have (yet) the old bugs imported, so i cannot use it yet [01:16] spiv: The code is all there for notifications, but no incoming email. It is currently switched off though - I will want to clear it with Brad before switching it on, as a screwup could spam Mark (default owner of a lot of things) or elmo (as the postmaster) [01:17] Kinnison: I was talking about when I wake up tomorrow. Hopefully gina will be finished by then ;) [01:17] stub: oh righty. I'm happy for you to upgrade the software; no question [01:17] stub: Fair enough. The reason why I ask is that if launchpad devs are going to have to deal with two seperate bug systems at once, I fear the dogfood one will be forgotten unless it sends emails. [01:18] stub: if you have to reset the db; gina will have to run again; which might suck [01:18] spiv: Good point. [01:18] stub: But importing bugzilla bugs into malone would fix that as well, I guess. [01:19] At the moment, I don't think we have any import code. I need to talk to elmo about switching off basicauth on the Canonical bugzilla (from Mawson's IP) so we can watch bugs though. [01:19] If it is a problem, we can talk to kiko or justdave about a quick'n'dirty import script. [01:20] talk to me [01:20] what's up? === lulu [~lu@host217-37-231-28.in-addr.btopenworld.com] has joined #launchpad === carlos [~carlos@69.Red-80-33-181.pooles.rima-tde.net] has joined #launchpad === Kinnison [~dsilvers@haddenham.pepperfish.net] has joined #launchpad === cprov [~cprov@200.158.100.251] has joined #launchpad === debonzi [~debonzi@200.158.100.251] has joined #launchpad === stub [~stub@dsl-246.248.240.220.dsl.comindico.com.au] has joined #launchpad === doko [doko@dsl-082-082-065-116.arcor-ip.net] has joined #launchpad === spiv [~andrew@fuchsia.puzzling.org] has joined #launchpad === ChanServ [ChanServ@services.] has joined #launchpad === kiko [~kiko@200-206-134-238.async.com.br] has joined #launchpad === ddaa [~ddaa@nemesis.xlii.org] has joined #launchpad === daf [daf@muse.19inch.net] has joined #launchpad === dilys [daf@muse.19inch.net] has joined #launchpad === lifeless [~robertc@dsl-78.1.240.220.rns01-kent-syd.dsl.comindico.com.au] has joined #launchpad === daf [daf@muse.19inch.net] has joined #launchpad === lifeless [~robertc@dsl-78.1.240.220.rns01-kent-syd.dsl.comindico.com.au] has joined #launchpad [01:28] And then kiko just walked out of the room! === Kinnison grins [01:28] !Md:*! this was the scheduled outage... === kiko_ [~kiko@200.206.134.238] has joined #launchpad === sabdfl [~mark@196.38.108.242] has joined #launchpad [01:28] ok... I think we have everyone back. [01:29] sabdfl: Greetings. Just intime for the next netsplit [01:29] :-) [01:29] launch here in a few minutes, so wont likely be able to enjoy the fun [01:29] sabdfl: good luck [01:30] anyone need mark luvin' while he is here or shall we move onto soyuz? [01:31] sorry, something happened :) === kiko_ has no idea what [01:33] kiko_: Just remember that IRC was designed by a pack of drug induced hippies over a decade ago. [01:33] what wasn't? [01:33] and has been perpetuated by weenies ever since [01:33] you could say the same of tcp/ip I suspect [01:33] and BSD [01:33] ban it all I say [01:34] let's all use appletalk [01:34] ! [01:34] stub: I just can see the CSV style import from bugzila and it just import a query not a bug [01:34] Kinnison: So what is the status of Gina - is it now importing hoary on mawson, or is that what is currently being worked on? [01:34] stub: gina has imported a nearly complete hoary archive [01:35] stub: I'm working on the few corner packages left making sure that gina is doing the right thing [01:35] So is the end in sight, and are there any blockages? [01:35] stub: then I'll get the last twiddles done for the corner-case of package versions moving between distroreleases which I've spotted [01:36] Once that corner-case has been solved; we should be able to repopulate the sourcepackagerelease tables on demand via gina [01:36] No major blockages that I can see [01:36] Just gotta keep slogging [01:36] excellent. [01:37] the dogfood db contains a workable-with set of data and I believe cprov is going to get nicole going on it today [01:38] Nicole works perfectly on soyuz_df at 50/1033 packages of Hoary/Main should I stop and run it on lp_dogfood ? [01:38] cprov: And is nicole ready to chew on the data? [01:39] stub: yes, I think [01:40] ok. So the soyuz dogfood environment will have lots and lots of stuff to play with [01:41] kiko_, debonzi, cprov: Anything you need to tell us about soyuz? [01:41] debonzi and I need to work on perf [01:41] there are a lot of database queries being spawned on simple pages [01:42] salgado and debonzi are going to work together to create one or two more views for the binary package side of things [01:42] cprov is busy fixing up the personal view of packages (reproducing QA functionality) [01:43] or main open task is reproducing the packages.qa data in the package pages [01:43] and cleaning up the house which is quite messy atm [01:43] This is all minimum functionality stuff for the dogfood environment? [01:44] packages.qa pretty much is, though we *could* do without it it wouldn't be functionally equivalent to the read-only pages debian provides and thus.. [01:45] the packages.qa page is a very very valuable information page for debian developers. Having it in soyuz is a must IMO [01:46] Kinnison, no objections to not following the layout of the original page if the equivalent is acceptable? === kiko_ realizes that's not a real question [01:47] kiko_: I suppose if we have the same information, that's enough [01:47] :-) [01:47] What is the current coverage of unit, functional and page tests? [01:47] whee [01:47] kiko_: It's the data that's most important. We can always tweak layout at a later date [01:47] yeah. === stub realizes kiko_ is chatting in #canonical [01:51] are we still waiting on my input? [01:51] I was wondering how you rate the soyuz test coverage [01:51] oh! [01:51] sorry, I didn't see that as a soyuz-specific question [01:52] ;) [01:52] "not good" would likely be my answer [01:52] Sounds familiar. [01:52] we've not done practically any progress there, mainly because the pages are still not spec'ed enough [01:53] and there's still rather experimental infrastructure change going in [01:53] I think after bootstrapping, we all need to get test coverage done. I think it is fair to leave this until things have solidified, but I suspect that is 'soon' in the case of soyuz and 'now' in the case of malone and rosetta. [01:53] stub: pong [01:53] lifeless: tag -S rocketfuel@canonical.com/launchpad--devel--0 rocketfuel@canonical.com/launchpad--dogfood--0 [01:54] you'd like me to do that? [01:54] to be honest there's still a few domain patterns in the backend that we haven't quite understood yet [01:54] lifeless: Yes please. pqm didn't like me telling it to, but didn't tell me why :-) [01:54] for instance using views is.. interesting [01:55] we're going to end up with some inheritance between views and the "real" class [01:55] I haven't envisioned how it's turning out yet but this is all this week's material [01:55] kiko_: how does sqlobject handle views? [01:56] carlos: You can just treat them like tables. [01:56] yes. [01:56] (so long as you don't try to update their values...) [01:56] ok [01:56] you can actually insert into a view AIUI [01:56] though I've never tried that [01:57] stub, do we have any other views in the codebase? [01:57] spiv: ping [01:57] also, how concerned are we that the views are actually quite separate from where they are used? [01:57] I think we should avoid views where easy to do so, as there will be issues. For instance, setting attributes on a real class will not cause the view-classes to be updated because the data has not yet been committed to the database (and if it was, sqlobject wouldn't know) [01:57] kiko_: There are no other views at the moment, but Kinnison is going to land more soon. [01:57] I see [01:57] cprov: pong. [01:58] kiko_: Inserting into views scares me :) [01:58] the main reason for requiring views is that it's not possible to get joined data when you are getting large lists of things [01:58] package listings are the trivial example since stuff there is spread all over [01:59] spiv: are you the DOAP pages king ? I have a request [01:59] cprov: I am. [01:59] stub: done. [01:59] lifeless: ta :-) [01:59] you'll need to be able to merge to that branch too right ? [02:00] kiko_: I wonder if for relatively simple cases if BradB's SQLMethod idea might be a better option than building views? [02:00] lifeless: Yes. I'd assumed I could tell pqm to star-merge. I suspect we want most people to be able to once I've written some procedure guides. [02:00] stub: Is there some way to tell sqlobject to flush its cache for a given class? [02:00] it could be [02:00] but it's vapor [02:00] what is the config that it should use to checkout, when doing a make check for dogfood ? [02:01] spiv: the product-index has a hardcoded link to warty/src/${package.name} ... it's broken for dogfood, since we are importing from hoary [02:01] for instance, for l--devel--0 its: [02:01] build_config=rocketfuel@canonical.com/dists--devel--0/configs/canonical.com/launchpad/development [02:01] cprov: Ah, right. Thanks. [02:01] Kinnison: I have no idea. [02:01] build_config=rocketfuel@canonical.com/dists--devel--0/configs/canonical.com/launchpad/dogfood [02:02] Kinnison: You can expire an individual instance from SQLObject's cache (with the .expire method). [02:02] spiv: hmm [02:02] stub: [02:02] [rocketfuel@canonical.com/launchpad--dogfood--0] [02:02] precommit_hook=make check [02:02] build_config=rocketfuel@canonical.com/dists--devel--0/configs/canonical.com/launchpad/dogfood [02:02] done [02:02] So so long as the views have the ids of the objects that expiring... [02:03] spiv: btw, it's bronken for dogfood but not in our dev-code, I don't know if you can just change it to hoary there and work in dev code to figure out which distro from SourcePackagePublishing [02:04] spiv/stub: what about setting _cacheValues to False in the view classes? [02:04] I suspect we can work around issues we hit with views - identifying all of them might take a while though, so thanks to kiko_ for volunteering :-) [02:04] Kinnison: That doesn't solve the full issue, though. [02:05] I volunteered to buy two DVDs too, where is that plaque with my name on it? === kiko_ is now known as kiko [02:05] spiv: any other issues are to do with insufficiently-timely transaction commits; surely? [02:05] Kinnison: e.g. "foo = get_object_from_view(); bar = get_real_object(); bar.x = 1"... foo.x would then be out-of-date. [02:06] _cacheValues: [02:06] If set to False then values for attributes from the database won't be cached. So everytime you access an attribute in the object the database will be queried for a value. [02:06] Oh, hmm. Yeah, it would work, I guess. It might kill performance, though :) [02:06] I'm not sure if that'll ruin the benefits of using the view though :-( [02:08] ok. I think we should not worry about solving these problems unless we need to - my example might not be a problem, especially if people are aware and can work around it. [02:08] But we are running overtime. [02:08] we are also working overtime ;) [02:08] spiv: How are things in your world? foaf & doap at the moment? [02:10] It's been pretty quiet on the doap and foaf front, seeing as they don't have much impact on the dogfooding, and I've been working on shipit/authserver issues. [02:10] Any problems with that, apart from the no-downtime issue? shippit passwords compatible for instance? === spiv checks the password situation quickly... [02:13] I'm pretty sure they're plaintext in the shipit db :) [02:13] wonderful :-) [02:14] So authserver is in production. Is the librarian in production now, or just dogfood? [02:14] Just dogfood afaik. [02:14] Kinnison/ [02:14] er, ? [02:15] spiv: ? [02:15] I'll take that as a no then ;-) [02:16] Kinnison: You've been the one actually *using* librarian :) [02:16] Yeah, I think that's a no :) [02:16] daf: ping [02:16] stub: pong [02:16] bah! [02:16] librarian is on dogfood [02:16] I've not done anything with it wrt. production [02:16] daf! [02:16] alarm went off this time, but I failed to stay awake :( === Kinnison hugs daf [02:17] daf: welcomed! [02:17] daf: a quick sentence on rosetta? We are 17mins overtime atm. [02:18] summary: things have been a little quiet on the Rosetta front [02:18] we've mostly been working on tidying things up rather than on new features [02:19] we need to decide what we're doing for our beta release and get going on it [02:19] we recently did a triage of all our bugs, which I think was useful [02:19] cprov/kiko/debonzi: Good news; gina looks like she's running as cleanly as the archive will let her :-) [02:19] carlos: anything to add to that? [02:19] w00t! === daf gives Kinnison a belated return hug [02:20] we'll see what she does when we get the next archive drop from elmo later today [02:20] daf: well, just that we will need to see a way to execute an script to update the pot/po files in launchpad every time a new package is updated from gina [02:20] let's hope [02:20] carlos: ooh, interesting [02:21] I have the script partially finished [02:21] well, a initial version [02:22] so we should start thinking on it soon [02:22] daf: How do you rate the rosetta test coverage? [02:23] here it comes [02:23] Kinnison, great [02:24] stub, everybody goes silent on that question. is that a hint? [02:24] stub: I think our unit tests for the browser module are pretty good, although not complete [02:24] stub: I don't think our page test coverage is as good [02:24] Kinnison: nice, you can also see results from nicole in Projects now [02:25] cprov: excellent [02:26] ok. I think a good approach for Rosetta now will be to do the tests in tandem with code. I think the project is at the stage now where that will save time rather than waste it. [02:26] you mean write tests as we write code? [02:27] I believe so, daf [02:27] If you write or update a screen, make a page test for it. If you fix a bug, write a unit/functional test for it. I generally write the tests during or straight after a chunk of code. [02:27] Dogma says write them before, but I don't seem to be able to work that way. [02:28] I don't either [02:28] Also if your brain needs a break, scan over your code looking for any methods without doctests and add them. [02:29] before doesn't really work for page tests [02:29] Malone is reaching that stage too, so I'll need to be taking my own advice :-) [02:29] but yes, that approach sounds good to me [02:29] Doing unit tests before works for me, for some code. But I can't manage it all the time :) [02:29] I could try to do it... [02:30] Ideally we want at least 1 page test for every screen, so at the very least we know if they fail to render. [02:30] carlos: well, writing code and tests together is something we should all do [02:31] sounds like someone needs the lifeless treatment :). [02:31] We should also be doing walkthroughs or stories, so the form handling and workflow gets tested. [02:31] night all [02:31] daf: I know, but I need to be used to that, this is the first development where I'm doing it [02:31] carlos: ok [02:32] carlos: you're not the only one :) [02:32] :-) [02:33] From my experience, tests are fantastic but fail abysmally if you don't keep the dicipline - if new code goes in that isn't being tested, it tends to spread like cancer. [02:34] Also, writing tests for existing code is a pita, as tests are easier if the code was designed to be easily tested. [02:34] I understand we're working on fixing test_on_merge.py [02:34] Yes - there is a bugzilla bug on it. I'll sort it if nobody beats be to it. [02:35] good [02:35] daf: #2155 [02:35] it would be great if we couldn't commit with broken tests [02:35] Unless there's another issue I'm not aware of ;) [02:35] spiv: ta [02:35] Also, Brad has been sorting out some test harness issues (postgresql junk) trying to ensure tests all run in isolation. The existing harnesses fail in some situations, but that is being worked on by Brad and me. [02:37] So have I missed anyone, or are there other issues that need to be raised now? Nobody blocked on anyone else? [02:39] no, soyuz is doing okay this week [02:39] stub: we are soft blocked by htc [02:39] hct? [02:39] was that the name? [02:39] I don't remember it :-P [02:40] Scott's work [02:40] neither acronym makes any sense to me ;) [02:40] the one that fills the Manifest tables [02:40] Scott is aware of this? [02:40] yes [02:40] I think so [02:41] I sent an email last week [02:41] ok. Can you confirm, or should I? [02:41] I could confirm, don't worry [02:41] ok. [02:42] So I need to: [02:42] launchpad code drop [02:42] turn on malone dogfood emails (if Brad agrees) [02:42] launchpad dogfood should use debug skin by default [02:43] Anyone else volunteer to handle bug 2155? === daf takes another look at it [02:43] I can do that. [02:44] ah, you already have a patch :) [02:44] Ta. I have no problems with tests being turned off if necessary provided bugs are filed. [02:45] so the plan is to disable these two tests, apply the patch, then fix the tests? [02:45] daf: Yep. [02:45] I've found at least one test_suite() method returning None :-) [02:45] spiv: sounds good [02:45] daf: Yup. Most important is to fix test_on_merge.py so new broken tests don't creep in. We are lucky there are only two (that I can see) [02:45] stub: interesting :) [02:46] stub: what happens to the test results in that case? [02:46] daf: No tests are run for that module [02:46] (Aside: I wish we didn't need the test_suite dead chicken... Twisted's test runner is much better in that respect) === lulu [~lu@host217-37-231-28.in-addr.btopenworld.com] has joined #launchpad [02:46] daf: It is a quickndirty way of switching tests off (but liable to acidentally being commited...) [02:47] spiv: Feel free to fix the test runner ;) [02:47] :) [02:47] spiv: what's the alternative? [02:47] Anyway - I suspect the meeting finished a while ago [02:47] stub: Yeah, I think so. [02:48] ok, I'm going to have lunch now then [02:48] stub: thanks [02:48] Have fun :-) [02:48] later [02:49] daf: Twisted's approach (iirc) is that any module matching *.tests.test_* is searched for subclasses of TestCase. All TestCases are run. [02:49] spiv: sounds good [02:49] spiv: what about doctests? [02:49] debonzi: Can the launchpad code drop wait another 10 hours? I wanna go to bed, and will do a better job tomorrow :-) [02:49] It doesn't have support for those yet :( [02:50] stub, sure.. no problem [02:50] stub, good night :) [02:50] spiv: I'm _all_ for a better test runner [02:50] stub: G'night :) [02:51] night stub! [02:51] spiv: if we can work out how to deal with doctests, I'd love to go with the approach you describe [02:51] daf: "Feel free to fix the test runner ;)" [02:51] :) [02:51] perhaps it could check for a test_suite and fall back to TestCase subclasses? [02:52] Sure. [02:52] I believe Marius has a better test runner that he may be using for his zope3 projects. He gave a talk on it at Europython. [02:52] Or even look for a doctests_to_run attribute in a test_* module. [02:52] Yeah, we should definitely look at reusing existing code :) [02:53] mmm, yes [02:53] perhaps we should ask Marius about it [02:53] Unfortunately, the Twisted test runner (trial) is heading in a direction where it's more and more twisted-specific :/ === spiv workrave [02:57] http://mg.pov.lt/blog/using-schooltool-test-runner.html [02:58] Works with Z3 stuff. [02:59] Might really help with the postgresql setup/teardown - you can easily group tests with a single setup/teardown to run at the start and end of the group (where the existing harnesses do it for every test). Lots of other funky features. [03:02] mm, looks nice [03:05] the europython talk might be online which describes the hooks'n'stuff, or marius is in #zope3-dev atm. I'm off to bed :-) === stub buggers off [03:10] !Geert:*! Irssi is in the process of starting the re-design of the Irssi webpages. If you have ideas for the new logo or layout, join #irssi-site or submit your ideas to contest@irssi.org. The best design will be the official logo / site for the next 5 years! (More info on www.irssi.org) [03:13] Twisted's trial has a setUpClass/tearDownClass, which sounds similar. [03:14] Basically, there's clearly a lot of good ideas whose time has come... it would be really nice if there were One True Test Runner :) === BradB|away is now known as BradB [03:21] morning [03:21] stub: Is there a PostgreSQL command that does pretty much the same as dropping and recreating the DB, but without actually dropping and recreating the db? [03:22] I'm thinking that's a more practical approach to solving the data init problem. [03:22] I think you just missed stub [03:22] I thought we were doing clever tricks with templates now [03:25] BradB: Nope. You can drop all the tables and stuff one by one, but the disadantage to that approach is that it is slow (it is 10 or 20 times faster to do 'createdb --template' to build a launchpad instance than it is to build all the tables and populate sample data). [03:26] BradB: The closest I could come up with would be to override psycopg.connect to return connection wrappers. These wrappers ignore calls to 'commit', so we can rollback all database changes at the end of the test. However, that would fail in some situations where the tests are relying on rollback to work normally (but that might not be a problem) === stub really should be going to bed this time [03:28] I think my current approach might be close enough to try to finish then. [03:28] lifeless: ping === Kinnison ponders some lunching [03:35] pizza and garlic bread methinks === kiko is now known as kiko-fud [03:39] BradB:ping! [03:40] lulu: pong [03:43] BradB: what is your bugzilla email address? got a little bug to assign to ya! [03:43] :o) [03:44] bradb@bbnet.ca [03:45] lulu: if you type "brad" in, it will work [03:47] daf, brad: thank you! === debonzi -> lunch [04:01] !dmwaters:*! Hi all! I'm going to do some slight rehubbing to clean up from this morning's outage. === netjoined: irc.freenode.net -> sendak.freenode.net === ChanServ [ChanServ@services.] has joined #launchpad === lulu [~lu@host217-37-231-28.in-addr.btopenworld.com] has joined #launchpad === sabdfl [~mark@196.38.108.242] has joined #launchpad === kiko-fud [~kiko@200.206.134.238] has joined #launchpad === lifeless [~robertc@dsl-78.1.240.220.rns01-kent-syd.dsl.comindico.com.au] has joined #launchpad === spiv [~andrew@fuchsia.puzzling.org] has joined #launchpad === doko [doko@dsl-082-082-065-116.arcor-ip.net] has joined #launchpad === stub [~stub@dsl-246.248.240.220.dsl.comindico.com.au] has joined #launchpad === debonzi [~debonzi@200.158.100.251] has joined #launchpad === cprov [~cprov@200.158.100.251] has joined #launchpad === Kinnison [~dsilvers@haddenham.pepperfish.net] has joined #launchpad === carlos [~carlos@69.Red-80-33-181.pooles.rima-tde.net] has joined #launchpad === daf [daf@muse.19inch.net] has joined #launchpad === ddaa [~ddaa@nemesis.xlii.org] has joined #launchpad === dilys [daf@muse.19inch.net] has joined #launchpad [04:05] !dmwaters:*! All done, thank you for your patience, and thank you for using freenode! [04:10] daf: could we decide the "fuzzy" change I suggested ? === kiko-fud is now known as kiko [04:53] debonzi: ping [04:53] BradB, pong [04:53] debonzi: i seem to remember reading a checkin message that you changing something in the batching, correct? [04:54] s/batching/batching code/ [04:54] BradB, yep [04:55] BradB, is something wrong? [04:55] this seems to have broken the batching unit tests. it slipped by pqm because of the way pqm was verifying whether everything worked or not. could you fix the test so that it passes, because lifeless and spiv will be making it so that this causes checkin failures in the next day or two probably. [04:56] BradB, yes Ill check it [04:56] thanks [04:57] BradB, no problem.. What is the easy way to track it? make check? [04:57] carlos: ok, let's discuss it [04:57] python test.py -h will tell you how to run specific tests [04:57] BradB, right.. thanks [04:57] daf: did you saw my last comments? [04:59] where? [04:59] at bugzilla [05:00] https://bugzilla.warthogs.hbd.com/bugzilla/show_bug.cgi?id=2147 === sabdfl [~mark@196.38.108.242] has left #launchpad [] [05:03] my feeling at the moment is "the fuzzy flag should only be changed explicitly by the translator, so I don't see the problem" [05:04] so how will you handle the "iscomplete" flag? [05:05] good question :) [05:06] that's the point behind this change request :-) [05:06] I think this is just a cached result of "does this message set have a translation sighting for each plural form it's supposed to have?" [05:07] yes, we could see it that way [05:07] I think complicated part is the relationship between the two flags [05:08] e.g. a message must be fuzzy if it is not complete [05:08] does that make sense? [05:09] so a message set can either be (complete and fuzzy), (complete and not fuzzy), or (not complete and fuzzy) [05:10] and we don't allow a translator to unset fuzziness on an incomplete message set [05:11] that's not true with gettext [05:11] :-( [05:11] so we should fix that at import time [05:11] good point [05:11] that's a bit messed up, I think [05:12] let's do a test: [05:12] make a PO file with an incomplete message set [05:12] use it in a program [05:12] see what gettext does with the message that's missing a translation [05:13] daf: msgfmt does not gives you any warning [05:13] I did some tests already [05:13] ok, but I want to see what happens when the program runs [05:13] not sure about the gettext function... [05:13] whether gettext uses the partial translation or not [05:13] ok [05:13] will do it today [05:13] any ideas on how to do it? [05:15] yes [05:15] a simple C program [05:15] with a plural form [05:15] that prints both messages [05:16] sounds good [05:16] estimated time to do that? [05:17] 30 minutes [05:18] I do it and then we continue talking? [05:18] yep [05:39] hmm, I'm forgetting anything... [05:39] daf: could you look at: [05:39] #include [05:39] #include [05:39] void [05:39] main () [05:39] { [05:39] bindtextdomain("test", "/home/carlos/test"); [05:39] textdomain("test"); [05:39] printf ("%s\n", ngettext ("Test singular", "Test plural", 1)); [05:39] printf ("%s\n", ngettext ("Test singular", "Test plural", 2)); [05:39] } [05:39] it does not tries to access /home/carlos/test [05:40] I'm missing anything but I don't see it [05:40] hmm [05:40] did you try stracing it? [05:41] yes, that's why I know it does not looks at that directory [05:41] I don't get any open request [05:41] interesting [05:41] what files does it try to open? [05:41] only the usual ones (the linker ones) [05:42] carlos@frodo ~/test $ strace ./a.out 2>&1|grep open [05:42] open("/etc/ld.so.preload", O_RDONLY) = -1 ENOENT (No such file or directory) [05:42] open("/etc/ld.so.cache", O_RDONLY) = 3 [05:42] open("/lib/libc.so.6", O_RDONLY) = 3 [05:42] you can do "strace -e open", by the way [05:42] ok [05:44] right. [05:44] carlos: hmm, the only thing I can think is that you need to do -DGETTEXT or something [05:45] that's what I'm looking now [05:45] gettext is gnarly :( [05:46] grre [05:46] setlocale [05:46] :-) [05:46] that's the key [05:47] oh, of course! [05:47] :) [05:47] perfect === carlos needs to program more in C... [05:47] I'm starting to forget things :-( [05:49] daf: it prints an empty string [05:50] ouch [05:50] I think this is a bug in gettext [05:50] carlos@frodo ~/test $ LC_ALL=C ./a.out [05:50] Test singular [05:50] Test plural [05:50] carlos@frodo ~/test $ ./a.out [05:50] primera prueba [05:51] daf: so, what should we do? [05:52] mark it always as fuzzy? [05:52] I think gettext should have fallen back to the untranslated string in that case [05:52] yes, I think we should mark such message sets as fuzzy on import [05:52] Merge to rocketfuel@canonical.com/launchpad--devel--0: batching unit test fixed. (patch-727) [05:52] it would be nice if we could warn the user about such things [05:52] daf: well, I don't think that's correct, it's possible (but not probable) that a translator wanted to leave a translation empty... [05:53] why? [05:53] I'm talking about the gettext behaviour you are talking about [05:53] not the import thing :-) [05:53] oh, ok :) [05:54] perhaps we should open a bug "warn the user when marking message sets fuzzy on import" [05:54] BradB, the fix is in rocketfuel.. I hope is all ok [05:54] daf: the user == who imports the file? [05:55] that will be a script 99% of the imports... [05:58] debonzi: great, thanks [05:58] BradB, no problem [06:07] daf: ? [06:08] that's true === kiko waves hands about wildly at BradB [06:08] forget it :) [06:08] ok [06:09] then, back to the "iscomplete" problem [06:09] when should we set it? [06:10] as we are at this moment, if it's singular is easy, if it's plural... no idea [06:10] (to do it implicit inside makeTranslationSighting [06:11] stub: dude, i ROCK [06:12] stub: db_adapter.disconnect(), db_adapter.connect()! [06:12] stub owes me a kiss in spain now (it was his offer) [06:12] X-) === carlos will take a picture of that [06:13] jesus [06:13] now we can finally drop and recreate the db properly between test stories [06:13] a sloppy, wet one too, he said [06:15] perhaps we should add a database constraint for NOT ((complete = TRUE) AND (fuzzy = FALSE)) [06:15] daf: sure, but that's to improve the schema === BradB is really thankful for offline commits right now, given that i can't check anything in until pqm gives me the full error output so that i can actually see what was failing with my page tests on the server. [06:16] the problem at this moment is that makeTranslationSighting is called two times, one with the singular and another one with the plural [06:17] so if you don't want to change the schema [06:17] yes, that was incidental [06:17] I see two options (not sure if they are correct): [06:17] go for it [06:18] 1.- Assume that every time we update a plural form we will always call makeTranslationSighting twice [06:18] hmm [06:18] no, this one will not work [06:18] we could have n plural forms... [06:19] then, we only have an option: [06:19] 2.- Change makeTranslationSighting and give a list with all translations [06:20] hrm [06:20] so if it's singular the list will have only an argument [06:20] if it's a plural forms we will have all translations for that set [06:20] I was thinking along the lines of "when makeTranslationSighting is called, calculate the flag and set it" [06:20] and we could know if it's complete or not [06:20] the information needed to set it is in the DB [06:20] me too [06:20] the problem is just keeping the flag up to date [06:20] not really [06:21] think on this scenay [06:21] think on this scenary [06:21] : [06:21] we have: mststr[0] = "foo" and msgstr[1] = "bar" [06:21] and that msgset is marked as fuzzy [06:22] ok [06:22] foo is correct, but bar is not correct [06:22] so we call makeTranslationSighting with "foo" [06:22] which plural form? [06:22] at that moment we have all needed strings but it's still fuzzy [06:22] only two plural forms [06:22] so we don't need extra strings [06:23] only review them [06:23] right, but makeTransltionSighting with plural_form = 1 [06:23] plural_form=0 [06:23] so foo with plural_form = 0 [06:23] that doesn't change anything, does it? [06:23] it should not [06:24] when we do the second call with plural_form = 1 [06:24] we assume it's fixed the fuzzy, so we change the flags [06:24] ok [06:24] we don't make the first call if nothing has changed [06:24] is it safe to assume it's no longer fuzzy? [06:24] not really [06:24] that's my point [06:24] ok, then we shouldn't :) [06:25] that's the user's choice [06:25] but we talked about remove the fuzzy concept from rosetta [06:25] to simplify the UI [06:25] ok, my memory is bad [06:25] I don't remember that [06:25] can you remind me? [06:26] the fuzzy does not appears in the stats because that and I think we said it should not appear as a flag when translating for the same thing, simplicity [06:26] we show the strings as a hint [06:26] or suggestions [06:26] that's why I remember from what we talked at Oxford [06:27] hmm [06:27] I see the benefits of this [06:28] /s/why/what/ [06:28] :-) [06:28] what about the use case "I think I know the translation for this, but I'm not sure, so I'll put it in and mark it fuzzy so it gets reviewed"? [06:29] [ ] Finished [ ] Review and mark finished by default? [06:30] Merge to rocketfuel@canonical.com/launchpad--devel--0: Make test_on_merge.py check test results more accurately (Bug #2155) (patch-728) [06:30] daf: next time we should a fuzzy string it will appear as a hint (when we implement that part) [06:30] grr [06:31] /s/should/show/ [06:31] ok, but how do we represent "this message set needs review" in the DB? [06:31] or we should change it to show also those msgsets wit hte review mark set (it's another option) [06:31] fuzzy [06:31] :-) [06:31] hmmm [06:32] finished = iscomplete review = fuzzy [06:32] in fact, we could forget about finishe [06:32] d [06:32] I don't think icomplete should be up to the user [06:32] right [06:32] Bug 2155 resolved: test_on_merge.py doesn't check exit status, and thus ignores failures. [06:32] https://bugzilla.warthogs.hbd.com/bugzilla/show_bug.cgi?id=2155 [06:32] so we should introduce the fuzzy mark (with other name) [06:32] it's ok for me [06:33] we can always remove it in the future if needed [06:36] ok, I'm going to write a reply to your email to the list, in light of what we've discussed [06:36] this will hopefully help me get things clear in my mind [06:36] ok [06:36] thanks [07:04] eeg, malone sucks [07:04] the way the UI is designed i have no real way to resolve a bug. [07:06] unless "Closed" is a good way of saying "I fixed this" === BradB goes with that assumption (even though it should be "resolved" or "fixed" or something) [07:09] well, that depends how you view bugs [07:11] if it's "a bug is a report of a problem", and the problem is not currently there (because it was fixed, or because the report was innacurate, etc.) then it's valid to say "there is no problem, so the bug should be closed" [07:12] I've found Bugzilla's complex states a little confusing (closed, resolved, verified) [07:12] daf: one word: "rejected" :) [07:12] "closed" conveys very little meaning [07:13] There should be a way to differentiate between "fixed" and "won't fix" :) [07:13] there is, in infestations [07:14] What's the difference between "affected" and "victimized"? === elmo [~james@82.211.81.249] has joined #launchpad [07:15] lol === spiv looks it up in the dbschema. === lulu [~lu@host217-37-231-28.in-addr.btopenworld.com] has left #launchpad [] [07:23] spiv: affected means the bug affects that release. [07:24] spiv: victimized means the bug manifests itself in that sp release, but it's actually a bug that comes from another sp. === BradB mutters something about libneon [07:25] BradB: Yeah, I figured it out from the descriptions in the dbschema :) [07:26] BradB: Btw, test_on_merge.py behaves a bit more intelligently now, as you probably noticed from the commit message. [07:27] cool...i can't wait till pqm is fixed so that i can actually see what's failing when i try to merge. :) [07:31] BradB: rejected because the report is incomplete, or can't be reproduced, or because you don't want to fix it, or for some other reason? :) [07:31] I think bug tracking is one of those problems that look easy from a distance but are really hairy close up [07:32] carlos: ok, sent === carlos reads [07:34] sorry I've been slow on this issue, but I wanted to understand the problem well before making a decision [07:36] daf: no problem, I had other things to do, if I were blocked you would know that :-) === BradB is now known as BradB|lunch === BradB|lunch is now known as BradB === carlos leaves for a while [08:44] daf: what's the db table that represents one localization of a msg id? [08:45] it looks like it might be pomsgidsighting, but hopefully there's something clearer [08:59] I'm not completely sure what you mean, but I suspect you want potranslationsighting [08:59] depends whether you want the localisation of the message ID as a whole, or for a particular plural form [09:06] how do i know that the german translation of "hello" is fuzzy, for example (but that the german translation of "hey there", "what's up", and "yo dude" aren't?) [09:10] kiko: dude, we need title :) [09:11] then kill summary :) [09:11] yes! (i corrected my question in a followup email) [09:12] heh [09:12] why is title needed, btw? [09:12] kiko: so that i can see "Mozilla not saving .ch bookmarks" in a listing. [09:13] why isn't that summary, just so I know? :) [09:14] Either/or...in its current form though, "summary" is a textarea where you summarize the problem. [09:14] Then description is the essay on the bug, heh. [09:15] this is bizarre :) [09:18] you come from bugzilla terminology, i come from plone collector terminology. [09:18] also, "title" is used elsewhere in LP with similiar semantics [09:19] BradB: you find the pomsgset which has a (pomsgidsighting which has a message ID of "hello") and a pofile which has a (language which is German) and a (potranslationsighting that's active) and has the fuzzy flag set to true [09:21] hm, i don't understand. all that criteria would be met by a non-fuzzy localization of a msg id. [09:22] ahem: "and has the fuzzy flag set to true" [09:22] daf: yes [09:23] there's no fuzzy flag on a potranslationsighting, only on the msg set. [09:23] correct [09:23] thus if i'm a non-fuzzy localization, living in a fuzzy msg set, i'm screwed. [09:23] why? [09:24] because there's no way of knowing that i'm not fuzzy, but some of my buddies in the same po are. [09:24] unless i'm missing something. [09:24] I think you misunderstand what a message set it [09:24] s/it/is/ [09:25] nah, it's a cp .pot .po => give to translotor => out comes a message set. [09:25] it's not a great name (but I didn't choose it :)) [09:26] a PO message set is a collection of a message ID, a possible plural message ID, and the associated translation(s) [09:26] yep [09:26] some of which might be fuzzy, some not [09:26] no [09:26] the whole thing is fuzzy [09:26] why not? [09:26] why? :) [09:26] why? i might be certain on some translations, and uncertain of others. [09:26] a PO file has many message sets, each of which may be fuzzy [09:27] each message ID in a PO file has its own message set [09:27] oh [09:27] yes [09:27] i didn't except that [09:27] i thought a message set was a set of messages, rather than a set of localizations [09:27] yeah, the name is a bit misleading [09:28] blame sabdfl :) [09:28] I would have called it "message" myself :) [09:28] ok, so that makes more sense....but what if only one translation of that msg set is fuzzy? [09:29] well, I'm still not entirely decided on that point [09:29] there's an argument which says you want each indivisual localisation to have its own fuzzy flag [09:30] it might be overkill at this point [09:30] right, I suspect that one fuzzy flag for the set is good enough [09:30] I'd argue you can only decide that a localisation is correct in the context of the other localisations that accompany it [09:31] and that any win in control is outweighed by the loss in UI complexity [09:31] i would have thought that only the msg id (and "domain"? if i have my i18n terminology correct) matters [09:32] well, if you have 3 plural forms, you want the 3 localisations to be consistent in terminology and sentence structure [09:32] and that's something you can only decide for the message set as a whole [09:35] really? hm, i haven't really faced the issues before, but i would have thought that all i care about as the japanese translator is: 1. the original msg id, 2. its intended meaning (conveyed hopefully by the domain). i would have thought that the way each language deals with conveying that same thing may be wildly different. [09:35] sure [09:36] I'm talking about localisations within one language [09:36] e.g. [09:36] msgid "I have one lemon." [09:36] msgid_plural "I have %d lemons." === elmo [~james@82.211.81.249] has joined #launchpad [09:36] msgstr[0] "J'ai une citron." [09:37] msgstr[1] "Citrons, j'ai %d." [09:37] j'en ai %d! :P [09:37] (excuse my appalling French) [09:37] hm [09:38] the point is that you want the different translations for the same language to be consistent to each other [09:39] yeah, i see what you mean [09:51] Bug 2153 resolved: create-a-bug and too many required fields [09:51] https://bugzilla.warthogs.hbd.com/bugzilla/show_bug.cgi?id=2153 [10:02] BradB: we should look into integrating Malone with Dilys [10:03] yes [10:04] all Dilys needs is some way to be notified when two events happen: a bug is opened, a bug is closed [10:04] for Bugzilla, it's done through email [10:04] dilys: actually didn't quite give enough info there. i marked that bug as "NOTWARTY" when resolving it, because i couldn't think of a better status that expressed "we've already reported this in malone itself" [10:04] s/:// [10:05] daf: it is in malone too [10:05] you've already implemented it? [10:05] yes [10:05] That's why dilys says "resolved" rather than "fixed" ;) [10:05] I mean email notification [10:05] Dilys doesn't pay much attention to how bugs were closed -- I suppose she could [10:05] daf: yes, that works in malone for all add and edit events for things related to bugs [10:06] daf: it's still using stub's fancy email thing though, which redirects all email to me [10:06] but it's just a matter of changing the zcml to say "send mail to the real addresses that it's addressed to" [10:06] ok, if you can arrange for me to receive all Malone mail for new bugs and closed bugs, I can probably do the rest [10:07] i implemented global notification too, so i could easily add you to that [10:07] it helps if the emails are easy to parse :) [10:07] well, they are, but there's lots of different kinds of notifications [10:07] about 15 in all [10:07] well, I could always make Dilys receive them all and ignore the uninteresting ones [10:08] but if they can be filtered at source, that would be great [10:08] hm, it'd be more consistent to make dilys decide which reports she doesn't care about [10:08] imho [10:09] well, that's what she does for Bugzilla email [10:09] (the subject line makes it easy to figure out which ones interest you) [10:09] cool [10:15] what's dilys's email addy? === cprov announces nicole has been finished on mawson, notes & not_found files are in /srv/launchpad.ubuntu.com/soyuz [10:25] daf: ping [10:27] dilys@muse.19inch.net [10:32] BradB: pong [10:33] lifeless: woo [10:33] lifeless: think you'll have a chance to include full error output in pqm emails today? i can't checkin my changes until that happens. === ddaa [~ddaa@nemesis.xlii.org] has left #launchpad [] [10:36] Merge to rocketfuel@canonical.com/arch-pqm--main--0: implement replay for pqm (patch-13) === BradB [~bradb@modemcable165.196-131-66.mc.videotron.ca] has left #launchpad ["Leaving"] === BradB [~bradb@modemcable165.196-131-66.mc.videotron.ca] has joined #launchpad [10:46] BradB: send a debug email [10:46] tell me how it goes. [10:46] you can be my test case (test infrastructure for pqm is ... lacking) [10:47] ok...he wee go [10:48] lifeless: echo -e debug\nstar-merge... right? === kiko [~kiko@200-206-134-238.async.com.br] has joined #launchpad [11:02] BradB: yes [11:02] unknown commands trigger warnings not errors, you can just put that debug in your script. === Kinnison [~dsilvers@haddenham.pepperfish.net] has joined #launchpad [11:19] why is debugging conflicts in arch so painful? === Kinnison [~dsilvers@haddenham.pepperfish.net] has left #launchpad [] [11:20] kiko: how is it painful ? [11:21] lifeless: echo -e debug\nstar-merge "$(tla tree-version)" "$(cat {arch}/+upstream)" | gpg --clearsign | mail -s "$1" "$2" gave: [11:21] an email with subject "no valid commands given" [11:21] lifeless, the fact that conflicts aren't displayed inline combined with the fact that the .rej is a contextual diff makes it *very* tiresome [11:22] I end up rewriting the whole code usually [11:22] kiko: erm. are you using a visual conflict resolution tool ? [11:22] (And if not, why not ?) [11:22] i guess it has to be quoted, hm [11:22] BradB: yeah, single quote the lot [11:22] lifeless, because I want to be able to work on code over ssh and without X? [11:23] lifeless, it would be essential to have some sort of inline-conflict mode if arch was to be adoptable here. [11:23] lifeless: I've tried using both vimdiff and meld, but I couldn't figure out how to make it work with the way arch organises things. [11:23] (here meaning async where we use svn and cvs) [11:23] spiv: ah. thats not good. [11:24] The gnuarch wiki has a rather unhelpful "well, I use emacs" page on the subject. [11:24] kiko: start-merge -t will do inline markers. [11:24] it will?! [11:24] that's awesome! [11:24] kiko: Yep, with diff3 (-t for --three-way) [11:24] but I really want to understand the issues before I consider making that sort of output the default, as it (currently) changes the merge algorithm slightly. [11:24] if an option cuts it, I'm happy [11:25] consider yourself happy [11:25] :) === kiko_ [~kiko@200-206-134-238.async.com.br] has joined #launchpad === kiko tla undos === daf undoes tla [11:26] lifeless: I'd love to use a happy shiny graphical merge tool... [11:26] lifeless: Perhaps there should be a "dealing with conflicts in arch" BoF at the December conference? [11:27] perhaps :) [11:27] my intuition says that merge resolution tools are inherently orthogonal, and that arch should just setup things for easy use. [11:27] Yeah, I'd expect so too. [11:28] I.E. if we had a script to take foo.c, foo.c.orig, foo.c.rej and make foo.c, that would make kiko happy. [11:28] Except for my inability to know how to invoke vimdiff or meld or anything in a useful manner :) [11:28] if we can teach meld how to grok whats there, that would make you happy. [11:28] Yep! [11:28] if we can then publish those lessons, as policy for tla, we can have tla trigger your-favorite-tool. [11:29] are you using baz yet guys ? [11:29] I'm not.. but I'll fix that now. deb source on the web page, yeah? [11:29] deb binary on the web page. [11:29] lifeless, interesting. when I used -t for inline conflicts I got *less* one conflict than I had originally. [11:30] Hmm, no apt line? [11:30] kiko: as I said, it /changes/ the merge algorithm, in what on the surface is 'good', but actually is extremely dangerous manner. [11:30] deb http://bazaar.canonical.com/packages/debs ./ [11:30] I'll add that to the page later. [11:30] lifeless: That should be on t-- yeah :) [11:32] one second [11:32] there's a rule, star-merge and commit. [11:32] can I star-merge, solve conflicts and *then* commit? [11:32] Yeah. [11:33] how much "solving conflicts" is allowed? [11:33] I mean, you could solve the conflict by world-hacking the tree. [11:33] The rule is really "merge and commit" in my understanding, and solving conflicts is part of "merging". [11:34] spiv: yeah, that's my understanding [11:35] lifeless: [11:35] SIG_ID kaawvOjzSnhm1MKkzIlT91hn4Tc 2004-11-03 1099520964 [11:35] Command failed! [11:35] All lines of log output: [11:35] (that's it) [11:35] Heh. [11:35] $ baz help | head -1 [11:35] tla sub-commands [11:36] are you guys getting spurious errors with favicon.ico or is it just us? [11:36] yes, depends on the browser you're using [11:36] e.g. with firefox, yes, with safari, no. [11:36] why is that? [11:36] i guess it's up to the browser to ask [11:37] I can't seem to understand your last remark. :) [11:37] i guess it's up to the browser to ask...for favicon.ico. [11:38] i'm not sure what rfc that belongs in. [11:38] I mean, it only fails half the time :) [11:38] oh [11:38] i was noticing that firefox was requesting favicon.ico where safari didn't seem to be at all. [11:39] BradB: created my MS, not gonna be in an RFC [11:39] by the way, also. [11:39] lifeless, can a set of users share a revlib? [11:39] no [11:39] not safely and reliably anyway. [11:39] on our local net revlibs are going up to 10G.. [11:40] revlibs are nasty [11:40] is there a way to purge them automatically and nicely? [11:40] thats returned by du ? [11:40] yes [11:40] garh [11:40] that's for all users. [11:40] summed together ? [11:40] yes. [11:40] # of users ? [11:40] 4. [11:40] so 2.5GB per user. [11:41] right. [11:41] are they greey + sparse ? [11:41] indeed, they are. [11:41] greedy. [11:41] are they sparse ? [11:41] and sparse. that was just my typo comment, sorry to be unclear. [11:42] np [11:42] http://wiki.gnuarch.org/moin.cgi/Controlling_20Home_20Directories_20With_20Arch [11:42] look for shrink_library [11:42] I'll take a look, thanks. [11:43] any caveats I should be aware of? [11:44] I haven't used it :) [11:44] oh, don't run it while running tla, things could get confused. [11:44] so put it in a 3am cron job or something. === spiv has manually pruned his revlib in the past. === daf has nuked his revlib in the past :) [11:48] (Not much point having things like the "soyuz" category in there anymore...) [11:49] Although most of the space was in launchpad revisions, so I removed most of the oldest ones. [11:50] lifeless: "Canonical Limited doesn't build these and cannot vouch that they are unadulterated" -- who does provide them and why aren't there official packages? [11:50] they build on commits to pqm. [11:50] except for the rpms (jamesh) and mac debs (justdave) [11:50] so "Some volunteers make binary packages available." is misleading? [11:51] as to when, well, when soyuz lets pqm upload a source package and get a mini repository automatically populated and build for linux ix86, amd64 & ppc, and rpms for the same.. then we will have official ones. [11:51] daf: no, not misleading [11:51] lifeless: dude, by the way, what's with that pqm mail then? [11:51] well, I was misled by it :) [11:51] jamesh & justdave *are* volunteers, and I haven't audited, nor can, their build environments. [11:52] daf: chinstrap isn't a trusted machine either. I really *cannot* claim that those binaries are trustworthy. [11:52] so - I don't. [11:52] BradB: what do you mean ? [11:52] lifeless: hmmm [11:52] [17:35] lifeless: [11:52] [17:35] SIG_ID kaawvOjzSnhm1MKkzIlT91hn4Tc 2004-11-03 1099520964 [11:52] [17:35] Command failed! [11:52] [17:35] All lines of log output: [11:52] [17:35] (that's it) [11:52] lifeless: to what degree is chinstrap not trusted? [11:52] i have no idea what that means [11:53] oh, I thought you meant 'thats fixed' :) === debonzi [~debonzi@200-158-107-151.dsl.telesp.net.br] has joined #launchpad [11:53] daf: its not as secured, nor isolated, as the buildds. [11:54] BradB: can you forward the mail to me please? [11:54] actually, don't bother I know the problem. [11:54] lifeless: sure, email? [11:55] lifeless: neither are most machines [11:55] daf: exactly my point [11:55] lifeless: oh, ok :) [11:55] BradB: try again please === BradB sends off another request [11:57] lifeless: I understand you're being cautious, but I suspect that warning may be scaring people off