[00:06] wgrant: beuno told me earlier to, so why not? [00:08] wgrant, what's the bug? beuno is currently working on a fix for the questions page and a translation page. See https://dev.launchpad.net/LaunchpadTestPlan/2.2.6 [00:10] matsubara: Bug #392333 and bug #392335 [00:10] Launchpad bug 392333 in malone "List of related questions broken by sprite changes" [Undecided,New] https://launchpad.net/bugs/392333 [00:10] Launchpad bug 392335 in malone "Subscriber list on bug action page has broken icon" [Undecided,New] https://launchpad.net/bugs/392335 [00:12] thanks wgrant === mthaddon is now known as afk === afk is now known as mthaddon === mthaddon is now known as afk [00:23] wgrant, what are bug action pages? [00:26] matsubara: Something that is going to send email. [00:26] Let me find an example.. [00:27] +addbranch is one. [00:27] wgrant, thanks [00:28] Hi guys, I keep having recurring problems with LP with a "Sorry, there was a problem connecting to the Launchpad server." message keep coming up, it's not really a *problem* as such, more of an annoyance, just making you aware in case there is a developing server problem :) [00:30] xteejx: launchpad.net, bazaar.launchpad.net, or edge.launchpad.net? [00:30] wgrant, standard lp.net [00:31] xteejx, do you have the URL for the page? [00:31] sure [00:31] https://launchpad.net/ubuntu/+bugs?assignee_option=none&field.assignee=&field.component=1&field.component=2&field.component-empty-marker=1&field.has_no_package.used=&field.has_patch.used=&field.importance%3Alist=Undecided&field.omit_dupes=on&field.omit_dupes.used=&field.owner=&field.searchtext=&field.status%3Alist=New&orderby=-datecreated&search=Search&start=13200 [00:33] xteejx, wfm. do you get those errors always on that page? [00:35] no just randomly, i am triaging old bugs with assigned packages, and working in reverse order to get rid of the old ones, so maybe its because i keep refreshingn after doing 3 of them. Its not really a problem I'll just try later, just thought I should let you guys know in case there's a developing problem thats all :) [00:41] matsubara: I can reproduce, but only around ~1/20 failed for me. [00:42] (not that same URL, of course) [00:42] It takes a very long time, then dies with the usual 502. [00:43] wgrant, I suppose you don't get an OOPS for that, do you? [00:44] or is it that mis-aligned page? [00:44] matsubara: No, it's Squid or Apache, not the app itself. [00:44] It is the misaligned page, yes. [00:44] ah ok. those are trickier to debug [00:45] They are. [00:45] I'll see if the headers give anything useful... [00:47] Hmmm. [00:51] matsubara: The 502 is from Apache, and has no Via header. There's nothing else useful in the headers. [00:57] wgrant, I'm pretty sure we have a bug reported about it but I can't find [00:58] matsubara: About what? It looks like an appserver is dead. [00:58] wgrant, about something going on between apache and the app server and the user getting the "sorry, can't connect" page [00:59] matsubara: Ah. [00:59] I remember adding a dump from live http headers to the report, but I can't find it :-( [01:03] Isn't it more likely that an appserver is just hung? [01:07] wgrant, could be, but if it was the losas would be here already [01:08] matsubara: Ah... === matsubara is now known as matsubara-dinner [01:43] matsubara-dinner: It looks like appserver C is broken. [01:50] hi. I have a question about python-launchpad-lib: Is it possible to search for bugs created after a specific date? e.g. (fakecode): "buglist = launchpad.distributions['ubuntu'].searchTasks(tags="apport-package", bug_creation_date>"05012009") [01:51] Ampelbein: Not directly, but you can order by creation date and stop when you see one early enough. [01:52] wgrant: nice suggestion, haven't thought of that. thanks! === matsubara-dinner is now known as matsubara [02:08] wgrant, how can you tell? [02:09] matsubara: Well, you might notice a few keyboard-mash 404 OOPSes when you look at the reports tomorrow... [02:12] wgrant, what do you mean by keyboard-mash? [02:13] hmm just got one "Please try again" myself [02:13] matsubara: I caused a few dozen 404s with a Launchpad referrer, which gave me a few OOPSes from all appservers except C. [02:17] hey guys with bzr or svn any way to find the number of modified lines [02:17] svn diff | grep "^+" | grep -v "^+++" | wc -l gives you added lines [02:18] svn diff | grep "^-" | grep -v "^---" | wc -l is removed [02:18] but i need modified lines and unmodified lines [02:18] How do you distinguish modified vs. a removal and an addition? [02:19] the --- is removed and +++ is added [02:20] diffstat may be more useful for you [02:20] diffstat? [02:21] Give diffstat a diff, and it will spit back the diff's stats. [02:22] diffstat? [02:22] what is that [02:22] svn diffstat [02:22] ? [02:23] thewrath: svn diff | diffstat [02:24] here is my command right now [02:25] svn diff -r 6:7 mikesats | grep "^-" | grep "^---" | wc -l [02:25] for removed lines [02:25] so i would do svn diff -r 6:7 mikesats | diffstat | grep "^-" | grep "^---" | wc -l ? [02:26] No. Have a look at diffstat's output. [02:26] svn diff -r 6:7 mikesats | diffstat [02:26] ? [02:27] thewrath: Yes. [02:27] wgrant: diffstat doesn't give modified counts [02:27] thumper: Because there's no such thing as a modified line. [02:27] what do you mean [02:27] wgrant: you can do more analysis to determine it [02:27] but most tools don't [02:27] matsubara: So, can anything be done about lpnet3 before London wakes up? [02:28] thumper: Doing such analysis is probably crazy. [02:28] not necessarily [02:28] I've seen it done [02:28] kdiff3 was good at that [02:28] thumper: have any pre defined scripts for that [02:28] thewrath: no [02:28] wat is kdiff3? [02:28] kde based gui diff tool [02:28] still in respository? [02:28] I don't think it made the leap to kde4 though [02:28] perhaps [02:29] so right now i can only find delete and added then [02:29] ? [02:29] there is no way to identify modified lines [02:30] diffs don't work like that. [02:30] ok [02:30] The application would have to guess which were modified and which were replaced. [02:30] And I don't like applications that guess. [02:30] wgrant: added and removed lines are guesses too [02:30] so added and removed are the two i can figure out with --- and +++ [02:31] lifeless: Mm, true. [02:31] thewrath: so as I said before, why are you doing this. Not 'who wants you to do it'. *why* [02:32] lifeless: is for work [02:32] we have several projects that we use svn [02:32] and we want to see productivity [02:32] dont ask me they asked me if it was possible and i said i would ask around and look into it [02:33] that answer you lifeless lol [02:34] its a more useful answer, yes [02:34] lolk [02:34] we use another tool to calculate this all and we have to download each revisiont od o it [02:34] I suggest bzr-stats, or diffstat, which gives different answers [02:34] if you want 'unmodified lines' you'll have to download every revision [02:34] ok [02:35] wgrant, I think we'll have to wait for London to wake up. it's not a major breakage to justify waking people up. [02:35] matsubara: if the appserver is still in the rotation, 1/8 requests will error, no? [02:35] wgrant, I looked at our graphs and you seem to be right. looks like lpnet3 is down [02:36] matsubara: That's what I suspected. It's a bit messier than previous issues of this kind, as the timeline view spews alert()s when a request fails. [02:36] so run bzr diff | diffstats? [02:36] i really need it for svn but we can see lol [02:36] well start with diffstat then [02:37] lifeless, shouldn't apache just take it off of rotation? [02:37] personally though, if you have an existing tool, use it ;) [02:37] matsubara: Not unless it's really dead. [02:37] its a pain bc we have to download every revision [02:37] matsubara: In this case it looks like it's just hng. [02:37] matsubara: pound will, if its not accepting sockets [02:37] lifeless: so what the command is bzr diffstat? [02:37] thewrath: no, 'diffstat' [02:37] so just run diffstat inside my revision? [02:38] no [02:38] you are using svn, so svn diff -r 4:5 | diffstat [02:39] on my stuff i am using bzr [02:39] so i am goign to relate to both [02:39] so bzr diff -r 4:5 |diffstat [02:39] ? [02:39] bzr diff -r 4..5 | diffstat [02:40] i get command not found [02:40] then you haven't installed it [02:40] diffstat? [02:40] i have to install that portion of bzr [02:40] It's not bzr. [02:40] It's diffstat. Entirely independent. [02:40] oh ok [02:40] It works on any diff. [02:40] ah i see [02:41] It doesn't care where it came frm. [02:41] ah i see [02:42] i can run it as a linux emulator command? [02:42] well in a linux emulator [02:43] hello people [02:43] A Linux emulator? [02:43] You mean cygwin? [02:43] yea [02:43] I speak portuguese :s [02:43] thewrath: Cygwin should have an option to install it. [02:43] ig ij [02:43] *oh ok [02:43] what is cygwin ? [02:44] cocacool: A Linux-like environment for Windows. [02:44] ok [02:46] what things does it give me wgrant and lifeless? [02:46] thewrath: What things does what give you? diffstat? [02:47] diffstat [02:47] thewrath: It gives you nice stats on additions/removals in each file in the diff, and in total. [02:47] Without grep and wc -l. [02:48] k [02:50] bzr diff -r 6..7 mikesats | diffstat? [02:50] Something like that. [02:50] Just get a diff into diffstat. [02:50] ok [02:50] u were saying about getting the modified and unmod lines that you would have to download each version? [02:55] wgrant: i get when running bzr diff -r 5..6 mikesats | diffstat [02:55] ipsubnetcheck.pph | 84 ++++++++++++++++.... [02:55] 1 file change, 84 insertations [02:55] that is all ig et [02:56] That's correct. [02:56] says nothing about removed lines [02:56] thewrath: Try diffstat -m [02:57] no such option as -m [02:57] Sigh. [02:57] i have a book at home with options for that [02:57] thewrath: Does that diff actually have any deletions? [02:58] no removals [02:58] Then why exactly would it say anything about removed lines? [02:59] wat -m or -r [02:59] Neither. [02:59] You complained that diffstat didn't tell you anything about removals. [03:00] ok [03:00] That's not surprising, given that you just said that the diff didn't have any removals. [03:01] k [03:01] 6 & 7 [03:01] Pardon? [03:02] hold on [03:02] wats a good free image upload/hoster [03:02] nvm [03:03] wgrant: that is version 6 n 7: http://img32.imageshack.us/img32/894/20090625220152.png [03:03] thewrath: That looks fine to me. [03:03] ok [03:04] wat does the 186 signify [03:04] 186 changes in that file. [03:04] 186 additions and removals? [03:04] wat doe hte + and - means [03:05] It looks like it. [03:05] wat doe hte + and - means [03:05] bc there is not a hundred of each [03:05] well a hundred plus [03:05] Presumably it scales the numbers. [03:06] scales ... explain [03:07] On a small diff here, it gives the right number. On yours, with a fairly big diff on one file, it looks like it scales it down to avoid making that line too long. [03:07] So each + or - will in fact represent multiple. [03:09] k === matsubara is now known as matsubara-afk [03:09] no way to find the number of lines that were modified [03:10] That's what -m attempts to do. [03:10] But your diffstat seems to be braindead. [03:11] shoudl i try it in linux enviroment instead of an emulated [03:11] so what bzr diff -m 6..7 mikesats | diffstat? [03:11] or bzr diff -r 6..7 mikesats | diffstat -m [03:11] If that is what you want to do. [03:11] I've been getting Please try again messages all evening, is there something going on? [03:12] cabrey: Yes, one of the application servers seems to have hung. Just refresh, and things should be OK. [03:12] on launchpad, that is [03:12] wgrant, alright, thanks :) [03:12] wgrant: do you know if this is escalated to is? [03:12] IS* [03:12] just making sure it wasnt my end :O [03:12] wgrant: which one the first or the second one [03:12] and do you think we should? it's a kind of bad time in london [03:12] bc you say diffstat but i had that for diff [03:13] bzr diff -r 6..7 mikesats | diffstat -m [03:13] or [03:13] bzr diff -m 6..7 mikesats | diffstat [03:13] its the second nvm [03:13] okay now found that [03:13] poolie: It was a little while ago deemed insufficiently important to escalate, given that it's 2am for everybody... [03:13] now i need to find lines that have not been messed with [03:14] (I disagree with that assessment) [03:14] mine [03:14] i meant the first one wgrant [03:14] sorry tired [03:14] and doing work stuff at this hour can be deadly lol [03:14] but the nice thing is that i get to go in a little later i think tomorrow [03:14] about an hour later lol [03:15] thewrath: You should use whichever one both works for you and is what you want. [03:15] well bzr diff -m ... gives me errors but the other way doesnt [03:15] bc -m is for diffstat and not diff [03:15] wgrant: i've only seen one failure this morning in light use [03:15] is there any way to find the numnber of unmodified lines [03:15] i guess there's several app servers, like 8? [03:15] poolie: There are 8. [03:15] and the load balancer is meant to cope if they're hung [03:15] lpnet3 is dead. [03:15] :) [03:16] poolie: pound will knock them off the rotation if they are not accepting connections. [03:16] It doesn't care if they time out. [03:16] you certainly know a lot about it :) [03:16] poolie: Oh yes... ran into the same problem with the application that I manage. [03:16] poolie: You won't see many of the timeouts, because you're lp-beta-testers... [03:17] And edge is working fine. [03:17] * poolie reads the logs [03:17] ah of course [03:17] i probably only saw one when i entered an un-edgey url [03:17] is there a way to find the number of unmodified lines [03:18] thewrath: I'm sure you can work that one out. [03:18] you think something with diffstat? [03:18] No. [03:18] any suggestions [03:19] I've filed a bug on them being left in rotation [03:20] i wonder if we could get a non-LO SA to thump them? [03:20] poolie: see my mail to launchpad [03:20] as of 2 minutes ago [03:20] ! for mod lines is something partaiing to diffstat only [03:20] when i do my long grep it does not work [03:21] poolie: they're all in london too, afaik === vorian is now known as stevie [03:21] oh of course [03:21] single point of failure win :) [03:21] what edit request did i have that got forwarded to ubottu? [03:21] I'm not sure the regular sysadmins are in London [03:21] I know the LOSA's are [03:22] they did say "IS sprint" [03:22] it would be nice if https://blueprints.edge.launchpad.net/launchpad-foundations/+spec/system-status-page was implemented [03:22] poolie: yeah, I'm just not sure is all [03:22] oh nvm [03:31] thewrath: anything matching "^!is$" is interpreted as an edit request [03:32] i ran this bc it was similar to everythign else for added and removed [03:32] bzr diff -r 6..7 mikesats | grep "^!" | grep -v "^!!!"| wc -l [03:32] i get base: !": event not found [03:33] use single quotes [03:33] bash interprets ! specially [03:35] ' or ` [03:35] ' [03:35] ` is generally called a "back-tick" [03:36] i get 0 which is not right [03:39] ` is back tick and ' is single quote? [03:39] yep [03:40] bzr diff 0r 6..7 mikesats | grep -v '^!' | wc -l gives 414 which is not right [03:40] bc when i run diffstat it says 94 [03:41] make sure you use egrep to make it interpret regex [03:41] http://img29.imageshack.us/img29/465/20090625224104.png [03:41] i get 0 using egrep [03:42] any final thoughts before i go to bed [03:42] '^!' will match only when '!' is at the start of the line [03:42] right [03:43] that is modified isnt [03:43] ^ is the start of the line, $ is the end [03:43] [^...] is negation [03:43] it should say if a line is modified at the beginner [03:44] it just means "the start of the line" [03:44] *should say if a line is modified at the beginners [03:44] like a line that was added or removed has a + or - at the beginning of a line [03:44] ! should be at hte beginning of hte line if that line was modified [03:44] Error: I am only a bot, please don't think I'm intelligent :) [03:45] an unmodified line will start with a space [03:45] wat about modified [03:45] with a + or a - [03:45] + is added line [03:45] - is removed [03:46] yes, and a space is unmodified [03:46] ! is modified [03:46] Sorry, I don't know anything about is modified [03:46] according how it looks with u run diffstat -m [03:46] that's in diffstat, but not in diff [03:47] diffstat interprets the output from diff [03:47] ok so in diff [03:47] + is added, - is remoeve dns 1 blank space is modified all at the beginning of the line [03:47] ?? [03:48] + is a line added, - is a removed line, and a blank space is unchanged [03:48] that is wat i meant [03:49] (note: there are also +++ and ---) [03:49] whcih means wat [03:49] of the original is "Hello World" then the unmodified line in diff is " Hello World" [03:50] s/of/if/ [03:51] savvas: wat does the +++ or --- mean [03:51] It prefixes the filenames of the original and new version of the file being compared [03:51] Well, for most common forms of diff output. [03:52] thewrath: these are explained at: http://en.wikipedia.org/wiki/Diff#Unified_format [03:52] > the original file is preceded by "---" and the new file is preceded by "+++" [03:52] wats the difference between bzr diff -r 5..6 mikesats | grep "^+" | grep "^+++" | wc -l and bzr diff -r 5..6 mikesats | grep "^+" | wc -l [03:53] the first will only match files changed, the second will match that plus all the added/changed lines [03:53] actually, no [03:54] wait, yes ;) [03:54] i was told the first one was to get new lines [03:54] 23:33 neels thewrath, e.g. << svn diff | grep "^+" | grep -v "^+++" | wc -l >> gives you the number of added lines :) [03:54] the first will match only the "+++ new-file" parts === abentley1 is now known as abentley [03:54] the first 'grep "^+"' is also not needed [03:55] yes it is [03:55] shouldn't + be escaped? [03:55] if grep uses extended regex (not sure) [03:55] tsimpson: its necessary bc between 5 n 6 there were only 84 lines of changes and all additions not 88 [03:55] thewrath: what are you trying to do actually? :) === abentley1 is now known as abentley [03:56] savvas: get the number of added, removed, mod and unmod lines from revision 5 to revision 6 [03:56] between 5 n 6 there was only 84 lines of code changes and all were additions [03:56] so i am just testing that out [03:56] for added lines you might want something more like grep '^+' |grep -v '^+++' [03:56] thewrath: '^+++' matches a line starting with 3 '+'s, '^+' matches a line starting with 1 '+', if it starts with 3 then it also starts with 1 [03:57] svn diff | grep "^+" | grep -v "^+++" | wc -l gives me new lines (added lines) [03:57] yeah, the + needs escaping [03:57] svn diff | grep "^-" | grep -v "^---" | wc -l >> [03:58] that line shows removed lines [03:58] what do you mean especaping tsimpson [03:58] ah, -v [03:58] it needs '^\+' and '^\+\+\+' [03:58] because '+' is a regex special character [03:58] BTW... how is this grep tutorial about launchpad exactly? === richard is now known as Guest39203 [03:59] sorry [03:59] it means repeated at least once [03:59] it was carried into grep [03:59] tsimpson: nope that now only brings up 2 which is wrong [03:59] 84 is right [03:59] it does NOT need to be escaped [03:59] tsimpson: Please test your suggestions before statiung them as fact. [04:00] jmarsden: I did [04:00] $ echo '---'|egrep '^+++' [04:00] --- [04:00] echo '---'|egrep '^\+\+\+' [04:00] egrep != grep [04:00] (nothing) [04:00] The command used in the examples is grep. [04:00] Bug 392371 [04:00] Launchpad bug 392371 in launchpad "appservers are not removed from rotation properly" [Undecided,New] https://launchpad.net/bugs/392371 [04:00] bzr diff -r 5..6 mikesats | grep "^\+.... does not wokr [04:01] no escaping is necssary [04:01] here is an example: http://pastebin.ca/1475012 [04:01] ok [04:01] thewrath: You are corect, tsimpson is mistaken and confused. [04:01] diffstat and bzr with grep show the same thing [04:01] right [04:01] ty [04:01] then 1 blank space before is an unmodified line? [04:02] before is at he beginning [04:02] yes [04:02] savvas: wat ist eh === for [04:02] number of files? [04:02] === is the header for bzr [04:03] === modified file 'surl/surl.py' [04:03] --- surl/surl.py 2009-04-27 12:10:16 +0000 [04:03] +++ surl/surl.py 2009-06-11 23:38:41 +0000 [04:03] bzr diff -r 4..7 | grep '^ ' | grep -v '^ ' | wc -l is for unmodified lines? [04:03] No, you'll only see lines that were used to supply context for a change that way. [04:04] how do i find unmodified or modified lines then [04:04] or cant i [04:04] no I think it's: bzr diff -r 4..7 | grep '^ ' | wc -l [04:04] savvas: If I edit one line in a 100 line file, bzr diff will not output all 99 unmodified lines... [04:04] It only shows a few around each change. [04:05] context diff means it shows the context of each change :) [04:05] I think to get a count of unmodified lines you will need a different approach [04:05] ah right [04:05] k [04:05] ty [04:05] i am off to bed finally [04:05] atleat i have the first two [04:12] I'm late to the dicussion, but comm -12 ought show all the lines that two files have in common (if one considers source to be sorted in "programmatic order" or some such). Dunno why anyone would want to do that to code. === abentley1 is now known as abentley [04:43] mwhudson/jml: why do some merge proposals have a diffstat count on the summary table and some don't? [04:43] * poolie looks for bug reports [04:44] poolie: Could it be related to the out-of-dateness of the diff? [04:45] my hunch is that it's crazy not-fully-supported stuff [04:45] thumper might know more about it [04:45] yeah, ask thumper about that :) [04:45] poolie: lp:mad! [04:46] poolie: I'm running it on devpad for some projects [04:46] thumper, why isn't in launchpad proper? huh? huh? :P [04:46] jml: because it was vetoed [04:46] jml: because it is *lots* of processing to do it for everything [04:46] that is constantly changing [04:46] and we don't do that [04:46] I run it for projects I care about [04:47] anyone can run it [04:47] filed bug 392385 [04:47] Launchpad bug 392385 in launchpad-code "why do some merge proposals have diffstats in the proposal list page?" [Undecided,New] https://launchpad.net/bugs/392385 [04:47] it uses the LP api [04:47] an interested experiment would be to get super user privileges and run it for all projects [04:47] But the two-diff thing is terribly confusing. [04:47] wgrant, yes, I agree [04:47] wgrant: that is a different bug :) [04:47] thumper: it would be interesting data to see how much cpu/traffic it uses [04:47] yes I agree [04:47] * thumper is a but busy with other features right now [04:48] hmm, there goes my kiwi accent again [04:48] thumper, I was thinking that :) [04:48] heh [04:48] jml: so was I, but I wouldn't say anything :) [04:48] * ajmitch waits for launchpad to actually load [04:48] bug 392385 [04:48] Launchpad bug 392385 in launchpad-code "why do some merge proposals have diffstats in the proposal list page?" [Undecided,New] https://launchpad.net/bugs/392385 [04:49] I'm guessing I hit the 1 dead appserver? [04:49] i'll answer it [04:49] ajmitch: Refresh. An appserver is broken, so 1/8 requests fail after a minute. [04:49] there are a lot of code review UI bugs. A lot of them are near dupes, or all have the same root confusion of concept, at least. [04:50] thumper: to be clear i meant even for some proposals within bzr [04:50] um [04:50] but maybe mad is falling over or something [04:50] wgrant: Yeah, I did that, and it subsequently worked. The redirection to edge didn't help as you mentioned before [04:50] poolie: could be [04:50] poolie: I know it is currently blowing chunks on LP branches due to 2a format [04:50] and I've not fixed it yet [04:50] jml, if you're keen on 377453 and not going to do it i can try [04:50] ajmitch: The redirection is currently done in the appservers, I suspect, so the edge redirects can fail. But once you're on edge it's fine. [04:50] it's probably easy [04:51] poolie, I'm not likely to do it. [04:51] it would be nice if a router could somehow switch you over to a working appserver without your computer really noticing ... [04:52] samb, it's meant to, it's apparently just not working [04:52] * jml pops some items off the stack [04:52] * SamB feels like poking PenguinOfDoom, for some reason [04:54] * Hellow pokes penguins [06:50] hi... is launchpad server down? I'm having slow response , sometimes errors [06:51] from earlier: "Refresh. An appserver is broken, so 1/8 requests fail after a minute." [06:52] oh... [06:52] ok.. thanx === stub1 is now known as stub [07:06] known problems with launchpad? I'm getting 50% incidence of timeouts [07:07] an appserver down apparantly [07:09] ajmitch: and the people who need to fix it are aware? [07:10] from what I saw earlier, it was decided that it wasn't important enough to tell LOSAs about at 2AM [07:11] but I believe at least a bug was filed, not sure what else [07:11] hmm, but now it's 7am :) [07:11] far too early in the morning, I'm sure :) [07:15] slangasek: 50%? Should only be 12.5%. You can also use edge. [07:15] Or ring a LOSA, I guess... [07:16] wgrant: small sample size [07:17] my threshold for reporting problems with LP is 2 failures ;) [07:17] Heh. [07:18] you must have been unlucky then :) [07:22] wgrant: me too 10 % !... rarely i'm able to complete a task :( [07:25] ajmitch: will it be notified here if it is fixed? [07:27] I'd guess so [07:28] :) [07:29] can anyone tell me how to use yahoo messenger over linux [07:30] no, and you probably want to ask in #ubuntu, not here [07:31] ok === cprov-afk changed the topic of #launchpad to: https://launchpad.net/ | Help contact: cprov | Join https://launchpad.net/~launchpad-users | Channel logs: http://irclogs.ubuntu.com | Open Sourcing: https://dev.launchpad.net/OpenSourcing === cprov-afk is now known as cprov [08:00] cprov: any progress on the appserver? :) [08:01] That relies on London being awake. [08:01] Which won't happen for a little while yet, I suspect. [08:01] macvr: let me check for you. [08:01] :) [08:09] macvr: wgrant is right. Is it failing a lot for you ? [08:10] cprov: oh... too bad.. yup, its failing a lot... nearly only 10% requests work... right now it upto 40% [08:14] cprov: Is it still just lpnet3? [08:14] That should surely mean only 12.5% fail entirely, although some pages will die more often because they have AJAX. [08:15] wgrant: as fas as I know, yes, only one production appserver. [08:19] * cprov drinks more coffee for fixing his morning fat fingers. [08:20] cprov: Save some coffee for lpnet3, please. [08:20] It has been asleep for quite a few hours now. [08:25] wgrant: its now ~7:30 in london right? so another 2:30hrs to get this fixed, right? just wanna make sure :) [08:26] macvr: It might depend how jetlagged the LOSAs are, I suppose. [08:27] ;o [08:56] macvr: is it any better ? [08:56] wgrant: since they've been there all week, I don't think they have any excuse for jet lag left :) [09:15] slangasek: Blah. [09:19] wgrant: do you still experiencing problems accessing lp ? [09:22] cprov: Looks good. lpnet3 is out of the load balancer? [09:22] wgrant: it was restarted, I guess. [09:23] it was fixed over an hour ago [09:23] Thanks to whoever fixed it! [09:29] jml you marked bug 385814 incomplete and assigned to me, why? [09:29] Launchpad bug 385814 in launchpad-code "it would be nice to show targeted bugs in code review listing" [Undecided,Incomplete] https://launchpad.net/bugs/385814 [09:29] poolie, because I didn't understand what you wanted. [09:30] ok [09:30] poolie, maybe it's an abuse of incomplete (mpt has hinted so), but dammit it's not New if it's been examined & thought about. [09:30] i think it's a fine use [09:30] maybe the person just needs a hint what to do if it's not "fix the bug" [09:30] oh [09:31] I also wrote a comment that apparently got eaten. [09:31] np [09:31] Hello. I Have big question and long time im having problem with this. 1/2 year. How to start programming in RoR Netbeans on Ubuntu and install required packages from Canonical maintained packeges.? https://answers.launchpad.net/netbeans/+question/75371 [09:31] lp is eating my status changes so it's all fair :) [09:32] also i do sympathize that reviews are one place where you're getting a bunch of bugs that are probably best fixed not individually but by larger redesigns [09:32] um [09:32] my thinking at the moment is it's best to tag the ones to do together unless they're outright duplicates [09:32] then you have a manageable group but still have the option to fix only a subset in the first go [09:33] anyhow i'll let you get on with the release [09:41] is anyone getting this popup on LP ??? http://files.getdropbox.com/u/927315/Screenshot-The%20page%20at%20https%3A--launchpad.net%20says%3A.png [09:43] VK7HSE-Eee: Does that happen when you click a link on the project page soon after getting to the page? [09:44] it happens when I click on the downloads tab in the Me TV page... on first time visit (cache history set to always cleared in firefox) === ripps_ is now known as ripps [09:46] wgrant: here's the link... https://launchpad.net/me-tv/+download [09:46] VK7HSE-Eee: It happens when you navigate away from the project page while the series data is still loading. I noticed that a few hours ago, but thought it might have been due to the dodgy appserver. [09:46] * wgrant files a bug. [09:47] only happens on the first visit!... [09:47] ok after that... [09:47] Because the data is cached after that, probably. [09:47] ok!... will do thanks... [09:47] also happens on edge as well... [09:48] same results first visit only... [09:48] First visit to what? [09:49] ok when I have fist opened that page... [09:49] Which? https://launchpad.net/me-tv, or https://launchpad.net/me-tv/+download? [09:49] when first accessing the latter url... [09:50] VK7HSE-Eee: But only when accessing it by clicking a link on the former? [09:50] I was holding off just in case it was only something local here... [09:51] well Me tv is on the entry page of LP, so I enter via that, then when you click download... [09:52] Right. Bug #392449 [09:52] Launchpad bug 392449 in launchpad-registry "Project timeline graph pops up a dialog when navigating away from the incompletely-loaded page" [Undecided,New] https://launchpad.net/bugs/392449 [09:53] just looking ... [09:55] wgrant: yes that looks like the one! [09:57] wgrant: do you want me to add the pic. to that bug ? [09:57] VK7HSE-Eee: If you want to, but I think it has enough information [09:58] ok... [10:01] Hey [10:01] Team a is member of team b; when I list bugs for Team a I don't see the bugs where Team b is sub-ed [10:02] Is there a way to search for bugs where Team a is recursively subscribed to, or bugs which team a OR team b are subscribed directly to? [10:02] (on the web UI) [10:17] Why does launchpad fail at wrapping? https://code.launchpad.net/~cszikszoy/do/config-MA-ext/+merge/7700 [10:17] Is it some kind of racial joke? [10:17] "We made launchpad white, so we also made it bad at wrapping" [10:17] /rimshot [10:19] lamalex: It only happens in Firefox 3.5. [10:19] Let me find the bug... [10:19] ah [10:19] lamalex: i laughed [10:19] Bug #390451 [10:19] Launchpad bug 390451 in launchpad-code "Merge proposal comments do not word-wrap in FF-3.5" [Medium,Triaged] https://launchpad.net/bugs/390451 [10:19] wgrant: thanks [10:19] poolie: I'm glad someone else appreciates my humour [10:20] mpt_: does not though :( [10:21] cprov: seems fixed now.... thanx :) [10:24] lamalex, hmm? [10:24] Which does not what? [10:25] exactly [10:26] macvr: cool! [10:33] * mpt_ scratches his head [10:34] mpt_: His joke was followed by your dropping off the Internet. [10:34] ah === mpt_ is now known as mpt [10:34] wgrant: Yes; it is bug #326129 [10:35] Launchpad bug 326129 in firefox-3.1 "firefox-3.{5,6} bug, merge review comments don't get wrapped in
 block" [Medium,Invalid] https://launchpad.net/bugs/326129
[10:39]  I'm confused. Is "bzr co lp:distro/releaseseries/sourcepackage" not supposed to work yet?
[10:40]  soren: It depends on the package.
[10:41]  wgrant: Aaaahhh...
[10:41]  Ok, that explains.
[10:41]  soren: Some packages don't have branches yet, and others just don't have a branch set as the default.
[10:42]  wgrant: Where do I set the default branch?
[10:42]  soren: You don't.
[10:42]  Only a few people can.
[10:42]  i see.
[10:42]  It might be ~ubuntu-drivers, but I don't remember exactly.
[10:43]  So.. If it just doesn't have a default branch, it might still have been imported? Or is that completely separate?
[10:44]  In some cases the setting of the default branch failed. There's a bug filed against Launchpad about it, but nobody is sure whose fault it is.
[10:44]  It might have been imported.
[10:44]  how do I see the non-default branches, then?
[10:45]  soren: https://code.launchpad.net///+source/
[10:45]  Aha!
[10:45]  If you look at https://code.launchpad.net/~ubuntu-branches, you'll see that while most of the branches do have an alias, some don't.
[10:46]  Ok, my package has not been imported. Oh, well.
[10:47]  You wouldn't be able to write to the branch, anyway.
[10:47]  That's fine.
[10:57]  fwiw...
[10:58]  as soon as I can extricate myself from this damned format upgrade, I'll be working on package branches; improving the discoverability etc
[10:58]  jml: The number one way to make the more discoverable is to have a DSP code index, rather than just the well-hidden SP one.
[10:59]  wgrant: yes. I *think* that's the highest priority package-branches listing bug.
[10:59]  I also want to make the 'setting official branch' permission a little more permissive. ISTR being persuaded at UDS that anyone with upload privs to the package should be able to set the link.
[11:00]  That would make sense.
[11:00]  Is the ubuntu-branches celebrity going to become magical soon?
[11:01]  wgrant: in what sense?
[11:01]  jml, i'm going to sign off soon,
[11:01]  (every team I'm on is magical by definition. also, fabulous.)
[11:01]  have a good night
[11:01]  poolie, will do.
[11:01]  poolie, 1.16.1 is out already :)
[11:02]  i saw
[11:02]  very nice release text :)
[11:02]  oh, huh, have a good trip too!
[11:02]  jml: Users aren't yet granted access to its branches by having upload rights, are they?
[11:02]  wgrant: it's going to work a little differently to that, I think.
[11:02]  poolie, thanks!
[11:02]  * jml brings up the relevant bug
[11:03]  bug 347768
[11:03]  Launchpad bug 347768 in launchpad-code "Allow anyone with upload rights to write to a package branch" [High,Triaged] https://launchpad.net/bugs/347768
[11:03]  I should update it :\
[11:04]  jml: Hm, so access will be granted to a branch by virtue of its officialness, not ownership by ubuntu-branches?
[11:04]  wgrant: the way it's going to work is that the owner of the branch will have write access, and any with upload rights will also have write access.
[11:04]  wgrant: yes.
[11:04]  ~ubuntu-branches will probably fade away, at that point.
[11:04]  jml: Hrm, OK. Certainly less awful, but possibly less useful.
[11:05]  wgrant: because arbitrary branches won't be able to magically expand their write permissions to match the source package permissions?
[11:06]  jml: Right. I was thinking that it might be useful to have a development branch.
[12:48]  Hi
[12:49]  Well, just gonna say that there is a problem with the launchpad server when registering new account
=== mrevell is now known as mrevell-lunch
[13:01]  Kjell: what kind of problem ?
[13:50]  cprov: Looks like a server time out. But it is fixed now.
[13:50]  Kjell: if it was like 6 hours ago, it's a known problem that is already fixed.
[13:51]  Kjell: if it was earlier than that might be something else, let us know if it happens again.
[13:51]  cprov: No it was just a min before I wrote the message.
[13:52]  Kjell: uhm, worth checking, one sec.
[13:52]  cprov: The time out happens when the confirmation mail is send and you are suppose to enter a password.
=== mrevell-lunch is now known as mrevell
[13:56]  Kjell: I suspect it was a punctual and very short outage while we were releasing fixes for the code we just released. It should happen again.
[13:57]  Kjell: thank for pointing it out.
[13:59]  cprov: okey
=== matsubara-afk is now known as matsubara
[14:05]  I demand you guy purchase a domain name for every way I commonly misspell launchpad.net when I'm tired and forward it to the right place...
[14:06]  cprov: ^
[14:07]  MTecknology: is it serious ?
[14:07]  cprov: that was a joke..
[14:07]  laugh buddy
[14:07]  MTecknology: ehe, you never know :)
[14:08]  cprov: actually, laucnhpad.net is the most common mistake for me
[14:08]  MTecknology: That would be a nice suggestion if you cannot press the bookmark button. :)
[14:09]  I have enought bookmarks and for as much as I us lp, the bookmark would disolve into oblivioun
[14:10]  Kjell: I have just about 30k karma right now .. I'm on there a whole lot :P
[14:10]  MTecknology: let firefox make your life easier and complete 'lau...'  for you :)
[14:10]  MTecknology: That is a lot. What do you actually do?
[14:11]  Kjell: launchpad.net/ubuntu-drupal
[14:12]  I still think blueprints hand out too much :P
[14:13]  MTecknology: Well we need people to think those ideas
[14:13]  I linked them together and linked them to branches... I like to use them as road maps
[14:13]  finish one piece, closer to a goal
[14:15]  MTecknology: What is this Drupal?
[14:15]  what's with this... I can't subscribe to something if I'm not logged in... now there's a bug
[14:16]  Kjell: It's a CMS
[14:16]  I'm building a crap load of modules and a very very advanced theme for it
[14:18]  I've been up for ~24hr working on pushing out a new module
[14:18]  a whopping 10 revisions
[14:19]  MTecknology: Okey... What application does it have?
[14:19]  hm?
[14:20]  Kjell: you mean where is it used?
[14:20]  MTecknology: yes
[14:21]  Kjell: ubuntu.com uses it, ubuntu-us.org uses it, ubuntu-us.org, ubuntu-il.com, ubuntu-qc.org, etc
[14:21]  that's just a short list of ubuntu sites using drupal
[14:21]  There's a lot of professional sites that use drupal
[14:23]  Kjell: heck, lp.net uses drupal
[14:23]  .... ok - that one maybe not :P
[14:24]  MTecknology: I am looking at drupal.org
[14:26]  MTecknology: It looks comprehensive.
[14:27]  Kjell: that's why I like it - beginning coding for it is a steap hill for a little bit, then it get's much much easier, then it just depends how in depth you get
[14:29]  MTecknology: Is it written in PHP?
[14:29]  yup
[14:32]  Then I learned something new today. I guess it is a bit overkill to use Drupal as a personal website.
[14:32]  Kjell: profarius.com
[14:36]  Kjell: that's my personal site running drupal
[14:37]  MTecknology: Right. I figured it out when you posted that link =p
[14:37]  Kjell: if you look aroung drupal.org, you'll see a massive collection of prebuilt modules/themes
[14:37]  Kjell: remember.... /me woke up last 24hr ago
=== matsubara is now known as matsubara-afk
[14:37]  it's now morning
[14:38]  MTecknology: Day light over here
[14:38]  same ehre
[14:40]  MTecknology: Well I am going to reinstall soon. Might as well create a server to test Drupal.
[14:42]  have fun :)
[14:42]  I tried joomla and thought it was HORRIBLE
[14:42]  drupal was nearly bliss
=== barry_ is now known as barry
[14:49]  MTecknology: Is it just put the files to /var/www and run the install file?
[14:50]  Kjell: ya, you need to setup a database for it too - it won't do that for you
[14:50]  Kjell: I use a different setup - but I run a few sites through one installation
=== stevie is now known as vorian
[15:00]  MTecknology: Can't you run without a database?
=== matsubara-afk is now known as matsubara
[15:00]  no, it stores everything in a db
[15:08]  MTecknology: bah I am getting acces denied deny when trying to create a db
[15:09]  Kjell: how are you trying to create it?
[15:11]  mysqladmin create test
[15:12]  I use phpmyadmin :P
[15:16]  The funny part is that there is no password and you cannot login!
[15:28]  MTecknology: yay finally finish installing. Guess when they mean no password it means there is a password after all.
[15:29]  :P
[15:29]  congrats
[15:37]  MTecknology: Where can I view all my content I am making?
[15:37]  admin/content
[15:37]  idk where from there
[15:37]  I mean from other user
[15:43]  MTecknology: Well time for a reinstalling
[15:44]  lol
[15:44]  Kjell: I'm too tired to offer support
[15:46]  MTecknology: Hehe. No probs. As I said it is very comprehensive system. And I was gonna reinstall anyway.
=== rmcbride_ is now known as rmcbride
[16:13]  anyone for https://answers.edge.launchpad.net/soyuz/+question/75406 ? thanks
[16:25]  fta: I've asked how much space you need, but we have to wait LOSAs, anyway.
[16:26]  fta: unless we intend to unleash the daily builds today.
[16:27]  cprov, i'm not sure yet how much i need yet, it depends if a/ i'm able to shrink to tarball to a more reasonable size (not 300MB) and b/ if I add intrepid & hardy
[16:27]  cprov, "unleash the daily builds today"? what do you mean?
[16:28]  fta: I'm assuming you will use the PPA for daily builds, and I'm asking if you are planning to start it right now.
[16:28]  it's already started
[16:29]  but i can stop it if needed, i still have some issues with amd64 to fix anyway
[16:39]  cprov, i hope i'm not annoying with all those PPAs/dailies/quotas..
[16:41]  fta: no, absolutely, I was distracted reviewing projects. Do some estimation or guess some amount of space, so LOSAs can address this straight away.
[16:42]  fta: cool, you said 3GB.
[16:43]  cprov, i meant, in general. it seems i have a lot more PPAs than most other users, and they are also much bigger.
[16:43]  fta: it means you work a lot ...
[16:44]  fta: and we are more than happy to provide you the resources you need.
[16:44]  fta: specially if you stop coding in perl and switch to python ;)
[16:45]  lol
=== deryck is now known as deryck[lunch]
=== deryck[lunch] is now known as deryck
[18:25]  is there a way to speed up the creation of a project group?
[19:27]  I don't understand why this bug has been marked fix released: https://bugs.edge.launchpad.net/ubuntu/+source/pidgin/+bug/354605 looks like the bug watch thing made a mistake?
[19:27]  Ubuntu bug 354605 in pidgin "pidgin crashed with SIGSEGV" [Medium,Fix committed]
[19:33]  funkyHat: Look at the last entry in the upstream bug report
[19:33]  'resolution set to fixed'
[19:38]  Oh, I was looking at a different upstream bug (8981) -.-. Thanks
[19:41]  You're welcome funkyHat
[20:11]  Shouldn't the "What is this?" and "Read about installing" links on a PPA be green?
[20:55]  The OpenSourcing page says that Codehosting isn't going to be released. What does this include? The Code stuff as a whole, or a few things in particular?
[20:58]  Hello, I've created a VCS import, but it was set as invalid, so I've decided to remove it and import the code by myself. But I can't find how to remove this VCS import branch. Can anyone help me?
[21:34]  Is there an RSS feed for "Last Actions" at  https://edge.launchpad.net/~magicfab/+karma ?
[21:35]  I only see atom feeds for bugs, branches *or* revisions... is there anything combining all ?
=== soeb_ is now known as soeb
=== matsubara is now known as matsubara-afk
[23:28]  you might find this to be an odd question, but is there a way to have one of you delete all the bugs in a given project?