1 | use strict; |
---|
2 | use warnings; |
---|
3 | |
---|
4 | use Getopt::Long; |
---|
5 | use Text::FormBuilder; |
---|
6 | |
---|
7 | GetOptions( |
---|
8 | 'o=s' => \my $outfile, |
---|
9 | 'D=s' => \my %fb_options, |
---|
10 | ); |
---|
11 | my $src_file = shift; |
---|
12 | |
---|
13 | create_form($src_file, \%fb_options, $outfile); |
---|
14 | #Text::FormBuilder->parse($src_file)->build(%fb_options)->write($outfile); |
---|
15 | |
---|
16 | =head1 NAME |
---|
17 | |
---|
18 | fb - Frontend script for Text::FormBuilder |
---|
19 | |
---|
20 | =head1 SYNOPSIS |
---|
21 | |
---|
22 | $ fb my_form.txt -o form.html |
---|
23 | |
---|
24 | $ fb my_form.txt -o my_form.html -D action=/cgi-bin/my-script.pl |
---|
25 | |
---|
26 | =head1 DESCRIPTION |
---|
27 | |
---|
28 | Parses a formspec file from the command line and creates an output |
---|
29 | file. The sort of output file depends on the value given to the C<-o> |
---|
30 | option. If it ends in F<.pm>, a standalone module is created. If it |
---|
31 | ends in F<.pl> or F<.cgi>, a skeleton CGI script is created. Any other |
---|
32 | value, will be taken as the name of an HTML file to write. Finally, if |
---|
33 | not C<-o> option is given then the HTML will be written to STDOUT. |
---|
34 | |
---|
35 | =head1 OPTIONS |
---|
36 | |
---|
37 | =over |
---|
38 | |
---|
39 | =item C<< -D <parameter>=<value> >> |
---|
40 | |
---|
41 | Define options that are passed to the CGI::FormBuilder object. For example, |
---|
42 | to create a form on a static html page, and have it submitted to an external |
---|
43 | CGI script, you would want to define the C<action> parameter: |
---|
44 | |
---|
45 | $ fb ... -D action=/cgi-bin/some_script.pl |
---|
46 | |
---|
47 | =item C<< -o <output file> >> |
---|
48 | |
---|
49 | Where to write output, and what form to write it in. See C<create_form> in |
---|
50 | L<Text::FormBuilder> for a more detailed explanation. |
---|
51 | |
---|
52 | # write a standalone module |
---|
53 | $ fb myform -o MyForm.pm |
---|
54 | |
---|
55 | # write a CGI script |
---|
56 | $ fb myform -o form.cgi |
---|
57 | $ fb myform -o form.pl |
---|
58 | |
---|
59 | =back |
---|
60 | |
---|
61 | =head1 AUTHOR |
---|
62 | |
---|
63 | Peter Eichman, C<< <peichman@cpan.org> >> |
---|
64 | |
---|
65 | =head1 COPYRIGHT AND LICENSE |
---|
66 | |
---|
67 | Copyright E<copy>2004 by Peter Eichman. |
---|
68 | |
---|
69 | This program is free software; you can redistribute it and/or |
---|
70 | modify it under the same terms as Perl itself. |
---|
71 | |
---|
72 | =cut |
---|