Re: [9fans] Plan 9 hg with private repositories

2010-05-21 Thread Federico G. Benavento
I gave you the work around 2 months ago... the python code is broken, their default doesn't default... echo 'getpass = default_getpass' /sys/lib/python/getpass.py Ow, that hurt, did it not? Basically, it found getpass, did not find termios, then went looking for some MS VC runtime. Yuck.

Re: [9fans] Plan 9 hg with private repositories

2010-05-21 Thread John Floren
On Fri, May 21, 2010 at 1:08 AM, ron minnich rminn...@gmail.com wrote: On Tue, Aug 11, 2009 at 4:37 PM, John Floren slawmas...@gmail.com wrote: Hi So I'm trying to clone a private repository I just created on bitbucket. This is what I see: jerq% hg clone

Re: [9fans] Plan 9 hg with private repositories

2010-05-21 Thread ron minnich
On Fri, May 21, 2010 at 6:10 AM, Federico G. Benavento benave...@gmail.com wrote: I gave you the work around 2 months ago... the python code is broken, their default doesn't default... echo 'getpass = default_getpass' /sys/lib/python/getpass.py Yep, I confess: I forgot. I was more trying to

Re: [9fans] Plan 9 hg with private repositories

2010-05-20 Thread ron minnich
On Tue, Aug 11, 2009 at 4:37 PM, John Floren slawmas...@gmail.com wrote: Hi So I'm trying to clone a private repository I just created on bitbucket. This is what I see: jerq% hg clone https://username@bitbucket.org/username/repo/ destination directory: repo http authorization required

Re: [9fans] Plan 9 hg with private repositories

2010-05-20 Thread erik quanstrom
Wow, GRRoss. Anyway, that is why you get that utterly useless error message: because you're not unix. It just tells you that the error is that you are not windows. Clear? fixing replica can't be that awful, can it? - erik

Re: [9fans] Plan 9 hg with private repositories

2009-08-15 Thread Steve Simon
re: /etc/ssh/sshd_config on unix to support sshv1 see: http://plan9.bell-labs.com/wiki/plan9/Connecting_to_other_OSes/index.html -Steve

Re: [9fans] Plan 9 hg with private repositories

2009-08-13 Thread Bela Valek
Presumably this is because ssh is sshv1 but bitbucket requires sshv2. Russ Correct me if I am wrong, but an sshv2 server is also providing sshv1 too. Maybe when the Plan 9 ssh client is facing sshv2, instead of shutting down with an error, it should try sshv1, or wait until its offered, i

Re: [9fans] Plan 9 hg with private repositories

2009-08-13 Thread Ethan Grammatikidis
On Thu, 13 Aug 2009 11:13:58 +0200 Bela Valek bval...@gmail.com wrote: Correct me if I am wrong, but an sshv2 server is also providing sshv1 too. I vaguely remember reading that some ssh software would refuse to work with ssh v1 by default because v1 is so insecure. -- Ethan Grammatikidis

Re: [9fans] Plan 9 hg with private repositories

2009-08-13 Thread Adrian Tritschler
2009/8/13 Bela Valek bval...@gmail.com: Presumably this is because ssh is sshv1 but bitbucket requires sshv2. Russ Correct me if I am wrong, but an sshv2 server is also providing sshv1 too. Maybe when the Plan 9 ssh client is facing sshv2, instead of shutting down with an error, it

Re: [9fans] Plan 9 hg with private repositories

2009-08-13 Thread David Leimbach
On Thu, Aug 13, 2009 at 2:47 AM, Ethan Grammatikidis eeke...@fastmail.fmwrote: On Thu, 13 Aug 2009 11:13:58 +0200 Bela Valek bval...@gmail.com wrote: Correct me if I am wrong, but an sshv2 server is also providing sshv1 too. I vaguely remember reading that some ssh software would refuse

Re: [9fans] Plan 9 hg with private repositories

2009-08-13 Thread Devon H. O'Dell
2009/8/13 David Leimbach leim...@gmail.com: On Thu, Aug 13, 2009 at 2:47 AM, Ethan Grammatikidis eeke...@fastmail.fm wrote: On Thu, 13 Aug 2009 11:13:58 +0200 Bela Valek bval...@gmail.com wrote: Correct me if I am wrong, but an sshv2 server is also providing sshv1 too. I vaguely

Re: [9fans] Plan 9 hg with private repositories

2009-08-13 Thread erik quanstrom
i found where the 0x20 came from. it should be 20, not 0x20. anway, it comes from ahci:/^mkalist. l-flags specifies that the fis is 0x5 dwords = 20 bytes. either i missed the explaination in the ahci docs about why this is or it's a bit magic. - erik

[9fans] Plan 9 hg with private repositories

2009-08-11 Thread John Floren
Hi So I'm trying to clone a private repository I just created on bitbucket. This is what I see: jerq% hg clone https://username@bitbucket.org/username/repo/ destination directory: repo http authorization required realm: Bitbucket.org HTTP user: username abort: could not import module msvcrt! If

Re: [9fans] Plan 9 hg with private repositories

2009-08-11 Thread Russ Cox
On Tue, Aug 11, 2009 at 9:37 AM, John Florenslawmas...@gmail.com wrote: Hi So I'm trying to clone a private repository I just created on bitbucket. This is what I see: jerq% hg clone https://username@bitbucket.org/username/repo/ destination directory: repo http authorization required

Re: [9fans] Plan 9 hg with private repositories

2009-08-11 Thread John Floren
On Tue, Aug 11, 2009 at 9:37 AM, John Florenslawmas...@gmail.com wrote: Hi So I'm trying to clone a private repository I just created on bitbucket. This is what I see: jerq% hg clone https://username@bitbucket.org/username/repo/ destination directory: repo http authorization required

Re: [9fans] Plan 9 hg with private repositories

2009-08-11 Thread Jeff Sickel
By the way, I realized that hg on Windows file systems does not like the following files: bin/ bin/ Clone/pull work fine. You just can't successfully update to actually get the bits into a working system. -jas On Aug 11, 2009, at 12:52 PM, Russ Cox r...@swtch.com wrote: On Tue,

Re: [9fans] Plan 9 hg with private repositories

2009-08-11 Thread John Floren
On Tue, Aug 11, 2009 at 10:52 AM, Russ Coxr...@swtch.com wrote: On Tue, Aug 11, 2009 at 9:37 AM, John Florenslawmas...@gmail.com wrote: Hi So I'm trying to clone a private repository I just created on bitbucket. This is what I see: jerq% hg clone