2008/6/7 km <[EMAIL PROTECTED]>:
>
>> Please update to trac-wiki.el ver. 1.8 first, then try again.
>
> thanks. i just tried it and still get "ERROR: The site seems not
> support XML-RPC."

This error indicates that server returns 404 response.
I've fixed (maybe) a related issue with recent emacs
(around cl struct access). Try with most recent one again:
  http://www.meadowy.org/~gotoh/trac-wiki/trac-wiki.el

> my guess is that xml_rpc really is not working on my site. i will try
> reverting to an earlier version of trac to see if i can get the
> xml_rpc plugin to work.
>
>> (eval-after-load "url-auth"
>>   '(let ((auth (base64-encode-string (format "%s:%s" "yourname"
>> "yourpassword"))))
>>      (set (symbol-value 'url-basic-auth-storage)
>>           `(("www.some.org:80" ("realm string for the site" . ,auth))))))
>
> I see that the code above sets the value of "url-basic-auth-storage"
> However, your web page says to set the value of "url-HTTP-REAL-basic-
> auth-storage". shouldn't these be the same?

Ah, sorry.
You are right. I've mixed.

To be simple:

(let ((auth (base64-encode-string (format "%s:%s" "yourname" "yourpassword"))))
   (setq url-http-real-basic-auth-storage)
        `(("www.some.org:80" ("realm string for the site" . ,auth))))

> And what should one use for digest authorization? Evaluating
> expressions of either form below generates an "wrong-type-argument
> symbolp" error:

For digest auth, it's much complex to set value like above.
And I didn't get success for digest auth due to url library issue.
Sorry, please use basic auth if possible.


FYI, trac-hacks site is one of the site you can access with
basic auth (if you registered) and usable from trac-wiki.

-- 
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to