1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-21 00:25:37 +00:00

bug 153: UTF-8 bookmark.title has been fully implemented.

Mention it in NEWS too.
This commit is contained in:
Kalle Olavi Niemitalo 2009-01-24 14:38:26 +02:00 committed by Kalle Olavi Niemitalo
parent 311d95358d
commit 264a66fe4d
2 changed files with 6 additions and 3 deletions

3
NEWS
View File

@ -17,6 +17,9 @@ includes the changes listed under ``ELinks 0.11.5.GIT'' below.
Previously, they could turn into spaces or disappear entirely.
* Perl scripts can use modules that dynamically load C libraries, like
XML::LibXML::SAX does.
* bug 153: Preserve Unicode characters in XBEL bookmark files.
However, Unicode in URIs (really IRIs) does not work reliably yet;
this is being tracked as bug 1066.
* bug 885: Convert xterm titles to ISO-8859-1 by default, but add an
option to disable this. When removing control characters from a
title, note the charset. Don't truncate titles to the width of the

View File

@ -17,9 +17,9 @@ struct bookmark {
struct listbox_item *box_item;
/** @todo Bugs 153, 1066: The #title and #url strings should
* be in UTF-8, but this has not yet been fully implemented. */
unsigned char *title; /* title of bookmark */
/** @todo Bug 1066: The #url string should be in UTF-8 too,
* but this has not yet been fully implemented. */
unsigned char *title; /* UTF-8 title of bookmark */
unsigned char *url; /* Location of bookmarked item */
LIST_OF(struct bookmark) child;