Changes between Initial Version and Version 4 of Ticket #1152
- Timestamp:
- 2015-03-15T04:47:31Z (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1152
- Property Keywords patch added
-
Ticket #1152 – Description
initial v4 1 NetBSD's implementation of iconv does not appear to support //TRANSLIT. This means g_convert_with_fallback() called with //TRANSLITwill always fail.1 NetBSD's implementation of iconv does not appear to support {{{//TRANSLIT}}}. This means g_convert_with_fallback() called with {{{//TRANSLIT}}} will always fail. 2 2 3 3 With "acc fb set nick_format %full_name" this silently fails and the normal handles are used as if nick_format was never set. 4 4 5 5 With "acc fb set nick_format fb-%full_name" the failure is more significant as nick_gen() produces "fb-" for all contacts and then the nicks are padded with underscores. 6 6 7 Example (redacted columns): 8 9 {{{ 7 10 10:05 <@harlos> blist 8 11 10:05 <@root> Nick … … 11 14 10:05 <@root> fb-_____________ 12 15 10:05 <@root> l_______________ 16 }}} 13 17 14 18 15 19 I think there are two solutions: 16 1) Use gnu iconv on NetBSD 17 2) Don't use //TRANSLIT for NetBSD (This is what attached path does) 20 21 1. Use gnu iconv on NetBSD 22 2. Don't use {{{//TRANSLIT}}} for NetBSD (This is what attached path does)