cant handle special characters in firefox's UTF8 bookmarks
Brought to you by:
jmvidal
I use hungarian "ιαőűσ" etc characters in my bookmark
and bk2site cant handle those bookmark entities which
has special characters in its name. It cant create
directories with theese names, and also cant create files
in this dirs.
Logged In: YES
user_id=723746
Hi!
I got the same problem. Actually, version 1.1.8 worked
correctly regarding this issue. Thus, I patched version
1.1.9 doing the following:
$ diff /tmp/bk2site-1.1.9/reference.H reference.H
24c24
< //#include <strstream>
---
> #include <strstream>
and
$ diff /tmp/bk2site-1.1.9/reference.C reference.C
223c223
< string hexbuf;
---
> char hexbuf[4];
226c226
< ostringstream hexstr(hexbuf);
---
> ostrstream hexstr(hexbuf, 4);
This way, you gonna get a lot of warnings, but the result is
better ;-).
Bye,
Michael.
Logged In: YES
user_id=723746
I submitted a patch solving this problem.