plink and tramp-2.0.2.1: more progress

2001-03-01 Thread Tom_Roche
[EMAIL PROTECTED] 02 Mar 2001 00:42:31 +0100 > the stable version is on the ftp server. OK, got that, put it in tramp-2.0.2.1-HACKED, updated _emacs, and hacked tramp::HACKED-tramp-open-connection-rsh (which is called by my tramp-methods). I also commented out 'set prompt' in .mycshrc and comment

Re: plink and tramp-2.0.2.1: more progress

2001-03-01 Thread Tom_Roche
<[EMAIL PROTECTED]> Thu, 01 Mar 2001 19:41:44 -0500 > *debug tramp/t [EMAIL PROTECTED]* (minus banner, broken for mail) > # Opening connection for [EMAIL PROTECTED] using t... > # Waiting 60s for shell or passwd prompt from ssh.ncsu.edu > You have 118 messages (596101 bytes) on uni00map.unity.ncsu

Re: plink and tramp-2.0.2.1: more progress

2001-03-02 Thread Kai Großjohann
On Thu, 01 Mar 2001, Tom Roche wrote: >> Setting shell prompt > > *tramp/t [EMAIL PROTECTED]* >> PS1=' > >> Unmatched '. This looks like a csh error message. Very early on, Tramp sends "exec /bin/sh" to the remote host, so it should be talking to a Bourne-ish shell from then on. Can you find

Re: plink and tramp-2.0.2.1: more progress

2001-03-02 Thread Tom_Roche
On Thu, 01 Mar 2001, Tom Roche wrote: >> *debug tramp/t [EMAIL PROTECTED]* >>> # Opening connection for [EMAIL PROTECTED] using t... >>> # Waiting 60s for shell or passwd prompt from ssh.ncsu.edu >>> You have 118 messages (596101 bytes) on uni00map.unity.ncsu.edu >>> Volume Name

Re: plink and tramp-2.0.2.1: more progress

2001-03-02 Thread Kai Großjohann
Yes, the default shell prompt matches your banner, because the banner contains `%' characters. As to the other problem, please try the following patch. I haven't tested it, though. kai -- Be indiscrete. Do it continuously. Index: tramp/lisp/tramp.el ==

Re: plink and tramp-2.0.2.1: more progress

2001-03-02 Thread Tom_Roche
[EMAIL PROTECTED] Fri, 02 Mar 2001 18:05:29 -0500 >> Now tramp hangs at >>> Starting remote shell `/bin/ksh' for tilde expansion... >> *debug tramp/t [EMAIL PROTECTED]* >>> $ while read d; do if test -x $d/ksh -a -f $d/ksh; >>> then echo $d/ksh; break; fi; done <<'EOF' >>> $ /bin >>> $ /usr/bi

Re: plink and tramp-2.0.2.1: more progress

2001-03-03 Thread Kai Großjohann
Your method specifies neither encoding/decoding command/function, nor rcp-command. You must specify exactly one of those. Inline methods specify encoding and decoding commands (and optionally encoding and decoding functions), out-of-band methods specify rcp command. Does this help? kai -- Be

loads but won't save? was: plink and tramp-2.0.2.1: more progress

2001-03-03 Thread Tom_Roche
[EMAIL PROTECTED] 03 Mar 2001 12:27:10 +0100 > Your method specifies neither encoding/decoding command/function, > nor rcp-command. You must specify exactly one of those. Doh! And you had mentioned that earlier. Anyway, I now have in _emacs (setq tramp-methods (append (list '("t" ; b

Re: loads but won't save? was: plink and tramp-2.0.2.1: more progress

2001-03-04 Thread Kai Großjohann
On Sat, 03 Mar 2001, Tom Roche wrote: > When I try to _save_ the buffer, I get the error > >> Method `t' didn't specify tramp args > > which appears to be caused by tramp's desire to call > tramp-rcp-program in order to save the backup file > > /r@t:[EMAIL PROTECTED]:/ncsu/tlroche/.emacs~ > >

Re: loads but won't save? was: plink and tramp-2.0.2.1: more progress

2001-03-04 Thread Daniel Pittman
On 04 Mar 2001, Kai Großjohann wrote: [...] > Tramp is quite anal about having all kinds of method parameters. > Don't let any of them default to anything. Specify them all. So just > add (tramp-rcp-args nil) into the method spec, and you should be all > set. Look at the other methods so you'

Re: loads but won't save? was: plink and tramp-2.0.2.1: more progress

2001-03-04 Thread Kai Großjohann
On 04 Mar 2001, Daniel Pittman wrote: > By default, I want this to have as much automatic configuration as > possible. So, my plan is that, by default, the method for encoding > and decoding files on the remote machine will be auto-detected. That's a good idea. But I think you might not be able

Re: loads but won't save? was: plink and tramp-2.0.2.1: more progress

2001-03-04 Thread Daniel Pittman
On 04 Mar 2001, Kai Großjohann wrote: > On 04 Mar 2001, Daniel Pittman wrote: > >> By default, I want this to have as much automatic configuration as >> possible. So, my plan is that, by default, the method for encoding >> and decoding files on the remote machine will be auto-detected. > > That'