/srv/irclogs.ubuntu.com/2005/10/06/#launchpad.txt

mptnooooooooo12:14
=== 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
mptWeekend, all12:37
dilysMerge 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)12:40
=== 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
dilysMerge to rocketfuel@canonical.com/launchpad--production--1.34: Cherry pick patch-2558 into production 1.35 (patch-19: rocketfuel@canonical.com, mpt@canonical.com)02:55
=== 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
Keybuktry:06:34
Keybuk    os.unlink(filename)06:34
Keybukexcept OSError, e:06:34
Keybuk    if e.errno != errno.ENOENT:06:34
Keybuk        raise06:34
KeybukTHIS IS SO WRONG06:34
KeybukENoEnt (or even better, NotFoundError or something) should be an Exception sub-class of OSError06:34
stubYup. Sucks.07:08
=== subir [n=subir@202.79.37.177] has joined #launchpad
Keybukthe nice thing about xml is how easy it is to use07:26
Keybukdoc = xml.dom.minidom.getDOMImplementation().createDocument(NAMESPACE, ROOT_NODE, xml.dom.minidom.getDOCImplementation().createDocumentType(ROOT_NODE, None, DOC_TYPE))07:27
Keybukwhat could be easier?! :-/07:27
stubKeybuk: elementree or one of the other XML tools that doesn't blindly follow idiotic standards like DOM or SAX07:52
KeybukI found elementtree just as bad for constructing XML07:53
stubroot = Element('root')08:01
stubchild = SubElement(root, 'child')08:01
stubchild.set('attribute','value')08:01
stubtree = ElementTree(root)08:01
stubtree.write('output.xml')08:01
=== robitaille [n=robitail@d154-5-117-228.bchsia.telus.net] has joined #launchpad
Keybukexcept that then doesn't have the right namespaces and stuff08:04
Keybukand once you add those, it becomes exactly as hard as DOM08:04
=== Keybuk is constructing real XML
stubroot = Element('{%s}root' % NS)08:06
stubchild = SubElement(root, '{%s}child' % NS)08:06
stubchild.set('{%s}attribute' % NS,'value')08:06
stubtree = ElementTree(root)08:06
stubtree.write('output.xml')08:06
Keybukand thus proving my point <g>08:07
Keybukthat's actually easier in DOM because you can just use ns.createElement08:07
Keybukwhich returns an element already in the right namespace, with whatever prefix you assigned08:07
Keybuk(and you forgot there to set the xmlns:$NS attribute :p08:08
stubxmlns attribute is added automatically.08:13
Keybukwhere does it get the value from?08:13
stubI 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 namespace08:14
stubIt keeps track of the namespace URIs being used by elements you add. It then assigns prefixes and adds in the xmns boilerplate08:15
Keybuksee, then you end up having to try and persuade it what prefix you wanted and stuff <g>08:15
stubI don't know if it is easy to specify your own prefix in case you want human readable XML08:15
KeybukI've yet to see someone really come up with a nice way of making xml08:16
KeybukI tend to abstract it into three functions08:17
Keybukset_text(node, text), set_attribute(node, attr, value), set_pair(node, key, value)08:17
Keybukwith equivalent get functions08:17
stubAhh.... there appears to be a newer way of doing namespaces in elementtree...08:17
Keybukthe first does "la la la" inside node, removing any existing text08:17
Keybukthe second does foo="la la la" inside node08:17
Keybukand the third does <foo>la la la</foo> inside node08:18
Keybukand basically go frm there08:18
Keybukand they're always about 5 lines long each, no matter which toolkit I use :-/08:18
stubhmm... false lead.08:20
stubhttp://www.tothink.com/python/ElementBuilder/ perhaps08:23
stubfrom elementtree.ElementTree import ElementTree, SubElement, Element, QName08:27
stubNS = 'whatever'08:27
stubroot = Element(QName(NS, 'root'))08:27
stubchild = SubElement(root, QName(NS, 'child'))08:27
stubchild.set(QName(NS, 'attribute'), 'value')08:27
stubtree = ElementTree(root)08:27
stubtree.write('output.xml')08:27
stubLooks like enough people bitched to add support ;)08:27
=== robitaille [n=robitail@d154-5-117-228.bchsia.telus.net] has joined #launchpad
=== Seveas [n=seveas@seveas.demon.nl] has joined #launchpad
mdkeis there any way to search templates in rosetta?10:38
=== 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
zygishi11:51
zygisI've done a funny discovery when registering myself in launchpad11:52
zygisfound that my wiki page url would be https://wiki.ubuntu.com/ygimantasBeruka2 instead of https://wiki.ubuntu.com/ygimantasBeruka11:53
zygisdid a little research and found a bug (I guess)11:54
zygissomehow account with my name was registered in launchpad before I did it11:54
zygissee https://launchpad.net/people/uid0-tuxfamily11:54
zygis(I had an email uid0@tuxfamily.org uhm... two years ago)11:55
zygishow launchpad managed to register an account automatically with it?11:57
zygiswiki page under different URL, or disabled upload of hackergotchi isn't bugs of very high importance12:00
zygisbut still, it's a bug :)12:01
=== 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 []
zygisbtw, wherever I go in rosetta, I get "You are not an official translator for this file."12:18
zygiswhat do I have to do to convince Rossetta, that I *am* the official translator?12:19
mdkezygis, you need to be a member of the relevant translator group for that language12:19
mdkeif it is an Ubuntu file at least12:20
zygiswell, I've just created ubuntu-l10n-lt group an hour ago12:21
zygiswhen it will show up in this list https://launchpad.net/rosetta/groups/ubuntu-translators/ ?12:22
=== dand_ is now known as dand
zygisthere's a button '12:24
zygisAppoint New Translator', who can use it? It seems that I do not have permission to use it12:24
mdkezygis, you need to ask the rosetta administrators to arrange the group12:29
=== 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
segfaultwhy the exported PO files from rosetta take so long to arrive?04:44
=== jinty [n=jinty@205.134.224.215] has joined #launchpad
salgadosegfault: I'm not sure, but could be because the queue is full or it's not processed very often04:49
=== fabbione [i=fabbione@gordian.fabbione.net] has joined #launchpad
segfaultok04:55
=== Zoohouse [n=Joel@adsl-149-75-243.mia.bellsouth.net] has joined #launchpad
ZoohouseI 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:21
salgadoZoohouse: it used to be possible to rename teams, but someone removed that feature.05:31
salgadoI'l file a bug on that, and if nobody complains I'll put that feature back05:31
Zoohouseok05:32
ZoohouseAnother thing05:32
Zoohousesalgado: I just made a team for artwork05:33
ZoohouseCan I upload a icon set so the team can work on?05:33
Zoohousea package05:33
salgadoZoohouse: that's not possible yet05:35
=== robitaille [n=robitail@d154-5-117-228.bchsia.telus.net] has joined #launchpad
ZoohouseOk..05:37
ZoohouseHow do I add a support ticket... 05:39
ZoohouseIs launchpad still under development?05:41
salgadoZoohouse: yes, it's still under heavy development05:41
Zoohouseah ok.. I thought It was a finished product and was woundering why some of the links were dead :D05:42
ZoohouseI just created a new product. How do I link it to the team?05:54
ZoohouseAnd I cant log in as admin of my product...06:05
=== 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 []
eruinany idea why https://launchpad.net/distros/ubuntu/breezy/+sources/gdm/+pots/gdm/nb/+translate doesn't work?07:01
eruincould launchpad be configured to output more verbose errors?07:02
salgadoeruin, has this error happened now?07:03
eruinit happens on a few of the nb locale sections I use 07:04
eruinand yes07:04
salgadoeruin, 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 error07:08
=== hubW is now known as hub
salgadoI'm filing that bug now, and I'll paste the full error message07:08
eruinokay, I'll do that in the future :)07:10
eruinthanks07:10
eruinBy the way,who's responsible for the apps availablefor translation in rosetta?07:11
salgadoeruin, it seems to happen for both nb and nn, have you noticed that?07:11
eruinseeing 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
eruinsalgado, I'm not a nn translator, so no ;-)07:11
salgadoeruin, I guess jordi is responsible for that07:12
eruinI guess I'll ping him after the weekend07:20
eruinwe only have until the 10th to finish translations according to pitti ;o07:20
salgadoeruin, you can mail the rosetta-users mailing list, if you haven't done so yet07:22
eruinhmm, there seems to already be traffic about it on the list, and jordi replied that he had added it to the queue07:27
eruinthat was on sep 2207:27
=== 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
fabbionehmmmm08:59
fabbioneguys.. how do i add UBZ event to my calendar?08:59
fabbioneshouldn't be some kind of autolink thingy?08:59
fabbione Merged Calendar for Fabio Massimo Di Nitto <-08:59
fabbione?`08:59
fabbioneUbuntu Below Zero: 2005-10-09 to 2006-11-18 <- this is going to be a veeeeeeeeeery loooooooong meeting...09:02
Nafallolol09:02
fabbioneno hold on!!!!09:03
fabbioneit's going to start in 8 days!!!09:03
=== fabbione goes and packs
spaceyi tried to plan it aswall in launchpad09:04
spaceynot really obvious and not easy to set09:04
spaceyto say the least09:04
fabbionei can't find a way to link UBZ into my calendar09:07
fabbioneand of course the sprint page says nobody will be there09:07
fabbionedude.. launchpad is more fun than Q3A09:07
fabbionethe dungeon is more complex and there are more levels of difficulties..09:08
fabbioneincluding 20 monsters^Wdevelopers ready to hunt me down at the end of each of level09:08
\shhmmm...10:09
=== 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

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!