Skip to content

Commit

Permalink
Changes for version 0.70
Browse files Browse the repository at this point in the history
  • Loading branch information
clintongormley committed Nov 22, 2008
1 parent a0aaef3 commit c7bd345
Show file tree
Hide file tree
Showing 34 changed files with 3,338 additions and 865 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Expand Up @@ -6,9 +6,11 @@ patches or suggestions, or their bug reports or comments have inspired
the appropriate patches. Corrections, additions, deletions welcome:

Alain Barbet (ALIAN)
Andy Wardley (ABW)
Brian Cassidy (BRICAS)
Christian Hansen
Cosimo Streppone (COSIMO)
Clinton Gormley (DRTECH)
Gaal Yahas (GAAL)
Harmen
Helmut Lichtenberg
Expand Down
34 changes: 31 additions & 3 deletions Changes
@@ -1,7 +1,35 @@
[Changes for 0.70 - 2008-10-04]

Contributed by: Clinton Gormley (DRTECH)

* Refactored Locale::Maketext::Extract
- Each format is handled by a different plugin
- Each format recognises certain default file types
- Custom plugins can be used

* Locale::Maketext::Extract::Plugin::TT2
- Uses Template Toolkit as a parser
- Handles inline filter, block filters, and function calls to "l" or "loc"
Contibuted by: Andy Wardley [ABW]

* Locale::Maketext::Extract::Plugin::YAML uses the YAML module as a parser
and can recognise the form:
key: _"string"

* Locale::Maketext::Extract::Run
- Added -P|plugins option to specify which parser plugins to use
- Added -w|warnings to turn parser warnings on and off
- Added -v|verbose to output the files that are being processed,
the plugins used to process them, and the extracted strings
- Fixed a bug in the File::Find routine to correctly prune
.svn directories and their contents

* Locale::Maketext::Extract::Plugin::Perl
- Added a defined check to avoid a warning.

[Changes for 0.68 - 2008-08-18]

* Locale::Maketext::Extract: Support for other forms of localization in
* Locale::Maketext::Extract: Support for other forms of localization in
TT templates and TT HEREDOCS.
Contributed by: Felix Antonius Wilhelm Ostmann

Expand All @@ -13,7 +41,7 @@

[Changes for 0.66 - 2008-02-12]

* Locale::Maketext::Extract: Support in Extract.pm->extract for
* Locale::Maketext::Extract: Support in Extract.pm->extract for
HTML::FormFu config files.
Contributed by: Andreas Marienborg

Expand Down Expand Up @@ -185,7 +213,7 @@ Patches from Thierry Vignaud:
[Changes for 0.46 - 2004-12-16]

* Patch from Thierry Vignaud: Add a "_allow_empty" option to the
Gettext backend, to allow empty strings with
Gettext backend, to allow empty strings with

* Harmen suggested a doc patch to better document the _AUTO key
for allowing empty or missing keys.
Expand Down
11 changes: 9 additions & 2 deletions MANIFEST
Expand Up @@ -10,14 +10,21 @@ inc/Module/Install/Fetch.pm
inc/Module/Install/Include.pm
inc/Module/Install/Makefile.pm
inc/Module/Install/Metadata.pm
inc/Module/Install/Scripts.pm
inc/Module/Install/Win32.pm
inc/Module/Install/WriteAll.pm
inc/PerlIO.pm
inc/Test/Builder.pm
inc/Test/Builder/Module.pm
inc/Test/More.pm
lib/Locale/Maketext/Extract.pm
lib/Locale/Maketext/Extract/Plugin/Base.pm
lib/Locale/Maketext/Extract/Plugin/FormFu.pm
lib/Locale/Maketext/Extract/Plugin/Generic.pm
lib/Locale/Maketext/Extract/Plugin/Mason.pm
lib/Locale/Maketext/Extract/Plugin/Perl.pm
lib/Locale/Maketext/Extract/Plugin/TextTemplate.pm
lib/Locale/Maketext/Extract/Plugin/TT2.pm
lib/Locale/Maketext/Extract/Plugin/YAML.pm
lib/Locale/Maketext/Extract/Run.pm
lib/Locale/Maketext/Lexicon.pm
lib/Locale/Maketext/Lexicon/Auto.pm
Expand All @@ -30,14 +37,14 @@ MANIFEST.SKIP
META.yml
README
script/xgettext.pl
SIGNATURE
t/1-basic.t
t/2-lmg.t
t/3-big-endian.t
t/4-encodings.t
t/5-extract.t
t/6-gettext.t
t/7-comments.t
t/8-plugin-args.t
t/99-bug-import-for-subclasses.t
t/comments.po
t/gencat.m
Expand Down
5 changes: 4 additions & 1 deletion Makefile.PL
Expand Up @@ -7,9 +7,12 @@ author 'Audrey Tang <cpan@audreyt.org>';
abstract 'Use other catalog formats in Maketext';
name 'Locale-Maketext-Lexicon';
license 'MIT';
perl_version '5.005';
all_from 'lib/Locale/Maketext/Lexicon.pm';
install_script 'script/xgettext.pl';
requires 'Locale::Maketext' => '0.01';
recommends 'Template' => '2.20';
recommends 'YAML' => '0.66';
include_deps 'Test::More';

WriteAll( sign => 1, meta => 1);
WriteAll;
4 changes: 2 additions & 2 deletions README
Expand Up @@ -2,8 +2,8 @@ NAME
Locale::Maketext::Lexicon - Use other catalog formats in Maketext

VERSION
This document describes version 0.67 of Locale::Maketext::Lexicon,
released ...............
This document describes version 0.70 of Locale::Maketext::Lexicon,
released October 4, 2008.

SYNOPSIS
As part of a localization class, automatically glob for available
Expand Down

0 comments on commit c7bd345

Please sign in to comment.