aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Großjohann2003-06-17 14:05:19 +0000
committerKai Großjohann2003-06-17 14:05:19 +0000
commit41bed43cf0a6bd4501f45a277a775f13941269cd (patch)
treec6422f01315a861110a262adb43c2ad645ade831
parentea9d14432848d8985f743abe68306d535cb29031 (diff)
downloademacs-41bed43cf0a6bd4501f45a277a775f13941269cd.tar.gz
emacs-41bed43cf0a6bd4501f45a277a775f13941269cd.zip
Version 2.0.35 of Tramp released.
From Michael Albinus <Michael.Albinus@alcatel.de>: (Inline methods): Add methods `remsh' and `plink1'. (External transfer methods): Add method `remcp'. (Multi-hop Methods): Add method `remsh'. Small patch from Adrian Aichner <adrian@xemacs.org>: Fix minor typos. (Concept Index): Added to make manual searchable via `Info-index'. (Version Control): Add cindex entry.
-rw-r--r--man/ChangeLog14
-rw-r--r--man/tramp.texi44
-rw-r--r--man/trampver.texi2
3 files changed, 48 insertions, 12 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index 7a223d4882b..5cc821d9c9f 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,17 @@
12003-06-17 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net>
2
3 Version 2.0.35 of Tramp released.
4
5 * tramp.texi: From Michael Albinus <Michael.Albinus@alcatel.de>:
6 (Inline methods): Add methods `remsh' and `plink1'.
7 (External transfer methods): Add method `remcp'.
8 (Multi-hop Methods): Add method `remsh'.
9 Small patch from Adrian Aichner <adrian@xemacs.org>:
10 Fix minor typos.
11 (Concept Index): Added to make manual searchable via
12 `Info-index'.
13 (Version Control): Add cindex entry.
14
12003-06-04 Richard M. Stallman <rms@gnu.org> 152003-06-04 Richard M. Stallman <rms@gnu.org>
2 16
3 * programs.texi (Expressions): Delete C-M-DEL. 17 * programs.texi (Expressions): Delete C-M-DEL.
diff --git a/man/tramp.texi b/man/tramp.texi
index 1b4050bc8ea..49e10c9e581 100644
--- a/man/tramp.texi
+++ b/man/tramp.texi
@@ -17,13 +17,6 @@
17 17
18@include trampver.texi 18@include trampver.texi
19 19
20@c Entries for @command{install-info} to use
21@dircategory Emacs
22@direntry
23* TRAMP: (tramp). Transparent Remote Access, Multiple Protocol
24 Emacs remote file access via rsh and rcp.
25@end direntry
26
27@c Macro to make formatting of the tramp program name consistent. 20@c Macro to make formatting of the tramp program name consistent.
28@macro tramp 21@macro tramp
29@sc{tramp} 22@sc{tramp}
@@ -60,6 +53,13 @@ license to the document, as described in section 6 of the license.
60@end quotation 53@end quotation
61@end copying 54@end copying
62 55
56@c Entries for @command{install-info} to use
57@dircategory Emacs
58@direntry
59* TRAMP: (tramp). Transparent Remote Access, Multiple Protocol
60 Emacs remote file access via rsh and rcp.
61@end direntry
62
63@tex 63@tex
64 64
65@titlepage 65@titlepage
@@ -137,6 +137,7 @@ For the end user:
137* Usage:: An overview of the operation of @tramp{}. 137* Usage:: An overview of the operation of @tramp{}.
138* Bug Reports:: Reporting Bugs and Problems. 138* Bug Reports:: Reporting Bugs and Problems.
139* Frequently Asked Questions:: Questions and answers from the mailing list. 139* Frequently Asked Questions:: Questions and answers from the mailing list.
140* Concept Index:: An item for each concept
140 141
141For the developer: 142For the developer:
142 143
@@ -569,6 +570,10 @@ apply it for encoding and decoding.
569Connect to the remote host with @command{rsh}. Due to the unsecure 570Connect to the remote host with @command{rsh}. Due to the unsecure
570connection it is recommended for very local host topology only. 571connection it is recommended for very local host topology only.
571 572
573On operating systems which provide the command @command{remsh} instead
574of @command{rsh}, you can use the method @option{remsh}. This is true
575for HP-UX or Cray UNICOS, for example.
576
572 577
573@item @option{ssh} 578@item @option{ssh}
574@cindex method ssh 579@cindex method ssh
@@ -673,6 +678,10 @@ This method is mostly interesting for Windows users using the PuTTY
673implementation of SSH. It uses @samp{plink -ssh} to log in to the 678implementation of SSH. It uses @samp{plink -ssh} to log in to the
674remote host. 679remote host.
675 680
681Additionally, the method @option{plink1} is provided, which calls
682@samp{plink -1 -ssh} in order to use SSH protocol version 1
683explicitely.
684
676CCC: Do we have to connect to the remote host once from the command 685CCC: Do we have to connect to the remote host once from the command
677line to accept the SSH key? Maybe this can be made automatic? 686line to accept the SSH key? Maybe this can be made automatic?
678 687
@@ -722,9 +731,13 @@ look at the @command{ssh} based inline methods.
722@cindex rsh (with rcp method) 731@cindex rsh (with rcp method)
723 732
724This method uses the @command{rsh} and @command{rcp} commands to connect 733This method uses the @command{rsh} and @command{rcp} commands to connect
725to the remote machine and transfer files. This is probably the fastest 734to the remote machine and transfer files. This is probably the fastest
726connection method available. 735connection method available.
727 736
737The alternative method @option{remcp} uses the @command{remsh} and
738@command{rcp} commands. It should be applied on machines where
739@command{remsh} is used instead of @command{rsh}.
740
728 741
729@item @option{scp} --- @command{ssh} and @command{scp} 742@item @option{scp} --- @command{ssh} and @command{scp}
730@cindex method scp 743@cindex method scp
@@ -897,7 +910,7 @@ The @option{smb} method supports the @samp{-p} hack.
897@strong{Please note:} If Emacs runs locally under MS Windows, this 910@strong{Please note:} If Emacs runs locally under MS Windows, this
898method isn't available. Instead of, you can use UNC file names like 911method isn't available. Instead of, you can use UNC file names like
899@file{//melancholia/daniel$$/.emacs}. The only disadvantage is that 912@file{//melancholia/daniel$$/.emacs}. The only disadvantage is that
900there's no possiblity to specify another user name. 913there's no possibility to specify another user name.
901 914
902@end table 915@end table
903 916
@@ -940,6 +953,10 @@ user is queried for the password.
940This uses @command{rsh} to connect to the host. You do not need to 953This uses @command{rsh} to connect to the host. You do not need to
941enter a password unless @command{rsh} explicitly asks for it. 954enter a password unless @command{rsh} explicitly asks for it.
942 955
956The variant @option{remsh} uses the @command{remsh} command. It
957should be applied on machines where @command{remsh} is used instead of
958@command{rsh}.
959
943@item ssh 960@item ssh
944@cindex hop method ssh 961@cindex hop method ssh
945@cindex ssh hop method 962@cindex ssh hop method
@@ -1125,7 +1142,7 @@ in such files, it can return host names only.
1125@item @code{tramp-parse-sconfig} 1142@item @code{tramp-parse-sconfig}
1126@findex tramp-parse-shosts 1143@findex tramp-parse-shosts
1127 1144
1128This function returns the host nicnames defined by @code{Host} entries 1145This function returns the host nicknames defined by @code{Host} entries
1129in @file{~/.ssh/config} style files. 1146in @file{~/.ssh/config} style files.
1130 1147
1131@item @code{tramp-parse-hosts} 1148@item @code{tramp-parse-hosts}
@@ -1823,6 +1840,7 @@ documentation of @code{tramp-chunksize}.
1823@c For the developer 1840@c For the developer
1824@node Version Control 1841@node Version Control
1825@chapter The inner workings of remote version control 1842@chapter The inner workings of remote version control
1843@cindex Version Control
1826 1844
1827Unlike @value{ftp-package-name}, @tramp{} has full shell access to the 1845Unlike @value{ftp-package-name}, @tramp{} has full shell access to the
1828remote machine. This makes it possible to provide version control for 1846remote machine. This makes it possible to provide version control for
@@ -2034,7 +2052,11 @@ would have to be installed from the start, too.
2034 2052
2035@end itemize 2053@end itemize
2036 2054
2037 2055@node Concept Index
2056@comment node-name, next, previous, up
2057@unnumbered Concept Index
2058@printindex cp
2059@contents
2038@c End of tramp.texi - the TRAMP User Manual 2060@c End of tramp.texi - the TRAMP User Manual
2039@bye 2061@bye
2040 2062
diff --git a/man/trampver.texi b/man/trampver.texi
index cad985da96e..8db1e07f1a0 100644
--- a/man/trampver.texi
+++ b/man/trampver.texi
@@ -5,7 +5,7 @@
5@c configure.ac, so you should edit that file and run 5@c configure.ac, so you should edit that file and run
6@c "autoconf && ./configure" to change the version number. 6@c "autoconf && ./configure" to change the version number.
7@macro trampver{} 7@macro trampver{}
82.0.34 82.0.35
9@end macro 9@end macro
10 10
11@c Other flags from configuration 11@c Other flags from configuration