| HTML-MobileJp documentation | Contained in the HTML-MobileJp distribution. |
HTML::MobileJp - generate mobile-jp html tags
use HTML::MobileJp qw/gps_a/;
gps_a(
callback_url => "http://example.com/gps/jLKJFJDSL",
carrier => 'I',
is_gps => 1,
);
# => <a href="http://example.com/gps/jLKJFJDSL" lcs="lcs">
gps_a(
callback_url => "http://example.com/gps/jLKJFJDSL",
carrier => 'I',
is_gps => 0,
);
# => <a href="http://w1m.docomo.ne.jp/cp/iarea?ecode=OPENAREACODE&msn=OPENAREAKEY&posinfo=1&nl=http%3A%2F%2Fexample.com%2Fgps%2FjLKJFJDSL">
HTML::MobileJp is html tag generator for Japanese mobile phone.
http://www.au.kddi.com/ezfactory/tec/dlcgi/download_1.html
download CGI for ezweb.
Tokuhiro Matsuno <tokuhirom aaaatttt gmail dotottto commmmm>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| HTML-MobileJp documentation | Contained in the HTML-MobileJp distribution. |
package HTML::MobileJp; use strict; use warnings; use 5.00800; our $VERSION = '0.07'; use base qw/Exporter/; my @modules = map { __PACKAGE__ . "::Plugin::$_" } qw/ GPS EZweb::Object /; our @EXPORT; for my $module (@modules) { eval "use $module"; ## no critic. die $@ if $@; $module->import; no strict 'refs'; push @EXPORT, @{ "${module}::EXPORT"}; } 1; __END__