diff options
| author | Kai Großjohann | 2002-07-21 13:49:06 +0000 |
|---|---|---|
| committer | Kai Großjohann | 2002-07-21 13:49:06 +0000 |
| commit | 90dc758dc0e1d2f8c5d204366c280d5c29f43aa3 (patch) | |
| tree | d2e310ae193dc48dd1fcd2934f57c2f3e1c5b1aa /man | |
| parent | 905fe32703e3124afca2a2a42e41291d3ba6cad0 (diff) | |
| download | emacs-90dc758dc0e1d2f8c5d204366c280d5c29f43aa3.tar.gz emacs-90dc758dc0e1d2f8c5d204366c280d5c29f43aa3.zip | |
Bump version to 2.0.2.
(tramp-methods): Rename methods invoking "ssh1" or "ssh2" to
longer names. Use old names "sm1", "sm2" and so on for methods
invoking "ssh -1" or "ssh -2".
(tramp-multi-file-name-structure-separate): Typo, its name was set
to "tramp-file-name-structure-separate". Trivial patch. From
Steve Youngs <youngs@xemacs.org>.
(tramp-multi-sh-program): New variable.
(tramp-open-connection-multi): Use it. Now you can use multi
methods from Windows (at least in principle).
(tramp-do-copy-or-rename-via-buffer): New function.
(tramp-do-copy-or-rename-file): Use it. Change and simplify
logic. Omit special case of invoking rcp directly to copy the
files.
(tramp-open-connection-su, tramp-multi-connect-telnet)
(tramp-multi-connect-rlogin, tramp-multi-connect-su)
(tramp-make-tramp-file-name, tramp-make-tramp-multi-file-name):
Use backticks in format-spec for brevity and to avoid
character/number confusion in XEmacs.
Diffstat (limited to 'man')
| -rw-r--r-- | man/tramp.texi | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/man/tramp.texi b/man/tramp.texi index d27f6c942cf..5b764386eab 100644 --- a/man/tramp.texi +++ b/man/tramp.texi | |||
| @@ -632,9 +632,16 @@ transfer files between the machines. | |||
| 632 | This is identical to the previous option except that the @command{ssh} | 632 | This is identical to the previous option except that the @command{ssh} |
| 633 | package is used, making the connection more secure. | 633 | package is used, making the connection more secure. |
| 634 | 634 | ||
| 635 | There are also two variants, @option{sm1} and @option{sm2} that use the | 635 | There are also two variants, @option{sm1} and @option{sm2}, that call |
| 636 | @command{ssh1} and @command{ssh2} commands explicitly. If you don't know | 636 | @samp{ssh -1} and @samp{ssh -2}, respectively. This way, you can |
| 637 | what these are, you do not need these options. | 637 | explicitly select whether you want to use the SSH protocol version 1 |
| 638 | or 2 to connect to the remote host. (You can also specify in | ||
| 639 | @file{~/.ssh/config}, the SSH configuration file, which protocol | ||
| 640 | should be used, and use the regular @option{sm} method.) | ||
| 641 | |||
| 642 | There are also two variants, @option{sm-ssh1} and @option{sm-ssh2} | ||
| 643 | that use the @command{ssh1} and @command{ssh2} commands explicitly. If | ||
| 644 | you don't know what these are, you do not need these options. | ||
| 638 | 645 | ||
| 639 | All the methods based on @command{ssh} have an additional kludgy | 646 | All the methods based on @command{ssh} have an additional kludgy |
| 640 | feature: you can specify a host name which looks like @file{host#42} | 647 | feature: you can specify a host name which looks like @file{host#42} |
| @@ -683,7 +690,8 @@ between the machines. | |||
| 683 | 690 | ||
| 684 | As with the @command{ssh} and base64 option (@option{sm}) above, this | 691 | As with the @command{ssh} and base64 option (@option{sm}) above, this |
| 685 | provides the @option{su1} and @option{su2} methods to explicitly | 692 | provides the @option{su1} and @option{su2} methods to explicitly |
| 686 | select an ssh version. | 693 | select an SSH protocol version, and the @option{su-ssh1} and |
| 694 | @option{su-ssh2} variants to call specific SSH binaries. | ||
| 687 | 695 | ||
| 688 | Note that this method does not invoke the @command{su} program, see | 696 | Note that this method does not invoke the @command{su} program, see |
| 689 | below for methods which use that. | 697 | below for methods which use that. |