[12:07] kiko: https://chinstrap.ubuntu.com/~dsilvers/paste/file6r9NCc.html === ddaa prepares pqm-submit and ML post [12:12] ddaa, I still haven't picked up the change to sortabled_init(). can you explain why it is necessary, and how it works without? [12:12] that's the one that implements initial sorting [12:12] no [12:12] not in ts_makeSortable() [12:12] in sortables_init() [12:13] the whitespace thing [12:13] ah, I see, it is a simple matching fix? do you understand what the code is trying to do? [12:13] why doesn't it just match className == "sortable"? [12:13] in your opinion why did it do ' '+thisTbl.className+' ' in the first place? [12:13] kiko: because then it would not match class="foo sortable" [12:13] ah [12:13] I see. [12:14] or class="foo sortable bar" [12:14] and yours makes it stop matching on unsortable [12:14] yes? [12:17] ddaa? === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad [12:18] yup [12:18] it's the standard javascript trick to match on a class [12:18] to any moderately experienced JS programmer (or somebody who has read a good DHTML book) it's a completely readable and standard idiom. [12:18] bb in ten mins [12:18] no need to insult this poor brazilian [12:19] ddaa, you are missing a var in front of "lnk =" [12:20] please use curly braces in ts_stableSort() instead of the braceless if/else you are using [12:20] r=kiko with that === LaserJock [n=laserjoc@ubuntu/member/laserjock] has joined #launchpad [12:22] hmm, is it possible to make the portlets (or whatever the things in the side bar are called) have dropdown menus? === SnkBite [n=SnkBite@212.25.63.176] has joined #launchpad [12:24] wow. what for? [12:26] ddaa, why don't you nuke the commented out initTable() while you are at it? [12:27] Merge to devel/launchpad/: [trivial] Fix for bug #5834: "Latest bugs in X" portlet should hide duplicates. Omit dupes in the portlet by using the right API. (r3430: kiko) [12:27] ah, finally. === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad === mgalvin [n=mgalvin@ubuntu/member/mgalvin] has joined #launchpad === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad === tonyyarusso [n=anthony@HSE-Ottawa-ppp326439.sympatico.ca] has left #launchpad [] [01:04] mdke: it's only carlos [01:04] I'll look at kubuntu-docs tomorrow [01:05] nite [01:11] ddaa? [01:11] on the phone [01:11] k === corey_ [n=corey@d66-183-174-128.bchsia.telus.net] has joined #launchpad === bradb [n=bradb@modemcable092.66-130-66.mc.videotron.ca] has left #launchpad [] === jinty [n=jinty@230.Red-83-50-210.dynamicIP.rima-tde.net] has joined #launchpad === Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad [01:45] Merge to devel/launchpad/: r=BjornT Fix for bug 4880: Batch URLs should use 'start' and 'batch' instead of 'batch_start' and 'batch_end'. Changes the URL arguments to batches to be shorter, and to boot, quasi-user-customizable (r3431: kiko) [01:46] rock on bogart! [01:47] kiko: what does dilys actually do? [01:47] reports commits to RT [01:51] ah === erdalronahi [n=erdalron@p508752C8.dip.t-dialin.net] has joined #launchpad [01:52] RF apologies. === erdalronahi [n=erdalron@p508752C8.dip.t-dialin.net] has left #launchpad [] === lifeless_ [n=robertc@dsl-43.1.240.220.rns01-kent-syd.dsl.comindico.com.au] has joined #launchpad [02:00] kiko: RF? btw I replied to your "Assigned bugs report and Fix committed" email [02:01] rocketfuel! [02:01] ah, cool, thanks [02:08] kiko-zzz: sorry, it took a bit more than 10 mins [02:28] ddaa, the Web site for that table sorting JS is full of info saying "no! don' [02:28] crud [02:29] ... info saying "no! don't try to trigger this onload. Do initial sorting on the server." [02:29] That's interesting. [02:29] and it's right, really [02:29] The point is twofold [02:30] my point at least [02:30] otherwise you're causing things to jump around unnecessarily [02:30] noticed that [02:31] Actually, the pages should definitely do the sorting on the server first. But initial sorting is good to set the arrow icon on the column it's initially sorted on. [02:31] and then we need to make sure the sorting is indeed correct on that column [02:33] Mh... my second point was that for the listing of all branches, we want to do the sorting on the client because it might take too long on the server (it's a page that screams for timeouts) [02:33] but I think the sorting is not going to be that expensive actually... [02:33] since everything will already be prefetched... [02:33] (supposedly) [02:35] Okay, then the second point is moot. How do you address the first one? [02:36] Set the "this column is sorted in this direction" CSS class on the relevant yourself [02:36] The lack of arrow on bug listings really bothers me, because I've got no clue why the heck are the bug listed in that way. [02:37] mpt: that's quite fragile, don't you think? [02:37] No, why would it be? [02:37] It's easy for the template and view code to get out of sync [02:38] leading to a lying UI [02:38] I'm not saying hard-code the class= in the template [02:38] even crashing is better than lying [02:38] but tal:attribute it based on the current sort order [02:39] I'm not sure how you would do that... [02:40] esp since the img that displays the arrow is created by the JS, so you cannot even set it from the template... [02:41] given the proper JS hacking that would be something like, on every column, tal:attributes="sortdir ${python:view.initiallySorted("column")}" [02:42] mpt: or am I misunderstanding you? [02:44] Something like Priority [02:44] and that returns ascending, descending, or "" depending on what the initial sort is [02:45] and fix the CSS to use classes instead of inserting the image manually [02:45] Okay... [02:45] (so that, for example, we can change the background color too) [02:46] I'll make a suggestion... [02:46] there's probably a nicer way to arrange the variable [02:46] view/initialsort/priority, perhaps [02:47] I'm going to land that patch that I painfully got kiko to approve, so I can be happy landing the sabdfl's patch. Then I'll fix the sabdfl patch to do proper server-side sorting, and you fix the JS and CSS and templates to your liking. [02:47] That would be great [02:48] At least, that gives stable sorting, which is a HUGE improvement. [02:48] Something else for you... [02:49] the sabdfl patch I'm working on introduces the "branches" facet... [02:49] only incompletely so [02:49] but he's very intent on my landing this code ASAP [02:49] so it woud be nice if you could keep some room next week to apply the branch facet thoroughly [02:50] I intended to split the thing in many small bits to make that stuff easier, but the sabdfl would have none of it. [02:50] The rationale for the branches facet is that we should move to one vhost per major facet [02:51] rosetta.launchpad.net [02:51] malone.launchpad.net [02:51] soyuz.launchpad.net [02:51] bazaar.launchpad.net [02:51] I share your likely reservations for this scheme, but that's how the sabdfl wants it. [02:57] I'm fine with rosetta.launchpad.net and malone.launchpad.net and maybe even bazaar.launchpad.net, but soyuz.launchpad.net is probably unnecessary [02:57] because it's primarily a directory [02:57] mh... I'm not too sure about that one. [03:01] bbiab === mpt [n=mpt@219-89-149-183.jetstart.xtra.co.nz] has joined #launchpad [03:26] Merge to devel/launchpad/: [r=kiko] sorttable supports class="initial sort" and stable sorting (r3432: David Allouche) === mpt_ [n=mpt@219-89-133-11.jetstart.xtra.co.nz] has joined #launchpad === freeflying [n=freeflyi@61.190.65.36] has joined #launchpad === freeflying [n=freeflyi@61.190.65.36] has left #launchpad ["Konversation] === mpt__ [n=mpt@222-154-180-32.jetstream.xtra.co.nz] has joined #launchpad === mpt_ [n=mpt@222-154-180-32.jetstream.xtra.co.nz] has joined #launchpad === stub [n=stub@ppp-58.8.6.146.revip2.asianet.co.th] has joined #launchpad === daq4th [n=darkness@netstation-005.cafe.zSeries.org] has joined #launchpad === mpt__ [n=mpt@222-154-182-253.jetstream.xtra.co.nz] has joined #launchpad === mpt [n=mpt@222-154-182-253.jetstream.xtra.co.nz] has joined #launchpad === mpt_ [n=mpt@219-89-144-11.jetstart.xtra.co.nz] has joined #launchpad === mpt__ [n=mpt@222-154-152-28.jetstream.xtra.co.nz] has joined #launchpad === mpt_ [n=mpt@219-89-140-114.jetstart.xtra.co.nz] has joined #launchpad === tambaqui [n=patricia@200-208-50-207-mns.cpe.vivax.com.br] has joined #launchpad === tambaqui [n=patricia@200-208-50-207-mns.cpe.vivax.com.br] has left #launchpad ["Fui] === raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad === mpt__ [n=mpt@219-89-148-12.jetstart.xtra.co.nz] has joined #launchpad === mdke_ [n=matt@ubuntu/member/mdke] has joined #launchpad === mpt_ [n=mpt@222-154-152-212.jetstream.xtra.co.nz] has joined #launchpad === carsten [n=carsten@wikipedia/carsten] has joined #launchpad [09:33] Hi [09:34] I filed a bug in ubuntu against the wrong product but don't see a way how to move it... [09:34] Furthermore, the bugwatch doesn [09:34] Furthermore, the bugwatch doesn't work here, it seems [09:34] Changes in the other bug don't appear anywhere inside launchpad (that other bugtracker is bugzilla) === mdke [n=matt@ubuntu/member/mdke] has joined #launchpad [09:48] carsten: which bug is this? [09:48] https://launchpad.net/distros/ubuntu/+source/kernel-image-2.4.27-i386/+bug/38476 [09:48] Malone bug 38476 in kernel-image-2.4.27-i386 kernel-build-2.4.27-2 "ACPI not working -- Laptop doesn't boot without acpi=off" [Normal,Needs info] [09:49] BjornT: I fullfilled the "needsinfo" part :-) Well, it is of course not against 2.4.x but against the kernel in Dapper [09:49] I clicked on the wrong link and didn't notice === doko [n=doko@dslb-088-073-091-060.pools.arcor-ip.net] has joined #launchpad [09:53] Problem number 3: I cannot remove the double bugwatch :-) [09:53] carsten: changes in bugzilla will appear in launchpad after a while, it's updated only once a day though. [09:53] No idea if the bug is in launchpad or if I am to stupid [09:54] carsten: if you want to change the package in ubuntu, you can click on " [09:54] "? [09:55] hmm, something strange happened there, tried to msg another nick privately :) [09:55] ... kernel-image-2.4.27-i386 kernel-build-2.4.27-2 (Ubuntu)", there you can change the package. [09:57] BjornT: and the second bugwatch? [09:59] carsten: just let if be there. at the moment you can't delete bug watches, bug 3140 [09:59] Malone bug 3140 in malone "Bug watches can't be removed" [Normal,In progress] http://launchpad.net/bugs/3140 [09:59] ah, ok [09:59] BjornT: you are one of the launchpad devels? [10:00] carsten: yes === mpt [n=mpt@222-154-154-13.jetstream.xtra.co.nz] has joined #launchpad === carsten subscribed to that bug ;-) [10:05] ok, thanks BjornT. New lets hope somebody fixed my kernel-oopses :) [10:05] bye === carsten [n=carsten@wikipedia/carsten] has left #launchpad ["Konversation] === jieying [n=jieying@61.144.54.40] has joined #launchpad [10:50] jordi, right, thanks. I'll wait for carlos to do it then. it's likely to be monday I guess? === raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad === raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad === stub [n=stub@ppp-58.8.6.146.revip2.asianet.co.th] has joined #launchpad [01:00] is the email interface supposed to accept PGP/Mime signed emails? [01:01] I sent a bug to new@bugs.launchpad.net, but I didn't get any reply yet [01:02] mdke: I'm afraid :( === LarstiQ [n=larstiq@cust.7.157.adsl.cistron.nl] has joined #launchpad [01:30] jordi, ok. no worries === mpt [n=mpt@222-154-154-13.jetstream.xtra.co.nz] has joined #launchpad === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad [02:04] Merge to devel/launchpad/: [trivial] New Caledonia speaks French, updated our sample data. (r3433: Carlos Perello Marin) === ompaul [n=ompaul@ubuntu/member/ompaul] has joined #launchpad [02:18] how does one report a bug in launchpad itself, as opposed to in any particular distro, === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad [02:20] ompaul, find the most appropriate part of Launchpad at [02:20] then once you're on the page for that product (Rosetta, Malone, Soyuz, etc, or "Launchpad" for general stuff), click "Bugs" [02:20] mpt, thanks === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad === beyond [n=beyond@200-171-140-32.dsl.telesp.net.br] has joined #launchpad === raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad [03:15] mpt, what ever happened to the million nested sourcepackage JS menus? [03:25] BjornT, are you around? [03:25] Merge to devel/launchpad/: [trivial] Fix for bug #37347: Display team description even if no homepage is provided. Fix the template to DTRT. Also only display the latest tickets portlet if, well, the guy reported tickets (r3434: kiko) [03:25] yay === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad [03:45] kiko, SteveA told me the plan was for him to contact some real DHTML experts he knows to implement those [03:47] okay [03:47] thank god we buy some time [03:47] you got mail [03:53] mpt, can I get an opinion from you on bug 35479? [03:53] Malone bug 35479 in launchpad ""First" and "Last" links in search results page" [Major,Confirmed] http://launchpad.net/bugs/35479 [04:01] kiko: what's up? [04:02] BjornT, sheesh, I forgot what I wanted to ask you but it was important [04:02] let me think about it [04:02] nope, won't remember [04:03] kiko: if it was important you should have sent me an email already ;) [04:03] I was thinking about you and something popped up in my mind [04:03] but well [04:04] BjornT, how good is our bugwatch sync test setup for bugzilla? [04:04] do we have some test XML that I can work on using? [04:04] I'd like us to sync prio/sev [04:04] or at least to try it [04:06] kiko: it's quite basic atm. you can look at doc/external-systems.txt and ftests/externalbugtracker.py === svaksha [n=svaksha@unaffiliated/svaksha] has joined #launchpad [04:08] oh, there's a TestBugzilla? === matsubara [n=matsubar@200-171-140-32.dsl.telesp.net.br] has joined #launchpad [04:08] kiko: yeah. we should use a stub http server instead, but i didn't get around writing one. [04:09] ah, perfect! [04:09] this is already good enough [04:09] I can get priority and severity [04:09] easily [04:09] nice === lakin [n=lakin@S01060013101832ce.cg.shawcable.net] has joined #launchpad [04:13] hi [04:14] In LP what is the purpose of having two functions : -owner and -administrator for a team? [04:14] ho [04:14] the owner is, let's say, a meta-administrator [04:14] he is allowed to define other administrators [04:15] in the event the owner is unavailable and also if they are unable to inform their future unavailability to the team, then what ? [04:15] and can never lose that ability unless he decides to give away the team [04:15] see, https://launchpad.net/people/ubuntu-women [04:15] svaksha, it's a launchpad admin request, essentially, though that's weird. [04:16] svaksha, okay so far. I see you are the owner of that team. [04:16] yes but we want to keep it with same perms [04:16] i am unable to do that [04:16] now [04:16] I don't understand. [04:17] hmm... in any project people come and go. But in the event the owner is unavailable and also if they are unable to inform their future unavailability to the team, then what ? so we want to keep the owner/admin status equal [04:17] i hope i am making sense [04:18] that's not doable -- there always needs to be an owner [04:18] cant both owner and admin be merged [04:18] oh..ok [04:19] the reason for that is that administrators can give away their rights [04:19] and if they did [04:19] nobody would be a team administrator [04:19] and there would be no way to fix that [04:20] :) i tried that and changed ownership to Clytie but she had to undo it to return ownership to me. [04:21] why did she have to undo it? [04:21] In a team where there is more than one admin cant this be merged ? [04:21] no. [04:22] kiko, fixing the batching navigation is on my to-do list after I get the next lot of MaloneSimplifications up for review [04:22] ok , thanks [04:23] mpt, just tell me what needs to be done and I will do it [04:24] kiko, http://developer.yahoo.com/ypatterns/pattern_objectpagination.php === svaksha [n=svaksha@unaffiliated/svaksha] has left #launchpad [] [04:27] ah, nice! [04:27] beautiful actually [04:27] kiko, maybe eventually Launchpad should have a set-piece workflow for changing the owner of a team via a poll triggered by the team's members [04:28] yeah, that would be an alternative === JanC [n=janc@lugwv/member/JanC] has joined #launchpad === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad === svaksha [n=svaksha@unaffiliated/svaksha] has joined #launchpad === kiko waits for PQM once more === svaksha [n=svaksha@unaffiliated/svaksha] has left #launchpad [] === raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad [05:23] Merge to devel/launchpad/: [trivial] Fix for bug 1434: We should consistently ensure bugtracker URLs are slash-terminated (or not). Use urlparse.urljoin and everything goes away. (r3435: kiko) === Znarl [n=karl@bb-82-108-14-161.ukonline.co.uk] has joined #launchpad === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad === stu1 [n=stub@ppp-58.8.5.55.revip2.asianet.co.th] has joined #launchpad [05:50] yay === frodon_ido [n=patrick@ip-213-49-233-214.dsl.scarlet.be] has joined #launchpad === raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad === SteveA [n=steve@70.88.110.166] has joined #launchpad === wasabi__ [n=wasabi@c-67-166-206-241.hsd1.tx.comcast.net] has joined #launchpad [06:16] Hi. So I was wondering about these bounty things. What project are they related to? Ubuntu or you c ould put anything up? [06:16] you could, but I wouldn't advise using that part of launchpad, which is completely busted. [06:17] ahh. === mdke_ [n=matt@ubuntu/member/mdke] has joined #launchpad === G0SUB_ [i=ghoseb@ubuntu-in.org] has joined #launchpad === einheit_ [n=steve@70.88.110.166] has joined #launchpad [07:01] Merge to devel/launchpad/: [trivial] Fix for bug 28615: Errors accessing linux-source-2.6.15 package releases. The DARBPR details portlet's data came from a query that didn't consider Removed packages, which of course are legal. Added test and fixed query (r3436: kiko) === einheit_ is now known as SteveA === einheit_ [n=steve@70.88.110.166] has joined #launchpad [07:16] yay === mdke_ is now known as mdke === raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad [07:28] awesome news!! dapper only has 3 bugs [07:28] https://launchpad.net/distros/ubuntu/dapper/+bugs [07:37] mdke: is that real ? [07:39] G0SUB_, compare with https://launchpad.net/distros/ubuntu/+bugs [07:40] mdke: I guess dapper bugs are only those which have ``Dapper'' as the milstone, right? [07:41] god knows [07:42] heh [07:42] I assume He understands launchpad [07:59] lol === lbm [n=lbm@cpe.atm2-0-1301064.0x50a08372.abnxx3.customer.tele.dk] has joined #launchpad === fireglow [i=fireglow@fnetworks.de] has joined #launchpad [09:59] hi === erdalronahi [n=erdal@p50875F92.dip.t-dialin.net] has joined #launchpad === LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad === marseillai [n=marseill@AMarseille-153-1-73-141.w86-209.abo.wanadoo.fr] has joined #launchpad [10:52] hi [10:53] siretart: i think your are involved in wpa_supplicant package! i have this bug wich seem to be wpa_supplicant issue but i don't know how reassign it ..... [10:54] marseillai which bug? [10:54] this one : https://launchpad.net/distros/ubuntu/+source/network-manager/+bug/36086 [10:54] Malone bug 36086 in network-manager "network manager can't activate eth1 interface" [Normal,Unconfirmed] === erdalronahi is now known as erdalronahi_away [10:56] so i would like to know what i got to do? reassign it if i can? report a new bug? make a bugzilla report (already done)? nothing? [11:00] marseillai: have you tried to reproduce the problem without (k)network-manager? [11:01] siretart: absolutly not because but it really seems it's a wpa bug ..... [11:02] how can i try to make my wireless card work in wpa without networkmanager ? [11:06] marseillai: see /usr/share/doc/wpasupplicant/README.{Debian,Modes} for documentation how to prepare your /etc/network/interfaces [11:06] marseillai: but for testing purposes, I'd suggest to start wpasupplicant on the commandline directly, so that you can capture a debug log (parameter -dd) [11:07] pouarfff [11:07] don't think to be able to do this [11:07] ....... [11:08] may be another time! :s [11:08] thx for your time siretart [11:10] marseillai: you have an ipw2200 you say? could you try another ap? [11:10] of course [11:10] wich one? [11:11] i suspect the nas on your ap behaves in a strange way. try one from another manufacturer [11:12] i'm french i don't understand what you've just told [11:18] siretart: my networkmanager is just from a fresh DF6 install so normally it should work but if you want me to try with another i can. Just tell me how to do if you can..... [11:18] marseillai: sorry, I don't use kde at all. I'm using plain wpasupplicant without any add ons [11:19] oki [11:19] i'll try to find another app wich manage wpasupplicant [11:19] but i think only networkmanager do it [11:20] marseillai: I'd rather suggest starting wpasupplicant from the command line for testing before reassingning it to wpasupplicant [11:21] i'll do but i absolutly don't know how to use it from command linde [11:21] line [11:24] marseillai: I suggest reading the manpages. [11:24] anyway, need to leave now. sorry === lakin [n=lakin@S01060013101832ce.cg.shawcable.net] has joined #launchpad === tambaqui [n=patricia@200-183-99-207-mns.cpe.vivax.com.br] has joined #launchpad === tambaqui [n=patricia@200-183-99-207-mns.cpe.vivax.com.br] has left #launchpad ["Fui] === erdalronahi_away is now known as erdalronahi === erdalronahi is now known as erdalronahi_away