]> git.eshelyaron.com Git - emacs.git/commitdiff
Version 2.0.10 released.
authorKai Großjohann <kgrossjo@eu.uu.net>
Sun, 4 Aug 2002 13:58:44 +0000 (13:58 +0000)
committerKai Großjohann <kgrossjo@eu.uu.net>
Sun, 4 Aug 2002 13:58:44 +0000 (13:58 +0000)
(tramp-uudecode): New shell function `tramp_uudecode' to decode to
standard output even if `uudecode -p' and `uudecode -o -' don't
work.
(tramp-post-connection): After finding the right shell, wait a
bit.  This is a kludge to avoid a race condition, even though I
don't understand why there is a race condition in the first place.
(tramp-post-connection): Install the `tramp_uudecode' shell
function on the remote host.
(tramp-coding-commands): Add an alternative for `tramp_uudecode'.
(tramp-bug): Include more variables in the report.

lisp/ChangeLog
lisp/net/tramp.el

index cf514054d1dcb1eedf114f10e90b42c3f09393df..d15a5a7901d09f3bffd252c828456a06bc047be1 100644 (file)
@@ -1,3 +1,33 @@
+2002-08-04  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
+
+       * net/tramp.el: Version 2.0.10 released.
+       (tramp-uudecode): New shell function `tramp_uudecode' to decode to
+       standard output even if `uudecode -p' and `uudecode -o -' don't
+       work.
+       (tramp-post-connection): After finding the right shell, wait a
+       bit.  This is a kludge to avoid a race condition, even though I
+       don't understand why there is a race condition in the first place.
+       (tramp-post-connection): Install the `tramp_uudecode' shell
+       function on the remote host.
+       (tramp-coding-commands): Add an alternative for `tramp_uudecode'.
+       (tramp-bug): Include more variables in the report.
+
+2002-08-04  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
+
+       * net/tramp.el: Version 2.0.9 released.
+       (tramp-bug): Add wording about additional info to include in bug
+       report.
+       (tramp-find-shell): Set $PS1 for invocation of second shell (for
+       tilde expansion).
+       (tramp-find-shell): Shell prompt must match at end of buffer.  Do
+       this also for fallback shell prompt.
+       (tramp-find-shell): More debugging output.
+       (tramp-find-inline-encoding): When checking the decoding command,
+       some commands fail when reading from /dev/null.  So we pass a
+       known string through the encoding command and pass that through
+       the decoding command.  So we know whether the decoding command can
+       deal with some real input.
+
 2002-08-04  Andreas Schwab  <schwab@suse.de>
 
        * net/tramp.el (tramp-perl-encode, tramp-perl-decode): Doc fix.
index e3a4ebae9c1747374ba31ac280bb32d6788191c5..d9ecc6ec4b85eed85d5ec19d8123a8c005790c28 100644 (file)
@@ -72,7 +72,7 @@
 ;; In the Tramp CVS repository, the version numer is auto-frobbed from
 ;; the Makefile, so you should edit the top-level Makefile to change
 ;; the version number.
-(defconst tramp-version "2.0.9"
+(defconst tramp-version "2.0.10"
   "This version of tramp.")
 
 (defconst tramp-bug-report-address "tramp-devel@mail.freesoftware.fsf.org"
@@ -1202,9 +1202,20 @@ upon opening the connection.")
 This variable is automatically made buffer-local to each rsh process buffer
 upon opening the connection.")
 
-;; Perl script to implement `file-attributes' in a Lisp `read'able output.
-;; If you are hacking on this, note that you get *no* output unless this
-;; spits out a complete line, including the '\n' at the end.
+(defconst tramp-uudecode "\
+tramp_uudecode () {
+\(echo begin 600 /tmp/tramp.$$; tail +2) | uudecode
+cat /tmp/tramp.$$
+rm -f /tmp/tramp.$$
+}"
+  "Shell function to implement `uudecode' to standard output.
+Many systems support `uudecode -o -' for this or `uudecode -p', but
+some systems don't, and for them we have this shell function.")
+
+;; Perl script to implement `file-attributes' in a Lisp `read'able
+;; output.  If you are hacking on this, note that you get *no* output
+;; unless this spits out a complete line, including the '\n' at the
+;; end.
 (defconst tramp-perl-file-attributes (concat
  "$f = $ARGV[0];
 @s = lstat($f);
@@ -4432,8 +4443,6 @@ locale to C and sets up the remote shell search path."
   ;; with buggy /bin/sh implementations will have a working bash or
   ;; ksh.  Whee...
   (tramp-find-shell multi-method method user host)
-  (tramp-find-file-exists-command multi-method method user host)
-  (sit-for 1)
   ;; Without (sit-for 0.1) at least, my machine will almost always blow
   ;; up on 'not numberp /root' - a race that causes the 'echo ~root'
   ;; output of (tramp-find-shell) to show up along with the output of
@@ -4446,6 +4455,8 @@ locale to C and sets up the remote shell search path."
   ;; of that function though. The workaround stays for me at least. :/
   ;;
   ;; Daniel Pittman <daniel@danann.net>
+  (sleep-for 1)
+  (tramp-find-file-exists-command multi-method method user host)
   (make-local-variable 'tramp-ls-command)
   (setq tramp-ls-command (tramp-find-ls-command multi-method method user host))
   (unless tramp-ls-command
@@ -4500,15 +4511,20 @@ locale to C and sets up the remote shell search path."
              "test -n \"`find $1 -prune -newer $2 -print`\"" tramp-rsh-end-of-line
              "}")))
   (tramp-wait-for-output)
+  ;; Send the fallback `uudecode' script.
+  (erase-buffer)
+  (tramp-send-linewise multi-method method user host tramp-uudecode)
+  (tramp-wait-for-output)
   ;; Find a `perl'.
   (erase-buffer)
   (let ((tramp-remote-perl
         (or (tramp-find-executable multi-method method user host
-                                 "perl5" tramp-remote-path nil)
+                                   "perl5" tramp-remote-path nil)
             (tramp-find-executable multi-method method user host
-                                 "perl" tramp-remote-path nil))))
+                                   "perl" tramp-remote-path nil))))
     (when tramp-remote-perl
-      (tramp-set-connection-property "perl" tramp-remote-perl multi-method method user host)
+      (tramp-set-connection-property "perl" tramp-remote-perl
+                                    multi-method method user host)
       ;; Set up stat in Perl if we can.
       (when tramp-remote-perl
        (tramp-message 5 "Sending the Perl `file-attributes' implementation.")
@@ -4601,6 +4617,8 @@ locale to C and sets up the remote shell search path."
      nil uudecode-decode-region)
     ("uuencode xxx" "uudecode -p"
      nil uudecode-decode-region)
+    ("uuencode xxx" "tramp_uudecode"
+     nil uudecode-decode-region)
     ("tramp_encode_with_module" "tramp_decode_with_module"
      base64-encode-region base64-decode-region)
     ("tramp_encode" "tramp_decode"
@@ -5630,6 +5648,7 @@ Only works for Bourne-like shells."
        tramp-login-prompt-regexp
        tramp-password-prompt-regexp
        tramp-wrong-passwd-regexp
+       tramp-yesno-prompt-regexp
        tramp-temp-name-prefix
        tramp-file-name-structure
        tramp-file-name-regexp
@@ -5639,6 +5658,9 @@ Only works for Bourne-like shells."
        tramp-multi-connection-function-alist
        tramp-make-tramp-file-format
        tramp-end-of-output
+       tramp-coding-commands
+       tramp-actions-before-shell
+       tramp-multi-actions
 
        ;; Non-tramp variables of interest
        shell-prompt-pattern
@@ -5664,7 +5686,8 @@ the ~/.emacs file and to repeat the bug.  Then, include the contents
 of the *tramp/foo* buffer and the *debug tramp/foo* buffer in your bug
 report.
 
---bug report follows this line--")))
+--bug report follows this line--
+")))
 
 (defalias 'tramp-submit-bug 'tramp-bug)