Skip to content

Commit

Permalink
Add DEPRECATED Section to POD
Browse files Browse the repository at this point in the history
  • Loading branch information
ysasaki committed Oct 3, 2012
1 parent b9ab44a commit 72dad1c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Perl extension Text::Xslate::Bridge::FillInForm::Lite.

0.03 Wed Oct 3 20:37 JST 2012
- Add DEPRECATED Section to POD

0.02 Sat Sep 22 13:10 JST 2012
- Add META_MERGE and LICENSE

Expand Down
14 changes: 13 additions & 1 deletion lib/Text/Xslate/Bridge/FillInForm/Lite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use base qw(Text::Xslate::Bridge);
use Text::Xslate qw(html_builder);
use HTML::FillInForm::Lite qw(fillinform);

our $VERSION = '0.02';
our $VERSION = '0.03';

# copied from Text/Xslate/Manual/Cookbook.pod#Using_FillInForm
__PACKAGE__->bridge(
Expand All @@ -21,6 +21,18 @@ __END__
Text::Xslate::Bridge::FillInForm::Lite - HTML::FillInForm::Lite 'fillinform' for Text::Xslate
=head1 DEPRECATED
B<This module is deprecated>. You should use L<Text::Xslate> (ver 1.5018 or higher) and it's C<html_builder_module> option instead. Functions with this option are wrapped by C<html_builder()>. You need to use this module no longer!
# example for using fillinform
use Text::Xslate;
my $tx = Text::Xslate->new(
html_builder_module => ['HTML::FillInForm::Lite' => ['fillinform']]
);
See L<Text::Xslate> and L<Text::Xslate::Manual::Cookbook> for more details.
=head1 SYNOPSIS
use Text::Xslate;
Expand Down

0 comments on commit 72dad1c

Please sign in to comment.