[06:25] Hello. I am trying to make a new account, and it seems I am stuck on "gathering informations"? The computer is slow, but it takes like 10 minutes... Should I wait, or is it some error? [06:27] I hope it doesn't use Flash? [08:38] morning! [08:46] Hi! Is this the communication channel for actual ubuntu one development or are most of you guys just hanging out here for support and helping out with the API and such? [08:59] morning all! [09:00] jacobrask, some of use are the actual developers of the clients on the diff platforms [09:00] derpella, no, it does not use flash, everything is python + Qt [09:02] derpella, there are apparently some issues with the ssl certs for when ever you create an account, that might be hitting you... the server guys are trying to get this fix asap [09:03] thanks, I'll try making account on website... [09:04] derpella, please do and let me know if it works, if it doesn't we can take a look at your logs and look closer at what is going on [09:06] :) [09:07] mandel: ok, nice === daker is now known as daker-cloud === daker__ is now known as daker [09:23] mandel: sorry for asking, but what is terminal command, so I could have logs? [09:24] because now I am stuck on choosing folders, with this gathering data [09:28] ubuntuone-control-panel-qt <- well, I guess it works [09:31] now it crashed- IPCError [09:32] G'mornin' all! :) [09:36] derpella, so, you can set U1_DEBUG in the terminal before you launch it to get logs in stdout, but there are logs in your XDG_CACHE folder [09:36] derpella, which will have all operations from sso, control panel and the sync daemon used by u1 [09:37] derpella, can you paste the ipc error you got in paste.ubuntu.com so I can take a look? [09:37] it'd be [09:37] ubuntuone-control-panel-qt --U1_DEBUG ?? [09:38] whhhere is the folder? [09:38] in /var/log? [09:40] derpella, the logs folrder is in ~/.cache/ubuntuone/ [09:42] derpella, and setting the debug to stdout is via the env variable U1_DEBUG [09:42] is not an an argument :) [09:42] erm... what do? [09:43] I am not a coder nor a specialist [09:44] derpella, ok, lets look at the logs that are already there, did you find the ~/.cache/ubuntuone/ folder? [09:44] sure... [09:44] well, only interesting things were in the file syncdeamon-exceptions [09:46] derpella, surely you have more info, can you paste the result of ls ls ~/.cache/ubuntuone/log/ [09:46] derpella, sorry just one ls :) === yofel_ is now known as yofel === zyga_ is now known as zyga === teknico_ is now known as teknico [11:09] good morning! [11:10] gatox, morning! [11:10] mandel, hi [11:10] mandel, today is your review day? :P (just a small one) [11:13] gatox, sure, shoot! [11:13] mandel, thx https://code.launchpad.net/~diegosarmentero/ubuntu-sso-client/network-page/+merge/105517 [11:15] gatox, why self.next() self._next_id = -1 ? [11:16] mandel, we use that everywhere..... we set always in _next_id which the next page should be.... then we told the wizard to move to the next page with next() and we set again to -1 so it's respect the value that the qwizard api return when doesn't know to which page to move [11:16] we don't have a linear flow...... that's why [11:16] ok [11:24] gatox, having to run tests on 3 platforms does not scale.. [11:27] mandel, jejeje nop [11:27] gatox, and wait to see my objective-c code.. [11:28] gatox, +1 [11:28] mandel, great [11:40] mandel, i need to go to the bank and then do an errand..... this may take a while [11:40] gatox, ok, I'll let the other know, no worries [11:41] mandel, thanks [12:07] hello, all! [12:07] ralsina, ping [12:07] alecu, morning! [12:08] hi mandel! I should not be working today; but I forgot to tell ralsina about it, and to put it in canonicaladmin [12:09] alecu, ok, it is because of uds, right? [12:09] alecu, I wanted to show you my cool fsevents server working, but I'll let you rest :) [12:09] mandel: awesome! [12:09] mandel, got any url? [12:10] alecu, I need to push it to lp, and I wont so that you rest :) [12:10] mandel, :-) [12:11] alecu, I need to get the twisted side working to get the events as json, but security bia getpeeredid is in place, events dispatching per user is there and i'm testing it by leaving it running while I compile things etc.. [12:12] mandel, how do you handle "dropping" events when the buffers are full? (or how do you plan to do it) [12:14] mandel, the main point of that is that the root daemon should never block on writing to the children SDs [12:14] alecu, we get an special event which is the dropped events one.. I think we should try and get as much info as possible from that and pass it to syndaemon to deal with it, maybe we have to do a local rescan or somehting [12:15] mandel, well, that's not the point that worries me.... [12:15] mandel, that's a slighly different case [12:15] alecu, I hope it does not, I'm using grand central dispatch for the dispatching of the events to the users, that is, to perform the IO to the socket [12:15] mandel, ok, I need to read more about GCD [12:16] alecu, I need to do some proper testing to see when this events are dropped and how to deal with that [12:16] mandel, right. [12:16] mandel, but we should keep in mind that we have two cases of events being dropped. [12:17] mandel, first one is the one you just mentioned: the kernel dropped some events because some of the root daemons reading from /dev/fsevents was slow. [12:17] and we are slow.. true [12:17] mandel, second one is "our" root daemon being the slow one because it blocked on sending stuff to the child Syncdaemons. [12:18] mandel, so, I think we should not block on sending stuff to our SDs. [12:18] alecu, I need to do some experiments, if the GCD adding operations to the q is fast and does not block us we should be dealing with events fast enough, but I need to do some stress testing on this [12:19] mandel, adding "fast" is not enough, because the queue might be full. [12:19] mandel, we should use some syscall to check if the queue is full before adding. And drop some events to just one SD in that case. [12:19] alecu, I'm doing something simlar to the example here: http://en.wikipedia.org/wiki/Grand_Central_Dispatch [12:19] mandel, awesome. [12:20] alecu, with a diff api by creating a q [12:20] alecu, I use a q because I do not want to have events sent in parallel and then loose the correct order which would be very bad.. [12:21] just a quick note on ssl: IS says the ssl may have ordering issues. i could not reproduce via vpn and a user says it only happens with turkish locale [12:21] ralsina, alecu is looking for you [12:21] mandel, using a queue is fine. But we should make sure that the queue has some fixed limit, and that we don't block if we exceed it. [12:22] hi ralsina! [12:22] ralsina, those are some awesome news on ssl [12:22] i am from Android so i type Slow. alecu, phone? [12:23] ralsina, sure. [12:23] let me find it. [12:23] alecu it seems gnutls says cert is invalid, too [12:25] ralsina, also, gatox went to the bank to deal with some errands that will take time [12:29] ok, lunch time for me [12:29] * mandel lunch [12:39] mandel, btw: what are you using to code the root daemon? python too? objective-c? [12:41] oh, mandel is lunching. [12:42] btw, all: I'm taking the day off, but I'll be around a little bit today at 16z for tech leads call. === m_conley_away is now known as m_conley [13:24] Hmmm twisted's default reactor for next version is epoll. Would that break anything for us? [13:40] alecu, objective-c [13:40] ralsina, the only place in which the default reactor is used in in syncdaemon and in theory should be ok [13:44] hey all, ubuntu one decided to delete the contents of ~/Ubuntu One/ when i setup a new home directory to sync with it. which propagated to my other machines that sync. any way to get this stuff back? or has u1 deleted them for good [13:45] gord, there is indeed a way to get them back, ralsina is there paperwork to be done for this? ^^ [13:56] gord: ask duanedesign or joshuahoover [13:56] gord: they can get it back for you, don't worry. Also, they are not deleted, they should be in your recycle bin or however it's called [13:58] gord: i will PM you for more info [14:12] good morning folks [14:26] good morning mmcc! [14:34] question - I wrote a script to run the network detection watcher and just print whenever it sees a real change - useful for testing IRL, but not a unit test. I think it should be in the SSO client tree somewhere, but where? [14:36] mmcc: we have one script of similar scope in sso, let me dig [14:37] mmcc: well, can't find it [14:38] mmcc: remember that script we had that connected to ussoc and showed the UI? Where was it? [14:38] hmm [14:38] oops, mandel ^ [14:38] mmcc: miscmpletion :-) [14:38] ralsina: no prob. I think I've actually used that script [14:38] no wait, no I haven't [14:40] mmcc: we hav one like it at ./ubuntu_sso/qt/tests/login_u_p.py [14:40] mmcc: so maybe there === zyga is now known as zyga-food [14:40] and the one I remembered was ./ubuntu_sso/qt/tests/show_gui.py [14:41] mmcc: so, there but without test in the name :-) [14:41] oh, ok - so maybe mine fits better in ubuntu_sso/networkstate/tests/ , just without test in the name [14:42] because it doesn't use qt [14:42] ralsina, let me check, I think it was in sso under tests.. [14:42] mandel: found it already :-) [14:43] now ralsina has anti-lag [14:43] right, I know what you will type now. [14:43] ralsina, cool :) [14:44] mmcc, ralsina, so I have the fsevents server cheking for the ownership of a path by the connected client.. atm I'm not checking at the group ownership, is that ok for the time being? [14:45] mandel: sure [14:45] ralsina, sweet! I'm nearly done, I have to write the example for the python code.. oh and I'm not using launchd to create the handle for the domain socket... I'm to lazy to write that atm [14:46] mandel: baby steps [14:46] mandel: sounds good. that launchd checkin stuff is boilerplate that might be best to add later. [14:47] in my experience, testing during development with launchd is a pain. adds a bunch of steps between compile and run [14:47] mmcc, mandel: we need to start planning the packaging, now that we have a binary that does something ;-) [14:47] ralsina: I have some thoughts. maybe I should write them up in an email? [14:47] ralsina, mmcc, let me push this to a branch and we can take a look if you have the time [14:48] mandel, got nothing but time for you man [14:48] mmcc, specially with you, you might cry at my code (I have not written objective-c in ages...) [14:48] mmcc: please [14:48] * ralsina likes long mails explaining stuff [14:49] in the right dose, of course [14:49] ralsina: ok, cool [14:51] * mmcc adds draft packaging plan to TODO list [14:51] mmcc, I'm going to push the code with the xcode userdata.. I have no clue which files to ignore, sorry [14:52] mandel: it's a huge pain, don't worry. For the actual project tree I want to suggest that we don't use XCode... [14:54] you can always use it yourself and just not check in your .xcodeproj bundle, but I want to propose using a makefile - XCode's files are annoying to read & diff [14:54] mandel, mmcc, dobey, gatox, thisfred: standup in 6' [14:54] briancurtin: too of course [14:54] i'm already typing, not falling behind this time [14:54] thisfred: you are on sprint this week or next? // need to take memory pills... [14:55] and for a project this size and with no UI, I don't think it adds much to use XCode for building [14:55] ralsina: DONE: traveled to London TODO: sprint ;) [14:55] thisfred: ok, excused ;-) [14:55] me [14:55] mmcc: early! :-D [14:55] mmcc, probably not, it just makes it easier to build I hate make files :P [14:56] mandel, I'm with you on makefiles, but at least they're readable. XML gives me hives [14:56] mandel especially *undocumented* XML build files! [14:56] mmcc, yes, those are even worse.. [14:57] mmcc, you can find some initial code in lp:~mandel/+junk/fsevents /cc ralsina [14:57] mandel, and per-user preference files that XCode saves in the .xcodeproj that cause spurious diffs... ugh [14:57] thanks mandel, looking in a sec [14:57] mmcc, yeah, those are the ones I wanted to add to the bzr ignore.. [14:58] mmcc, we can go over the code after the standup in mumble, there are some thinks I want to discuss as well as the fact that right now the config iss hardcoded with my paths... [14:58] mandel: sonds good [14:58] which ideally is sent my the clients when connected.. but that is work to be done in the python side.. [14:58] sonds very good indeed [14:59] mandel, ack [15:01] ralsina: lies [15:01] me [15:01] me [15:02] me [15:03] mmcc, mandel: use cmake [15:03] I think gatox is out? [15:03] ralsina, you kde people.. [15:03] mandel: he [15:03] mandel: ok, use xmkmf [15:03] yeah, gatox when to the bank.. so he is probably in a q [15:03] ok, then mmcc go [15:03] ralsina, I'll write my own version of make in ruby! [15:03] DONE: cleaning up test suite for darwin network detection, refactored [15:03] a bit for testability. Saw a really big ostrich at the San Antonio Zoo. [15:03] TODO: finish tests for network detection, land that branch, write up [15:03] draft OSX packaging plan [15:03] BLCK: no [15:03] mandel: you mean rake? [15:04] next, uh? ralsina [15:04] DONE: weekend, reviews, SSL debugging, 1-1s TODO: fix something, reviews, help around, tech leads call BLOCKED: no NEXT briancurtin [15:04] DONE: propose installer branch, screwed up jenkins branches but just got them in this morning [15:04] TODO: look into the get_rootdir exception people have been reporting [15:04] BLOCKED: None [15:04] NOTE: i have half days on tuesday, thursday, and friday [15:04] NEXT: mandel [15:04] DONE: Goot root process to filter peruser getting the user uid when connected. Now the service send a json representation of the event over the domain sockets (need a good separator for each message, I think \n is good since there are no \n in any of the strings). Added security to ensure that a client does not request events from paths that he does no own. [15:04] TODO: talk with mmcc about the code, find room for improvement. Ask ralsina about some copyright in a lib used to the example (we could use many others) [15:04] BLOCKED: no [15:04] COMMENTS: jenkins is not yet there due to some lint issues in the skipJenkins branches :*( [15:04] I think I'm last, right, dobey is not working.. is he? [15:05] * ralsina would have to check and canonicaladmin is too stupid [15:05] doing it anyway [15:05] That smart site shows the leave requests in alphabetical order since I joined the company. And it only works or page 1. [15:06] So to know who's on leave I have to ask for the monthly company-wide request board [15:06] So yes, rodney is on swap today ;-) [15:06] ralsina, alphabetical order is what hr uses, is soooo much better! [15:07] er, what does "on swap" mean? [15:07] mandel: alphabetical order of the first name, so I nly see Alejandro's requests for 2011 [15:08] mmcc: when we make you travel on a weekend, you get a day off [15:08] mmcc: so we don't feel like slave drivers, and all that [15:08] mmcc, you moved a national holiday from its day to an other, for example, tom is a holiday in madrid I swaped it for july + what ralsina said [15:08] is there any process for updating dev-tools on tarmac? a fix of mine was merged into dev-tools, but a u1client branch which uses it claims to fail because it can't import a name (skipIfJenkins) [15:08] ah, ok. [15:09] briancurtin, you dev-tool branch did not land due to a lint error [15:09] mandel: i just fixed that one [15:09] briancurtin: may need to be done manually, since dobey is on swap, ping sidnei [15:09] briancurtin, oh.. then we have to wait for dobeys machine to pick up nightlies.. [15:09] ralsina, is tarmac not longer in _dobeys servers? [15:10] if it'll eventually just work, that's probably fine [15:10] mandel: since like, months ago! [15:10] mandel: it's in canonistack [15:10] tarmac is cloudy [15:10] ralsina, he, good news! [15:10] dobey, cylon, go back to the swap day! [15:11] mmcc, give me 10 mins, mumble and we take a deep look at the code for the fsevents, is that ok? [15:11] mandel: sure that works === qengho- is now known as qengho [15:14] ralsina, any ideas why I wouldn't be getting notifications for uploads/downloads to U1 in ubuntu? [15:16] beuno: nope [15:16] FINALLY BACK!!!! [15:17] beuno, "show_all_notifications = True" on syncdaemon.conf? (just a wild guess, really) [15:17] beuno: am I filling you with confidence or not? ;-) [15:17] i hate errands!!!!!!!! [15:17] salgado, ralsina, it's set to true [15:18] gatox: err-ands are better than err-ors. Basic boolean algebra. [15:18] ralsina, jejeje [15:18] beuno: then there may be something on syncdaemon-exceptions.log [15:18] beuno: we have had a few similar things in the past [15:19] * gatox goes back to work.... is going to be a long day :P [15:19] ralsina, nada [15:19] empty [15:19] beuno: weirder then [15:21] beuno: we are a bit shorthanded today because of UDS swaps and stuff, can you remind me tomorrow? === teknico_ is now known as teknico [15:22] ralsina, sure [15:22] beuno: thanks [15:25] mmcc, I'm back, mumble? [15:25] mandel, just a sec, testing [15:25] sure === zyga-food is now known as zyga [15:44] gatox: can you assign bug #986328 to rtgrant for feedback on texts for the buttons (or if we should just keep them as they are?) [15:44] Launchpad bug 986328 in Ubuntu One Control Panel "Wrong title and buttons on unsuscribe dialog" [Low,Confirmed] https://launchpad.net/bugs/986328 [15:44] ralsina, yes [15:44] gatox: thanks [15:44] gatox: put a comment explaining exactly what you want feedback on, then assign to him [15:53] and now i have internet issues...... connecting with 3g..... not a very good day! [15:54] gatox: take it easy [15:54] gatox: go to a bar [15:54] gatox: have some tea or something [15:55] ralsina, yeah...... trying to relax..... i'm with 3g now (in the closest bars internet is even worse than my 3g connection).... i'll debug some u1-client stuff that doesn't require internet in the mac..... and wait for fibertel to fix the problems [15:55] Grmbl, so *units* should be transleatable. Makes sense. [15:56] gatox: cool [16:03] so mandel, you're using OS X 10.7 I see... your code doesn't build for me on 10.6, I'll take a look at the docs and see if it's something simple I can change in the build or if you've used any 10.7-only api... [16:03] mmcc, ouch! [16:04] mmcc, yes, I'm on Lion... I wonder what changed [16:04] mandel, if you want the complete list: https://developer.apple.com/library/mac/#releasenotes/General/MacOSXLionAPIDiffs/index.html#//apple_ref/doc/uid/TP40010630 [16:05] mandel: but that's just api, I'm getting complaints about missing objc properties too :\ [16:05] mmcc, I tried to compile it with 10.6 support and threw a bunch of errors regarding the autorelease pool.. === gatox_ is now known as gatox [16:06] mandel, I think maybe the @autoreleasepool{ ...} block thing is new in 10.7's ObjC [16:06] mmcc, could perfectly be, then I'll have to change all the memory management to the old style, not hard but boring === salgado is now known as salgado-lunch [16:18] mandel, I have an old XCode - @autoreleasepool was added for ARC (Automatic Reference Counting), which is supported in 10.6 and 10.7, but you need XCode 4.2 or later (and the corresponding new compiler) to compile code that uses ARC. [16:19] mmcc, does that mean that you just need to update xcode? [16:19] mandel So I'll upgrade, but I also want to think a bit about whether or not we should use ARC. I've heard some complaints about it, but maybe it's not so bad in a relatively simple daemon [16:19] mandel, yes [16:19] mmcc, I think removal is not a thing that should scares us much [16:20] mmcc: I got a third hand rumour from UDS that running things as root is going to be harder/different in the next OSX, you heard anything? [16:22] ralsina, that thing is, them having iCloud might mean us being screwed up with rules like that.. [16:22] mandel, gatox: can I get a trivial review here https://code.launchpad.net/~ralsina/ubuntuone-control-panel/octetes/+merge/105684 [16:22] ralsina, on it [16:22] gatox: thanks [16:22] ralsina, sure, review day! [16:23] ralsina, people translate bytes? [16:23] mandel: bytes -> octetes in french, for example [16:23] le logiciel c'est 900000000 octetes [16:23] ralsina, ok, one single thing to that: putos gabachos! [16:23] everyday you learn something new :P [16:24] sorry, octets [16:24] ralsina, but does not surprise me from a contry that telecharges things from the internet [16:24] so they are boy bytes, not girl bytes [16:24] mandel: you spaniards translate "mouse" and "cd" [16:24] * alecu loves "cederrón" [16:24] mandel: and cd, you officially translate to cederrón which is unforgivable [16:25] * ralsina still doesn't understand why that ends in N [16:25] jeje [16:25] ralsina, +1 [16:25] ralsina, gatox, because they tranalated cd-rom and not cd, there must be a cederran somewhere.. :P [16:25] gatox: thanks! [16:26] mandel: devederrón coming soon. Y blurayo [16:26] cedeerreuvedoble [16:26] jejejejejejeje [16:26] pásame el reproductor de rayoazul! [16:26] ralsina, alecu, gatox, I prefer: uh!! se ve! [16:26] pues cógelo tu mismo. [16:27] lol [16:27] ah, no hace falta, lo apareo mediante dienteazul [16:27] * ralsina will stop now [16:27] LOOOL [16:28] ralsina, I'll run the tests on windows and +1 [16:28] mandel: awesome. I am not adding tests for this because... I have no idea how [16:28] ralsina, I'm not requesting tests for this because I'm not after 80% :) [16:29] hehe [16:30] * mandel lost a contact lens as soon as he switch to the windows machine... [16:30] my boy is trying to say something.. [16:31] * mmcc went away for a sec and thought I came back to the wrong channel [16:31] ralsina, I know they're doing new things with an application sandbox, and developer certificates. I need to read up more about how that'll affect us. [16:32] ralsina: I think it will still be possible for some time to do what we want, but the user experience might be a little less smooth - ie, we may not be able to be in the Mac App Store, because we probably can't run in the app sandbox [16:33] ralsina, approved [16:34] ralsina: But I think running as root should be OK as long as we use the new launchd API for installing our root daemon [16:34] mmcc: right [16:34] mmcc: I suspect we may have to do a sandboxed version that is less useful, for the store [16:35] ralsina, I'll make a note to see how much less useful it'd have to be. At one point I thought you had to pre-register (at app submission time) a separate security capability for each file you want to access... [16:36] mmcc: ok, that would be massively less useful [16:36] ralsina: it would be all the way less useful [16:36] mmcc: unless we could register a folder [16:36] ralsina: and then not access its files [16:36] hehe [16:36] ralsina: but before we go too far here, they have changed things a bit and I need to catch up [16:37] mmcc: great, thanks [16:37] ralsina: I'll make a list of things to get urbanape to find out about at WWDC... [16:38] mmcc: even better :-) [16:47] mandel, gatox: how would you, who have dirtier minds, create a file that fails as in bug #959447? [16:47] Launchpad bug 959447 in Ubuntu One Control Panel "Computer to cloud wizard page: if os.walk fails, 'Calculating' header never goes away" [High,Triaged] https://launchpad.net/bugs/959447 [16:47] * gatox looking.... [16:48] ralsina, something like this? my_私のファイル.txt [16:48] ralsina, i don't know if your irc client support unicode chars [16:48] gatox: yes, it does [16:48] * ralsina tries [16:49] ohhhhh got it [16:49] if I do walk('.') it works, but walk(u'.') fails :-) [16:50] so.....with u is trying to convert automatically or something instead doing a decode [16:51] gatox: yes, something like that [16:51] Since in this case we don't care about the names, I could just use ascii paths [16:51] gatox, you are faster.. [16:51] ok, EOD for me, also I need to get my glasses.. [16:51] mandel: all that ninja training [16:51] lol [16:51] bye mandel! Good luck! [16:51] jejeej [16:51] mandel, bye! [16:52] bye mandel === salgado-lunch is now known as salgado === m_conley is now known as m_conley_away [17:03] mmcc: did you see Daniel Jalkut's recent blog post on the catch-all entitlement? [17:04] http://www.red-sweater.com/blog/2438/the-sandboxs-big-red-button [17:04] urbanape: I'm reading his sandbox posts right now... [17:04] it says temporary, but who knows [17:05] urbanape: I'd skimmed it a while ago, and that's what I had in the back of my head when I said it'd changed recently... [17:05] right [17:06] so urbanape - the apple dev account / membership stuff has changed since I last paid for it - is there a separate mac vs. ios dev account? What membership do you have? [17:07] there are separate. [17:07] We've got a team membership for both. [17:07] I'll invite you into the team for both, if you like. [17:07] urbanape: yes, that'd be good, thanks! [17:08] if there are only a few slots, you can leave me out of the ios membership I guess [17:08] I don't know if you can have separate agents for mac and iOS, but if so, it would probably make sense to make you the agent on the mac side. [17:08] nah, I don't think we're close to any limit. [17:08] ok, good. What's the agent's responsibility? [17:08] (and who's the ios agent now? you?) [17:08] the agent is the only person who can actually build releases for upload to the app store [17:08] i'm the iOS agent [17:09] I mean, you can share the credentials and stuff. [17:09] ah, ok - so it's the account they use for the code signing then? [17:09] but the agent creates the initial certs [17:09] right [17:09] got it [17:09] ralsina: lemme know who else should be on the mac developer team [17:10] * ralsina reads backlog [17:11] urbanape: doing develpment work on mac (even if ntot full time) gatox, me, alecu, mmcc, mandel [17:11] k [17:19] * mmcc leaves for lunch [17:38] Hiya all o/ Any Samsung S II users out there :)? [17:39] If yes - check out the links at the bottom of https://bugs.launchpad.net/ubuntuone-android-files/+bug/993683 [17:39] Ubuntu bug 993683 in Ubuntu One Android Files "App crashes continuously on Samsung Galaxy SII with Android 4.0.3" [High,Confirmed] [17:39] oh, cool bot :) === m_conley_away is now known as m_conley [18:45] gatox: I am about to propose a unicode branch, you owe me one ;-) [18:45] ralsina, jeje ok [18:58] gatox, briancurtin: reviews please? https://code.launchpad.net/~ralsina/ubuntuone-control-panel/fix-959447/+merge/105704 [18:58] ralsina, on it [18:58] ralsina: looking [18:59] thanks! [19:07] ralsina, mmcc can i have a review for tihs please? https://code.launchpad.net/~diegosarmentero/ubuntuone-client/refactor-remove-windows-linux/+merge/105705 [19:07] gatox: sure [19:07] gatox, ok [19:07] thx [19:11] ralsina, i have this error running the tests of your branch on windows: v [19:11] http://paste.ubuntu.com/987703/ [19:11] gatox: that is nowhere near my code :-) [19:12] crap....... so we have something broken there [19:12] gatox: well, it's the same file, so mybe it is my fault [19:12] gatox: let me check [19:12] ralsina, let me test in trunk [19:13] gatox: thanks [19:14] ralsina, it's in trunk too....... so approve [19:15] gatox: and we need a second opinion on the trunk failure on windows to open a bug for it. Because that test is not even close to passing :-) [19:17] gatox, in your branch, you have ubuntuone/syncdaemon/volume_manager.py line 1629 importing 'allow_writes' from linux -- I haven't tried but I bet this won't work on windows. windows has its own os_helper.allow_writes()... [19:19] mmcc, the tests works on windows....... if you take a look, you will see that the line removed was: from ubuntuone.platform.linux import allow_writes [19:20] gatox huh. you're right, I misspoke - but the new line says from 'ubuntuone.platform.os_helper.linux import allow_writes' [19:20] gatox: look at line 511 of the diff [19:20] gatox which was the problem I meant to point at [19:20] gatox: you are importing a linux-specific thing in volume_manager.py [19:21] gatox, should work if you just leave off ".linux", right? [19:21] ralsina, mmcc yes, i did it that way, to respect what was already there....... that was: from ubuntuone.platform.linux import allow_writes [19:21] gatox: yeah, but it looks wrong :-) [19:21] seems like it was a bug [19:21] was it being tested? [19:21] mmcc, ralsina ok, fixing that [19:22] other than that it looks good to me [19:23] ralsina, mmcc i'm not sure about this..... i mean..... who could know why this is being that this way??...... because the module is already importing allow_writes....... but for some reason, inside this function is being imported again in a really specific way [19:23] gatox: bzr blame knows [19:24] * mmcc to the bzr gannotatemobile [19:24] gatox: 99% of the time, the obviously broken code is broken obviously [19:24] gatox: but yes, let's run a check on it with the guilty dev and not merge before getting info [19:26] ralsina, if i understand bzr blame correctly..... i need to talk with mandel :P jeje [19:26] gatox: SURPRISE! ;-) [19:27] gatox: mail him so you have an answer when you start tomorrow [19:27] ralsina, mmcc so..... i'll leave this branch on hold, until tomorrow, so i can ask mandel if that is there for any particular reason [19:27] gatox: ralsina yep I see mandel's name there too. ok [19:27] ack [19:32] ralsina, gatox I had another question about that branch, so I was going to add a comment - noticed it's still approved by ralsina, should I unapprove or just comment [19:32] mmcc: you can't unapprove me anyway ;-) [19:32] mmcc, or you can wait [19:32] mmcc: just comment, or put a needsinfo [19:32] mmcc, and i'll ask for a review to mandel tomorrow [19:32] ok. sounds good [19:33] mmcc, i already sent him an e-mail asking about the import tihng [19:33] thing [19:33] ralsina, I can *dis*approve you [19:33] er, of you. that joke needs work [19:33] mmcc: hehe [19:33] disapproving of me is indeed almost required. [19:34] but then again, you have a performance review in ... 11 months! ;-) [19:34] tick tock [19:35] ralsina: I have a big red clock counting down [19:35] So my question about the branch: Why add a separate filesystem_notifier module for platform agnostic things that are related to filesystem notification? That seems like it should go in filesystem_notifications, either in __init__ or in a separate file that __init__ includes... [19:36] It might seem picky, but I was a little confused by the naming. I saw changes to "notifier" and wondered where the files in "notifications" had gone [19:39] mmcc, yes, i added first inside filesystem_notificatoins, but [19:40] i wanted something that you can import always in the same way, and in that case that would be: from ubuntuone.platform.filesystem_notification import pyinotify....... but if you add the file inside filesystem_notification....... and linux.py and windows.py wants to import pyinotify..... you have a circular import and doesn't work [19:41] dobey: have you tried gmap-pedometer? Last I recall, it provided elevation, and I think it can do a KML [19:41] brb [19:45] gatox, sorry, I don't see how it would cause a circular import. [19:45] gatox so, "filesystem_notifier" has code borrowed from pyinotify that we use on all platforms, right? [19:47] mmcc, no..... mmm i'm looking at the circular import thing..... and it doesn't seem that is the problem..... but that happen when i was trying to run the tests..... maybe was a different approach..... i'll try to add it again inside filesystem_notifications.... i also prefer that place [19:48] yeah it's a little nicer all in one place I think. As I look at it more, the module you mande 'filesystem_notifier' is pyinotify on linux, but on windows, it's just the bits of pyinotify we need to wrap the events coming from the code in the filesystem_notifications module... [19:48] seems like it fits better together. [19:49] urbanape: wow, that site is awful :) [19:49] urbanape: and the gpx i got from making a route doesn't seem to have elevation there either [19:50] did you turn elevation on? [19:50] yes [19:50] to "large" whatever the heck that means [19:50] hm. sorry. [19:51] and i made a route in Harrisonburg, where there are obviously lots of hills :) [19:52] eh, oh well. i don't think google maps exposes elevation either, though google earth might [19:53] i doubt OSM has elevation for all points, either [19:54] ralsina: is there a way to cancel a holiday in canonicaladmin? the half-day i put in for yesterday is cancelled, i'll be here the full day [19:54] er, tomorrow...no idea how i thought "yesterday" [19:54] briancurtin: if I have not approved it, yes, if I have, we have two paths [19:55] its already approved [19:55] then we can 1) go to HR and ask them to change it [19:55] or 2) you tell me what day you will really be gone, and I pretend we did it [19:55] correctly [19:56] in this case, you have a holiday on a sunday, so HR is probably a better idea [19:56] i'll email them to change it [19:56] briancurtin: thanks [19:59] si? [19:59] gatox: tal vez! [19:59] jeje wrong channel [20:10] mmcc, if i try to import pyinotify inside filesystem_notifications __init__ there is actually a problem..... i need to create a different module inside filesystem_notifications to do this..... i wasn't so crazy :P jeje [20:11] gatox, what problem does it cause? [20:13] mmcc, we are importing linux/windows file from the __init__ and those files are trying to obtain pyinotify from the same init... is just necessary to do the import somewhere else...... the REAL problem, is how to do the import and avoid the lint issues (which shouldn't be there anyway..... but..... that's how the lint checker works) [20:15] gatox, only windows uses the pyinotify_agnostic stuff, right? [20:15] and mac [20:15] right [20:15] i think i figure it out [20:16] the real problem here, is that i need to do something kind of unnatural...... because the lint checker is going to complain... when it's actually something valid [20:16] but it seems to be working now [20:18] I'm curious what unnatural things you had to do - not familiar yet with the corners of lint. [20:18] you can just push it and tell me to look if you want [20:19] mmcc, i mean when it fails for a double import..... when you actually are importing something in the if part or the else part..... same problem here..... [20:19] mmcc, no problem...... it's not going to win! :P [20:19] gatox, briancurtin: another easy review please! https://code.launchpad.net/~ralsina/ubuntuone-control-panel/fix-865688/+merge/105713 [20:19] ralsina, ack [20:19] * ralsina is picking low-hanging fruit today [20:19] ralsina: looking [20:20] gatox oh yeah, I ran into that, dumb lint. [20:20] * mmcc wants flow sensitive lint! [20:35] ralsina, +1 [20:42] bah, i don't think i have time to do any real yard work before the storm gets here :( [20:47] gatox: thanks! [20:59] there a study about cloud services from faunhofer instutite. just for the record: http://www.sit.fraunhofer.de/de/cloudstudy.html . the study is in english [21:17] hey, does twisted's UnitTest failUnlessRaises() not do what I think its docs say it does? [21:18] I am testing a regular function that doesn't return a deferred and I want to test that it raises a NetworkFailException [21:18] mmcc: you should use self.assertRaises() [21:19] dobey, ok. I saw that somewhere but it isn't in twisted's docs ... is it our extension? I'll go look [21:20] mmcc: it's in one of the TestCase implementations we inherit from [21:20] mmcc: probably either twisted, or unittest [21:20] mmcc: the failFoo APIs are for implementing assertFoo APIs, generally [21:28] dobey, thanks. it comes from unittest... still not clear why failUnless doesn't seem to match its docs tho [21:29] * dobey doesn't have good experiences with python docs [21:31] OH. PEBKAC, of course you pass it the callable, not the *result* of calling the callable. yargh, docs are fine [21:32] and now, having issue with python testing libraries that have circular dependencies on each other [21:33] wish python had a LogicError for such a case [21:36] dobey, aren't you off today? [21:36] yes [21:36] oh, ok then [21:39] was looking at getting a few simple non-u1 packages (but which u1 stuff sort of depends on) packaged for python3 in ubuntu === m_conley is now known as m_conley_away [22:00] leaving now for a few hours, will be back this evening to wrap up my network state branch [22:03] ok...... i'm off for today...... brain is blocked!!! see you tomorrow!! === salgado is now known as salgado-afk [22:11] can someone help me with somewindows logs [22:11] duanedesign: i'm about to head out of here shortly, but i can take a look [22:12] \o/ [22:14] briancurtin: https://pastebin.canonical.com/65993/ [22:14] got some more i might email [22:16] duanedesign: that doesn't ring any bells, never seen anything like that... [22:16] duanedesign: i can take a deeper look tomorrow [22:17] briancurtin: yeah i emailed you [22:17] have a good night [22:17] you too