1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
Module: Text::CSV::Unicode
Description:
Text::CSV::Unicode builds on Text::CSV to provides facilities for the
composition and decomposition of comma-separated values.
Text::CSV::Unicode handles input that includes 8-bit (and more) data.
It is based on version 0.01 of Text::CSV, but has been reimplemented
to use the current Text::CSV.
Copying:
Copyright (c) 2007, 2008, 2010, 2011, 2012, 2018 Robin Barker.
All rights reserved.
This program is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.
lib/Text/CSV/Base.pm (version 0.01) was a direct copy of
Text-CSV-0.01/CSV.pm, and t/base.t was a direct copy of
Text-CSV-0.01/test.pl, with only the module name changed
(and white-space changes), and these files are
Copyright (c) 1997 Alan Citterman.
Author:
Robin Barker <rmbarker@cpan.org>
based on Text::CSV by
Alan Citterman <alan@mfgrtl.com>
Prerequisites:
perl 5.8.0
Build/Installation:
Standard build/installation supported by ExtUtils::MakeMaker(3)...
perl Makefile.PL
make
make test
make install
Recent Changes:
v0.400 2018-10-02
Removed Base.pm
base.t tests empty Text::CSV::Base class
Refactored Unicode.pm
v0.300 2018-09-28
Text::CSV::Unicode does not use Text::CSV::Base
Text::CSV::Base is redundant
Text::CSV::Unicode does not set C<always_quote => 1>
Text::CSV::Unicode C<binary => 1> is deprecated
v0.201 2018-09-25
Add C<use warnings> to t/unicode.t:
deprecate was not a default warning before perl 5.18.0,
so the 'deprecated' test had been failing on earlier perls.
v0.200 2018-09-21
Completely rewritten to use Text::CSV
Allow unicode but not Cntrl in Text::CSV::Unicode
Allow all unicode with binary=>1, by dropping through to Text::CSV
|