root/lang/perl/HTML-MobileJp/trunk/lib/HTML/MobileJp.pm @ 14045

Revision 14045, 1.5 kB (checked in by tokuhirom, 5 years ago)

lang/perl/HTML-MobileJp?: Checking in changes prior to tagging of version 0.05. Changelog diff is:

=== Changes
==================================================================
--- Changes (revision 16552)
+++ Changes (local)
@@ -1,5 +1,9 @@

Revision history for Perl extension HTML::MobileJp?


+0.05
+
+ - this module needs perl 5.8 or later.
+

0.04


  • nop.

Unknown target: CHANGES.

Line 
1package HTML::MobileJp;
2use strict;
3use warnings;
4use 5.00800;
5our $VERSION = '0.05';
6use base qw/Exporter/;
7
8my @modules = map { __PACKAGE__ . "::Plugin::$_" } qw/
9  GPS
10  EZweb::Object
11  /;
12
13our @EXPORT;
14
15for my $module (@modules) {
16    eval "use $module"; ## no critic.
17    die $@ if $@;
18
19    $module->import;
20
21    no strict 'refs';
22    push @EXPORT, @{ "${module}::EXPORT"};
23}
24
251;
26__END__
27
28=for stopwords mobile-jp html TODO CGI ezweb
29
30=head1 NAME
31
32HTML::MobileJp - generate mobile-jp html tags
33
34=head1 SYNOPSIS
35
36    use HTML::MobileJp qw/gps_a/;
37    gps_a(
38        callback_url => "http://example.com/gps/jLKJFJDSL",
39        carrier      => 'I',
40        is_gps       => 1,
41    );
42    # => <a href="http://example.com/gps/jLKJFJDSL" lcs="lcs">
43
44    gps_a(
45        callback_url => "http://example.com/gps/jLKJFJDSL",
46        carrier      => 'I',
47        is_gps       => 0,
48    );
49    # => <a href="http://w1m.docomo.ne.jp/cp/iarea?ecode=OPENAREACODE&amp;msn=OPENAREAKEY&amp;posinfo=1&amp;nl=http%3A%2F%2Fexample.com%2Fgps%2FjLKJFJDSL">
50
51=head1 DESCRIPTION
52
53HTML::MobileJp is html tag generator for Japanese mobile phone.
54
55=head1 TODO
56
57    http://www.au.kddi.com/ezfactory/tec/dlcgi/download_1.html
58
59download CGI for ezweb.
60
61=head1 AUTHOR
62
63Tokuhiro Matsuno E<lt>tokuhirom aaaatttt gmail dotottto commmmmE<gt>
64
65=head1 SEE ALSO
66
67L<HTML::MobileJp::Plugin::GPS>
68
69=head1 LICENSE
70
71This library is free software; you can redistribute it and/or modify
72it under the same terms as Perl itself.
73
74=cut
Note: See TracBrowser for help on using the browser.