1=head1 NAME
2
3Reaction::Manual::Unicode - Unicode support in Reaction
4
5=head1 DESCRIPTION
6
7This document gives you notes about using Unicode in Reaction.
8
9=head1 Working with Catalyst
10
11Catalyst has a plugin which is named L<Catalyst::Plugin::Unicode>, It decodes
12the request parameters to utf8 when preparing parameters, and decodes the
13response body after the request is finalized. Since, Reaction uses utf8 by
14default, and does this already. So, you should avoid using the
15L<Catalyst::Plugin::Unicode>.
16
17=head1 Note about LayoutSet
18
19LayoutSet files B<MUST> be in utf8, since ASCII is a subset of utf8, You don't
20need to worry about anything if you are using plain ASCII. But people who uses
21CJK, must be sure to configure your editors to save files in utf8.
22
23=head1 Note about Database
24
25If you don't see the correct result. Be sure to double check the database
26related configuration (connecting parameter or database server side config for
27example). Database B<MUST> be configured to use utf8. Reaction won't decode or
28encode anything. It just return the data as it is from database.
29
30=head1 SEE ALSO
31
32=over
33
34=item * L<Reaction::Manual>
35
36=item * L<utf8>
37
38=back
39
40=head1 AUTHORS
41
42See L<Reaction::Class> for authors.
43
44=head1 LICENSE
45
46See L<Reaction::Class> for the license.
47
48=cut
49