[Catalyst-commits] r11447 - in trunk/Catalyst-Plugin-Unicode: .
lib/Catalyst/Plugin
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Sun Oct 4 17:35:59 GMT 2009
Author: t0m
Date: 2009-10-04 17:35:58 +0000 (Sun, 04 Oct 2009)
New Revision: 11447
Removed:
trunk/Catalyst-Plugin-Unicode/MANIFEST
Modified:
trunk/Catalyst-Plugin-Unicode/
trunk/Catalyst-Plugin-Unicode/Changes
trunk/Catalyst-Plugin-Unicode/lib/Catalyst/Plugin/Unicode.pm
Log:
Bump version, remove generated files, add more POD
Property changes on: trunk/Catalyst-Plugin-Unicode
___________________________________________________________________
Name: svn:ignore
- Makefile
Makefile.old
blib
inc
pm_to_blib
+ MANIFEST
MANIFEST.bak
META.yml
Makefile
Makefile.old
blib
inc
pm_to_blib
Modified: trunk/Catalyst-Plugin-Unicode/Changes
===================================================================
--- trunk/Catalyst-Plugin-Unicode/Changes 2009-10-04 00:06:59 UTC (rev 11446)
+++ trunk/Catalyst-Plugin-Unicode/Changes 2009-10-04 17:35:58 UTC (rev 11447)
@@ -1,5 +1,12 @@
Revision history for Perl extension Catalyst::Plugin::Unicode
+0.92 Sun Oct 4 18:30:00 GMT 2009
+ - Add documentation note that you probably want to use
+ Catalyst::Plugin::Unicode::Encoding
+
+0.91 Sat Apr 18 23:47:00 GMT 2009
+ - Fix manifest failure
+
0.9 Sat Apr 18 11:47:00 GMT 2009
- Makefile.PL: build_requires => test_requires (RT #37960)
- Switch to MRO::Compat
Deleted: trunk/Catalyst-Plugin-Unicode/MANIFEST
===================================================================
--- trunk/Catalyst-Plugin-Unicode/MANIFEST 2009-10-04 00:06:59 UTC (rev 11446)
+++ trunk/Catalyst-Plugin-Unicode/MANIFEST 2009-10-04 17:35:58 UTC (rev 11447)
@@ -1,20 +0,0 @@
-Changes
-inc/Module/AutoInstall.pm
-inc/Module/Install.pm
-inc/Module/Install/AutoInstall.pm
-inc/Module/Install/Base.pm
-inc/Module/Install/Include.pm
-inc/Module/Install/Metadata.pm
-lib/Catalyst/Plugin/Unicode.pm
-Makefile.PL
-MANIFEST This list of files
-META.yml
-t/01use.t
-t/02pod.t
-t/03podcoverage.t
-t/lib/Makefile.PL
-t/lib/script/testapp_server.pl
-t/lib/script/testapp_test.pl
-t/lib/TestApp.pm
-t/lib/TestApp/Controller/Root.pm
-t/live-test.t
Modified: trunk/Catalyst-Plugin-Unicode/lib/Catalyst/Plugin/Unicode.pm
===================================================================
--- trunk/Catalyst-Plugin-Unicode/lib/Catalyst/Plugin/Unicode.pm 2009-10-04 00:06:59 UTC (rev 11446)
+++ trunk/Catalyst-Plugin-Unicode/lib/Catalyst/Plugin/Unicode.pm 2009-10-04 17:35:58 UTC (rev 11447)
@@ -4,7 +4,7 @@
use MRO::Compat;
-our $VERSION = '0.9';
+our $VERSION = '0.92';
sub finalize {
my $c = shift;
@@ -53,8 +53,11 @@
characters before trying to encode it into a byte stream. This is bad
as sometimes it can guess wrongly and cause problems.
+As an example, latin1 characters such as é (e-accute) will not actually
+cause the output to be encoded as utf8.
+
Using L<Catalyst::Plugin::Unicode::Encoding> is more recommended, but that
-requires that all data inputs have correctly been decoded into perls
+requires that all data inputs have correctly been decoded into perl's
internal character representation.
=head1 OVERLOADED METHODS
More information about the Catalyst-commits
mailing list