=== JanC [n=janc@lugwv/member/JanC] has joined #launchpad === sedeki [n=sedeki@c-b687e255.179-4-64736c10.cust.bredbandsbolaget.se] has joined #launchpad === sedeki [n=sedeki@c-b687e255.179-4-64736c10.cust.bredbandsbolaget.se] has left #launchpad [] === robitaille [n=robitail@ubuntu/member/robitaille] has joined #launchpad === robitaille [n=robitail@ubuntu/member/robitaille] has joined #launchpad [10:02] anyone here? === carlos [n=carlos@65.Red-83-49-57.dynamicIP.rima-tde.net] has joined #launchpad [10:04] morning [10:10] morning === minghua [n=minghua@69-153-139-23.dsl.hstntx.swbell.net] has joined #launchpad [10:19] hi, it seems if I label a bug as a duplicate to another in malone, when the main bug is closed, the duplicate doesn't get closed automatically [10:20] not a big deal for me, but I think you may want to know === Hobbsee [n=Hobbsee@CPE-144-136-118-222.nsw.bigpond.net.au] has joined #launchpad === Hobbsee [n=Hobbsee@CPE-144-136-118-222.nsw.bigpond.net.au] has left #launchpad ["So] === SteveA_ [n=steve@213.226.190.196] has joined #launchpad [11:02] Merge to devel/launchpad: final tweaks to update-branches [r=kiko] (r2960: David Allouche) === mpt [n=mpt@210-246-52-186.paradise.net.nz] has joined #launchpad === tuhl [n=tuhl@p5498E17E.dip.t-dialin.net] has joined #launchpad === mdke [n=matt@ubuntu/member/mdke] has joined #launchpad === carlos [n=carlos@198.Red-83-50-62.dynamicIP.rima-tde.net] has joined #launchpad === Nafallo_away is now known as Nafallo === kiko [n=kiko@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [12:52] morning === matsubara [n=matsubar@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [12:56] good morning! [01:27] hiya [01:27] kiko: dsl down *again* [01:28] oh, just came back [01:29] heya SteveA_ dude [01:29] I'm working on bug 959 [01:29] do you have any suggestions on how to proceed? I have a working prototype [01:30] bug 959 ? [01:30] Malone bug 959: "Default printing option." Fix req. for: inkscape (upstream), Severity: Normal, Assigned to: Nobody, Status: New http://launchpad.net/bugs/959 [01:30] no way [01:31] odd. [01:31] Ubugtu, bug 929 [01:31] (bug ) -- Look up bug in the bugtracker associated with . [01:31] Malone bug 929: "Long words (such as URLs) overflow columns" Fix req. for: launchpad (upstream), Severity: Normal, Assigned to: Christian Reis, Status: Accepted http://launchpad.net/bugs/929 [01:32] o/~ I'm ... the world's forgotten boy o/~ [01:32] this rhcp cover of search and destroy rocks [01:33] seek and destroy? [01:33] metallica? [01:33] no, iggy pop's search and destroy [01:33] so, breaking URLs [01:33] ddaa tried some stuff a while ago [01:33] it looked good but had usability problems [01:34] we need to consider the use-cases, and make a good trade-off [01:34] the use-cases are [01:34] I was thinking of adding an image and a
[01:34] - displaying in the body of the page [01:34] - displaying in a portlet [01:34] where I wrapped [01:34] - allowing a user to see where the link is going [01:34] - allowing a user to copy/paste a link from the screen, and use it later [01:34] - allowing a user to use browser right-click facilities to copy a URL, and use it later [01:35] hmmm [01:35] okay, well [01:35] ddaa was inserting unicode breaking space chars next to the / characters [01:35] which allowed it to break well [01:35] but failed confusingly when you copy and paste it [01:35] the proposed solution I was going about was wrapping any word displayed with more than N characters [01:36] this also solves some problems with thisreallylongwordsomedorkenteredwithoutconsideringpornletsorthegeneralpopulation'sbrowserwidth. [01:36] yeah [01:36] try it out [01:36] I'm having a bit of trouble finding an algorithm to do the munching [01:36] i think it is a good idea [01:37] is string.split() inneficient when using some form of maxsplit? [01:37] where are you doing this? [01:37] in the display of paragraphs? [01:37] I was thinking of doing it, yeah, in dpot [01:37] so, a regex will match long "words" [01:37] as a final step in text_to_html [01:37] and you can use a function-replacement from it [01:37] to split [01:38] hmmm [01:38] it's dangerous to do it that way because of html tags I think [01:38] I'm not sure you can get the regexp to properly handle a string like "foo bar wereurewiurryuwierhewiuhfeiufheiufewhfwhfewfeufhwe [01:38] really? [01:38] >asdasd< [01:39] so, a segment starts with ^ or > [01:39] ignore whitespace after > [01:39] or perhaps [01:39] and ends with $ or < [01:39] within a segment, you have words separated with whitespace [01:39] okay. [01:40] back later -- switching networks [01:40] sure === einheit_ [n=steve@195.182.78.95] has joined #launchpad [01:45] steveA: were you suggesting using re.split() and then re.sub() for each matching portion? [01:45] hmmm [01:45] let me think more === Nafallo is now known as Nafallo_away [01:52] kiko: probably just re.sub would do, with the right regex [01:52] yeah, possibly -- but I thought sub substituted the whole regexp match, and you couldn't choose to replace just a portion.. [01:53] hmmm I guess I could just replace things I didn't want to change with themselves. === heyko [n=heyko@tor/session/x-c560fdb89f985c67] has joined #launchpad [02:00] steveA: can a regexp match a sequence with less than N chars and differentiate it from a sequence with more than N? [02:00] {m,n} [02:00] http://docs.python.org/lib/re-syntax.html [02:01] but m or n can't be non-null [02:01] can't be null [02:01] aha. [02:01] it can [02:01] thanks === carlos -> lunch === SynrG [n=synrg@debian/developer/synrg] has left #launchpad ["wop"] === cprov [n=cprov@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [02:32] SteveA, success, but using two re.subs [02:32] I don't think the overhead is that bad.. [02:34] SteveA, what length would be most reasonable? [02:34] 70 chars? === GoRoDeK [n=gorodek@p5083F22E.dip.t-dialin.net] has joined #launchpad [03:03] I needed some bigsleep myself === heyko_ [n=heyko@tor/session/x-3a55c8264a8b54ba] has joined #launchpad === thierry_ [n=thierry@modemcable036.61-131-66.mc.videotron.ca] has joined #launchpad === kiko waves === raptoid [n=raptoid@unaffiliated/raptoid] has joined #launchpad === cx_raj [i=cx_raj@59.92.242.167] has joined #launchpad [04:03] is there some problem with launchpad. I'm unable to login === cx_raj [i=cx_raj@59.92.242.167] has joined #launchpad [04:05] hi everyone === mdke [n=matt@ubuntu/member/mdke] has joined #launchpad === cx_raj [i=cx_raj@59.92.242.167] has joined #launchpad === raptoid [n=raptoid@unaffiliated/raptoid] has joined #launchpad [04:08] is there some problem with launchpad. I'm unable to login [04:09] cx_raj: it's working for me. What's going on there? [04:09] works here too [04:10] when i login i'm redirected to home page and the login status show no users logged in [04:11] what URL are you logging in to? [04:12] https://launchpad.net/+login [04:13] if i enter a wrong password the after verification it is indicated that the user name and password doesnt match === tuhl [n=tuhl@p5498E17E.dip.t-dialin.net] has left #launchpad [] [04:14] but when password is correct why dio i get redirected to home page with out getting logged in [04:15] cx_raj: don't know. I can't reproduce here. It's all working fine. I get redirected to home page logged in. [04:24] i tried logging in from SUSE Linux (Used Mozilla, Firefox, Konqueror), Windows (IE, Firefox, Opera) but its the same. I even created another account but still i'm unable to wrong in [04:25] sorry log in not wrong in [04:25] ne email ids for support to launchpad [04:28] even shipit.ubuntu.com says forbidden| you don't have permission to access this page [04:32] ne1 has ne idea on what's happening === WaterSevenUb [n=WaterSev@195-23-220-118.net.novis.pt] has joined #launchpad === rbelem [n=rodrigo@ubuntu/member/rbelem] has joined #launchpad === WaterSevenUb [n=WaterSev@195-23-220-202.net.novis.pt] has joined #launchpad === koke [n=koke@adsl229-164.unizar.es] has joined #launchpad === jsmidt [n=jsmidt@128.187.131.189] has joined #launchpad [07:18] I'm new to rosetta and have made some suggestions. How do I get them uploaded. I know you have to be a member of a team but there is no team for my language. === darkStar [n=raptoid@212.156.170.8] has joined #launchpad [07:25] I'm new to rosetta and have made some suggestions. How do I get them uploaded. I know you have to be a member of a team but there is no team for my language. === mdke_ [n=matt@ubuntu/member/mdke] has joined #launchpad [07:35] jsmidt, hi [07:35] jsmidt, if there is no team for your language [07:36] the translations will be used automatically [07:36] jsmidt, anyway, you should think on creating a team to coordinate with any other future translator for your language [07:37] thanks carlos [07:38] jsmidt, you are welcome [07:38] Do you have do upload a file after you are done or do you just push "save and continue"? [07:45] jsmidt, save and continue is to translate using the web interface [07:45] the upload file feature [07:45] is to do offline translations [07:45] thanks again [07:46] I'll get to translatting [07:46] :) [07:46] jsmidt, feel free to ask anything you need [07:47] Do these tranlations count toward Karma? [07:48] yes === heyko_ is now known as heyko === jinty [n=jinty@205.134.224.215] has joined #launchpad === rbelem [n=rodrigo@ubuntu/member/rbelem] has joined #launchpad === raptoid [n=raptoid@85.97.47.246] has joined #launchpad === Nafallo_away is now known as Nafallo [10:26] night === raphink [n=raphink@raphink.net] has joined #launchpad === raphink [n=raphink@raphink.net] has joined #launchpad === sabdf1 [n=mark@217.205.109.249] has left #launchpad [] === mpt [n=mpt@203-167-187-43.dsl.clear.net.nz] has joined #launchpad === poningru [n=poningru@n128-227-82-47.xlate.ufl.edu] has joined #launchpad