Mercurial > emacs
changeset 72590:210a878f1395
(url-http-create-request):
Use `url-recreate-url-attributes' when setting real-fname.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 01 Sep 2006 02:31:47 +0000 |
parents | f6c1ac4c14c7 |
children | 4582bd903132 |
files | lisp/url/ChangeLog lisp/url/url-http.el |
diffstat | 2 files changed, 15 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/url/ChangeLog Fri Sep 01 02:31:24 2006 +0000 +++ b/lisp/url/ChangeLog Fri Sep 01 02:31:47 2006 +0000 @@ -1,6 +1,17 @@ -2006-08-29 Diane Murray <disumu@x3y2z1.net> (tiny change) +2006-08-31 Diane Murray <disumu@x3y2z1.net> + + * url-parse.el (url-recreate-url-attributes): New function, code + simply moved from `url-recreate-url'. + (url-recreate-url): Use it. + Put the `url-target' at the end of the URL after the attributes. - * url-cookie.el (url-cookie-write-file): Really don't use versioned backups. + * url-http.el (url-http-create-request): + Use `url-recreate-url-attributes' when setting real-fname. + +2006-08-29 Diane Murray <disumu@x3y2z1.net> + + * url-cookie.el (url-cookie-write-file): Really don't use versioned + backups. 2006-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
--- a/lisp/url/url-http.el Fri Sep 01 02:31:24 2006 +0000 +++ b/lisp/url/url-http.el Fri Sep 01 02:31:47 2006 +0000 @@ -160,7 +160,8 @@ (let ((url-basic-auth-storage 'url-http-proxy-basic-auth-storage)) (url-get-authentication url nil 'any nil)))) - (real-fname (url-filename (or proxy-obj url))) + (real-fname (concat (url-filename (or proxy-obj url)) + (url-recreate-url-attributes (or proxy-obj url)))) (host (url-host (or proxy-obj url))) (auth (if (cdr-safe (assoc "Authorization" url-request-extra-headers)) nil