/srv/irclogs.ubuntu.com/2006/04/13/#launchpad.txt

ddaakiko: https://chinstrap.ubuntu.com/~dsilvers/paste/file6r9NCc.html12:07
=== ddaa prepares pqm-submit and ML post
kikoddaa, 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
ddaathat's the one that implements initial sorting12:12
kikono12:12
kikonot in ts_makeSortable()12:12
kikoin sortables_init()12:12
kikothe whitespace thing12:13
kikoah, I see, it is a simple matching fix? do you understand what the code is trying to do?12:13
kikowhy doesn't it just match className == "sortable"?12:13
ddaain your opinion why did it do ' '+thisTbl.className+' ' in the first place?12:13
ddaakiko: because then it would not match class="foo sortable"12:13
kikoah12:13
kikoI see.12:13
ddaaor class="foo sortable bar"12:14
kikoand yours makes it stop matching on unsortable12:14
kikoyes?12:14
kikoddaa?12:17
=== Seveas [n=seveas@ubuntu/member/seveas] has joined #launchpad
ddaayup12:18
ddaait's the standard javascript trick to match on a class12:18
ddaato any moderately experienced JS programmer (or somebody who has read a good DHTML book) it's a completely readable and standard idiom.12:18
ddaabb in ten mins12:18
kikono need to insult this poor brazilian12:18
kikoddaa, you are missing a var in front of "lnk ="12:19
kikoplease use curly braces in ts_stableSort() instead of the braceless if/else you are using12:20
kikor=kiko with that12:20
=== LaserJock [n=laserjoc@ubuntu/member/laserjock] has joined #launchpad
LaserJockhmm, is it possible to make the portlets (or whatever the things in the side bar are called) have dropdown menus?12:22
=== SnkBite [n=SnkBite@212.25.63.176] has joined #launchpad
kikowow. what for?12:24
kikoddaa, why don't you nuke the commented out initTable() while you are at it?12:26
dilysMerge 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
kikoah, finally.12:27
=== 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 []
jordimdke: it's only carlos01:04
jordiI'll look at kubuntu-docs tomorrow01:04
jordinite01:05
kikoddaa?01:11
ddaaon the phone01:11
kikok01:11
=== 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
dilysMerge 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:45
kikorock on bogart!01:46
LaserJockkiko: what does dilys actually do?01:47
kikoreports commits to RT01:47
LaserJockah01:51
=== erdalronahi [n=erdalron@p508752C8.dip.t-dialin.net] has joined #launchpad
kikoRF apologies.01:52
=== 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
LaserJockkiko: RF? btw I replied to your "Assigned bugs report and Fix committed" email02:00
kikorocketfuel!02:01
kikoah, cool, thanks02:01
ddaakiko-zzz: sorry, it took a bit more than 10 mins02:08
mptddaa, the Web site for that table sorting JS is full of info saying "no! don'02:28
mptcrud02:28
mpt... info saying "no! don't try to trigger this onload. Do initial sorting on the server."02:29
ddaaThat's interesting.02:29
mptand it's right, really02:29
ddaaThe point is twofold02:29
ddaamy point at least02:30
mptotherwise you're causing things to jump around unnecessarily02:30
ddaanoticed that02:30
ddaaActually, 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
ddaaand then we need to make sure the sorting is indeed correct on that column02:31
ddaaMh... 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
ddaabut I think the sorting is not going to be that expensive actually...02:33
ddaasince everything will already be prefetched...02:33
ddaa(supposedly)02:33
ddaaOkay, then the second point is moot. How do you address the first one?02:35
mptSet the "this column is sorted in this direction" CSS class on the relevant <th> yourself02:36
ddaaThe 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:36
ddaampt: that's quite fragile, don't you think?02:37
mptNo, why would it be?02:37
ddaaIt's easy for the template and view code to get out of sync02:37
ddaaleading to a lying UI02:38
mptI'm not saying hard-code the class= in the template02:38
ddaaeven crashing is better than lying02:38
mptbut tal:attribute it based on the current sort order02:38
ddaaI'm not sure how you would do that...02:39
ddaaesp since the img that displays the arrow is created by the JS, so you cannot even set it from the template...02:40
ddaagiven the proper JS hacking that would be something like, on every column, tal:attributes="sortdir ${python:view.initiallySorted("column")}"02:41
ddaampt: or am I misunderstanding you?02:42
mptSomething like <th tal:attributes="class view/initialPrioritySort">Priority</th>02:44
mptand that returns ascending, descending, or "" depending on what the initial sort is02:44
mptand fix the CSS to use classes instead of inserting the image manually02:45
ddaaOkay...02:45
mpt(so that, for example, we can change the background color too)02:45
ddaaI'll make a suggestion...02:46
mptthere's probably a nicer way to arrange the variable02:46
mptview/initialsort/priority, perhaps02:46
ddaaI'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
mptThat would be great02:47
ddaaAt least, that gives stable sorting, which is a HUGE improvement.02:48
ddaaSomething else for you...02:48
ddaathe sabdfl patch I'm working on introduces the "branches" facet...02:49
ddaaonly incompletely so02:49
ddaabut he's very intent on my landing this code ASAP02:49
ddaaso it woud be nice if you could keep some room next week to apply the branch facet thoroughly02:49
ddaaI intended to split the thing in many small bits to make that stuff easier, but the sabdfl would have none of it.02:50
ddaaThe rationale for the branches facet is that we should move to one vhost per major facet02:50
ddaarosetta.launchpad.net02:51
ddaamalone.launchpad.net02:51
ddaasoyuz.launchpad.net02:51
ddaabazaar.launchpad.net02:51
ddaaI share your likely reservations for this scheme, but that's how the sabdfl wants it.02:51
mptI'm fine with rosetta.launchpad.net and malone.launchpad.net and maybe even bazaar.launchpad.net, but soyuz.launchpad.net is probably unnecessary02:57
mptbecause it's primarily a directory02:57
ddaamh... I'm not too sure about that one.02:57
mptbbiab03:01
=== mpt [n=mpt@219-89-149-183.jetstart.xtra.co.nz] has joined #launchpad
dilysMerge to devel/launchpad/: [r=kiko]  sorttable supports class="initial sort" and stable sorting (r3432: David Allouche)03:26
=== 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
carstenHi09:33
carstenI filed a bug in ubuntu against the wrong product but don't see a way how to move it...09:34
carstenFurthermore, the bugwatch doesn09:34
carstenFurthermore, the bugwatch doesn't work here, it seems09:34
carstenChanges in the other bug don't appear anywhere inside launchpad (that other bugtracker is bugzilla)09:34
=== mdke [n=matt@ubuntu/member/mdke] has joined #launchpad
BjornTcarsten: which bug is this?09:48
carstenhttps://launchpad.net/distros/ubuntu/+source/kernel-image-2.4.27-i386/+bug/3847609:48
UbugtuMalone 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:48
carstenBjornT: I fullfilled the "needsinfo" part :-) Well, it is of course not against 2.4.x but against the kernel in Dapper09:49
carstenI clicked on the wrong link and didn't notice09:49
=== doko [n=doko@dslb-088-073-091-060.pools.arcor-ip.net] has joined #launchpad
carstenProblem number 3: I cannot remove the double bugwatch :-)09:53
BjornTcarsten: changes in bugzilla will appear in launchpad after a while, it's updated only once a day though.09:53
carstenNo idea if the bug is in launchpad or if I am to stupid09:53
BjornTcarsten: if you want to change the package in ubuntu, you can click on " 09:54
carsten"?09:54
BjornThmm, something strange happened there, tried to msg another nick privately :) 09:55
BjornT... kernel-image-2.4.27-i386 kernel-build-2.4.27-2 (Ubuntu)", there you can change the package.09:55
carstenBjornT: and the second bugwatch?09:57
BjornTcarsten: just let if be there. at the moment you can't delete bug watches, bug 314009:59
UbugtuMalone bug 3140 in malone "Bug watches can't be removed" [Normal,In progress]  http://launchpad.net/bugs/314009:59
carstenah, ok09:59
carstenBjornT: you are one of the launchpad devels?09:59
BjornTcarsten: yes10:00
=== mpt [n=mpt@222-154-154-13.jetstream.xtra.co.nz] has joined #launchpad
=== carsten subscribed to that bug ;-)
carstenok, thanks BjornT. New lets hope somebody fixed my kernel-oopses :)10:05
carstenbye10:05
=== carsten [n=carsten@wikipedia/carsten] has left #launchpad ["Konversation]
=== jieying [n=jieying@61.144.54.40] has joined #launchpad
mdkejordi, right, thanks. I'll wait for carlos to do it then. it's likely to be monday I guess?10:50
=== 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
siretartis the email interface supposed to accept PGP/Mime signed emails?01:00
siretartI sent a bug to new@bugs.launchpad.net, but I didn't get any reply yet01:01
jordimdke: I'm afraid :(01:02
=== LarstiQ [n=larstiq@cust.7.157.adsl.cistron.nl] has joined #launchpad
mdkejordi, ok. no worries01:30
=== 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
dilysMerge to devel/launchpad/: [trivial]  New Caledonia speaks French, updated our sample data. (r3433: Carlos Perello Marin)02:04
=== ompaul [n=ompaul@ubuntu/member/ompaul] has joined #launchpad
ompaulhow does one report a bug in launchpad itself, as opposed to in any particular distro, 02:18
=== LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad
mptompaul, find the most appropriate part of Launchpad at <https://launchpad.net/projects/launchpad>02:20
mptthen once you're on the page for that product (Rosetta, Malone, Soyuz, etc, or "Launchpad" for general stuff), click "Bugs"02:20
ompaulmpt, thanks02:20
=== 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
kikompt, what ever happened to the million nested sourcepackage JS menus?03:15
kikoBjornT, are you around?03:25
dilysMerge 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
kikoyay03:25
=== LeeJunFan [n=junfan@adsl-69-210-207-5.dsl.klmzmi.ameritech.net] has joined #launchpad
mptkiko, SteveA told me the plan was for him to contact some real DHTML experts he knows to implement those03:45
kikookay03:47
kikothank god we buy some time03:47
kikoyou got mail03:47
kikompt, can I get an opinion from you on bug 35479?03:53
UbugtuMalone bug 35479 in launchpad ""First" and "Last" links in search results page" [Major,Confirmed]  http://launchpad.net/bugs/3547903:53
BjornTkiko: what's up?04:01
kikoBjornT, sheesh, I forgot what I wanted to ask you but it was important04:02
kikolet me think about it04:02
kikonope, won't remember04:02
BjornTkiko: if it was important you should have sent me an email already ;)04:03
kikoI was thinking about you and something popped up in my mind04:03
kikobut well04:03
kikoBjornT, how good is our bugwatch sync test setup for bugzilla?04:04
kikodo we have some test XML that I can work on using?04:04
kikoI'd like us to sync prio/sev04:04
kikoor at least to try it04:04
BjornTkiko: it's quite basic atm. you can look at doc/external-systems.txt and ftests/externalbugtracker.py04:06
=== svaksha [n=svaksha@unaffiliated/svaksha] has joined #launchpad
kikooh, there's a TestBugzilla?04:08
=== matsubara [n=matsubar@200-171-140-32.dsl.telesp.net.br] has joined #launchpad
BjornTkiko: yeah. we should use a stub http server instead, but i didn't get around writing one.04:08
kikoah, perfect!04:09
kikothis is already good enough04:09
kikoI can get priority and severity 04:09
kikoeasily04:09
kikonice04:09
=== lakin [n=lakin@S01060013101832ce.cg.shawcable.net] has joined #launchpad
svakshahi04:13
svakshaIn LP what is the purpose of having two functions : -owner and -administrator for a team? 04:14
kikoho04:14
kikothe owner is, let's say, a meta-administrator04:14
kikohe is allowed to define other administrators04:14
svaksha 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
kikoand can never lose that ability unless he decides to give away the team04:15
svakshasee, https://launchpad.net/people/ubuntu-women04:15
kikosvaksha, it's a launchpad admin request, essentially, though that's weird.04:15
kikosvaksha, okay so far. I see you are the owner of that team.04:16
svakshayes but we want to keep it with same perms04:16
svakshai am unable to do that04:16
svakshanow04:16
kikoI don't understand.04:16
svakshahmm... 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 equal04:17
svakshai hope i am making sense04:17
kikothat's not doable -- there always needs to be an owner04:18
svakshacant both owner and admin be merged04:18
svakshaoh..ok04:18
kikothe reason for that is that administrators can give away their rights04:19
kikoand if they did04:19
kikonobody would be a team administrator04:19
kikoand there would be no way to fix that04:19
svaksha:) i tried that and changed ownership to Clytie but she had to undo it to return ownership to me. 04:20
kikowhy did she have to undo it?04:21
svakshaIn a team where there is more than one admin cant this be merged ?04:21
kikono.04:21
mptkiko, fixing the batching navigation is on my to-do list after I get the next lot of MaloneSimplifications up for review04:22
svakshaok , thanks04:22
kikompt, just tell me what needs to be done and I will do it04:23
mptkiko, http://developer.yahoo.com/ypatterns/pattern_objectpagination.php04:24
=== svaksha [n=svaksha@unaffiliated/svaksha] has left #launchpad []
kikoah, nice!04:27
kikobeautiful actually04:27
mptkiko, maybe eventually Launchpad should have a set-piece workflow for changing the owner of a team via a poll triggered by the team's members04:27
kikoyeah, that would be an alternative04:28
=== 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
dilysMerge 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)05:23
=== 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
kiko-afkyay05:50
=== 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
wasabi__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
kikoyou could, but I wouldn't advise using that part of launchpad, which is completely busted.06:16
wasabi__ahh.06:17
=== 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
dilysMerge 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)07:01
=== einheit_ is now known as SteveA
=== einheit_ [n=steve@70.88.110.166] has joined #launchpad
kiko-zzzyay07:16
=== mdke_ is now known as mdke
=== raphink [n=raphink@ubuntu/member/raphink] has joined #launchpad
mdkeawesome news!! dapper only has 3 bugs07:28
mdkehttps://launchpad.net/distros/ubuntu/dapper/+bugs07:28
G0SUB_mdke: is that real ?07:37
mdkeG0SUB_, compare with https://launchpad.net/distros/ubuntu/+bugs07:39
G0SUB_mdke: I guess dapper bugs are only those which have ``Dapper'' as the milstone, right?07:40
mdkegod knows07:41
G0SUB_heh07:42
mdkeI assume He understands launchpad07:42
G0SUB_lol07:59
=== lbm [n=lbm@cpe.atm2-0-1301064.0x50a08372.abnxx3.customer.tele.dk] has joined #launchpad
=== fireglow [i=fireglow@fnetworks.de] has joined #launchpad
fireglowhi09:59
=== 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
marseillaihi10:52
marseillaisiretart: 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:53
siretart  marseillai which bug?10:54
marseillaithis one : https://launchpad.net/distros/ubuntu/+source/network-manager/+bug/3608610:54
UbugtuMalone bug 36086 in network-manager "network manager can't activate eth1 interface" [Normal,Unconfirmed]  10:54
=== erdalronahi is now known as erdalronahi_away
marseillaiso 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?10:56
siretartmarseillai: have you tried to reproduce the problem without (k)network-manager?11:00
marseillaisiretart: absolutly not because but it really seems it's a wpa bug .....11:01
marseillaihow can i try to make my wireless card work in wpa without networkmanager ?11:02
siretartmarseillai: see /usr/share/doc/wpasupplicant/README.{Debian,Modes} for documentation how to prepare your /etc/network/interfaces11:06
siretartmarseillai: 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:06
marseillaipouarfff11:07
marseillaidon't think to be able to do this11:07
marseillai.......11:07
marseillaimay be another time! :s11:08
marseillaithx for your time siretart11:08
siretartmarseillai: you have an ipw2200 you say? could you try another ap?11:10
marseillaiof course11:10
marseillaiwich one?11:10
siretarti suspect the nas on your ap behaves in a strange way. try one from another manufacturer11:11
marseillaii'm french i don't understand what you've just told11:12
marseillaisiretart: 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
siretartmarseillai: sorry, I don't use kde at all. I'm using plain wpasupplicant without any add ons11:18
marseillaioki11:19
marseillaii'll try to find another app wich manage wpasupplicant11:19
marseillaibut i think only networkmanager do it11:19
siretartmarseillai: I'd rather suggest starting wpasupplicant from the command line for testing before reassingning it to wpasupplicant11:20
marseillaii'll do but i absolutly don't know how to use it from command linde11:21
marseillailine11:21
siretartmarseillai: I suggest reading the manpages. 11:24
siretartanyway, need to leave now. sorry11:24
=== 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

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