|
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
Unknown target: CHANGES.
|
| Line | |
|---|
| 1 | package HTML::MobileJp; |
|---|
| 2 | use strict; |
|---|
| 3 | use warnings; |
|---|
| 4 | use 5.00800; |
|---|
| 5 | our $VERSION = '0.05'; |
|---|
| 6 | use base qw/Exporter/; |
|---|
| 7 | |
|---|
| 8 | my @modules = map { __PACKAGE__ . "::Plugin::$_" } qw/ |
|---|
| 9 | GPS |
|---|
| 10 | EZweb::Object |
|---|
| 11 | /; |
|---|
| 12 | |
|---|
| 13 | our @EXPORT; |
|---|
| 14 | |
|---|
| 15 | for 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 | |
|---|
| 25 | 1; |
|---|
| 26 | __END__ |
|---|
| 27 | |
|---|
| 28 | =for stopwords mobile-jp html TODO CGI ezweb |
|---|
| 29 | |
|---|
| 30 | =head1 NAME |
|---|
| 31 | |
|---|
| 32 | HTML::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&msn=OPENAREAKEY&posinfo=1&nl=http%3A%2F%2Fexample.com%2Fgps%2FjLKJFJDSL"> |
|---|
| 50 | |
|---|
| 51 | =head1 DESCRIPTION |
|---|
| 52 | |
|---|
| 53 | HTML::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 | |
|---|
| 59 | download CGI for ezweb. |
|---|
| 60 | |
|---|
| 61 | =head1 AUTHOR |
|---|
| 62 | |
|---|
| 63 | Tokuhiro Matsuno E<lt>tokuhirom aaaatttt gmail dotottto commmmmE<gt> |
|---|
| 64 | |
|---|
| 65 | =head1 SEE ALSO |
|---|
| 66 | |
|---|
| 67 | L<HTML::MobileJp::Plugin::GPS> |
|---|
| 68 | |
|---|
| 69 | =head1 LICENSE |
|---|
| 70 | |
|---|
| 71 | This library is free software; you can redistribute it and/or modify |
|---|
| 72 | it under the same terms as Perl itself. |
|---|
| 73 | |
|---|
| 74 | =cut |
|---|