https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36947
David Cook <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from David Cook <[email protected]> --- Oh this sounds interesting. -- I agree about Unicode::Normalize being the way to go for the diacritics... As for the normalization form... a quick Google suggest that NFKD is most likely the correct normalization form to use, although it might only help in terms of the initial sorting based on the first letter. For instance, I think ÅB should become A + a combining ring above (030A bytes) + B. I'm actually running some test code using Unicode::Normalize, and I can't get NFKD() to work at all... going to try out some more things... -- I'm not sure what I think about the case insensitivity. I could imagine different libraries possibly having different views on that one. That said, I think a default of forcing all to uppercase or lowercase would be OK. I wonder if there's any consequences of NFKD being used after the uc() rather than the other way around, but I can't think of any off the top of my head. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
