[12:14] nooooooooo === mpt loses a Malone comment === markuman [n=markuman@p509278AC.dip.t-dialin.net] has left #launchpad [] === Virtuall[BZA] [n=virtuall@who.is.virtuall.info] has joined #launchpad [12:37] Weekend, all [12:40] Merge to rocketfuel@canonical.com/launchpad--devel--0: [trivial] make spec URL field a reasonable length and fix the bug causing an exception to be raised when assigning specs to milestones, which could happen when two different spec targets had a target of the same name (patch-2559: brad.bollenbach@canonical.com) === bradb [n=bradb@modemcable033.209-70-69.mc.videotron.ca] has left #launchpad [] === stub [n=stub@203-214-4-72.dyn.iinet.net.au] has joined #launchpad === bradb_ [n=bradb@modemcable033.209-70-69.mc.videotron.ca] has joined #launchpad === Keybuk [n=scott@syndicate.netsplit.com] has joined #launchpad === bradb_ [n=bradb@modemcable033.209-70-69.mc.videotron.ca] has left #launchpad [] === uira [n=uira@200-168-56-116.dsl.telesp.net.br] has joined #launchpad [02:55] Merge to rocketfuel@canonical.com/launchpad--production--1.34: Cherry pick patch-2558 into production 1.35 (patch-19: rocketfuel@canonical.com, mpt@canonical.com) === goro-afk is now known as GoRoDeK === j2k4b [i=j2k4b@97-035-dial.xtn.net] has joined #launchpad === j2k4b [i=j2k4b@97-035-dial.xtn.net] has left #launchpad [] === stub [n=stub@203-214-4-72.dyn.iinet.net.au] has joined #launchpad === bradb [n=bradb@modemcable033.209-70-69.mc.videotron.ca] has joined #launchpad === bradb [n=bradb@modemcable033.209-70-69.mc.videotron.ca] has left #launchpad [] === Keybuk grrs at the Python standard library [06:34] try: [06:34] os.unlink(filename) [06:34] except OSError, e: [06:34] if e.errno != errno.ENOENT: [06:34] raise [06:34] THIS IS SO WRONG [06:34] ENoEnt (or even better, NotFoundError or something) should be an Exception sub-class of OSError [07:08] Yup. Sucks. === subir [n=subir@202.79.37.177] has joined #launchpad [07:26] the nice thing about xml is how easy it is to use [07:27] doc = xml.dom.minidom.getDOMImplementation().createDocument(NAMESPACE, ROOT_NODE, xml.dom.minidom.getDOCImplementation().createDocumentType(ROOT_NODE, None, DOC_TYPE)) [07:27] what could be easier?! :-/ [07:52] Keybuk: elementree or one of the other XML tools that doesn't blindly follow idiotic standards like DOM or SAX [07:53] I found elementtree just as bad for constructing XML [08:01] root = Element('root') [08:01] child = SubElement(root, 'child') [08:01] child.set('attribute','value') [08:01] tree = ElementTree(root) [08:01] tree.write('output.xml') === robitaille [n=robitail@d154-5-117-228.bchsia.telus.net] has joined #launchpad [08:04] except that then doesn't have the right namespaces and stuff [08:04] and once you add those, it becomes exactly as hard as DOM === Keybuk is constructing real XML [08:06] root = Element('{%s}root' % NS) [08:06] child = SubElement(root, '{%s}child' % NS) [08:06] child.set('{%s}attribute' % NS,'value') [08:06] tree = ElementTree(root) [08:06] tree.write('output.xml') [08:07] and thus proving my point [08:07] that's actually easier in DOM because you can just use ns.createElement [08:07] which returns an element already in the right namespace, with whatever prefix you assigned [08:08] (and you forgot there to set the xmlns:$NS attribute :p [08:13] xmlns attribute is added automatically. [08:13] where does it get the value from? [08:14] I do think it would be nicer if he hadn't followed James Clark's crackful idea of sticking the namespace URI in curly brackets though instead of using an extra parameter for the namespace [08:15] It keeps track of the namespace URIs being used by elements you add. It then assigns prefixes and adds in the xmns boilerplate [08:15] see, then you end up having to try and persuade it what prefix you wanted and stuff [08:15] I don't know if it is easy to specify your own prefix in case you want human readable XML [08:16] I've yet to see someone really come up with a nice way of making xml [08:17] I tend to abstract it into three functions [08:17] set_text(node, text), set_attribute(node, attr, value), set_pair(node, key, value) [08:17] with equivalent get functions [08:17] Ahh.... there appears to be a newer way of doing namespaces in elementtree... [08:17] the first does "la la la" inside node, removing any existing text [08:17] the second does foo="la la la" inside node [08:18] and the third does la la la inside node [08:18] and basically go frm there [08:18] and they're always about 5 lines long each, no matter which toolkit I use :-/ [08:20] hmm... false lead. [08:23] http://www.tothink.com/python/ElementBuilder/ perhaps [08:27] from elementtree.ElementTree import ElementTree, SubElement, Element, QName [08:27] NS = 'whatever' [08:27] root = Element(QName(NS, 'root')) [08:27] child = SubElement(root, QName(NS, 'child')) [08:27] child.set(QName(NS, 'attribute'), 'value') [08:27] tree = ElementTree(root) [08:27] tree.write('output.xml') [08:27] Looks like enough people bitched to add support ;) === robitaille [n=robitail@d154-5-117-228.bchsia.telus.net] has joined #launchpad === Seveas [n=seveas@seveas.demon.nl] has joined #launchpad [10:38] is there any way to search templates in rosetta? === fabbione [i=fabbione@gordian.fabbione.net] has joined #launchpad === kapten_jak [n=bismilla@202.95.134.22] has joined #launchpad === terrex [n=terrex@84-122-83-29.onocable.ono.com] has joined #launchpad === kapten_jak [n=bismilla@202.95.134.22] has left #launchpad ["Tiap] === zygis [n=zygis@84.46.151.241] has joined #launchpad [11:51] hi [11:52] I've done a funny discovery when registering myself in launchpad [11:53] found that my wiki page url would be https://wiki.ubuntu.com/ygimantasBeruka2 instead of https://wiki.ubuntu.com/ygimantasBeruka [11:54] did a little research and found a bug (I guess) [11:54] somehow account with my name was registered in launchpad before I did it [11:54] see https://launchpad.net/people/uid0-tuxfamily [11:55] (I had an email uid0@tuxfamily.org uhm... two years ago) [11:57] how launchpad managed to register an account automatically with it? [12:00] wiki page under different URL, or disabled upload of hackergotchi isn't bugs of very high importance [12:01] but still, it's a bug :) === zyga [n=zyga@2-mi2-1.acn.waw.pl] has joined #launchpad === dand_ [n=dand@83.103.205.67] has joined #launchpad === dePOLL [i=ng2@193.201.52.56] has left #launchpad [] [12:18] btw, wherever I go in rosetta, I get "You are not an official translator for this file." [12:19] what do I have to do to convince Rossetta, that I *am* the official translator? [12:19] zygis, you need to be a member of the relevant translator group for that language [12:20] if it is an Ubuntu file at least [12:21] well, I've just created ubuntu-l10n-lt group an hour ago [12:22] when it will show up in this list https://launchpad.net/rosetta/groups/ubuntu-translators/ ? === dand_ is now known as dand [12:24] there's a button ' [12:24] Appoint New Translator', who can use it? It seems that I do not have permission to use it [12:29] zygis, you need to ask the rosetta administrators to arrange the group === zygis [n=zygis@84.46.151.241] has joined #launchpad === zygis [n=zygis@84.46.151.241] has joined #launchpad === salgado [n=salgado@201-1-135-91.dsl.telesp.net.br] has joined #launchpad [04:44] why the exported PO files from rosetta take so long to arrive? === jinty [n=jinty@205.134.224.215] has joined #launchpad [04:49] segfault: I'm not sure, but could be because the queue is full or it's not processed very often === fabbione [i=fabbione@gordian.fabbione.net] has joined #launchpad [04:55] ok === Zoohouse [n=Joel@adsl-149-75-243.mia.bellsouth.net] has joined #launchpad [05:21] I have a question. I don't want my team to be called by my name. Is there a way I can dismantal the team I just made and remake it with another name? [05:31] Zoohouse: it used to be possible to rename teams, but someone removed that feature. [05:31] I'l file a bug on that, and if nobody complains I'll put that feature back [05:32] ok [05:32] Another thing [05:33] salgado: I just made a team for artwork [05:33] Can I upload a icon set so the team can work on? [05:33] a package [05:35] Zoohouse: that's not possible yet === robitaille [n=robitail@d154-5-117-228.bchsia.telus.net] has joined #launchpad [05:37] Ok.. [05:39] How do I add a support ticket... [05:41] Is launchpad still under development? [05:41] Zoohouse: yes, it's still under heavy development [05:42] ah ok.. I thought It was a finished product and was woundering why some of the links were dead :D [05:54] I just created a new product. How do I link it to the team? [06:05] And I cant log in as admin of my product... === dand [n=dand@83.103.205.67] has joined #launchpad === eruin [n=eruin@129.80-202-105.nextgentel.com] has joined #launchpad === WaterSevenUb [n=WaterSev@195-23-220-186.net.novis.pt] has joined #launchpad === salgado [n=salgado@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === toresbe [i=tsb@developer.skolelinux.no] has left #launchpad [] [07:01] any idea why https://launchpad.net/distros/ubuntu/breezy/+sources/gdm/+pots/gdm/nb/+translate doesn't work? [07:02] could launchpad be configured to output more verbose errors? [07:03] eruin, has this error happened now? [07:04] it happens on a few of the nb locale sections I use [07:04] and yes [07:08] eruin, usually, when you have a URL that always raises a system error, you can just paste that URL in the bug report and say it's a system error === hubW is now known as hub [07:08] I'm filing that bug now, and I'll paste the full error message [07:10] okay, I'll do that in the future :) [07:10] thanks [07:11] By the way,who's responsible for the apps availablefor translation in rosetta? [07:11] eruin, it seems to happen for both nb and nn, have you noticed that? [07:11] seeing as breezy has serpentine 0.6.3 (where 0.6.2 intoroduced i18n), wouldn't it make sense to make a template available? [07:11] salgado, I'm not a nn translator, so no ;-) [07:12] eruin, I guess jordi is responsible for that [07:20] I guess I'll ping him after the weekend [07:20] we only have until the 10th to finish translations according to pitti ;o [07:22] eruin, you can mail the rosetta-users mailing list, if you haven't done so yet [07:27] hmm, there seems to already be traffic about it on the list, and jordi replied that he had added it to the queue [07:27] that was on sep 22 === zyga [n=zyga@2-mi2-1.acn.waw.pl] has joined #launchpad === jdub [n=jdub@home.waugh.id.au] has left #launchpad [] === palmTree [n=chatzill@213.210.246.98] has joined #launchpad === GoRoDeK [n=gorodek@p5083DCC0.dip.t-dialin.net] has joined #launchpad === palmTree_ [n=chatzill@213.210.238.164] has joined #launchpad === mpt [n=mpt@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [08:59] hmmmm [08:59] guys.. how do i add UBZ event to my calendar? [08:59] shouldn't be some kind of autolink thingy? [08:59] Merged Calendar for Fabio Massimo Di Nitto <- [08:59] ?` [09:02] Ubuntu Below Zero: 2005-10-09 to 2006-11-18 <- this is going to be a veeeeeeeeeery loooooooong meeting... [09:02] lol [09:03] no hold on!!!! [09:03] it's going to start in 8 days!!! === fabbione goes and packs [09:04] i tried to plan it aswall in launchpad [09:04] not really obvious and not easy to set [09:04] to say the least [09:07] i can't find a way to link UBZ into my calendar [09:07] and of course the sprint page says nobody will be there [09:07] dude.. launchpad is more fun than Q3A [09:08] the dungeon is more complex and there are more levels of difficulties.. [09:08] including 20 monsters^Wdevelopers ready to hunt me down at the end of each of level [10:09] <\sh> hmmm... === ajmitch_ [n=ajmitch@port162-53.ubs.maxnet.co.nz] has joined #launchpad === ajmitch_ is now known as ajmitch === salgado [n=salgado@201-1-135-91.dsl.telesp.net.br] has joined #launchpad === zygis [n=zygis@84.46.151.241] has joined #launchpad