[12:21] New bug: #6293 in inkscape "No translation template (.pot) included in source package" [Unknown,Unknown] https://launchpad.net/bugs/6293 [12:21] does ubugtu report *every* new bug in any product here? [12:23] ph,this is a bug that affects rosetta, and it's a new task [12:23] the ubugtu message is very unclear on that point === jml [n=jml@203-113-250-200-static.TAS.netspace.net.au] has joined #launchpad === Fujitsu [n=Fujitsu@ubuntu/member/fujitsu] has joined #launchpad === effie_jayx [n=evalles@190.73.109.221] has joined #launchpad === erdalronahi [n=erdal@p5B007892.dip.t-dialin.net] has joined #launchpad [12:36] can we do left outer joins? [12:40] stub: ^^? [12:40] New bug: #82761 in stardict "stardict package has a pot file but can't translate in Rosetta" [Undecided,Unconfirmed] https://launchpad.net/bugs/82761 === jml [n=jml@203-113-250-200-static.TAS.netspace.net.au] has joined #launchpad [12:40] sabdfl: We do lots of left outer joins [12:40] in sqlobject, easily? [12:41] could you point me to an example of a TableClass.select() that does a left outer join? [12:41] I don't know about SQLObject. Last time the answer was no, but kiko has been hacking away at that [12:41] iirc, that was tricksy [12:42] what i really want is a SQLMultipleJoin with a pre-join and a where clause [12:44] I tend to cheat, either dropping to raw SQL or using something like Foo.select("""id IN (SELECT Foo.id FROM Foo LEFT OUTER JOIN Bar ON ... WHERE ...)""") [12:44] That way I remain somewhat sane, unlike kiko who likes to batter his head against SQLObject :) [12:44] how do you drop to raw sql? [12:45] from canonial.database.sqlbase import cursor; cur = cursor(); cur.execute("SELECT .... ") [12:45] ah, right [12:45] that's fine for updates, deletes, inserts [12:45] tricky for select [12:45] if you want the parsing-to-objects [12:46] Works well for the stuff I tend to end up doing though [12:46] yeah [12:48] Is there a way to tag bugs via email yet? [12:49] stub: is there a way to prejoin like "Foo.Bar"? (i.e. two tables)? [12:50] Fujitsu: BjornT is the guy to ask [12:50] The prejoin feature supports dotted names, I think kiko did that. [12:50] sabdfl, thanks. [12:50] Take a peek at lib/sqlobject/tests/test_prejoins.py for examples. [12:53] cool spiv, thanks [12:53] sabdfl: The prejoin arguments take a list of table names [12:54] i see a nice dotted example, which is cool [12:54] Oh... dotted? Not sure what you are trying to do [12:54] join THROUGH a table [12:54] ahh [12:54] say, prejoin=['BugTask.Bug'] [12:54] from foo to bugtask to bug [12:54] sabdfl: there's even an example of that case already in launchpad somewhere, iirc. [12:54] have all the bugtask and bug objects in memory as objects already [12:55] ill bet, it's *really* useful and would cut down on a lot of looped queries [12:56] wanted that for a long time [12:56] Hmm, grep says I remember incorrectly. Mostly we don't tend to look at bugtasks unless we're dealing directly with bugs, I think is the issue. [12:56] So it hasn't actually come up very often. [12:57] spiv: yes, but you almost certainly want to know, for example, the bug.title [12:57] so prejoining further helps [12:57] otherwise you get your set of bugtasks, then have to issue a set of SELECT's for each bug === jbailey is now known as jbailey-afk [01:07] sabdfl: Your poll option is nuked btw [01:08] thanks ver much [01:09] you get it before the poll opened? === poolie [n=mbp@ppp112-44.static.internode.on.net] has joined #launchpad === belito [n=user@201.230.117.51] has joined #launchpad [01:26] stub: interesting. i've got a table X, which is Left Outer Joined to Y and Z [01:26] and I have a WHERE clause with filters on Y and Z [01:26] and am getting zero matches [01:26] hmm.. hard to describe further === Hobbsee [n=Hobbsee@ubuntu/member/hobbsee] has joined #launchpad [01:29] sabdfl: Your WHERE clause may need to do WHERE Y.foo IS NULL OR (Y.foo IN ('a','b','c')) instead of WHERE Y.foo IN ('a','b','c') [01:29] sabdfl: Or move the relevant bits of the WHERE clause to the ON clauses [01:29] oh [01:30] (ON clause is preferable) [01:30] example in ON clause? [01:30] SELECT * FROM X LEFT OUTER JOIN Y ON X.id = Y.x LEFT OUTER JOIN Z ON Z.y = Y.id [01:30] it seems, as soon as i have a where on X, it immediately excludes ALL of Y [01:30] WHERE X.name LIKE 'foo%'; [01:31] oh, i have that already [01:31] oh [01:31] interesting [01:31] NULL matches nothing, right? [01:32] so "WHERE NOT X.foo=20" will exclude places where X.foo is NULL [01:32] For operations, if one of the arguments is NULL the result is NULL [01:32] Right (apart from the IS NULL operator, of course) [01:32] sabdfl: it will return NULL rather than TRUE or FALSE [01:33] and NOT NULL == NULL, no NOT X.foo = 20 == NULL if X is null [01:33] i'm saying "WHERE x.foo = 1 AND NOT (Y.bar=10) AND NOT (Z.baz=20); [01:34] " [01:34] somehow, the Y clause nails all the Zs, and the Z clause nails all the Y's [01:34] the result is nada [01:34] so if X.foo is null, or Y.bar is null, or Z.baz is null then the result is NULL. NULL is viral. [01:34] hmm [01:35] It is three value boolean arithmetic [01:35] it's the NOT that's killing me [01:35] i think [01:35] true, false and dunno [01:35] what's the result of NOT dunno? [01:36] more dunno? [01:36] dunno [01:36] yup [01:36] New bug: #49991 in launchpad-bazaar "browse supermirror branches with bzr webserve" [High,In progress] https://launchpad.net/bugs/49991 [01:36] will a dunno row be exluded? [01:36] If the WHERE clause equates to NULL, it is the same as equating to False. So yes. [01:37] (SELECT 1 WHERE NULL returns 0 rows) [01:37] oh, i figured it [01:37] for each clause, i have to exclude the case where the row is not there [01:37] or, that table is not intheresultset [01:37] Yup [01:38] One of the standard annoying ways in which relational databases do not quite fit with procedural programming languages [01:39] oh, that's not sexy at all [01:39] Cause you get different results doing the boolean arithmetic in Python, as None is handled differently to NULL [01:40] (SELECT NULL AND TRUE vs (None and True) [01:41] sabdfl: think of NULL as "unknown". So "foo == unknwon" is unknown, "not unknown" is unknown, etc [01:41] So ORMs have an impedance mismatch [01:41] dammit, i so hope this gig works [01:41] we can do pysh [01:41] and pyql [01:42] and just make the whole world simpler [01:44] yay, now the query works (stub's id IN [select trick) [01:44] but i've broken prejoins along the way [01:45] any suggestions? [01:45] spiv? [01:45] File "../../sqlobject/dbconnection.py", line 513, in _queryForSelect [01:45] File "../../sqlobject/dbconnection.py", line 169, in prejoinItems [01:45] File "../../sqlobject/dbconnection.py", line 202, in _detectOuterJoin [01:45] KeyError: 'BugTaskID' [01:47] sabdfl: Have you looked at SQLAlchemy? [01:48] sabdfl: I've been having some interesting success with SA+Z3 [01:49] beta is back up with Steve's integration branch [01:49] WebMaven: we looked at it, but it wasn't right for us [01:49] i think we're basically NIH'ing another ORM [01:49] stub: Yay :) [01:50] I know that, but I thought it would be a closer match than SQLObject. [01:50] And https://beta.launchpad.net/ubuntu even works, too [01:50] Ooh, shiny. [01:50] Much shinier now. [01:50] I couldn't come to an agreement with you guys over the NDA, so SA is what I'm using. [01:51] WebMaven: One of our projects had requirements that no ORM we could find dealt with, and we had no luck retrofitting SQLAlchemy when we tried and SQLObject would have been even worse. [01:51] Yes, I know. [01:51] So, why are you still using SO? ;-) [01:52] legacy... [01:52] WebMaven: Hopefully we won't by March... [01:52] that soon? awesome [01:52] (not to mention outright infuriating bugs in SQLAlchemy) [01:52] radix: what version was that? It seems pretty stable to me now... [01:53] WebMaven: we used both 1.x and 2.x [01:53] WebMaven: I personally found terrible race conditions in the code (although I was never able to actually figure them out enough to fix them) [01:53] Ah... 0.3 is current. [01:53] maybe I meant 0.1 and 0.2 :) [01:53] OK. I wonder if those bugs are still extant. [01:54] Its model for transactions rather didn't impress me as well, but I don't quite remember the specifics of that [01:54] Hmm. OK. [01:54] or "sessions", or whatever [01:54] For Z3 integration, I'm using z3c.zalchemy [01:55] stub: back up & oopsing [01:55] it has both sessions and transactions. [01:56] stub: put details in malone? [01:56] ajmitch: Yes, using the old ui if the new one is too broken [01:57] I'll be very interested in your new infrastructure packages when they are released. [01:57] can we make the OOPS system drop a note in here when it oops's? [01:57] WebMaven: watch this space [01:58] :-) [01:58] Haven't you noticed my hanging around here for months? ;-) [02:00] Aw... I can't log in to the beta... :-( [02:00] no sneak peeks for me... [02:02] sabdfl: BTW, the name of your NIH ORM is already circulating... or at least what I was told the name is. [02:03] uh oh ;-) [02:04] In case you haven't done the tm paperwork yet, you probably want to get that done. [02:04] soon. [02:05] good point! [02:05] thanks [02:05] New bug: #82772 in launchpad "Oops on visiting https://code.beta.launchpad.net/" [Undecided,Unconfirmed] https://launchpad.net/bugs/82772 [02:14] But that will kill my campaign to have it called gormless! === freet15 [n=freet15@61.149.0.133] has joined #launchpad [02:19] stub: hork [02:30] sabdfl: not sure off the top of my head. Maybe you need to use clauseTables/prejoinClauseTables? [02:31] hmm.... good idea [02:31] will look at that tomorrow [02:31] night! === lucabernard [n=lucabern@65.34.150.32] has joined #launchpad [02:39] mpt_: around? === lucabernard [n=lucabern@65.34.150.32] has left #launchpad [] === freet15 [n=freet15@61.149.0.133] has joined #launchpad [03:55] New bug: #82785 in launchpad "/pagetests/branches/xx-bazaar-home.txt disabled on ui-one-zero branch" [High,Confirmed] https://launchpad.net/bugs/82785 === effie_jayx [n=valles@190.37.175.250] has joined #launchpad [04:00] New bug: #82786 in launchpad "pagetests/foaf/xx-team-home.txt disabled on ui-one-zero branch" [High,Confirmed] https://launchpad.net/bugs/82786 === Rinchen [n=Rinchen@ubuntu/member/rinchen] has joined #launchpad === Benjamin [n=gramlich@c-76-17-130-135.hsd1.mn.comcast.net] has joined #launchpad [04:12] New bug: #82787 in launchpad "pagetests/support-tracker/xx-ticket-browse-and-search.txt disabled on ui-one-zero branch" [High,Confirmed] https://launchpad.net/bugs/82787 [04:15] New bug: #82788 in launchpad "pagetests/team-polls/xx-votepoll.txt disabled on ui-one-zero branch" [High,Confirmed] https://launchpad.net/bugs/82788 === Benjamin [n=gramlich@c-76-17-130-135.hsd1.mn.comcast.net] has left #launchpad [] [04:26] New bug: #82790 in launchpad "SSHing to non-existent subhost should give better error" [Undecided,Unconfirmed] https://launchpad.net/bugs/82790 === lfittl [n=lfittl@83.64.250.38] has joined #launchpad === ChanServ [ChanServ@services.] has joined #launchpad === erdalronahi [n=erdal@p5B007892.dip.t-dialin.net] has joined #launchpad === jkakar is now known as jkakar-afk === mpt__ [n=mpt@121-72-135-74.dsl.telstraclear.net] has joined #launchpad === Bhaskar [n=Bhaskar@202.79.37.177] has joined #launchpad === mpt_ [n=mpt@121-72-130-238.dsl.telstraclear.net] has joined #launchpad === jkakar-afk is now known as jkakar [06:40] New bug: #82798 in launchpad ""Latest uploads" for a distrorelease shows uploads across the entire distribution on beta" [Undecided,Unconfirmed] https://launchpad.net/bugs/82798 === stub [n=stub@ppp-58.8.15.216.revip2.asianet.co.th] has joined #launchpad [07:18] stillproblem to download po and mo from rosttea ?? when it will fixed, i have urgent to download po === xenru [n=xenru@81.200.120.190] has left #launchpad [] === geser [n=michael@ubuntu/member/geser] has joined #launchpad === carlos [n=carlos@163.pool85-48-166.static.orange.es] has joined #launchpad [08:59] morning === sabdfl [n=sabdfl@ubuntu/member/pdpc.silver.sabdfl] has joined #launchpad [09:43] carlos: there is still problem to download po and mo from rostta [09:43] carlos: during 1 week [09:44] yes, I'm still working on it, we did a small mistake with previous fix [09:44] carlos: ya [09:44] carlos: upto when you will finish? [09:46] my plan is to have it finished today but I think that will not be deployed until Monday (but will try to have it deployed today) [09:46] it depends on having an admin around at the time the fix is ready [09:47] carlos,ok [09:48] Carlos, hoping the bug will fixed today [09:49] me too [09:49] sorry for the inconvenience it's causing to you [09:49] carlos, it's ok === jinty [n=jinty@64.Red-83-50-216.dynamicIP.rima-tde.net] has joined #launchpad === heno [n=henrik@ubuntu/member/heno] has joined #launchpad === zwnj [n=behnam@213.207.210.231] has joined #launchpad === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad [10:17] carlos, did you cherrypick a notice onto the export page to tell people that export isn't working? === seb128 [n=seb128@ubuntu/member/seb128] has joined #launchpad === xenru [n=xenru@80.247.47.87] has joined #launchpad [10:31] mpt_: no, we didn't [10:31] we announce it on mailing lists [10:34] Ok, maybe that's something to consider next time something major breaks [10:34] Much easier to find right on the relevant page, than on a mailing list :-) [10:35] If that is going to me the preferred notification mechanism, we should implement machinery to do that without cherry picks (eg. a list of regexps and messages, and if the served page matches a regexp a LaunchpadBrowserNotification message is stuck on the page) [10:37] so, what happen with shipit [10:37] someone set up us the bomb [10:37] Yeah, but we'd also want to disable the form [10:39] mpt_: in this case, we don't need to do it [10:39] we store the request [10:39] and will be handled once the fix is merged into production [10:39] jamesh: ping [10:40] SteveA: pong === WaterSevenUb [n=WaterSev@242-10.dial.nortenet.pt] has joined #launchpad [10:45] New bug: #3019 in malone "Context-free bug reporting page should also allow product bugs" [Medium,In progress] https://launchpad.net/bugs/3019 [10:45] mpt_: hi [10:46] mpt_: if you have a moment, please talk with jamesh about the latest "redirect to beta" work to suggest appropriate UI and wording for something === effie_jayx [n=valles@190.37.175.250] has joined #launchpad [10:47] SteveA, ok [10:47] mpt_: we need wording for the message that will be on the front page of launchpad [10:47] carlos, ah, that's even better [10:47] and also for the 500 error page for beta [10:48] 500? or 401? [10:49] BjornT: any idea of when the "malone send 9 mails on crashes sent by apport" bug will be fixed? [10:49] it'd be nice to have it on the 503 error page from apache too [10:50] for when the app server is dead [10:53] seb128: i committed a fix for it yesterday. it should be available on edge.lp.net (which apport uses to file bugs) already, but i'm not sure. if not today, then maybe tomorrow. === phanatic [n=phanatic@ubuntu/member/phanatic] has joined #launchpad [10:54] BjornT: ok, thank you === ctrlsoft is now known as jelmer === mdz [n=mdz@217.205.109.249] has joined #launchpad === xenru [n=xenru@80.247.47.87] has joined #launchpad === jelmer is now known as ctrlsoft === fabbione [n=fabbione@vpn-nat.fabbione.net] has joined #launchpad === mpt [n=mpt@121-72-130-238.dsl.telstraclear.net] has joined #launchpad === matsubara [n=matsubar@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === salgado [n=salgado@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === ddaa [n=david@e190084.upc-e.chello.nl] has joined #launchpad === erdalronahi [n=erdal@p5B006F99.dip.t-dialin.net] has joined #launchpad [12:40] New bug: #45196 in rosetta "Suggestions appear too late" [Critical,Fix committed] https://launchpad.net/bugs/45196 === mrevell [n=matthew@e190084.upc-e.chello.nl] has joined #launchpad === Keybuk [n=scott@quest.netsplit.com] has joined #launchpad === TeTeT [n=spindler@modemcable178.77-70-69.static.videotron.ca] has joined #launchpad === neversfelde [n=chrman@195.71.21.177] has joined #launchpad === lbm [n=lbm@0x555373ab.adsl.cybercity.dk] has joined #launchpad === niemeyer [n=niemeyer@201.11.40.11] has joined #launchpad [02:08] good morning launchpad === fabbione_ [n=fabbione@modemcable178.77-70-69.static.videotron.ca] has joined #launchpad === frafu [n=frafu@85.93.207.40] has joined #launchpad === kNo` [n=kNo`@lab64-1-82-243-180-186.fbx.proxad.net] has joined #launchpad [02:30] "karma police... arrest this man he talks in maths"... hello all ;) === WaterSevenUb [n=WaterSev@242-10.dial.nortenet.pt] has joined #launchpad === fabbione_ is now known as fabbione === administrator__ [n=administ@adsl-065-013-139-245.sip.mcn.bellsouth.net] has joined #launchpad [02:36] jcolonel [02:36] oink === geser [n=michael@ubuntu/member/geser] has joined #launchpad === carlos [n=carlos@163.pool85-48-166.static.orange.es] has joined #launchpad === carlos [n=carlos@163.pool85-48-166.static.orange.es] has joined #launchpad === glatzor [n=sebi@p54967AAF.dip.t-dialin.net] has joined #launchpad === flacoste [n=francis@modemcable207.210-200-24.mc.videotron.ca] has joined #launchpad [03:30] New bug: #36586 in malone "please mention the source package in bug mails" [Medium,Confirmed] https://launchpad.net/bugs/36586 === mruiz [n=mruiz@ubuntu/member/mruiz] has joined #launchpad === mruiz [n=mruiz@ubuntu/member/mruiz] has left #launchpad ["Bye!"] === silwol [n=silwol@193.170.134.179] has joined #launchpad === silwol [n=silwol@193.170.134.179] has joined #launchpad [04:18] Rosetta needs an input box for when you're importing files so that you can say "I'm really sorry, I imported this file only a short while ago but I used the wrong one. Sorry for wasting your time". === beuno [n=martin@68-155-114-200.fibertel.com.ar] has joined #launchpad [04:30] mrevell, ping? [04:30] oojah, lol [04:34] kiko: he's talking with SteveA atm [04:34] hokey === LarstiQ plas some muzak for kiko === kiko listens to silversun pickups === carlos [n=carlos@163.pool85-48-166.static.orange.es] has joined #launchpad === phanatic [n=phanatic@ubuntu/member/phanatic] has joined #launchpad === kiko is now known as kiko-fud === matsubara is now known as matsubara-lunch [05:10] kiko-fud: Back from SteveLand. [05:10] LarstiQ: Thanks! [05:11] mrevell: np, being a watchful little brother is a pastime of mine ;) === carlos [n=carlos@163.pool85-48-166.static.orange.es] has joined #launchpad [05:12] :-D === carlos [n=carlos@163.pool85-48-166.static.orange.es] has joined #launchpad === neversfelde_ [n=chrman@195.71.21.177] has joined #launchpad === siretart [i=siretart@ubuntu/member/siretart] has joined #launchpad [05:22] how does launchpad determine what packages a group maintains? [05:22] or better, how is this list calculated? https://launchpad.net/~motumedia/+packages [05:22] NB: the team has no email address set! [05:23] I'd like to add xine to the list of team maintained packages. how to do that? [05:30] siretart, AFAIK, that information is obtained from the .dsc, so it seems to me that the ubuntumedia team had an email address at some point, no? [05:30] I mean, we link a sourcepackagerelease with a given person/team based on the email address of the Uploader/Maintainer fields === phanatic [n=phanatic@ubuntu/member/phanatic] has joined #launchpad [05:32] ddaa: the blender vcs-imports got a change from 2 hours ago (most recent atm), so I'm fairly sure it's now working correctly. Thanks! [05:34] kiko-fud: okay, chalk one for me on the next monthly report, we can now effectively do vcs-imports syncs several time a day === kiko-fud is now known as kiko === Gwaihir [n=Gwaihir@mail.foredil.it] has joined #launchpad [05:41] salgado: yes, I removed the email address at some point in the past [05:41] siretart, what was the email address? [05:41] motumedia@tauware.de [05:42] salgado: I disabled the team adress, because we ended with almost all bugtraffic sent to me twice: one time via launchpad and the other time via the motumedia list [05:42] this was quite annoying [05:43] I can imagine [05:43] I'm asking what the email address was because launchpad may have created a new person entry in order to associate with the packages uploaded after you removed the team's email address [05:44] siretart, right [05:46] so the email in the .dsc file is currently the only way to 'link' a package to a team, right? - shall I file a bug about this? === neversfelde_ [n=chrman@195.71.21.177] has joined #launchpad === matsubara-lunch is now known as matsubara === medders [n=matt@81.168.72.134] has joined #launchpad === phanatic [n=phanatic@ubuntu/member/phanatic] has joined #launchpad === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad === Spads_ [n=spacehob@host-87-74-37-172.bulldogdsl.com] has joined #launchpad === silwol [n=silwol@193.170.134.179] has joined #launchpad === silwol [n=silwol@193.170.134.179] has joined #launchpad === Ppjet6 [n=ppjet6@81.56.130.254] has joined #launchpad === Spads_ [n=spacehob@host-87-74-37-172.bulldogdsl.com] has joined #launchpad === jwendell [n=wendell@ubuntu/member/wendell] has joined #launchpad === flint-dude [n=flint-du@cpe-066-056-211-072.ec.res.rr.com] has joined #launchpad === beuno_ [n=martin@68-155-114-200.fibertel.com.ar] has joined #launchpad === jwendell [n=wendell@ubuntu/member/wendell] has left #launchpad ["Bye"] === WebMaven [n=webmaven@ip72-193-220-34.lv.lv.cox.net] has joined #launchpad === flint-dude_ [n=bubba@cpe-066-056-211-072.ec.res.rr.com] has joined #launchpad [07:00] New bug: #82889 in launchpad-support-tracker "Search from Answers home page doesn't work on 1.0" [High,Confirmed] https://launchpad.net/bugs/82889 === neversfelde [n=chrman@195.71.21.177] has joined #launchpad === flint-dude_ [n=bubba@cpe-066-056-211-072.ec.res.rr.com] has joined #launchpad === WebMaven [n=webmaven@ip72-193-220-34.lv.lv.cox.net] has joined #launchpad === WebMaven [n=webmaven@ip72-193-220-34.lv.lv.cox.net] has joined #launchpad === doko_ [n=doko@dslb-088-074-011-063.pools.arcor-ip.net] has joined #launchpad === Spads [n=spacehob@host-87-74-37-172.bulldogdsl.com] has joined #launchpad === flacoste is now known as flacoste_lunch [07:15] just one day late for the meeting === mhb [n=mhb@ubuntu/member/mhb] has joined #launchpad [07:21] hi all, hi carlos [07:21] mhb: hi [07:21] carlos: how's rosetta lately? [07:22] carlos: when we will be allowed to translated Feisty? [07:22] mhb: quite well, I think. (well, except for the broken export feature... ) [07:22] mhb: we are testing the opening right now [07:22] carlos: I've noticed your mail === ScottK [n=ScottK@static-72-81-252-22.bltmmd.fios.verizon.net] has left #launchpad ["Konversation] [07:22] carlos: so I thought things are moving forward [07:22] we are having some performance problems, but I hope it will be ready next week [07:25] New bug: #82897 in malone "Bug attachments should display file-size aswell as filename" [Undecided,Unconfirmed] https://launchpad.net/bugs/82897 === heno [n=henrik@ubuntu/member/heno] has left #launchpad ["Leaving"] [07:28] carlos: I hope too [07:28] carlos: good luck with it [07:28] carlos: I'll ping you later if there are any problems [07:29] ok === doko_ is now known as doko === mhb [n=mhb@ubuntu/member/mhb] has left #launchpad [] === Rinchen [n=Rinchen@ubuntu/member/rinchen] has joined #launchpad [07:59] Rinchen! [07:59] Kiko! [07:59] Need about 10 mins sir. [07:59] good [07:59] 10 minutes is good === Rinchen is dealing with contract issues. [08:09] kiko, ready. The 4311 line would be great. [08:10] Rinchen, can you /msg it to me again? [08:10] Guys, we have a user in the support system who is getting somewhat irate with the emails === UMMASOFT [n=UMMASOFT@201.122.5.236] has joined #launchpad [08:10] https://answers.launchpad.net/ubuntu/+ticket/3458 [08:11] is it possible to unsubscribe him/her? [08:11] He's come up on other tickets as well [08:11] I wonder if someone is sub'ing him to these [08:11] Wow === kiko cringes at the also notified list on that ticket [08:12] I'm from mexico, want to add two new languages to Launchpad. Chontal and Zotzil. How can I do this? Who may I contact? [08:12] yes, he has replied to other tickets also [08:12] popey, well. it depends what he is subscribed to! [08:12] and reported a bug [08:12] can someone check his subs and un sub him from everything? [08:13] UMMASOFT, you should talk to carlos or danilos, but the easiest thing to do is to file a new ticket -- launchpad.net/rosetta/+addticket [08:13] I kinda get the hint that he doesnt want the mail [08:13] I tried reasoning with him but he just repeats the same thing [08:13] popey, right. but /what/ mail does he not want? [08:13] is he a support contact, or is he on some mailing lists we're not aware of? [08:13] he replied to someone elses ticket, asking for help [08:13] he gets all the replies [08:13] no, he is a user [08:14] no, neither of those [08:14] just getting replies to his own (and other peoples) support tickets [08:15] https://answers.launchpad.net/~lowen123 [08:15] those are the only two support tickets that are generating mail to them [08:15] plus the bug linked from that recent ticket :S [08:16] popey, flacoste_lunch: can't we unsub him from 3322 and 3458? [08:17] would it work to just reject 3458? [08:17] or would that just irritate them? === flacoste_lunch is now known as flacoste [08:18] I propose a new rule: No implementing anything in Launchpad that sends mail without it containing a footer explaining how to unsubscribe. [08:18] mpt: good idea, that needs a spec! ;-) [08:18] +1 [08:19] popey: i'm investigating the issue now [08:19] thank you [08:21] flacoste, I don't think so, it's something that applies to individual features (with their own specs) that send mail [08:21] more of a meta-requirement [08:22] mpt: i was just pulling your leg === Ppjet6 [n=ppjet6@lns-bzn-51f-81-56-130-254.adsl.proxad.net] has joined #launchpad [08:22] mmhmm === popey pulls flacostes leg [08:22] *ding* [08:23] People rarely read things unfortunately though. [08:23] true but at least it gives them the opportunity [08:23] popey: Lowen123 seems to have understood your message he's not subscribed to any tickets anymore [08:23] even the one he opened [08:23] mind you, it might rack up the spamassassin/mailscanner score with "click here to unsubscribe" [08:23] good [08:23] thanks for checking [08:24] he will get a mail if I reject it? [08:24] btw, when you reply to a ticket, you are only subscribed if you check the 'E-mail me future discussion about that request' checkbox [08:24] popey: no, he won't since he unsubscribed [08:24] ok [08:24] you sure about that? [08:25] i thought people saw all responses [08:25] popey: totally positive, i have a test for that in the testsuite :-) [08:25] I know I do because I am subscribed to them all [08:25] :) === popey believes you [08:25] popey, coincidentally, I was just discussing that spam problem in bugzilla.mozilla.org [08:25] also you can find which tickets someone is subscribed to by using the 'Susbcribed' report on their 'Support' page [08:26] we are missing a 'Support Contact of' report, i have a bug open on that [08:26] popey, https://bugzilla.mozilla.org/show_bug.cgi?id=29041#c27 [08:26] Mozilla bug 29041 in MailNews: Composition "Support mailing list management (unsubscription etc.) headers - RFC 2369" [Enhancement,New] - Assigned to nobody@mozilla.org [08:29] flacoste: that user is still subscribed to the bug [08:29] https://launchpad.net/ubuntu/+bug/82910 [08:29] Malone bug 82910 in Ubuntu "STOP SENDING E_MAILS TO ME" [Undecided,Unconfirmed] [08:30] popey: a! he opened a bug also! [08:30] yeah :S [08:30] I dont see any way to reject that [08:30] and I dont want to reply because he will get another mail [08:30] kiko: any way to unsubscribe somebody from a bug? [08:31] we subscribe someone else, but do we have unsubsribe someone else? [08:33] popey: i'll take care of this [08:33] thanks === jelmer [n=jelmer@e190084.upc-e.chello.nl] has joined #launchpad [08:34] flacoste, not that I know of, mmmm [08:34] ok, i'll ask stub to do it then [08:34] matsubara, good job === neversfelde_ [n=chrman@195.71.21.177] has joined #launchpad === jbailey-afk is now known as jbailey === bigon [i=bigon@imladris.bigon.be] has joined #launchpad === marcus_notebook [n=mholthau@pub082136116166.dh-hfc.datazug.ch] has joined #launchpad [08:50] Hmm, I can't help thinking that translating en -> en_GB should get less reward than "proper" translations :) === mdz [n=mdz@87-194-36-33.bethere.co.uk] has joined #launchpad === ctrlsoft is now known as jelmer [09:16] popey: lowen123 was unsubscribed from the bug and I rejected it === MagicFab [n=magicfab@ubuntu/member/magicfab] has joined #launchpad === somerville32 [n=somervil@ubuntu/member/somerville32] has joined #launchpad === mpt_ [n=mpt@121-72-130-238.dsl.telstraclear.net] has joined #launchpad === MagicFab [n=magicfab@ubuntu/member/magicfab] has joined #launchpad === mpt_ [n=mpt@121-72-130-38.dsl.telstraclear.net] has joined #launchpad === WaterSevenUb [n=WaterSev@242-183.dial.nortenet.pt] has joined #launchpad [11:01] New bug: #82938 in launchpad-bazaar "The ~vcs-imports/+registeredbranches page exceeded its hardlimit and is now broken." [High,Confirmed] https://launchpad.net/bugs/82938 === phanatic [n=phanatic@ubuntu/member/phanatic] has joined #launchpad [11:31] New bug: #82944 in rosetta "Missing tag in launchpad.conf for production[2,3,4] causes oops." [Undecided,Confirmed] https://launchpad.net/bugs/82944 [11:33] so kiko do you know what's this about: https://devpad.canonical.com/~matsubara/oops.cgi/2007-02-01/D222? [11:33] I know everything [11:33] ah, how fascinating [11:37] haha [11:38] kiko: well I just reproduced on sample data [11:38] kiko: by using the web developer extension I cleared out all radio buttons and submitted the form [11:38] kiko: and it crashed just like that [11:40] kiko: could be a broken js or something like that? given that the user is using SeaMonkey? [11:40] matsubara, it happens in browser bugs sometimes [11:45] so we need to cope with it -- it's a normal situation [11:49] it happened on firefox 1.5.0.9 on dapper as welll [11:50] I /think/ it can also happen when a translation page changes under your feet, matsubara [11:51] like a mid-air collison kiko ? [11:51] matsubara, exactly. [11:51] hmm kiko that'd explain [11:54] I have a patch to fix that [11:54] if you like [11:56] attach to the bug and hand it over to carlos, perhaps? [11:57] yeah why not [11:57] what's the bug? [11:57] I can't decided the summary [11:57] s/decided/decide/ [11:57] have a suggestion? [11:58] radiobutton missing from translation form causes oops [11:58] perfect! [11:58] kiko: https://beta.launchpad.net/rosetta/+bug/82950 [11:58] Malone bug 82950 in rosetta "Radiobutton missing from translation form causes oops" [Undecided,Unconfirmed] [11:59] matsubara, would be nice to include an attachment from a URL [12:01] attachment? [12:04] well I had the patch in a URL [12:04] and didn't want to save it and then push it to launchpad [12:04] I think it's a reported bug [12:04] so I just linked to it from a comment [12:04] I'm sure it is. :) [12:04] yes, I asked and realized what you meant. [12:04] I was looking for the bug. :) [12:06] New bug: #82950 in rosetta "Radiobutton missing from translation form causes oops" [Undecided,Confirmed] https://launchpad.net/bugs/82950 === jml_ [n=jml@ppp106-67.lns1.hba1.internode.on.net] has joined #launchpad === jml_ is now known as jml === jml_ [n=jml@203-113-250-200-static.TAS.netspace.net.au] has joined #launchpad