There is a nice guide in Four easy steps to make Mason UTF-8 Unicode clean with Apache, mod_perl, and DBI - how to make the old HTML::Mason UTF-8 transparent. Now, Mason 2 has arrived. How do I make it UTF-8 safe as well?
Currently, in every component I must do something like the following.
<%args>
arg
<%args>
<%init>
use utf8;
use Encode;
</%init>
arg is <% Encode::decode_utf8($self->arg) %>
Calling explicit Encode::decode_utf8(...args...) in every component is a sort of harassment, so I am looking for a way to write a Mason 2 plugin for decoding every parameter that comes to Mason 2 from the Plack::Request->parameters (which are Hash::MultiValue).
Mason 2 is Moose based, so, this probably has an really stupid simple solution, but what method should I modify?
