Revision history for Perl suite Locale::Maketext
2012-12-04
* Fix misparsing of maketext strings.
2012-11-22
* Fix hash order dependcy bug in tests
2012-01-14
* Minor POD documentation update to sync with upstream blead.
2011-12-23
* No changes. Production release after CPAN testers cleared.
2011-12-14
* Update to 1.19_01 from upstream blead for release testing
Fix broken URLs in dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod for RFCs
Keep verbatim pod in various dist/* pods within 79 cols
2011-05-25
* Update to 1.19 from upstream blead
[perl #89896] Locale::Maketext test failure
when environment has variable containing unbalanced brackets
Suppress "Name used only once" warnings.
[perl #81888] Fix typos (spelling errors) in dist/*
2010-10-20
* Release 1.17
Test release of 1.16_01, versioning even deprecated Guts modules.
This prevents CPAN upgrade circular heck. Thanks BinGOs
Tested version fix for CPAN by BinGOs. Bump to stable version and release to public
2010-10-07
* Release 1.16
Blead commit bac7bf8 - Copy @_ to @_ to de-alias passed variables
to assure that the aliases cannot be altered during maketext calls.
Fix for CPAN RT #40727: infinite loop in
Locale::Maketext::Guts::_compile() when working with tainted values
Fix for CPAN RT #34182: Don't localize $@.
->maketext calls will now backup and restore $@ so that die messages are not suppressed.
Fix for CPAN RT #55461
%hash deprecated messages cleaned up with perl 5.12
Fix for CPAN RT #48118. Perl 76674
Speed and efficiency tweaks in _compile calls when string has no ~][ in it.
Fix for CPAN RT #48808. Perl 76668
I18N::LangTags use() fixups.
2010-06-22
* Release 1.15 (included in perl 5.13.3; not released separately)
Locale::Maketext guts have been merged back into the main module
Fix for CPAN RT #46738. Perl 76354
Support for RO Lexicon hashes (External cache support)
2009-11-20
* Release 1.14 (included in perl 5.11.2; not released separately)
In Locale::Maketext, avoid using defined @array and defined %hash.
Convert the odd Locale::Maketext test out from Test to Test::More.
2009-06-23 Adriano Ferreira
* Development release 1.13_82
One more recipe: on [numf,...] with decimal precision
2009-06-23 Adriano Ferreira
* Development release 1.13_81
Change a few straggling 'DEBUG and print' to 'DEBUG and warn' (thanks Dan Muey)
A start of a cookbook.
2009-06-23 Adriano Ferreira
* Development release 1.13_80
Fixes CPAN RT #25877 (thanks imacat)
Add a test for failure_handler_auto()
repository. Approved by wiz@.
* Now work well with PHP 5.4 and later.
Version 1.4.23 - SVN
--------------------
- Added capability to issue SEARCH commands in literal format (so that
non-ASCII search terms are handled RFC-correctly).
- Fixed hook name clash: new "smtp_auth" hook added in version 1.4.22
has been renamed to "smtp_authenticate"
- Added SASL PLAIN mechanism for IMAP logins; backported from version
1.5.2.
- Prevent syslog warning in call_user_func_array() call when no
arguments given. Patch from Jean-Philippe Guerard (#3309935).
- Changed the read_body_menu_top hook from concat_hook_function to
do_hook_function (plugin authors please note)
- Always ensure that the Reply-To header is a full email address in
outgoing messages
- Fixed issue with Noselect mailboxes being clickable in folder list
- Made performance improvements in mailbox listing
- Attachment filename extensions changed from ".msg" to ".eml"
- Unified address book searches somewhat: file-backed address books now
search in each field individually; database-backed address books now
search in fields other than first/last name (nickname, email); LDAP-
backed address books now search in common name fields as well as by
email address (cn, sn, givenname, mail)
- You may now enable LDAP-backed address books to be listed (using
the "List all" button on the address search screen accessed via
the "Addresses" button on the compose screen) by adding
"$ldap_abook_allow_listing = TRUE;" (without quotes) to
config/config_local.php (previously, this required editing of a
file).
- Added ability to control browser rendering mode (quirks versus
standards) - see the $browser_rendering_mode setting in
config/config.php or the "4. General Options ==> 19. Browser
rendering mode" setting in the configuration tool (#3240356).
- Added "search_index_before" hook (analog of the "mailbox_index_before"
hook)
- Made performance improvements in security token handling
- Improvements for compatibility with PHP 5.4.
- Added option that allows users to have replies to their own
messages sent to the recipient of the previous message (#3520988).
gcc45.
- avoid implicit int, declare void functions void
- return values from non-void functions
- put most external declarations properly in header files
- use some static and const
- fix up a big mess with function pointer casting
- use standard includes, don't provide own decls of standard functions
- use types matching libc when providing own malloc, printf, and putchar
- use <ctype.h> functions correctly
- silence assorted compiler warnings
- fix some bugs exposed by compiler warnings
- don't intentionally exercise signed overflow
- remove some unused items
- add patch comments to other patch (patch-aa)
As this includes several fixes and removes some undefined behavior on
a commonly reachable code path, bump PKGREVISION.
Now passes gcc -Wall -Wextra -Wmissing-declarations -Wwrite-strings on gcc45.
May build with clang now too.
Changes:
- use standard headers
- don't declare own errno, fopen(), getenv(), or malloc()
- declare own functions
- declare void functions void
- avoid implicit int
- use C89
- use some const
- use some static
- fix signed/unsigned mismatches
- call execl() properly
- don't cast return value of malloc
- initialize struct sigaction correctly
- use <ctype.h> functions correctly
- don't index arrays with (signed) char
- don't put function declarations inside function bodies
- patch up two uninitialized variables
- silence some compiler warnings that are not bugs
- remove some unused objects
and:
- add patch comments for preexisting patches
- correct some minor pkglint
As a couple of these things fixed bugs (e.g. the execl calls), bump
PKGREVISION.
handling that are using gcc are also using glibc. Might fix the Solaris
build.
XXX: looking inside FILE is gross, someone should sort this out
XXX: in collaboration with upstream.