I am not sure what I did but I am glad I was able to help.

The problem is almost certainly with encoding, but I am not certain where. 
One unlikely place is using 

var urltext = unescape(client.responseText);

in the javascript macro, changing that to

var urltext = decodeURI(client.responseText);

may help. Even if it doesn't help here it is good practice to use decodeURI 
instead of unescape.

I think that a more likely place for the problem is on the server side. If 
the text file isn't being read as a utf8 string than any characters that 
aren't in the basic ascii set won't be sent correctly. That includes any 
letters with accents or language specific variants, like
ß.

What sort of server are you using on the computer that contains the text 
file?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/36dd4c04-e6b7-40a2-acff-7fda0d91673a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to