/srv/irclogs.ubuntu.com/2010/08/03/#ubuntuone.txt

=== SpyderZNC is now known as SpyderBite
josephnexusanyone have any ideas why my rhythmbox isn't starting?02:05
josephnexuswell, it _starts_ but won't ever open, I see the notification icon for it, but clicking it doesn't bring up a menu02:05
josephnexusthe reason I am in ubuntu-one is because the last message when starting from the terminal has to do with requesting http://sotres.7digital.com which I imagine has to do with the actual music store02:06
josephnexusanyone have any ideas?02:07
MoLE_would anyone like to help me with bug 595784?03:45
ubot4Launchpad bug 595784 in ubuntuone-client "latest ubuntuone beta client for karmic must be started manually to work. (affects: 1) (heat: 12)" [Undecided,New] https://launchpad.net/bugs/59578403:45
MoLE_I'm wondering how to progress it further03:46
* MoLE_ says honk04:41
MoLE_Would anyone like me to repeat the question?04:42
MoLE_would anyone like to help me progress bug 59578406:35
ubot4Launchpad bug 595784 in ubuntuone-client "latest ubuntuone beta client for karmic must be started manually to work. (affects: 1) (heat: 12)" [Undecided,New] https://launchpad.net/bugs/59578406:35
=== JUMPA is now known as jumpa
mandelmorning!08:56
ryemornings!08:57
=== yofel_ is now known as yofel
mandelbrbiab12:04
=== mandel is now known as mandel_afk
=== teknico is now known as teknico_away
=== mandel_afk is now known as mandel
mkarnickiafternoon all :)12:46
duanedesignhello mkarnicki12:53
mkarnicki:)12:58
duanedesignmkarnicki: i read an article yesterday about android development and icons12:58
duanedesignmade me think of you :)12:59
mkarnicki^-^13:02
mkarnickiduanedesign: anything interesting that I could read :)?13:02
duanedesigni think it might be pretty 'level 1' stuff that you might now. But it doesnt hurt to look i guess :)13:03
mkarnickiduanedesign: I attempted to contact the design team via lp 'Contact this team members', but there has been no response whatsoever. :<13:03
mkarnickiduanedesign: you have the link around?13:03
duanedesignhttp://www.barebonescoder.com/2010/07/android-development-menu-icons/13:03
mkarnickithanks13:03
duanedesignmkarnicki: a few of them hang out in #ayatana13:03
mkarnicki:O awesome duanedesign ! I was looking for irc channel with those guys13:04
=== teknico_away is now known as teknico
mkarnickiduanedesign: thanks, I talked to two guys; one of them - project manager on the design team \o/ ^ ^14:25
mkarnickiduanedesign: I also updated the screenshots https://wiki.ubuntu.com/AndroidU1/screenshots (please let me know if they're not all loading properly, my connection is playing tricks with me)14:26
duanedesigngreat!14:28
mkarnickiduanedesign: thanks ^_^ (out of curiosity, did they all load? wiki is playing with me, I can load each separately but not all at the same time on the wiki page o_O )14:29
duanedesignmkarnicki: those look good14:29
mkarnickiduanedesign: thank you :)14:29
duanedesignmkarnicki: yep all loaded14:30
mkarnicki\o/14:30
duanedesignmkarnicki: 19 screenshots14:30
mkarnickiyes, thanks =)14:30
duanedesignwoo hoo, that is looking good14:30
mkarnickiit must be my connection. it's been slow recenty. anyway, good that it's working14:30
mkarnickihehehe ^ ^14:30
mkarnickiduanedesign: I wonder if iPhone has also things linke ContentProviders or some supplied application pickers like that 'Open with' one14:31
mkarnickiduanedesign: althought Android is not perfect, it's been really laid out well from tens of buildling blocks a developer can use.14:32
ryemkarnicki, wow14:38
mkarnickirye: ^ ^14:39
=== dendrobates is now known as dendro-afk
mkarnickiguys, what's the server timeout for U1 client connection? does the clinent/server ping each other periodically or something?14:55
mkarnickiI'm having connection timeout from time to time and I'd like to avoid that ("I" as in "AndroidU1" not UbuntuOne client)14:55
mkarnickiverterok: ^14:56
mkarnickiverterok: (I don't know who's a better person to aim that question at :))14:56
verterokmkarnicki: the server side isn't important in that case :)14:58
verterokmkarnicki: if you want to be sure your connection isn't dead, you need to do something with it, e.g: a ping :)14:58
verterokmkarnicki: because if the connection died you can wait forever for data from the server14:59
verterokmkarnicki: the syncdaemon client don't do any kind of ping, but as soon it tries to use the network, e.g:try to upload something. it find out the connection is dead and reconnect15:00
mkarnickiverterok: right heheh. what could be the upper limit for server to consider the client dead? (e.g. how often should I ping)15:00
mkarnickiright15:00
verterokmkarnicki: you shouldn't depend on that.15:00
mkarnickiverterok: ok, perfect. I'll implement that. I was thinking of such solution.15:00
mkarnickigot it :)15:01
mkarnickiverterok: I'll make sure connection is up and running before performing any action. I might patch the Client a bit15:01
verterokmkarnicki: because if the server changes, your client is broken :)15:01
mkarnickiwe'll see.15:01
mkarnicki:D15:01
verterokmkarnicki: no need to do it on every connection, the request should fail if it can't be sent to the server15:02
verterokmkarnicki: you could ping the server client.ping().addCallbacks(callback, errback) ;)15:03
mkarnickiverterok: I got an I/O Exception (connection timeout) caught by the Client. I'll need to find way to make it reconnect, instead of making a new client every time the connection is broken :)15:03
mkarnickiright, and continue with the request only in the callback (errback would try to reconnect), right?15:03
verterokmkarnicki: doing that in a background thread every X minutes could be an option15:04
mkarnickiverterok: ^15:04
verterokmkarnicki: no :)15:04
mkarnickioh15:04
verterokmkarnicki: and when the ping fails, fire some android-signal to cleanup and reconnect15:04
mkarnickisounds good15:05
mkarnickiI'll think about it (consider battery use/use cases/etc). thanks verterok15:05
verterokmkarnicki: np15:05
mkarnickiverterok: gotta leave for a while. thanks!15:05
verterokmkarnicki: you could also hanbdle the connection error on each request errback15:06
mkarnickithat's what I'll consider, too.15:06
mkarnickieither that or ping15:06
verterokmkarnicki: client.some_action().addErrback(my_connection_errback)15:06
mkarnickiyes :)15:06
* mkarnicki goes away for 1 hour15:07
abhijithello all16:00
abhijitafter messing with ubuntu one, all files in my /home are now filename.<originlaextension>.ubuntuone   how to remove that u1 extention in bulf for all files?16:00
abhijitHELP16:00
abhijitbulk*16:00
abhijityo ho ho16:03
ryeabhijit, you can use find tool to do that, let me create a proper line for that... are the original files also there?16:06
abhijitrye, yes all files are there.16:06
abhijitrye, example: ClamAv.html.u1conflict16:07
ryeabhijit, i meant whether there is a ClamAv.html file in the directory?16:07
abhijitrye, yes it is there.16:08
ryeabhijit, regular one, w/o .conflict  suffix16:08
abhijitrye, no its not there.16:08
ryeabhijit, ok, then it is a simple rename16:08
abhijitrye, how?16:08
abhijitrye, there are thousand of those files. :(16:09
ryeabhijit, give me 5 minutes, i will come up with a solution16:09
abhijitrye, so nice of you!!! :)16:09
ryeabhijit, is the suffix is ".u1conflict" or as you said ".ubuntuone"  ?16:10
abhijitrye, its .u1conflict16:10
ryeabhijit, ok, stay tuned...16:11
abhijitrye, ok16:12
ryeabhijit, could you please create a backup of Ubuntu One folder, just to be 100% safe?16:18
abhijitrye, i am not using ubuntu one. :P16:18
ryeabhijit, ok, could you please then create a backup of the top level folder with those .u1conflict files?16:19
abhijitrye, yes back in progress. need some more half hour or so16:19
abhijitbackup*16:19
abhijitrye, is it possible that you give me instructions now and i will perform them when backup completed?16:21
ryeabhijit, after that you will need to open the terminal, navigate to the folder and execute the following - find -name '*.u1conflict' | rename 's/.u1conflict//g'16:21
abhijitrye, Thank you!!! I wll note down tihs now.16:21
abhijit:)16:21
ryeabhijit, it may fail to update all the files / folders properly in one run16:21
abhijitrye, why?16:22
ryeabhijit, i will try to do this in python now since it is pretty hard to ask find to output the files in reverse order... let me think... hmmmmmm16:22
abhijitrye, okki16:23
=== dendro-afk is now known as dendrobates
ryeabhijit, this will do it - find -name '*.u1conflict' | tac | rename 's/.u1conflict$//g'16:26
abhijitrye, ok16:26
abhijitrye, thanks!16:27
ryeabhijit, how did you end up with all directories marked as conflicts?16:27
abhijitrye, some weeks ago lots of problems with my u1. i stoped its operation in between.16:28
abhijitrye, hey do you remember me? I think you are the one i talked to ? its me abhi_nav16:28
abhijitrye, :P :D16:28
ryeabhijit, i remember the nick name, let me dig the logs :)16:28
abhijitrye, :D16:28
abhijitrye, now this is my new nick :P :D :)16:29
abhijithello duanedesign16:29
=== abhijit is now known as abhijit_
=== abhijit_ is now known as abhijit__
=== abhijit__ is now known as abhi_nav
=== abhi_nav is now known as abhijit
ryeabhijit, http://irclogs.ubuntu.com/2010/07/12/%23ubuntuone.html16:31
abhijitrye, yes thats me :D :P16:32
red__how do i delete files from my cloud?16:43
abhijitrye, bye and thanks. :D16:50
=== beuno is now known as beuno-lunch
=== teknico is now known as teknico_away
=== beuno-lunch is now known as beuno
=== dean is now known as deanimean
=== jumpa is now known as JUMPA
mkarnickiverterok: getting the public link to a file is an http request?20:37
verterokmkarnicki: yes20:37
verterokmkarnicki: no protocol support for that yet :(20:37
mkarnickiverterok: I guess I should find some docs for that then :)20:37
verterokmkarnicki: bzr branch lp:ubuntuone-client; gedit ubuntuone/syncdaemon/action_queue.py @ lines 2054-207520:39
verterok:)20:39
mkarnickiverterok: awesome =) thank you!20:39
mkarnicki\o/20:39
verterokmkarnicki: you need to translate that to java, :)20:40
mkarnicki=D20:40
verterokmkarnicki: that's to make the file public20:40
mkarnickiverterok: yup :)20:40
mkarnickiverterok: thanks20:40
verterokmkarnicki: if you want a list of all public files url, there is an easier (and faster) way20:41
mkarnickiverterok: aha?20:41
verterokmkarnicki: same file lines 2116-213420:41
mkarnickiverterok: great :) I'll have a look, I'm pulling that branch (not sure I had up to date sources)20:42
nUboon2Ageduanedesign: I'd like to ask for a link to the status page ( https://wiki.ubuntu.com/UbuntuOne/Status ) be added to https://one.ubuntu.com/support/  .  How should a request for this be made?23:07
nUboon2Agejoshuahoover: ^^^23:09
=== apachelogger is now known as gnomelogger
=== dendrobates is now known as dendro-afk
duanedesignnUboon2Age: that should do it :)23:28
nUboon2Ageduanedesign: you mean putting the request in here is enough?  I hope i don't need to write a bug report, but i will if need be.23:30

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