diff options
| author | Kai Großjohann | 2002-07-30 20:24:27 +0000 |
|---|---|---|
| committer | Kai Großjohann | 2002-07-30 20:24:27 +0000 |
| commit | ac474af158838341ece00dd620f79a7e7cce283d (patch) | |
| tree | 1a497274b9ba8cf08b7111a546495def31bd9100 /lisp/ChangeLog | |
| parent | 575698d4a58d13af0ad8d058cacdc5241771751f (diff) | |
| download | emacs-ac474af158838341ece00dd620f79a7e7cce283d.tar.gz emacs-ac474af158838341ece00dd620f79a7e7cce283d.zip | |
New version 2.0.5.
(tramp-methods): Remove inline encoding method parameters. The
encoding is now autodetected. Also shorten the list of
methods (u/m distinction gone) and rename the remaining methods to
have longer, but more mnemonic, names.
(tramp-login-prompt-regexp, tramp-password-prompt-regexp)
(tramp-wrong-passwd-regexp): Trailing `$' not needed, regexp is
matched at end of buffer anyway.
(tramp-yesno-prompt-regexp): New variable, for questions where the
user should say "yes" or "no".
(tramp-file-name-structure-unified)
(tramp-file-name-structure-separate): Allow dash in method names.
(tramp-actions-before-shell): New variable, contains list of
pattern/action pairs. Output sent by remote end is scanned for
the patterns, then the actions are executed.
(tramp-multi-actions): Like `tramp-actions-before-shell', but
executed for each hop in a multi-hop connection.
(tramp-last-cmd-time): New variable. If nothing has been sent to
remote end for 60 seconds, look to see if the remote end is still
alive.
(tramp-perl-mime-encode, tramp-perl-mime-decode): Remove. It
didn't work.
(tramp-perl-encode, tramp-perl-decode): New variables, these
require the MIME::Base64 module on the remote end.
(tramp-handle-file-attributes): Restructure logic.
(tramp-handle-file-attributes-with-ls)
(tramp-handle-file-attributes-with-perl): More debugging.
(tramp-handle-directory-files): Grok fifth arg `files-only' for
XEmacs.
(tramp-handle-make-directory, tramp-handle-delete-directory)
(tramp-handle-delete-file, tramp-handle-insert-directory): Expand
file name.
(tramp-handle-shell-command): Use `when', not `if'.
(tramp-handle-file-local-copy, tramp-handle-write-region): Adapt
to autodetection of inline encoding.
(tramp-invoke-ange-ftp): Require ange-ftp to make sure that
variable ange-ftp-name-format is defined before binding it.
(tramp-action-login, tramp-action-password, tramp-action-succeed)
(tramp-action-permission-denied, tramp-action-yesno): Functions
called from `tramp-actions-before-shell'.
(tramp-multi-action-login, tramp-multi-action-password)
(tramp-multi-action-succeed)
(tramp-multi-action-permission-denied): Functions called from
`tramp-multi-actions'.
(tramp-process-one-action, tramp-process-actions): Pattern
matching and action invocation code for
`tramp-actions-before-shell'.
(tramp-process-one-multi-action, tramp-process-multi-actions):
Same for `tramp-multi-actions'.
(tramp-open-connection-telnet, tramp-open-connection-rsh)
(tramp-open-connection-su): Process actions instead of hardwired
logic.
(tramp-multi-connect-telnet, tramp-multi-connect-rlogin)
(tramp-multi-connect-su): Ditto.
(tramp-post-connection): New method for tramp_encode and
tramp_decode scripts.
(tramp-post-connection): Invoke inline autodetection code.
(tramp-coding-commands): List of inline codings.
(tramp-find-inline-encoding): This is the inline autodetection
code.
(tramp-maybe-open-connection): If nothing was sent to connection
for 60 seconds, look if it connection is still alive.
(tramp-send-command): Remember that something was sent to the
connection.
(tramp-make-tramp-file-name, tramp-make-tramp-multi-file-name):
Use backticks for constructing alist.
(tramp-get-encoding-command, tramp-set-encoding-command)
(tramp-get-decoding-command, tramp-set-decoding-command)
(tramp-get-encoding-function, tramp-set-encoding-function)
(tramp-get-decoding-function, tramp-set-decoding-function): Use
for results of inline autodetection.
(tramp-get-encoding-command, tramp-get-decoding-command)
(tramp-get-encoding-function, tramp-get-decoding-function):
Remove these old functions.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 61378cf2c09..cd8e2dfad30 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,80 @@ | |||
| 1 | 2002-07-30 Kai Gro,b_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> | ||
| 2 | |||
| 3 | * net/tramp.el: New version 2.0.5. | ||
| 4 | (tramp-methods): Remove inline encoding method parameters. The | ||
| 5 | encoding is now autodetected. Also shorten the list of | ||
| 6 | methods (u/m distinction gone) and rename the remaining methods to | ||
| 7 | have longer, but more mnemonic, names. | ||
| 8 | (tramp-login-prompt-regexp, tramp-password-prompt-regexp) | ||
| 9 | (tramp-wrong-passwd-regexp): Trailing `$' not needed, regexp is | ||
| 10 | matched at end of buffer anyway. | ||
| 11 | (tramp-yesno-prompt-regexp): New variable, for questions where the | ||
| 12 | user should say "yes" or "no". | ||
| 13 | (tramp-file-name-structure-unified) | ||
| 14 | (tramp-file-name-structure-separate): Allow dash in method names. | ||
| 15 | (tramp-actions-before-shell): New variable, contains list of | ||
| 16 | pattern/action pairs. Output sent by remote end is scanned for | ||
| 17 | the patterns, then the actions are executed. | ||
| 18 | (tramp-multi-actions): Like `tramp-actions-before-shell', but | ||
| 19 | executed for each hop in a multi-hop connection. | ||
| 20 | (tramp-last-cmd-time): New variable. If nothing has been sent to | ||
| 21 | remote end for 60 seconds, look to see if the remote end is still | ||
| 22 | alive. | ||
| 23 | (tramp-perl-mime-encode, tramp-perl-mime-decode): Remove. It | ||
| 24 | didn't work. | ||
| 25 | (tramp-perl-encode, tramp-perl-decode): New variables, these | ||
| 26 | require the MIME::Base64 module on the remote end. | ||
| 27 | (tramp-handle-file-attributes): Restructure logic. | ||
| 28 | (tramp-handle-file-attributes-with-ls) | ||
| 29 | (tramp-handle-file-attributes-with-perl): More debugging. | ||
| 30 | (tramp-handle-directory-files): Grok fifth arg `files-only' for | ||
| 31 | XEmacs. | ||
| 32 | (tramp-handle-make-directory, tramp-handle-delete-directory) | ||
| 33 | (tramp-handle-delete-file, tramp-handle-insert-directory): Expand | ||
| 34 | file name. | ||
| 35 | (tramp-handle-shell-command): Use `when', not `if'. | ||
| 36 | (tramp-handle-file-local-copy, tramp-handle-write-region): Adapt | ||
| 37 | to autodetection of inline encoding. | ||
| 38 | (tramp-invoke-ange-ftp): Require ange-ftp to make sure that | ||
| 39 | variable ange-ftp-name-format is defined before binding it. | ||
| 40 | (tramp-action-login, tramp-action-password, tramp-action-succeed) | ||
| 41 | (tramp-action-permission-denied, tramp-action-yesno): Functions | ||
| 42 | called from `tramp-actions-before-shell'. | ||
| 43 | (tramp-multi-action-login, tramp-multi-action-password) | ||
| 44 | (tramp-multi-action-succeed) | ||
| 45 | (tramp-multi-action-permission-denied): Functions called from | ||
| 46 | `tramp-multi-actions'. | ||
| 47 | (tramp-process-one-action, tramp-process-actions): Pattern | ||
| 48 | matching and action invocation code for | ||
| 49 | `tramp-actions-before-shell'. | ||
| 50 | (tramp-process-one-multi-action, tramp-process-multi-actions): | ||
| 51 | Same for `tramp-multi-actions'. | ||
| 52 | (tramp-open-connection-telnet, tramp-open-connection-rsh) | ||
| 53 | (tramp-open-connection-su): Process actions instead of hardwired | ||
| 54 | logic. | ||
| 55 | (tramp-multi-connect-telnet, tramp-multi-connect-rlogin) | ||
| 56 | (tramp-multi-connect-su): Ditto. | ||
| 57 | (tramp-post-connection): New method for tramp_encode and | ||
| 58 | tramp_decode scripts. | ||
| 59 | (tramp-post-connection): Invoke inline autodetection code. | ||
| 60 | (tramp-coding-commands): List of inline codings. | ||
| 61 | (tramp-find-inline-encoding): This is the inline autodetection | ||
| 62 | code. | ||
| 63 | (tramp-maybe-open-connection): If nothing was sent to connection | ||
| 64 | for 60 seconds, look if it connection is still alive. | ||
| 65 | (tramp-send-command): Remember that something was sent to the | ||
| 66 | connection. | ||
| 67 | (tramp-make-tramp-file-name, tramp-make-tramp-multi-file-name): | ||
| 68 | Use backticks for constructing alist. | ||
| 69 | (tramp-get-encoding-command, tramp-set-encoding-command) | ||
| 70 | (tramp-get-decoding-command, tramp-set-decoding-command) | ||
| 71 | (tramp-get-encoding-function, tramp-set-encoding-function) | ||
| 72 | (tramp-get-decoding-function, tramp-set-decoding-function): Use | ||
| 73 | for results of inline autodetection. | ||
| 74 | (tramp-get-encoding-command, tramp-get-decoding-command) | ||
| 75 | (tramp-get-encoding-function, tramp-get-decoding-function): | ||
| 76 | Remove these old functions. | ||
| 77 | |||
| 1 | 2002-07-30 Kenichi Handa <handa@etl.go.jp> | 78 | 2002-07-30 Kenichi Handa <handa@etl.go.jp> |
| 2 | 79 | ||
| 3 | * language/indian.el (in-is13194): Give correct `safe-chars' property. | 80 | * language/indian.el (in-is13194): Give correct `safe-chars' property. |