Updates:
        Status: Fixed
        Owner: Caius.Chance

Comment #11 on issue 564 by Caius.Chance: [ibus-table] tables that used '=' as key combination could not be parsed.
http://code.google.com/p/ibus/issues/detail?id=564

This should be fixed at upstream in 2009:


def attribute_parser (f):
        for l in f:
            try:
                attr,val = unicode (l,"utf-8").strip().split ('=')
            except:
                attr,val = unicode (l,"utf-8").strip().split ('==')
            attr = attr.strip()
            origin_attr = attr
            attr = attr.lower()
            val = val.strip()
            if attr == 'name' and not gconf_valid_keyname(val):
                raise InvalidTableName(val)
            yield (attr,val)


--
You received this message because you are subscribed to the Google
Groups "ibus-devel" group.
iBus project web page: http://code.google.com/p/ibus/
iBus dev group: http://groups.google.com/group/ibus-devel?hl=en

回复