]> git.eshelyaron.com Git - emacs.git/commitdiff
username and password default
authorVinicius Jose Latorre <viniciusjl@ig.com.br>
Thu, 9 Aug 2007 01:42:13 +0000 (01:42 +0000)
committerVinicius Jose Latorre <viniciusjl@ig.com.br>
Thu, 9 Aug 2007 01:42:13 +0000 (01:42 +0000)
lisp/ChangeLog
lisp/url/url-auth.el

index 3491f9f5df725a43924fb4e3a24398f51d14f9e8..783281b30121e5dfe437c33dbfab07527dd4b627 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-09  Edward O'Connor  <hober0@gmail.com> (tiny change)
+
+        * url/url-auth.el (url-basic-auth): When prompting for username
+          and password, default to the username and password in the URL.
+
 2007-08-08  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
 
        * ps-print.el (ps-default-fg, ps-default-bg): Docstring fix.
index c57a96cc81b896a6c7aba425c2871f8f15d20fdc..45b78e51f9091e5e1070b49eadcbd4a4601a4d59 100644 (file)
@@ -68,7 +68,9 @@ instead of the pathname inheritance method."
         (server (url-host href))
         (port (url-port href))
         (path (url-filename href))
-        user pass byserv retval data)
+        (user (url-user href))
+        (pass (url-password href))
+        byserv retval data)
     (setq server (format "%s:%d" server port)
          path (cond
                (realm realm)
@@ -79,8 +81,8 @@ instead of the pathname inheritance method."
     (cond
      ((and prompt (not byserv))
       (setq user (read-string (url-auth-user-prompt url realm)
-                             (user-real-login-name))
-           pass (read-passwd "Password: "))
+                             (or user (user-real-login-name)))
+           pass (read-passwd "Password: " nil (or pass "")))
       (set url-basic-auth-storage
           (cons (list server
                       (cons path