On Feb 7, 2007, at 4:08 AM, Max Ischenko wrote: > Where can I find information about what new functionality will be > available in 0.9.5 with respect to i18n/unicode? I found CHANGELOG > but it misses any documentation pointers (obviously). > > I ask because I have started i18n project with Pylons (update of > developers.org.ua community site) and I'd like to test new features > before actual release so that there is a chance to fix something.
As David Smith mentioned, right now the best source are the Trac tickets. That doesn't fully reflect a few changes that were made to Paste however, such as: - WSGIRequest object can decode POST/GET args from Unicode properly - WSGIRequest now has a .languages property that returns the parsed list of languages from the HTTP Accept header And Routes fixes: - Generation and matching now uses Unicode objects and can handle unicode arguments The Pylons set_lang function now handles being given a list of languages which it will use as fall-backs should a translation not exist in one language file. This is how the gettext.translation function worked, and we're now using that for the fallback capability as well. That's pretty much the big stuff that you'd want to be aware of. None of them will break your project, but you will likely find some tasks a lot easier with the added functionality. Cheers, Ben --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
