diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7922b35..273fa78 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,6 +5,8 @@ - . ~/.bash_profile - perl -v script: + - cpanm --installdeps --notest . + - cpanm --notest Unicode::String Unicode::MapUTF8 - perl Makefile.PL - make - make disttest diff --git a/.travis.yml b/.travis.yml index 610af72..74c92ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,6 +21,8 @@ before_script: - perl -V script: + - cpanm --installdeps --notest . + - cpanm --notest Unicode::String Unicode::MapUTF8 - perl Makefile.PL - make - make disttest diff --git a/CHANGES b/CHANGES index 436a8a5..611bf93 100644 --- a/CHANGES +++ b/CHANGES @@ -13,6 +13,34 @@ YYYY/MM/DD +============================================================================ +2020/11/16 (2.6.24) + +* Bug Fixes: + + * Fix bug in lib/mhamain.pl introduced while trying to avoid PAUSE conflict + +============================================================================ +2020/11/12 (2.6.23) + +* Bug Fixes: + + * Modify version due to PAUSE conflict + +============================================================================ +2020/09/21 (2.6.22) + +* Bug Fixes: + + * Modify version due to PAUSE conflict + +============================================================================ +2020/09/14 (2.6.21) + +* Bug Fixes: + + * Modify version declaration to allow PAUSE indexing + ============================================================================ 2020/09/14 (2.6.20) diff --git a/COPYING b/COPYING index 5b6e7c6..d159169 100644 --- a/COPYING +++ b/COPYING @@ -1,12 +1,12 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - Preamble + Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public @@ -15,7 +15,7 @@ software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to +the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not @@ -55,8 +55,8 @@ patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. - - GNU GENERAL PUBLIC LICENSE + + GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains @@ -110,7 +110,7 @@ above, provided that you also meet all of these conditions: License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) - + These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in @@ -168,7 +168,7 @@ access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. - + 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is @@ -225,7 +225,7 @@ impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - + 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License @@ -255,7 +255,7 @@ make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - NO WARRANTY + NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN @@ -277,9 +277,9 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it @@ -303,10 +303,9 @@ the "copyright" line and a pointer to where the full notice is found. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. @@ -336,5 +335,5 @@ necessary. Here is a sample; alter the names: This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General +library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. diff --git a/MANIFEST b/MANIFEST index 11f089f..31cd420 100644 --- a/MANIFEST +++ b/MANIFEST @@ -371,7 +371,6 @@ lib/mhmsgextbody.pl lib/mhmsgfile.pl lib/mhnote.pl lib/mhnull.pl -lib/MHonArc.pm lib/MHonArc/Char.pm lib/MHonArc/Char/JP.pm lib/MHonArc/Char/KR.pm diff --git a/Makefile.PL b/Makefile.PL index 62440a2..4ff273a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,7 +2,7 @@ use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'MHonArc', - 'VERSION_FROM' => 'lib/MHonArc.pm', + 'VERSION_FROM' => 'lib/mhamain.pl', 'AUTHOR' => ['Earl Hood '], 'ABSTRACT' => 'Convert mail/news messages to HTML', 'EXE_FILES' => [ diff --git a/admin/mhaadmin.cgi b/admin/mhaadmin.cgi index ba7ff60..2508ad2 100755 --- a/admin/mhaadmin.cgi +++ b/admin/mhaadmin.cgi @@ -9,9 +9,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 1998,1999 Earl Hood, mhonarc@pobox.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHAHttpAdmin; diff --git a/contrib/mhn2mbox.pl b/contrib/mhn2mbox.pl index 3723950..0dfaf40 100755 --- a/contrib/mhn2mbox.pl +++ b/contrib/mhn2mbox.pl @@ -15,9 +15,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 2000 AnthonyW anthonyw@albany.net ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -26,9 +26,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## # Library where MHonArc libs diff --git a/doc/COPYING b/doc/COPYING index 5b6e7c6..d159169 100644 --- a/doc/COPYING +++ b/doc/COPYING @@ -1,12 +1,12 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - Preamble + Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public @@ -15,7 +15,7 @@ software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to +the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not @@ -55,8 +55,8 @@ patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. - - GNU GENERAL PUBLIC LICENSE + + GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains @@ -110,7 +110,7 @@ above, provided that you also meet all of these conditions: License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) - + These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in @@ -168,7 +168,7 @@ access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. - + 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is @@ -225,7 +225,7 @@ impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - + 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License @@ -255,7 +255,7 @@ make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - NO WARRANTY + NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN @@ -277,9 +277,9 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it @@ -303,10 +303,9 @@ the "copyright" line and a pointer to where the full notice is found. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. @@ -336,5 +335,5 @@ necessary. Here is a sample; alter the names: This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General +library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. diff --git a/extras/mha-mhedit/mha-mhedit b/extras/mha-mhedit/mha-mhedit index f8b5fac..df351b8 100755 --- a/extras/mha-mhedit/mha-mhedit +++ b/extras/mha-mhedit/mha-mhedit @@ -10,9 +10,9 @@ ##------------------------------------------------------------------------## ## Copyright (C) 2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -21,9 +21,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##------------------------------------------------------------------------## package mha_mhedit; diff --git a/install.me b/install.me index 7d3cf70..c239f67 100755 --- a/install.me +++ b/install.me @@ -15,9 +15,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 1997-2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -26,9 +26,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package InstallMe; diff --git a/lib/MHonArc.pm b/lib/MHonArc.pm deleted file mode 100644 index af2fb58..0000000 --- a/lib/MHonArc.pm +++ /dev/null @@ -1,40 +0,0 @@ -##---------------------------------------------------------------------------## -## File: -## $Id: MHonArc.pm,v 2.6.19 2020/06/29 21:40:15 ldidry Exp $ -## Author: -## Luc Didry for Framasoft and Sympa community -## Description: -## POD after __END__. -##---------------------------------------------------------------------------## -## Copyright (C) 2020 Sympa community -## -## This program is free software; you can redistribute it and/or modify -## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or -## (at your option) any later version. -## -## This program is distributed in the hope that it will be useful, -## but WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -## GNU General Public License for more details. -## -## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA -##---------------------------------------------------------------------------## - -package MHonArc; - -use strict; - -BEGIN { - use Exporter (); - our $VERSION = '2.6.20'; - our @ISA = qw(Exporter); - #Give a hoot don't pollute, do not export more than needed by default - our @EXPORT = qw($VERSION); - our @EXPORT_OK = qw(); - our %EXPORT_TAGS = (); -} -1; diff --git a/lib/MHonArc/Char.pm b/lib/MHonArc/Char.pm index d00f08f..d926ef1 100644 --- a/lib/MHonArc/Char.pm +++ b/lib/MHonArc/Char.pm @@ -8,9 +8,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 1997-2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -19,16 +19,12 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHonArc::Char; -use MHonArc; - -$VERSION = $MHonArc::VERSION; +our $VERSION = '2.6.24'; ############################################################################### ## Routines diff --git a/lib/MHonArc/Char/JP.pm b/lib/MHonArc/Char/JP.pm index 2406e71..1ae5a71 100644 --- a/lib/MHonArc/Char/JP.pm +++ b/lib/MHonArc/Char/JP.pm @@ -6,9 +6,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -17,13 +17,13 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHonArc::Char::JP; +our $VERSION = '2.6.24'; + sub jp_2022_to_euc { # implementation of this function plagerized from Encode::JP::JIS7. my $data_in = shift; diff --git a/lib/MHonArc/Char/KR.pm b/lib/MHonArc/Char/KR.pm index 2e807d1..3da2438 100644 --- a/lib/MHonArc/Char/KR.pm +++ b/lib/MHonArc/Char/KR.pm @@ -6,9 +6,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -17,13 +17,13 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHonArc::Char::KR; +our $VERSION = '2.6.24'; + sub kr_2022_to_euc { # implementation of this function plagerized from Encode::KR::2022_KR. my $data_r = shift; diff --git a/lib/MHonArc/CharEnt.pm b/lib/MHonArc/CharEnt.pm index 2ca7549..b08cad0 100644 --- a/lib/MHonArc/CharEnt.pm +++ b/lib/MHonArc/CharEnt.pm @@ -8,9 +8,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 1997-2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -19,9 +19,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHonArc::CharEnt; @@ -29,9 +27,8 @@ package MHonArc::CharEnt; use strict; use MHonArc::CharMaps; use MHonArc::Char; -use MHonArc; -our $VERSION = $MHonArc::VERSION; +our $VERSION = '2.6.24'; ##--------------------------------------------------------------------------- ## Charset specification to mapping diff --git a/lib/MHonArc/CharEnt/AppleArabic.pm b/lib/MHonArc/CharEnt/AppleArabic.pm index 7abac78..183a366 100644 --- a/lib/MHonArc/CharEnt/AppleArabic.pm +++ b/lib/MHonArc/CharEnt/AppleArabic.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::AppleArabic; + +our $VERSION = '2.6.24'; + +{ '','Ä', '',' ', diff --git a/lib/MHonArc/CharEnt/AppleCenteuro.pm b/lib/MHonArc/CharEnt/AppleCenteuro.pm index 6ebadf2..104fcaf 100644 --- a/lib/MHonArc/CharEnt/AppleCenteuro.pm +++ b/lib/MHonArc/CharEnt/AppleCenteuro.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::AppleCenteuro; + +our $VERSION = '2.6.24'; + +{ '',' ', '','£', diff --git a/lib/MHonArc/CharEnt/AppleCroatian.pm b/lib/MHonArc/CharEnt/AppleCroatian.pm index ed03aff..9010315 100644 --- a/lib/MHonArc/CharEnt/AppleCroatian.pm +++ b/lib/MHonArc/CharEnt/AppleCroatian.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::AppleCroatian; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/CharEnt/AppleCyrillic.pm b/lib/MHonArc/CharEnt/AppleCyrillic.pm index afbf634..826a0a4 100644 --- a/lib/MHonArc/CharEnt/AppleCyrillic.pm +++ b/lib/MHonArc/CharEnt/AppleCyrillic.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::AppleCyrillic; + +our $VERSION = '2.6.24'; + +{ '',' ', '','£', diff --git a/lib/MHonArc/CharEnt/AppleGreek.pm b/lib/MHonArc/CharEnt/AppleGreek.pm index 313d15a..08410a0 100644 --- a/lib/MHonArc/CharEnt/AppleGreek.pm +++ b/lib/MHonArc/CharEnt/AppleGreek.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::AppleGreek; + +our $VERSION = '2.6.24'; + +{ '',' ', '','£', diff --git a/lib/MHonArc/CharEnt/AppleHebrew.pm b/lib/MHonArc/CharEnt/AppleHebrew.pm index 58e337d..580713d 100644 --- a/lib/MHonArc/CharEnt/AppleHebrew.pm +++ b/lib/MHonArc/CharEnt/AppleHebrew.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::AppleHebrew; + +our $VERSION = '2.6.24'; + +{ '','Ä', '','ײַ', diff --git a/lib/MHonArc/CharEnt/AppleIceland.pm b/lib/MHonArc/CharEnt/AppleIceland.pm index 6c92c6c..47b6886 100644 --- a/lib/MHonArc/CharEnt/AppleIceland.pm +++ b/lib/MHonArc/CharEnt/AppleIceland.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::AppleIceland; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/CharEnt/AppleRoman.pm b/lib/MHonArc/CharEnt/AppleRoman.pm index bc6f407..2c0ee36 100644 --- a/lib/MHonArc/CharEnt/AppleRoman.pm +++ b/lib/MHonArc/CharEnt/AppleRoman.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::AppleRoman; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/CharEnt/AppleRomanian.pm b/lib/MHonArc/CharEnt/AppleRomanian.pm index 7b7a05f..3659037 100644 --- a/lib/MHonArc/CharEnt/AppleRomanian.pm +++ b/lib/MHonArc/CharEnt/AppleRomanian.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::AppleRomanian; + +our $VERSION = '2.6.24'; + +{ '','Ș', '','Ț', diff --git a/lib/MHonArc/CharEnt/AppleThai.pm b/lib/MHonArc/CharEnt/AppleThai.pm index 222e8b4..45b18f3 100644 --- a/lib/MHonArc/CharEnt/AppleThai.pm +++ b/lib/MHonArc/CharEnt/AppleThai.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::AppleThai; + +our $VERSION = '2.6.24'; + +{ '',' ', '','©', diff --git a/lib/MHonArc/CharEnt/AppleTurkish.pm b/lib/MHonArc/CharEnt/AppleTurkish.pm index 9eecc35..36d2154 100644 --- a/lib/MHonArc/CharEnt/AppleTurkish.pm +++ b/lib/MHonArc/CharEnt/AppleTurkish.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::AppleTurkish; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/CharEnt/BIG5_ETEN.pm b/lib/MHonArc/CharEnt/BIG5_ETEN.pm index 9bb4eca..b6446f5 100644 --- a/lib/MHonArc/CharEnt/BIG5_ETEN.pm +++ b/lib/MHonArc/CharEnt/BIG5_ETEN.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::BIG5_ETEN; + +our $VERSION = '2.6.24'; + +{ '',' ', '','§', diff --git a/lib/MHonArc/CharEnt/BIG5_HKSCS.pm b/lib/MHonArc/CharEnt/BIG5_HKSCS.pm index f99a54d..a314f8b 100644 --- a/lib/MHonArc/CharEnt/BIG5_HKSCS.pm +++ b/lib/MHonArc/CharEnt/BIG5_HKSCS.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::BIG5_HKSCS; + +our $VERSION = '2.6.24'; + +{ '@','', 'A','', diff --git a/lib/MHonArc/CharEnt/CP1250.pm b/lib/MHonArc/CharEnt/CP1250.pm index 1a6415f..18ce9cb 100644 --- a/lib/MHonArc/CharEnt/CP1250.pm +++ b/lib/MHonArc/CharEnt/CP1250.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP1250; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¤', diff --git a/lib/MHonArc/CharEnt/CP1251.pm b/lib/MHonArc/CharEnt/CP1251.pm index 2245834..13734f0 100644 --- a/lib/MHonArc/CharEnt/CP1251.pm +++ b/lib/MHonArc/CharEnt/CP1251.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP1251; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¤', diff --git a/lib/MHonArc/CharEnt/CP1252.pm b/lib/MHonArc/CharEnt/CP1252.pm index e762df5..028d33f 100644 --- a/lib/MHonArc/CharEnt/CP1252.pm +++ b/lib/MHonArc/CharEnt/CP1252.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP1252; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/CharEnt/CP1253.pm b/lib/MHonArc/CharEnt/CP1253.pm index 03ef336..1a0e016 100644 --- a/lib/MHonArc/CharEnt/CP1253.pm +++ b/lib/MHonArc/CharEnt/CP1253.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP1253; + +our $VERSION = '2.6.24'; + +{ '',' ', '','£', diff --git a/lib/MHonArc/CharEnt/CP1254.pm b/lib/MHonArc/CharEnt/CP1254.pm index 157a008..7982d0f 100644 --- a/lib/MHonArc/CharEnt/CP1254.pm +++ b/lib/MHonArc/CharEnt/CP1254.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP1254; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/CharEnt/CP1255.pm b/lib/MHonArc/CharEnt/CP1255.pm index d9506b9..f730d1c 100644 --- a/lib/MHonArc/CharEnt/CP1255.pm +++ b/lib/MHonArc/CharEnt/CP1255.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP1255; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/CharEnt/CP1256.pm b/lib/MHonArc/CharEnt/CP1256.pm index 9b6e650..10dd4e9 100644 --- a/lib/MHonArc/CharEnt/CP1256.pm +++ b/lib/MHonArc/CharEnt/CP1256.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP1256; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¢', diff --git a/lib/MHonArc/CharEnt/CP1257.pm b/lib/MHonArc/CharEnt/CP1257.pm index 7617511..3750592 100644 --- a/lib/MHonArc/CharEnt/CP1257.pm +++ b/lib/MHonArc/CharEnt/CP1257.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP1257; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¢', diff --git a/lib/MHonArc/CharEnt/CP1258.pm b/lib/MHonArc/CharEnt/CP1258.pm index b6dffee..7ffb419 100644 --- a/lib/MHonArc/CharEnt/CP1258.pm +++ b/lib/MHonArc/CharEnt/CP1258.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP1258; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/CharEnt/CP866.pm b/lib/MHonArc/CharEnt/CP866.pm index b740e3b..0719ee4 100644 --- a/lib/MHonArc/CharEnt/CP866.pm +++ b/lib/MHonArc/CharEnt/CP866.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP866; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¤', diff --git a/lib/MHonArc/CharEnt/CP932.pm b/lib/MHonArc/CharEnt/CP932.pm index c95c7ae..8f1b78a 100644 --- a/lib/MHonArc/CharEnt/CP932.pm +++ b/lib/MHonArc/CharEnt/CP932.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP932; + +our $VERSION = '2.6.24'; + +{ '','§', 'N','¨', diff --git a/lib/MHonArc/CharEnt/CP936.pm b/lib/MHonArc/CharEnt/CP936.pm index 8300ed2..253d899 100644 --- a/lib/MHonArc/CharEnt/CP936.pm +++ b/lib/MHonArc/CharEnt/CP936.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP936; + +our $VERSION = '2.6.24'; + +{ '','€', '','¤', diff --git a/lib/MHonArc/CharEnt/CP949.pm b/lib/MHonArc/CharEnt/CP949.pm index 0755956..f420638 100644 --- a/lib/MHonArc/CharEnt/CP949.pm +++ b/lib/MHonArc/CharEnt/CP949.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP949; + +our $VERSION = '2.6.24'; + +{ '','¡', '','¤', diff --git a/lib/MHonArc/CharEnt/CP950.pm b/lib/MHonArc/CharEnt/CP950.pm index 09da75b..b169693 100644 --- a/lib/MHonArc/CharEnt/CP950.pm +++ b/lib/MHonArc/CharEnt/CP950.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::CP950; + +our $VERSION = '2.6.24'; + +{ '','§', '','¯', diff --git a/lib/MHonArc/CharEnt/EUC_JP.pm b/lib/MHonArc/CharEnt/EUC_JP.pm index c31cf64..ff636e1 100644 --- a/lib/MHonArc/CharEnt/EUC_JP.pm +++ b/lib/MHonArc/CharEnt/EUC_JP.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::EUC_JP; + +our $VERSION = '2.6.24'; + +{ '','。', '','「', diff --git a/lib/MHonArc/CharEnt/GB2312.pm b/lib/MHonArc/CharEnt/GB2312.pm index 16e23ed..2647aaf 100644 --- a/lib/MHonArc/CharEnt/GB2312.pm +++ b/lib/MHonArc/CharEnt/GB2312.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::GB2312; + +our $VERSION = '2.6.24'; + +{ '',' ', '','、', diff --git a/lib/MHonArc/CharEnt/GOST19768_87.pm b/lib/MHonArc/CharEnt/GOST19768_87.pm index a41f2cd..af7b641 100644 --- a/lib/MHonArc/CharEnt/GOST19768_87.pm +++ b/lib/MHonArc/CharEnt/GOST19768_87.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::GOST19768_87; + +our $VERSION = '2.6.24'; + +{ '$','¤', '',' ', diff --git a/lib/MHonArc/CharEnt/HP_ROMAN8.pm b/lib/MHonArc/CharEnt/HP_ROMAN8.pm index a7fa19b..c58961e 100644 --- a/lib/MHonArc/CharEnt/HP_ROMAN8.pm +++ b/lib/MHonArc/CharEnt/HP_ROMAN8.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::HP_ROMAN8; + +our $VERSION = '2.6.24'; + +{ '',' ', '','À', diff --git a/lib/MHonArc/CharEnt/ISO8859_1.pm b/lib/MHonArc/CharEnt/ISO8859_1.pm index 8b0284b..fa6b254 100644 --- a/lib/MHonArc/CharEnt/ISO8859_1.pm +++ b/lib/MHonArc/CharEnt/ISO8859_1.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_1; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/CharEnt/ISO8859_10.pm b/lib/MHonArc/CharEnt/ISO8859_10.pm index ae2d214..7a88e30 100644 --- a/lib/MHonArc/CharEnt/ISO8859_10.pm +++ b/lib/MHonArc/CharEnt/ISO8859_10.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_10; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ą', diff --git a/lib/MHonArc/CharEnt/ISO8859_11.pm b/lib/MHonArc/CharEnt/ISO8859_11.pm index 2dc117e..93acec2 100644 --- a/lib/MHonArc/CharEnt/ISO8859_11.pm +++ b/lib/MHonArc/CharEnt/ISO8859_11.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_11; + +our $VERSION = '2.6.24'; + +{ '',' ', '','ก', diff --git a/lib/MHonArc/CharEnt/ISO8859_13.pm b/lib/MHonArc/CharEnt/ISO8859_13.pm index 9152a39..51ef101 100644 --- a/lib/MHonArc/CharEnt/ISO8859_13.pm +++ b/lib/MHonArc/CharEnt/ISO8859_13.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_13; + +our $VERSION = '2.6.24'; + +{ '',' ', '','”', diff --git a/lib/MHonArc/CharEnt/ISO8859_14.pm b/lib/MHonArc/CharEnt/ISO8859_14.pm index 2aae79b..172f882 100644 --- a/lib/MHonArc/CharEnt/ISO8859_14.pm +++ b/lib/MHonArc/CharEnt/ISO8859_14.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_14; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ḃ', diff --git a/lib/MHonArc/CharEnt/ISO8859_15.pm b/lib/MHonArc/CharEnt/ISO8859_15.pm index cb983cc..baad33a 100644 --- a/lib/MHonArc/CharEnt/ISO8859_15.pm +++ b/lib/MHonArc/CharEnt/ISO8859_15.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_15; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/CharEnt/ISO8859_16.pm b/lib/MHonArc/CharEnt/ISO8859_16.pm index 39c06b3..d2dfef2 100644 --- a/lib/MHonArc/CharEnt/ISO8859_16.pm +++ b/lib/MHonArc/CharEnt/ISO8859_16.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_16; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ą', diff --git a/lib/MHonArc/CharEnt/ISO8859_2.pm b/lib/MHonArc/CharEnt/ISO8859_2.pm index 2d0d4bb..b3da6b0 100644 --- a/lib/MHonArc/CharEnt/ISO8859_2.pm +++ b/lib/MHonArc/CharEnt/ISO8859_2.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_2; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ą', diff --git a/lib/MHonArc/CharEnt/ISO8859_3.pm b/lib/MHonArc/CharEnt/ISO8859_3.pm index 98babee..56892df 100644 --- a/lib/MHonArc/CharEnt/ISO8859_3.pm +++ b/lib/MHonArc/CharEnt/ISO8859_3.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_3; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ħ', diff --git a/lib/MHonArc/CharEnt/ISO8859_4.pm b/lib/MHonArc/CharEnt/ISO8859_4.pm index c2d4f8a..38679f2 100644 --- a/lib/MHonArc/CharEnt/ISO8859_4.pm +++ b/lib/MHonArc/CharEnt/ISO8859_4.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_4; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ą', diff --git a/lib/MHonArc/CharEnt/ISO8859_5.pm b/lib/MHonArc/CharEnt/ISO8859_5.pm index 6779389..5e38a4b 100644 --- a/lib/MHonArc/CharEnt/ISO8859_5.pm +++ b/lib/MHonArc/CharEnt/ISO8859_5.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_5; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ё', diff --git a/lib/MHonArc/CharEnt/ISO8859_6.pm b/lib/MHonArc/CharEnt/ISO8859_6.pm index 67b065c..26ee86a 100644 --- a/lib/MHonArc/CharEnt/ISO8859_6.pm +++ b/lib/MHonArc/CharEnt/ISO8859_6.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_6; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¤', diff --git a/lib/MHonArc/CharEnt/ISO8859_7.pm b/lib/MHonArc/CharEnt/ISO8859_7.pm index 273aee5..8a3ca9f 100644 --- a/lib/MHonArc/CharEnt/ISO8859_7.pm +++ b/lib/MHonArc/CharEnt/ISO8859_7.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_7; + +our $VERSION = '2.6.24'; + +{ '',' ', '','ʽ', diff --git a/lib/MHonArc/CharEnt/ISO8859_8.pm b/lib/MHonArc/CharEnt/ISO8859_8.pm index 217a35b..4bad48c 100644 --- a/lib/MHonArc/CharEnt/ISO8859_8.pm +++ b/lib/MHonArc/CharEnt/ISO8859_8.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_8; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¢', diff --git a/lib/MHonArc/CharEnt/ISO8859_9.pm b/lib/MHonArc/CharEnt/ISO8859_9.pm index fd4594d..ef8ea4c 100644 --- a/lib/MHonArc/CharEnt/ISO8859_9.pm +++ b/lib/MHonArc/CharEnt/ISO8859_9.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::ISO8859_9; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/CharEnt/KOI8_A.pm b/lib/MHonArc/CharEnt/KOI8_A.pm index 9c2cbca..3486808 100644 --- a/lib/MHonArc/CharEnt/KOI8_A.pm +++ b/lib/MHonArc/CharEnt/KOI8_A.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::KOI8_A; + +our $VERSION = '2.6.24'; + +{ '$','¤', '','ю', diff --git a/lib/MHonArc/CharEnt/KOI8_B.pm b/lib/MHonArc/CharEnt/KOI8_B.pm index 35707bd..16f79b9 100644 --- a/lib/MHonArc/CharEnt/KOI8_B.pm +++ b/lib/MHonArc/CharEnt/KOI8_B.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::KOI8_B; + +our $VERSION = '2.6.24'; + +{ '','ё', '','Ё', diff --git a/lib/MHonArc/CharEnt/KOI8_E.pm b/lib/MHonArc/CharEnt/KOI8_E.pm index 0cc731c..2f7158d 100644 --- a/lib/MHonArc/CharEnt/KOI8_E.pm +++ b/lib/MHonArc/CharEnt/KOI8_E.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::KOI8_E; + +our $VERSION = '2.6.24'; + +{ '',' ', '','ђ', diff --git a/lib/MHonArc/CharEnt/KOI8_F.pm b/lib/MHonArc/CharEnt/KOI8_F.pm index 3413f71..d9467c4 100644 --- a/lib/MHonArc/CharEnt/KOI8_F.pm +++ b/lib/MHonArc/CharEnt/KOI8_F.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::KOI8_F; + +our $VERSION = '2.6.24'; + +{ '','─', '','│', diff --git a/lib/MHonArc/CharEnt/KOI8_R.pm b/lib/MHonArc/CharEnt/KOI8_R.pm index d037f39..d2a3425 100644 --- a/lib/MHonArc/CharEnt/KOI8_R.pm +++ b/lib/MHonArc/CharEnt/KOI8_R.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::KOI8_R; + +our $VERSION = '2.6.24'; + +{ '',' ', '','©', diff --git a/lib/MHonArc/CharEnt/KOI8_U.pm b/lib/MHonArc/CharEnt/KOI8_U.pm index 4c371b7..359db4c 100644 --- a/lib/MHonArc/CharEnt/KOI8_U.pm +++ b/lib/MHonArc/CharEnt/KOI8_U.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::KOI8_U; + +our $VERSION = '2.6.24'; + +{ '','─', '','│', diff --git a/lib/MHonArc/CharEnt/KOI_0.pm b/lib/MHonArc/CharEnt/KOI_0.pm index 52bc7d2..2246aa6 100644 --- a/lib/MHonArc/CharEnt/KOI_0.pm +++ b/lib/MHonArc/CharEnt/KOI_0.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::KOI_0; + +our $VERSION = '2.6.24'; + +{ '$','¤', '@','ю', diff --git a/lib/MHonArc/CharEnt/KOI_7.pm b/lib/MHonArc/CharEnt/KOI_7.pm index a3ea444..eb18b37 100644 --- a/lib/MHonArc/CharEnt/KOI_7.pm +++ b/lib/MHonArc/CharEnt/KOI_7.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::KOI_7; + +our $VERSION = '2.6.24'; + +{ '$','¤', '`','Ю', diff --git a/lib/MHonArc/CharEnt/VISCII.pm b/lib/MHonArc/CharEnt/VISCII.pm index 7cd150c..a68b25f 100644 --- a/lib/MHonArc/CharEnt/VISCII.pm +++ b/lib/MHonArc/CharEnt/VISCII.pm @@ -1,4 +1,7 @@ package MHonArc::CharEnt::VISCII; + +our $VERSION = '2.6.24'; + +{ '','Ẳ', '','Ẵ', diff --git a/lib/MHonArc/CharMaps.pm b/lib/MHonArc/CharMaps.pm index a6107b1..e78889b 100644 --- a/lib/MHonArc/CharMaps.pm +++ b/lib/MHonArc/CharMaps.pm @@ -8,9 +8,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 1997-2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -19,21 +19,19 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHonArc::CharMaps; use strict; -use vars qw( $VERSION @ISA @EXPORT %HTMLSpecials $HTMLSpecials ); +use vars qw( @ISA @EXPORT %HTMLSpecials $HTMLSpecials ); use Carp; use Exporter (); -use MHonArc; -$VERSION = $MHonArc::VERSION; +our $VERSION = '2.6.24'; + @ISA = qw( Exporter ); @EXPORT = qw( $HTMLSpecials %HTMLSpecials ); diff --git a/lib/MHonArc/Encode.pm b/lib/MHonArc/Encode.pm index 7f33cd9..54c938d 100644 --- a/lib/MHonArc/Encode.pm +++ b/lib/MHonArc/Encode.pm @@ -8,9 +8,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -19,19 +19,16 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHonArc::Encode; use strict; -BEGIN { - use MHonArc; - our $VERSION = $MHonArc::VERSION; +our $VERSION = '2.6.24'; +BEGIN { # If the Encode module is available, we use it, otherwise, we # try to use Unicode::MapUTF8. eval { require Encode; }; diff --git a/lib/MHonArc/RFC822.pm b/lib/MHonArc/RFC822.pm index 458692e..650040d 100644 --- a/lib/MHonArc/RFC822.pm +++ b/lib/MHonArc/RFC822.pm @@ -14,9 +14,9 @@ ## Copyright (C) 1993 A. P. Barrett ## Copyright (C) 1997,2003 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -25,20 +25,17 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHonArc::RFC822; use strict; use Exporter (); -use MHonArc; use vars qw( @ISA @EXPORT @EXPORT_OK $VERSION ); @ISA = qw ( Exporter ); -$VERSION = $MHonArc::VERSION; +$VERSION = '2.6.24'; @EXPORT = (); @EXPORT_OK = qw( diff --git a/lib/MHonArc/UTF8.pm b/lib/MHonArc/UTF8.pm index cdb59f9..d36d319 100644 --- a/lib/MHonArc/UTF8.pm +++ b/lib/MHonArc/UTF8.pm @@ -8,9 +8,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -19,9 +19,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHonArc::UTF8; @@ -29,9 +27,9 @@ package MHonArc::UTF8; use strict; use MHonArc::CharMaps; +our $VERSION = '2.6.24'; + BEGIN { - use MHonArc; - our $VERSION = $MHonArc::VERSION; eval { require MHonArc::UTF8::Encode; }; if (!$@) { # Encode module available diff --git a/lib/MHonArc/UTF8/AppleArabic.pm b/lib/MHonArc/UTF8/AppleArabic.pm index 06b16d8..e91d126 100644 --- a/lib/MHonArc/UTF8/AppleArabic.pm +++ b/lib/MHonArc/UTF8/AppleArabic.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::AppleArabic; + +our $VERSION = '2.6.24'; + +{ '','Ä', '',' ', diff --git a/lib/MHonArc/UTF8/AppleCenteuro.pm b/lib/MHonArc/UTF8/AppleCenteuro.pm index 045651c..433365e 100644 --- a/lib/MHonArc/UTF8/AppleCenteuro.pm +++ b/lib/MHonArc/UTF8/AppleCenteuro.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::AppleCenteuro; + +our $VERSION = '2.6.24'; + +{ '',' ', '','£', diff --git a/lib/MHonArc/UTF8/AppleCroatian.pm b/lib/MHonArc/UTF8/AppleCroatian.pm index afe861b..1013fe6 100644 --- a/lib/MHonArc/UTF8/AppleCroatian.pm +++ b/lib/MHonArc/UTF8/AppleCroatian.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::AppleCroatian; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/UTF8/AppleCyrillic.pm b/lib/MHonArc/UTF8/AppleCyrillic.pm index 3fae780..c9bb3f2 100644 --- a/lib/MHonArc/UTF8/AppleCyrillic.pm +++ b/lib/MHonArc/UTF8/AppleCyrillic.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::AppleCyrillic; + +our $VERSION = '2.6.24'; + +{ '',' ', '','£', diff --git a/lib/MHonArc/UTF8/AppleGreek.pm b/lib/MHonArc/UTF8/AppleGreek.pm index 6bc1f94..71398d0 100644 --- a/lib/MHonArc/UTF8/AppleGreek.pm +++ b/lib/MHonArc/UTF8/AppleGreek.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::AppleGreek; + +our $VERSION = '2.6.24'; + +{ '',' ', '','£', diff --git a/lib/MHonArc/UTF8/AppleHebrew.pm b/lib/MHonArc/UTF8/AppleHebrew.pm index 28b6c4f..b06c886 100644 --- a/lib/MHonArc/UTF8/AppleHebrew.pm +++ b/lib/MHonArc/UTF8/AppleHebrew.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::AppleHebrew; + +our $VERSION = '2.6.24'; + +{ '','Ä', '','ײַ', diff --git a/lib/MHonArc/UTF8/AppleIceland.pm b/lib/MHonArc/UTF8/AppleIceland.pm index 0c0de87..91c6bb3 100644 --- a/lib/MHonArc/UTF8/AppleIceland.pm +++ b/lib/MHonArc/UTF8/AppleIceland.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::AppleIceland; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/UTF8/AppleRoman.pm b/lib/MHonArc/UTF8/AppleRoman.pm index 6c9bfbc..5e38835 100644 --- a/lib/MHonArc/UTF8/AppleRoman.pm +++ b/lib/MHonArc/UTF8/AppleRoman.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::AppleRoman; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/UTF8/AppleRomanian.pm b/lib/MHonArc/UTF8/AppleRomanian.pm index c23b905..c97582e 100644 --- a/lib/MHonArc/UTF8/AppleRomanian.pm +++ b/lib/MHonArc/UTF8/AppleRomanian.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::AppleRomanian; + +our $VERSION = '2.6.24'; + +{ '','Ș', '','Ț', diff --git a/lib/MHonArc/UTF8/AppleThai.pm b/lib/MHonArc/UTF8/AppleThai.pm index ae7a5ae..f711e48 100644 --- a/lib/MHonArc/UTF8/AppleThai.pm +++ b/lib/MHonArc/UTF8/AppleThai.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::AppleThai; + +our $VERSION = '2.6.24'; + +{ '',' ', '','©', diff --git a/lib/MHonArc/UTF8/AppleTurkish.pm b/lib/MHonArc/UTF8/AppleTurkish.pm index b575468..54b1d54 100644 --- a/lib/MHonArc/UTF8/AppleTurkish.pm +++ b/lib/MHonArc/UTF8/AppleTurkish.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::AppleTurkish; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/UTF8/BIG5_ETEN.pm b/lib/MHonArc/UTF8/BIG5_ETEN.pm index 2adc335..cc55cbf 100644 --- a/lib/MHonArc/UTF8/BIG5_ETEN.pm +++ b/lib/MHonArc/UTF8/BIG5_ETEN.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::BIG5_ETEN; + +our $VERSION = '2.6.24'; + +{ '',' ', '','§', diff --git a/lib/MHonArc/UTF8/BIG5_HKSCS.pm b/lib/MHonArc/UTF8/BIG5_HKSCS.pm index 74ecbc2..5010523 100644 --- a/lib/MHonArc/UTF8/BIG5_HKSCS.pm +++ b/lib/MHonArc/UTF8/BIG5_HKSCS.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::BIG5_HKSCS; + +our $VERSION = '2.6.24'; + +{ '@','', 'A','', diff --git a/lib/MHonArc/UTF8/CP1250.pm b/lib/MHonArc/UTF8/CP1250.pm index 88da9d9..1bc0bc2 100644 --- a/lib/MHonArc/UTF8/CP1250.pm +++ b/lib/MHonArc/UTF8/CP1250.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP1250; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¤', diff --git a/lib/MHonArc/UTF8/CP1251.pm b/lib/MHonArc/UTF8/CP1251.pm index b6d902e..75ce1a6 100644 --- a/lib/MHonArc/UTF8/CP1251.pm +++ b/lib/MHonArc/UTF8/CP1251.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP1251; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¤', diff --git a/lib/MHonArc/UTF8/CP1252.pm b/lib/MHonArc/UTF8/CP1252.pm index 8bb16da..e545421 100644 --- a/lib/MHonArc/UTF8/CP1252.pm +++ b/lib/MHonArc/UTF8/CP1252.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP1252; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/UTF8/CP1253.pm b/lib/MHonArc/UTF8/CP1253.pm index 4c5635e..7d565e8 100644 --- a/lib/MHonArc/UTF8/CP1253.pm +++ b/lib/MHonArc/UTF8/CP1253.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP1253; + +our $VERSION = '2.6.24'; + +{ '',' ', '','£', diff --git a/lib/MHonArc/UTF8/CP1254.pm b/lib/MHonArc/UTF8/CP1254.pm index 9c68804..826bbc0 100644 --- a/lib/MHonArc/UTF8/CP1254.pm +++ b/lib/MHonArc/UTF8/CP1254.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP1254; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/UTF8/CP1255.pm b/lib/MHonArc/UTF8/CP1255.pm index dd36882..0c93240 100644 --- a/lib/MHonArc/UTF8/CP1255.pm +++ b/lib/MHonArc/UTF8/CP1255.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP1255; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/UTF8/CP1256.pm b/lib/MHonArc/UTF8/CP1256.pm index 03b8214..9fa0ff2 100644 --- a/lib/MHonArc/UTF8/CP1256.pm +++ b/lib/MHonArc/UTF8/CP1256.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP1256; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¢', diff --git a/lib/MHonArc/UTF8/CP1257.pm b/lib/MHonArc/UTF8/CP1257.pm index 6f3afe2..b6ac431 100644 --- a/lib/MHonArc/UTF8/CP1257.pm +++ b/lib/MHonArc/UTF8/CP1257.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP1257; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¢', diff --git a/lib/MHonArc/UTF8/CP1258.pm b/lib/MHonArc/UTF8/CP1258.pm index 513a97a..f6a4bf9 100644 --- a/lib/MHonArc/UTF8/CP1258.pm +++ b/lib/MHonArc/UTF8/CP1258.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP1258; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/UTF8/CP866.pm b/lib/MHonArc/UTF8/CP866.pm index a28c0c1..a0a4aa0 100644 --- a/lib/MHonArc/UTF8/CP866.pm +++ b/lib/MHonArc/UTF8/CP866.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP866; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¤', diff --git a/lib/MHonArc/UTF8/CP932.pm b/lib/MHonArc/UTF8/CP932.pm index daa035b..5aa49d8 100644 --- a/lib/MHonArc/UTF8/CP932.pm +++ b/lib/MHonArc/UTF8/CP932.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP932; + +our $VERSION = '2.6.24'; + +{ '','§', 'N','¨', diff --git a/lib/MHonArc/UTF8/CP936.pm b/lib/MHonArc/UTF8/CP936.pm index f20735a..1880259 100644 --- a/lib/MHonArc/UTF8/CP936.pm +++ b/lib/MHonArc/UTF8/CP936.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP936; + +our $VERSION = '2.6.24'; + +{ '','€', '','¤', diff --git a/lib/MHonArc/UTF8/CP949.pm b/lib/MHonArc/UTF8/CP949.pm index 7373235..be3acd3 100644 --- a/lib/MHonArc/UTF8/CP949.pm +++ b/lib/MHonArc/UTF8/CP949.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP949; + +our $VERSION = '2.6.24'; + +{ '','¡', '','¤', diff --git a/lib/MHonArc/UTF8/CP950.pm b/lib/MHonArc/UTF8/CP950.pm index 86c8fe3..127e34f 100644 --- a/lib/MHonArc/UTF8/CP950.pm +++ b/lib/MHonArc/UTF8/CP950.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::CP950; + +our $VERSION = '2.6.24'; + +{ '','§', '','¯', diff --git a/lib/MHonArc/UTF8/EUC_JP.pm b/lib/MHonArc/UTF8/EUC_JP.pm index 7df9e17..00ce341 100644 --- a/lib/MHonArc/UTF8/EUC_JP.pm +++ b/lib/MHonArc/UTF8/EUC_JP.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::EUC_JP; + +our $VERSION = '2.6.24'; + +{ '','。', '','「', diff --git a/lib/MHonArc/UTF8/Encode.pm b/lib/MHonArc/UTF8/Encode.pm index 5dc03c4..b33fec2 100644 --- a/lib/MHonArc/UTF8/Encode.pm +++ b/lib/MHonArc/UTF8/Encode.pm @@ -8,9 +8,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -19,9 +19,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHonArc::UTF8::Encode; @@ -30,6 +28,8 @@ use strict; use Encode; use MHonArc::CharMaps; +our $VERSION = '2.6.24'; + ##---------------------------------------------------------------------------## sub clip { diff --git a/lib/MHonArc/UTF8/GB2312.pm b/lib/MHonArc/UTF8/GB2312.pm index f88985c..3bf7890 100644 --- a/lib/MHonArc/UTF8/GB2312.pm +++ b/lib/MHonArc/UTF8/GB2312.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::GB2312; + +our $VERSION = '2.6.24'; + +{ '',' ', '','、', diff --git a/lib/MHonArc/UTF8/GOST19768_87.pm b/lib/MHonArc/UTF8/GOST19768_87.pm index 8cde385..0d40cac 100644 --- a/lib/MHonArc/UTF8/GOST19768_87.pm +++ b/lib/MHonArc/UTF8/GOST19768_87.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::GOST19768_87; + +our $VERSION = '2.6.24'; + +{ '$','¤', '',' ', diff --git a/lib/MHonArc/UTF8/HP_ROMAN8.pm b/lib/MHonArc/UTF8/HP_ROMAN8.pm index 9e8ef12..6369e8e 100644 --- a/lib/MHonArc/UTF8/HP_ROMAN8.pm +++ b/lib/MHonArc/UTF8/HP_ROMAN8.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::HP_ROMAN8; + +our $VERSION = '2.6.24'; + +{ '',' ', '','À', diff --git a/lib/MHonArc/UTF8/ISO8859_1.pm b/lib/MHonArc/UTF8/ISO8859_1.pm index 78313a1..e2c5a60 100644 --- a/lib/MHonArc/UTF8/ISO8859_1.pm +++ b/lib/MHonArc/UTF8/ISO8859_1.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_1; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/UTF8/ISO8859_10.pm b/lib/MHonArc/UTF8/ISO8859_10.pm index d5b513e..8b99390 100644 --- a/lib/MHonArc/UTF8/ISO8859_10.pm +++ b/lib/MHonArc/UTF8/ISO8859_10.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_10; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ą', diff --git a/lib/MHonArc/UTF8/ISO8859_11.pm b/lib/MHonArc/UTF8/ISO8859_11.pm index f5bf3df..e2374f6 100644 --- a/lib/MHonArc/UTF8/ISO8859_11.pm +++ b/lib/MHonArc/UTF8/ISO8859_11.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_11; + +our $VERSION = '2.6.24'; + +{ '',' ', '','ก', diff --git a/lib/MHonArc/UTF8/ISO8859_13.pm b/lib/MHonArc/UTF8/ISO8859_13.pm index 357a9d1..cf7351b 100644 --- a/lib/MHonArc/UTF8/ISO8859_13.pm +++ b/lib/MHonArc/UTF8/ISO8859_13.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_13; + +our $VERSION = '2.6.24'; + +{ '',' ', '','”', diff --git a/lib/MHonArc/UTF8/ISO8859_14.pm b/lib/MHonArc/UTF8/ISO8859_14.pm index f213046..fc37140 100644 --- a/lib/MHonArc/UTF8/ISO8859_14.pm +++ b/lib/MHonArc/UTF8/ISO8859_14.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_14; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ḃ', diff --git a/lib/MHonArc/UTF8/ISO8859_15.pm b/lib/MHonArc/UTF8/ISO8859_15.pm index 819346b..927d46a 100644 --- a/lib/MHonArc/UTF8/ISO8859_15.pm +++ b/lib/MHonArc/UTF8/ISO8859_15.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_15; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/UTF8/ISO8859_16.pm b/lib/MHonArc/UTF8/ISO8859_16.pm index 0ead126..230c800 100644 --- a/lib/MHonArc/UTF8/ISO8859_16.pm +++ b/lib/MHonArc/UTF8/ISO8859_16.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_16; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ą', diff --git a/lib/MHonArc/UTF8/ISO8859_2.pm b/lib/MHonArc/UTF8/ISO8859_2.pm index f6eef56..b5e82c5 100644 --- a/lib/MHonArc/UTF8/ISO8859_2.pm +++ b/lib/MHonArc/UTF8/ISO8859_2.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_2; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ą', diff --git a/lib/MHonArc/UTF8/ISO8859_3.pm b/lib/MHonArc/UTF8/ISO8859_3.pm index 2beabf7..44d3a7e 100644 --- a/lib/MHonArc/UTF8/ISO8859_3.pm +++ b/lib/MHonArc/UTF8/ISO8859_3.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_3; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ħ', diff --git a/lib/MHonArc/UTF8/ISO8859_4.pm b/lib/MHonArc/UTF8/ISO8859_4.pm index b522053..f21361d 100644 --- a/lib/MHonArc/UTF8/ISO8859_4.pm +++ b/lib/MHonArc/UTF8/ISO8859_4.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_4; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ą', diff --git a/lib/MHonArc/UTF8/ISO8859_5.pm b/lib/MHonArc/UTF8/ISO8859_5.pm index 5ee106e..081c6b6 100644 --- a/lib/MHonArc/UTF8/ISO8859_5.pm +++ b/lib/MHonArc/UTF8/ISO8859_5.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_5; + +our $VERSION = '2.6.24'; + +{ '',' ', '','Ё', diff --git a/lib/MHonArc/UTF8/ISO8859_6.pm b/lib/MHonArc/UTF8/ISO8859_6.pm index 12668d3..7208bf4 100644 --- a/lib/MHonArc/UTF8/ISO8859_6.pm +++ b/lib/MHonArc/UTF8/ISO8859_6.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_6; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¤', diff --git a/lib/MHonArc/UTF8/ISO8859_7.pm b/lib/MHonArc/UTF8/ISO8859_7.pm index b67253f..601a787 100644 --- a/lib/MHonArc/UTF8/ISO8859_7.pm +++ b/lib/MHonArc/UTF8/ISO8859_7.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_7; + +our $VERSION = '2.6.24'; + +{ '',' ', '','ʽ', diff --git a/lib/MHonArc/UTF8/ISO8859_8.pm b/lib/MHonArc/UTF8/ISO8859_8.pm index 0d88f8a..3b13aaf 100644 --- a/lib/MHonArc/UTF8/ISO8859_8.pm +++ b/lib/MHonArc/UTF8/ISO8859_8.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_8; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¢', diff --git a/lib/MHonArc/UTF8/ISO8859_9.pm b/lib/MHonArc/UTF8/ISO8859_9.pm index 710763f..254867f 100644 --- a/lib/MHonArc/UTF8/ISO8859_9.pm +++ b/lib/MHonArc/UTF8/ISO8859_9.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::ISO8859_9; + +our $VERSION = '2.6.24'; + +{ '',' ', '','¡', diff --git a/lib/MHonArc/UTF8/KOI8_A.pm b/lib/MHonArc/UTF8/KOI8_A.pm index fbbb755..646e041 100644 --- a/lib/MHonArc/UTF8/KOI8_A.pm +++ b/lib/MHonArc/UTF8/KOI8_A.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::KOI8_A; + +our $VERSION = '2.6.24'; + +{ '$','¤', '','ю', diff --git a/lib/MHonArc/UTF8/KOI8_B.pm b/lib/MHonArc/UTF8/KOI8_B.pm index fcc2a3a..a3c32e8 100644 --- a/lib/MHonArc/UTF8/KOI8_B.pm +++ b/lib/MHonArc/UTF8/KOI8_B.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::KOI8_B; + +our $VERSION = '2.6.24'; + +{ '','ё', '','Ё', diff --git a/lib/MHonArc/UTF8/KOI8_E.pm b/lib/MHonArc/UTF8/KOI8_E.pm index 0acb0ff..b300470 100644 --- a/lib/MHonArc/UTF8/KOI8_E.pm +++ b/lib/MHonArc/UTF8/KOI8_E.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::KOI8_E; + +our $VERSION = '2.6.24'; + +{ '',' ', '','ђ', diff --git a/lib/MHonArc/UTF8/KOI8_F.pm b/lib/MHonArc/UTF8/KOI8_F.pm index 8a55975..e850b15 100644 --- a/lib/MHonArc/UTF8/KOI8_F.pm +++ b/lib/MHonArc/UTF8/KOI8_F.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::KOI8_F; + +our $VERSION = '2.6.24'; + +{ '','─', '','│', diff --git a/lib/MHonArc/UTF8/KOI8_R.pm b/lib/MHonArc/UTF8/KOI8_R.pm index b0cdc35..e3a1d08 100644 --- a/lib/MHonArc/UTF8/KOI8_R.pm +++ b/lib/MHonArc/UTF8/KOI8_R.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::KOI8_R; + +our $VERSION = '2.6.24'; + +{ '',' ', '','©', diff --git a/lib/MHonArc/UTF8/KOI8_U.pm b/lib/MHonArc/UTF8/KOI8_U.pm index 6dec558..2ee3693 100644 --- a/lib/MHonArc/UTF8/KOI8_U.pm +++ b/lib/MHonArc/UTF8/KOI8_U.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::KOI8_U; + +our $VERSION = '2.6.24'; + +{ '','─', '','│', diff --git a/lib/MHonArc/UTF8/KOI_0.pm b/lib/MHonArc/UTF8/KOI_0.pm index 559afcb..62d4314 100644 --- a/lib/MHonArc/UTF8/KOI_0.pm +++ b/lib/MHonArc/UTF8/KOI_0.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::KOI_0; + +our $VERSION = '2.6.24'; + +{ '$','¤', '@','ю', diff --git a/lib/MHonArc/UTF8/KOI_7.pm b/lib/MHonArc/UTF8/KOI_7.pm index 215fe4f..1378ffe 100644 --- a/lib/MHonArc/UTF8/KOI_7.pm +++ b/lib/MHonArc/UTF8/KOI_7.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::KOI_7; + +our $VERSION = '2.6.24'; + +{ '$','¤', '`','Ю', diff --git a/lib/MHonArc/UTF8/MapUTF8.pm b/lib/MHonArc/UTF8/MapUTF8.pm index 620a443..9f61d22 100644 --- a/lib/MHonArc/UTF8/MapUTF8.pm +++ b/lib/MHonArc/UTF8/MapUTF8.pm @@ -8,9 +8,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -19,9 +19,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHonArc::UTF8::MapUTF8; @@ -31,6 +29,8 @@ use Unicode::String; use Unicode::MapUTF8; use MHonArc::CharMaps; +our $VERSION = '2.6.24'; + sub clip { use utf8; my $str = \shift; # Prevent unnecessary copy. diff --git a/lib/MHonArc/UTF8/MhaEncode.pm b/lib/MHonArc/UTF8/MhaEncode.pm index b34e9ca..88d2bce 100644 --- a/lib/MHonArc/UTF8/MhaEncode.pm +++ b/lib/MHonArc/UTF8/MhaEncode.pm @@ -8,9 +8,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 2002 Earl Hood, earl@earlhood.com ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -19,9 +19,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package MHonArc::UTF8::MhaEncode; @@ -30,6 +28,8 @@ use strict; use MHonArc::CharMaps; use MHonArc::Char; +our $VERSION = '2.6.24'; + my %CharsetMaps = ( 'iso-8859-1' => 'MHonArc/UTF8/ISO8859_1.pm', 'iso-8859-2' => 'MHonArc/UTF8/ISO8859_2.pm', diff --git a/lib/MHonArc/UTF8/VISCII.pm b/lib/MHonArc/UTF8/VISCII.pm index 3e77ff4..98b034f 100644 --- a/lib/MHonArc/UTF8/VISCII.pm +++ b/lib/MHonArc/UTF8/VISCII.pm @@ -1,4 +1,7 @@ package MHonArc::UTF8::VISCII; + +our $VERSION = '2.6.24'; + +{ '','Ẳ', '','Ẵ', diff --git a/lib/ewhutil.pl b/lib/ewhutil.pl index ac40322..b43e959 100644 --- a/lib/ewhutil.pl +++ b/lib/ewhutil.pl @@ -8,9 +8,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 1996-2001,2012 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -19,9 +19,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/iso2022jp.pl b/lib/iso2022jp.pl index c9fc324..f50f3bf 100644 --- a/lib/iso2022jp.pl +++ b/lib/iso2022jp.pl @@ -13,9 +13,9 @@ ## NIIBE Yutaka, gniibe@mri.co.jp ## Takashi P.KATOH, p-katoh@shiratori.riec.tohoku.ac.jp ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -24,9 +24,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package iso_2022_jp; diff --git a/lib/iso8859.pl b/lib/iso8859.pl index c91db7b..46c3f00 100644 --- a/lib/iso8859.pl +++ b/lib/iso8859.pl @@ -8,9 +8,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 1996-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -19,9 +19,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package iso_8859; diff --git a/lib/mhamain.pl b/lib/mhamain.pl index 4d72329..946a208 100644 --- a/lib/mhamain.pl +++ b/lib/mhamain.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-2012 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,17 +20,14 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; -use MHonArc; require 5; -$VERSION = $MHonArc::VERSION; +$VERSION = '2.6.24'; $VINFO = <. ##---------------------------------------------------------------------------## use File::Basename; diff --git a/lib/mhexternal.pl b/lib/mhexternal.pl index b40b1f8..5ebb702 100644 --- a/lib/mhexternal.pl +++ b/lib/mhexternal.pl @@ -21,9 +21,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-2001 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -32,9 +32,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package m2h_external; diff --git a/lib/mhfile.pl b/lib/mhfile.pl index f0bc843..8668b1b 100644 --- a/lib/mhfile.pl +++ b/lib/mhfile.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1997-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhidxrc.pl b/lib/mhidxrc.pl index a3f28c4..0072845 100644 --- a/lib/mhidxrc.pl +++ b/lib/mhidxrc.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1996-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhindex.pl b/lib/mhindex.pl index 03a8d99..f5eec55 100644 --- a/lib/mhindex.pl +++ b/lib/mhindex.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-2001 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhinit.pl b/lib/mhinit.pl index 47a8229..bb0db05 100644 --- a/lib/mhinit.pl +++ b/lib/mhinit.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-2001 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhlock.pl b/lib/mhlock.pl index 6bd4887..01a381a 100644 --- a/lib/mhlock.pl +++ b/lib/mhlock.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1997-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhmimetypes.pl b/lib/mhmimetypes.pl index 10b975a..a82b378 100644 --- a/lib/mhmimetypes.pl +++ b/lib/mhmimetypes.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1998,1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhmsgextbody.pl b/lib/mhmsgextbody.pl index 273930d..1412956 100644 --- a/lib/mhmsgextbody.pl +++ b/lib/mhmsgextbody.pl @@ -14,9 +14,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1999-2001,2005 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -25,9 +25,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package m2h_msg_extbody; diff --git a/lib/mhmsgfile.pl b/lib/mhmsgfile.pl index 8400b69..0954063 100644 --- a/lib/mhmsgfile.pl +++ b/lib/mhmsgfile.pl @@ -11,9 +11,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1998-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -22,9 +22,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhnote.pl b/lib/mhnote.pl index 8fda299..89672fb 100644 --- a/lib/mhnote.pl +++ b/lib/mhnote.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhnull.pl b/lib/mhnull.pl index 87a1fda..1dffa1f 100644 --- a/lib/mhnull.pl +++ b/lib/mhnull.pl @@ -14,9 +14,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1998,1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -25,9 +25,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package m2h_null; diff --git a/lib/mhopt.pl b/lib/mhopt.pl index 96ca3bf..2c5cb53 100644 --- a/lib/mhopt.pl +++ b/lib/mhopt.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1997-2002 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhrcfile.pl b/lib/mhrcfile.pl index d45fa45..09ab01f 100644 --- a/lib/mhrcfile.pl +++ b/lib/mhrcfile.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1996-2001 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhrcvars.pl b/lib/mhrcvars.pl index d317a34..1eac11d 100644 --- a/lib/mhrcvars.pl +++ b/lib/mhrcvars.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1996-2001 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhrmm.pl b/lib/mhrmm.pl index 4aec89e..b81c763 100644 --- a/lib/mhrmm.pl +++ b/lib/mhrmm.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhscan.pl b/lib/mhscan.pl index 6fd2cfc..2943eda 100644 --- a/lib/mhscan.pl +++ b/lib/mhscan.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhsingle.pl b/lib/mhsingle.pl index eb91702..12f333e 100644 --- a/lib/mhsingle.pl +++ b/lib/mhsingle.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-2001 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhthread.pl b/lib/mhthread.pl index d95b77d..a250b36 100644 --- a/lib/mhthread.pl +++ b/lib/mhthread.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-2001 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhtime.pl b/lib/mhtime.pl index b2873a2..b7840f8 100644 --- a/lib/mhtime.pl +++ b/lib/mhtime.pl @@ -8,9 +8,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 1996-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -19,9 +19,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhtxtenrich.pl b/lib/mhtxtenrich.pl index 970fe34..a0dcad9 100644 --- a/lib/mhtxtenrich.pl +++ b/lib/mhtxtenrich.pl @@ -18,9 +18,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1997-2002 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -29,9 +29,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package m2h_text_enriched; diff --git a/lib/mhtxtplain.pl b/lib/mhtxtplain.pl index 1ab2655..3a3fca5 100644 --- a/lib/mhtxtplain.pl +++ b/lib/mhtxtplain.pl @@ -14,9 +14,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-2005 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -25,9 +25,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package m2h_text_plain; diff --git a/lib/mhtxttsv.pl b/lib/mhtxttsv.pl index 554d441..8bbc043 100644 --- a/lib/mhtxttsv.pl +++ b/lib/mhtxttsv.pl @@ -15,9 +15,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1998-2001 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -26,9 +26,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package m2h_text_tsv; diff --git a/lib/mhusage.pl b/lib/mhusage.pl index 06781d2..5bc05e9 100644 --- a/lib/mhusage.pl +++ b/lib/mhusage.pl @@ -10,9 +10,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -21,9 +21,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/mhutil.pl b/lib/mhutil.pl index b3dceb5..3be3cbe 100644 --- a/lib/mhutil.pl +++ b/lib/mhutil.pl @@ -9,9 +9,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -20,9 +20,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mhonarc; diff --git a/lib/osinit.pl b/lib/osinit.pl index 71e10bf..1abd651 100644 --- a/lib/osinit.pl +++ b/lib/osinit.pl @@ -11,9 +11,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -22,9 +22,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## use File::Basename; diff --git a/lib/readmail.pl b/lib/readmail.pl index 0ba973e..1da0544 100644 --- a/lib/readmail.pl +++ b/lib/readmail.pl @@ -26,9 +26,9 @@ ##---------------------------------------------------------------------------## ## Copyright (C) 1996-2003 Earl Hood, mhonarc AT mhonarc DOT org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -37,9 +37,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package readmail; diff --git a/mha-dbedit b/mha-dbedit index 887320d..c9b084f 100755 --- a/mha-dbedit +++ b/mha-dbedit @@ -10,9 +10,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1998-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -21,9 +21,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mha_dbedit; diff --git a/mha-dbrecover b/mha-dbrecover index 9461aa9..ea208bc 100755 --- a/mha-dbrecover +++ b/mha-dbrecover @@ -10,9 +10,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1998,2001 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -21,9 +21,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mha_dbrecover; diff --git a/mha-decode b/mha-decode index e123cd0..30c3b1f 100755 --- a/mha-decode +++ b/mha-decode @@ -10,9 +10,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1998 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -21,9 +21,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## package mha_decode; diff --git a/mhonarc b/mhonarc index 4b7b4cc..3d1c447 100755 --- a/mhonarc +++ b/mhonarc @@ -11,9 +11,9 @@ ## MHonArc -- Internet mail-to-HTML converter ## Copyright (C) 1995-1999 Earl Hood, mhonarc@mhonarc.org ## -## This program is free software; you can redistribute it and/or modify +## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or +## the Free Software Foundation, either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, @@ -22,9 +22,7 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -## 02111-1307, USA +## along with this program. If not, see . ##---------------------------------------------------------------------------## ##---------------------------------------------------------------------------##