close Warning: Failed to sync with repository "(default)": [Errno 12] Cannot allocate memory; repository information may be out of date. Look in the Trac log for more information including mitigation strategies.

Changes between Initial Version and Version 4 of Ticket #1152


Ignore:
Timestamp:
2015-03-15T04:47:31Z (9 years ago)
Author:
dx
Comment:

fixing formatting of description.

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 //TRANSLIT will always fail.
     1NetBSD's implementation of iconv does not appear to support {{{//TRANSLIT}}}. This means g_convert_with_fallback() called with {{{//TRANSLIT}}} will always fail.
    22
    33With "acc fb set nick_format %full_name" this  silently fails and the normal handles are used as if nick_format was never set.
    44
    55With "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
    67Example (redacted columns):
     8
     9{{{
    71010:05 <@harlos> blist
    81110:05 <@root> Nick
     
    111410:05 <@root> fb-_____________
    121510:05 <@root> l_______________
     16}}}
    1317
    1418
    1519I 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
     211. Use gnu iconv on NetBSD
     222. Don't use {{{//TRANSLIT}}} for NetBSD (This is what attached path does)