Upgrade to Encode 1.26, from Dan Kogai.
[p5sagit/p5-mst-13.2.git] / ext / Encode / Changes
index 3b055bf..ee5d260 100644 (file)
@@ -1,8 +1,315 @@
 # Revision history for Perl extension Encode.
 #
-# $Id: Changes,v 0.99 2002/03/25 19:29:22 dankogai Exp dankogai $
+# $Id: Changes,v 1.26 2002/04/07 15:22:04 dankogai Exp $
 #
 
+1.26 $Date: 2002/04/07 15:22:04 $
+! JP/Makefile.PL
+! t/Aliases.PL
+  Schwarn's patches against Makefile.PL has zapped jis*.ucm.  Restored.
+  And t/Aliases.t fixed to make sure they all exist.
+
+1.25 2002/04/07 15:01:25 (Unreleased)
+! Encode.pm
+! lib/Encode/Unicode.pm
+  More POD fixes....
+! Encode.pm
+- lib/Encode/UTF_EBCDIC.pm
+- lib/Encode/Internal.pm
+- lib/Encode/utf8.pm
+  Integrated into Encode.pm as closures.  That way "one package, one file" 
+  rule is preserved yet less files to require.
+! encoding.pm
+  commented out binmode(STDERR ...
+! Makefile.PL
+! Byte/Makefile.PL
+! CN/Makefile.PL
+! EBCDIC/Makefile.PL
+! JP/Makefile.PL
+! KR/Makefile.PL
+! Symbol/Makefile.PL
+! TW/Makefile.PL
+! Encode/Makefile_PL.e2x
+  Schwarn's MM-compliance patch merged
+  Message-Id: <20020406082609.GA28758@blackrider>
+! Encode.pm
+! lib/Encode/Unicode.pm
++ lib/Encode/UTF_EBCDIC.pm
++ t/Unicode.t
+- lib/Encode/10646_1.pm
+- lib/Encode/ucs2_le.pm
+  (UCS-2|UTF-(16|32))(LE|BE)? implementation and cleanups.  Instead of
+  per-module based (en|de)code,  I saved a number of .pm by
+  reorganizing it as per-object base (Well, this is what Encode::XS
+  does under the hood).  See Encode::Unicode for details.
+  The original Unicode.pm is now correctly renamed to UTF_EBCDIC.pm.
+  This module is used only on EBCDIC environments.
+
+1.21 2002/04/05 14:46:34 (Not Released)
+! JP/JP.pm
+! Encode.pm
++ ucm/jis0201.ucm
++ ucm/jis0208.ucm
++ ucm/jis0212.ucm
+  Are back to make Perl/Tk happy  Smile, NI-S.
+! t/Alias.pm
+! lib/Encode/Alias.pm
+! lib/Encode/Supported.pm
+! lib/Encode/10646_1.pm
+! lib/Encode/ucs2_le.pm
+  UCS-16BE is now canonical for UCS-2/ISO-10646-1.
+  Leftover implicit aliases in ucs2_le.pm removed.  Tests and documents 
+  updated to reflect changes.
+  essage-Id: <20020405114024.1290.17@bactrian.ni-s.u-net.com>
+! lib/Encode/Alias.pm
+! lib/Encode/Supported.pm
+  Anton's revision commited.  Added Dan's own fixes as well.
+  Message-Id: <159103166906.20020405161134@motor.ru>
+! lib/Encode/Alias.pm
+    134c134
+  <                 qr/^UCS2-le$/i    => '"UCS-2"', );
+  ---
+  >                 qr/^UCS2-LE$/i    => '"UTF-16LE"');
+  Sigh.  Thank you, Anton.
+  Message-Id: <14567692196.20020405062020@motor.ru>
+  Message-Id: <69FEC0B4-483E-11D6-A045-00039301D480@dan.co.jp>
+
+1.20  2002/04/04 19:50:52
++ bin/unidump
+  the last minute addtion.  Just give it a try.  Docs remains to be done.  
+  Not installed by default.
+! lib/Encode/Supported.pod
+  Enhanced Greatly.
+! t/Alias.t
+! lib/Encode/Alias.pm
+! lib/Encode/utf8.pm
+! lib/Encode/10464_1.pm
+! lib/Encode/ucs2_le.pm
+  Canonical name for 'UCS-2le" is now "UTF-16LE".  UCS-2 left
+  unchanged but UTF-16BE is added as an alias.  Implicit aliases
+  move to Encode::Alias so init_alias() works more as expected.
+  Also, 'utf8' is now canonical with 'UTF-8' being an alias.  
+  Though pedantically wrong, This should make perl mongers happier.
+  t/Alias.t is enhanced to test all these.
+  Message-Id: <9C39BD58-47AF-11D6-9D82-00039301D480@dan.co.jp>
+! Byte/Makefile.PL
+  Now all .ucm are stacked in byte_t; They all share ascii part so 50%
+  of the codepoints are common.  CJKT left as is because the saving is
+  not significant.
+! Byte/Makefile.PL
+! CN/Makefile.PL
+! EBCDIC/Makefile.PL
+! Encode.xs
+! Encode/Makefile_PL.e2x
+! JP/Makefile.PL
+! KR/Makefile.PL
+! Makefile.PL
+! Symbol/Makefile.PL
+! TW/Makefile.PL
+! bin/enc2xs
+! AUTHORS
+  All occurance of _def.h replaced with .exh so djgpp works happily
+  ever after!  To credit this amazing discovery, Laszlo is now in
+  AUTHORS list
+  Message-Id: <20020403181424.GA8778@freemail.hu>
+  Message-Id: <B5BF0C6F-4732-11D6-B13D-00039301D480@dan.co.jp>
+! Makefile.PL
+! */Makefile.PL
+! Encode/Makefile_PL.skel
+  bin/enc2xs
+  No more @INC fiddling!  Uses $ENV{PERL_CORE} instead
+  Message-Id: <20020401222744.GX2000@blackrider>, et al.
+! t/encoding.t
+  Two more tests by added jhi
+  Message-Id: <200204020000.DAA25121@alpha.hut.fi>
++ t/grow.t
+! Encode.xs
+  The showstopper fixed -- Memory reallocation bug was causing
+  Encode::XS to fall into infinite  loop on certain conditions.
+  t/grow.t tests that.
+  Message-Id: <9572CAC4-463C-11D6-ABA5-00039301D480@dan.co.jp>, et al
++ bin/txt2ucm
+! */Makefile.PL
+! */*.ucm
+! */XX.pm
+! lib/Encode/Supported.pod
+  Vendor encodings rebuilt out of original map files at unicode.org.
+  Indic languages such as MacDevanagali remain unspported do to the
+  shortcoming of encengine capabilities (they need algorithmical
+  conversion and I have no knowledge on that!).  Pods fixed for added
+  encodings.
+  Oh, macJapan.ucm renamed to macJapanese.ucm.
+  macROMnn is macRomanian and macRUMnn is macRumanian.
+  txt2ucm is a crude script that is used to convert them.
+! bin/enc2xs
+  Unicode Compound Characters (used extensively on Mac) supported
+! bin/piconv
+  Typo fixes and improvements by jhi
+  Message-Id: <200204010201.FAA03564@alpha.hut.fi>, et al.
+
+1.11  $Date: 2002/04/07 15:22:04 $
++ t/encoding.t
++ t/jperl.t
+! MANIFEST
+  Missing files from the MANIFEST fixed.
+  Message-Id: <20020401010156.H10509@alpha.hut.fi>
+  Version incremented just to make CPAN happy.
+
+1.10  2002/03/31 21:32:42
+! Makefile.PL
+! README
+  INSTALL_UCM option added to Makefile.PL so you can install *.ucm
+  if you want.  This should make Autrijus happy.  Also, piconv
+  is added to default install.
++ Encode/*.e2x
+! bin/enc2xs
+  Here-documented files that enc2xs generates are now exported
+  to *.e2x.  Much cleaner and easier to debug.
+! encoding.pm
+  encoding enhances so you can make it act more like such 
+  (now prehistoric ) "localized" variations of perl like Jperl.
++ t/jperl.t
+  Further test for encoding.pm.  Written in euc-jp
++ encoding.pm
++ t/encoding.t
+  Taken over form jhi.
+  Message-Id: <20020330174618.B10154@alpha.hut.fi>
+- Encode/*.ucm
++ ucm/*.ucm
+! Makefile.PL
+! */Makefile.PL
+  *.ucm relocated to ucm/ so MakeMaker will not install'em by default.
+- ucm2table
++ bin/ucm2table
+  ***
+! AUTHORS
+! Byte/Byte.pm
+! Encode.pm
+! Encode/macIceland.ucm
+! lib/Encode/Alias.pm
+! lib/Encode/Supported.pod
+  MacIceland fixes and Pod Typo fixes.  This adds Andreas to AUTHORS.
+  Message-Id: <m3lmcavhjt.fsf@anima.de>
+
+1.01  2002/03/29 20:59:39
+! Makefile.PL
+! README
+  s/USE_SCRIPTS/MORE_SCRIPTS/
+! Makefile.PL
+  installs enc2xs by default for external Encode:: modules in CPAN, 
+  such as Encode::HanExtra
+! t/*.t
+  More sensible perl core detection via $ENV{PERL_CORE}
+  suggested by Spider
+  Message-Id: <200203291007.FAA07329@Orb.Nashua.NH.US>
+! bin/enc2xs
+  Perl core ditection via $^X =~ m/\bminiperl$/o
+  Message-Id: <A5C7B0CA-42F1-11D6-B5AD-00039301D480@dan.co.jp>
+
+1.00  Wed Mar 29 2002
+! *
+  The version of all files is updated to 1.00 via "ci -f -l1.00",
+  commemorating version 1.00.  All files, including *.ucm are now
+  under version control.
+- encode.h
++ Encode/encode.h
+  encode.h moved to Encode/ so it will be installed for the later
+  use by enc2xs
+! enc2xs
+  h2xs-like feature added via "h2xs -M Name *.(enc|ucm)"
+! Makefile.PL
+! */Makefile.PL
+- compile
++ bin/enc2xs
+  compile renamed to enc2xs.  
+  Affected Makefle.PL updated
+- lib/CN/2022_CN.pm
+  "Punt it. HanExtra can take care of that later." -- Autrijus
+  Message-Id: <20020328154338.GA7351@not.autrijus.org>
+! Encode/johab.ucm
+! Encode/euc-kr.ucm
+! Encode/ksc5601.ucm
+! lib/Encode/CJKConstants.pm
+! lib/Encode/KR/2022_KR.pm
+  Table patches for Euro Signs, 2022-KR fixups by Jungshik
+  Message-Id: <Pine.LNX.4.44.0203280616190.2259-200000@www.ykga.org>
+! README
+! Makefile.PL
++ bin/piconv
+  bin/ added for example scripts.  They are not installed by default.
+  to install them, "perl Makefile.PL USE_SCRIPTS".
+  piconv is iconv reinvented in perl.  in addition to all features
+  of iconv, it also adds perlish features.  See L<piconv/1> for more
+  details.
+! lib/Encode/Alias.pm
+  qr/^ replaced with qr/\b so it directly matches locale names
+  such as en_US.US-ASCII
+! AUTHORS
+! t/Aliases.t
+  Patch by MJD to fix the following problem applied.
+  Subject: [PATCH 5.7.3 Encode]
+    Aliases.t not properly skipped when Encode extension not built
+  Message-Id: <20020328091850.18677.qmail@plover.com>
+! lib/Encode/KR/2022_KR.pm
+! lib/Encode/CJKConstants.pm
+  Another patch from Jungshik to make iso-2022-kr actually work
+  Message-Id: <Pine.LNX.4.44.0203271745210.30462-200000@www.ykga.org>
+! Encode/Encode/euc-kr.ucm
++ Encode/Encode/johab.ucm
+! Encode/Encode/ksc5601.ucm
+! Encode/KR/KR.pm
+! Encode/KR/Makefile.PL
+! Encode/lib/Encode/Alias.pm
+! t/Alias.t
+  Johab support and complete revision of Korean Encoding by Jungshik
+  Message-Id: <Pine.LNX.4.44.0203271105060.30462-200000@www.ykga.org>
++ Encode.pm
+  Revised to make up with now-dropped Encode::Details.
+- lib/Encode/Details.pod
+  Dropped.  Besides being obsolete, the topics are now covered in
+  respective pods now. 
+! AUTHORS
+! t/Alias.t
+  KR/KR.pm
+  lib/Encode/Alias.pm
+  Korean aliases fixed thanks to Jungshik Shin
+   /ks[-_ ]?c[-_ ]?5601-1987$/i => cp936
+  Message-Id: <Pine.LNX.4.44.0203262102250.1237-100000@www.ykga.org>
+! *.pm
+  =head1 NAME added to all modules to make buildtoc happy
+  Message-Id: <20020327041151.A10618@alpha.hut.fi>
+- lib/Encode/CJKguide.pod
+  Too controversial and dropped from the dist.  Will be available
+  separately on the web.
+! Encode/*.ucm
+  RCS tags added so table debugging gets easier (should that be
+  needed!  I hope they all stay 1.00!)
++ lib/Encode/CJKguide.pod
+  A detailed guide to mainly, but not limited to, CJK multibyte
+  encodings.
+- Encode/roman8.ucm
++ Encode/hp-roman8.ucm
+! Byte/Makefile.PL
+! Encode/Supported.pod
+  All occurance of "roman8" replaced with "hp-roman8" to avoid 
+  confusion
+! Encode/Supported.pod
+! Encode/mac*.ucm
+! t/Alias.t
+  Mac Encodings now comply the Inside Macintosh
+! t/Alias.t
+  Test for '-raw' conventions added.
+! Encode/Alias.pm
+  aliased  gb2312 -> euc-cn, ksc5601 -> euc-kr
+! Encode/gb12345.ucm
+! Encode/gb2312.ucm
+! Encode/ksc5601.ucm
+  "-raw" appended to canonical names.
+  File mames stay unchanged thanks to UCM format.
+! lib/Encode/CN/HZ.pm
+  Patch from Autrijus to fix gb2312 -> gb2312-raw + code linting
+  Message-Id: <20020326035210.GA2091@not.autrijus.org>
+
 0.99  Tue Mar 26 2002
 - lib/Encode/JP/Const.pm
 + lib/Encode/CJKConstants.pm