Diane Murray <disumu at x3y2z1.net>
(url-basic-auth): Set path to "/" when URL has an empty string filename.
This commit is contained in:
parent
5eee3c954e
commit
3aa491bcaf
3 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2007-10-13 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* misc.texi (Interactive Shell): Correct INSIDE_EMACS reference.
|
||||
|
||||
2007-10-11 Eric S. Raymond <esr@snark.thyrsus.com>
|
||||
|
||||
* emacs.texi:
|
||||
|
@ -6,7 +10,7 @@
|
|||
|
||||
2007-10-10 Eric S. Raymond <esr@snark.thyrsus.com>
|
||||
|
||||
* files.texi (Version Systems):
|
||||
* files.texi (Version Systems):
|
||||
* vc-xtra.texi:
|
||||
* vc1-xtra.texi:
|
||||
* vc2-xtra.texi: Merge in changes for new VC with fileset-oriented
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2007-10-12 Diane Murray <disumu@x3y2z1.net>
|
||||
|
||||
* url-auth.el (url-basic-auth): Set path to "/" when URL has an
|
||||
empty string filename.
|
||||
|
||||
2007-09-26 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* url-dav.el (top):
|
||||
|
|
|
@ -74,6 +74,7 @@ instead of the pathname inheritance method."
|
|||
(setq server (format "%s:%d" server port)
|
||||
path (cond
|
||||
(realm realm)
|
||||
((string= "" path) "/")
|
||||
((string-match "/$" path) path)
|
||||
(t (url-basepath path)))
|
||||
byserv (cdr-safe (assoc server
|
||||
|
|
Loading…
Add table
Reference in a new issue