2008/6/5 km <[EMAIL PROTECTED]>: > it asks me if i want to login -- then it prompts for user/pass. i > assume that this url is restricted for authenticated users, so that > seems correct.
OK, it seems to be corrected. > however, if i try the same for my site, i get into the eternal loop of > asking for username/password. you mention this on your info page. but > i actually have the latest version cvs version of url-http.el from > here: > http://cvs.savannah.gnu.org/viewvc/emacs/emacs/lisp/url/url-http.el?revision=1.59&view=markup > > so i'm not sure what is the problem. Hmm... It looks like same behaviour I fought with. # url library is one of heavily modified and unstabled library in emacs devel even now. If you can, try accessing without authentication by allowing XML-RPC access for everyone (by add XML_RPC action to anonymous). Is it success? If so, it might be a auth-storage issue described on trac-wiki page and you may take a workaround by specifying auth data by your hand like this (of course, fill your name, pass, site, etc.): (let ((auth (base64-encode-string (format "%s:%s" "yourname" "yourpassword")))) (set (symbol-value 'url-basic-real-auth-storage) `(("www.some.org:80" ("realm string for the site" . ,auth))))) ;;; assume the site uses basic authentication Does it solve? Anyway, I'll try with most recent emacs on debian later... -- Shun-ichi GOTO --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
