diff options
| author | Glenn Morris | 2007-10-13 02:49:32 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-10-13 02:49:32 +0000 |
| commit | cbbbf7b15afb4884dbc75a535bd0572c1a38c521 (patch) | |
| tree | b7db0321137cdcef514c9db451a8639576dd4c2e | |
| parent | 40aa4c27cb7cac7ef2ff7a88c504cc2ae42da194 (diff) | |
| download | emacs-cbbbf7b15afb4884dbc75a535bd0572c1a38c521.tar.gz emacs-cbbbf7b15afb4884dbc75a535bd0572c1a38c521.zip | |
Diane Murray <disumu at x3y2z1.net>
(url-basic-auth): Set path to "/" when URL has an empty string filename.
| -rw-r--r-- | lisp/url/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/url/url-auth.el | 1 | ||||
| -rw-r--r-- | man/ChangeLog | 4 |
3 files changed, 10 insertions, 0 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index c13a4f3b7a7..34db3be57d7 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-10-12 Diane Murray <disumu@x3y2z1.net> | ||
| 2 | |||
| 3 | * url-auth.el (url-basic-auth): Set path to "/" when URL has an | ||
| 4 | empty string filename. | ||
| 5 | |||
| 1 | 2007-10-09 Richard Stallman <rms@gnu.org> | 6 | 2007-10-09 Richard Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * url-parse.el (url-type, url-user, url-password, url-host) | 8 | * url-parse.el (url-type, url-user, url-password, url-host) |
diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el index 3c33fd914e5..b2de802cbad 100644 --- a/lisp/url/url-auth.el +++ b/lisp/url/url-auth.el | |||
| @@ -74,6 +74,7 @@ instead of the pathname inheritance method." | |||
| 74 | (setq server (format "%s:%d" server port) | 74 | (setq server (format "%s:%d" server port) |
| 75 | path (cond | 75 | path (cond |
| 76 | (realm realm) | 76 | (realm realm) |
| 77 | ((string= "" path) "/") | ||
| 77 | ((string-match "/$" path) path) | 78 | ((string-match "/$" path) path) |
| 78 | (t (url-basepath path))) | 79 | (t (url-basepath path))) |
| 79 | byserv (cdr-safe (assoc server | 80 | byserv (cdr-safe (assoc server |
diff --git a/man/ChangeLog b/man/ChangeLog index 707222a5fc4..6b8affa4888 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-10-13 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * misc.texi (Interactive Shell): Correct INSIDE_EMACS reference. | ||
| 4 | |||
| 1 | 2007-10-09 Richard Stallman <rms@gnu.org> | 5 | 2007-10-09 Richard Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * display.texi (Cursor Display): Correct how cursor appears | 7 | * display.texi (Cursor Display): Correct how cursor appears |