HTML::MobileJp - generate mobile-jp html tags


HTML-MobileJp documentation Contained in the HTML-MobileJp distribution.

Index


Code Index:

NAME

Top

HTML::MobileJp - generate mobile-jp html tags

SYNOPSIS

Top

    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&amp;msn=OPENAREAKEY&amp;posinfo=1&amp;nl=http%3A%2F%2Fexample.com%2Fgps%2FjLKJFJDSL">

DESCRIPTION

Top

HTML::MobileJp is html tag generator for Japanese mobile phone.

TODO

Top

    http://www.au.kddi.com/ezfactory/tec/dlcgi/download_1.html

download CGI for ezweb.

AUTHOR

Top

Tokuhiro Matsuno <tokuhirom aaaatttt gmail dotottto commmmm>

SEE ALSO

Top

HTML::MobileJp::Plugin::GPS

LICENSE

Top

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__