The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

HTML::MobileJp::Plugin::EZweb::Object - generate object object download HTML tag.

SYNOPSIS

    use HTML::MobileJp;
    ezweb_object(
        url         => 'http://aa.com/movie.amc',
        mime_type   => 'application/x-mpeg',
        copyright   => 'no',
        standby     => '$B%@%&%s%m!<%I(B',
        disposition => 'devdl1q',
        size        => '119065',
        title       => '$B%5%s%W%kF02h(B',
    );
    # =>
    #   <object data="http://aa.com/movie.amc" type="application/x-mpeg" copyright="no" standby="$B%@%&%s%m!<%I(B">
    #   <param name="disposition" value="devdl1q" valuetype="data" />
    #   <param name="size" value="119065" valuetype="data" />
    #   <param name="title" value="$B%5%s%W%kF02h(B" valuetype="data" />
    #   </object>

DESCRIPTION

generate object download HTML tag.

AUTHOR

Tokuhiro Matsuno <tokuhirom aaaatttt gmail dotottto commmmm>

SEE ALSO

HTML::MobileJp, http://www.au.kddi.com/ezfactory/tec/spec/wap_tag5.html

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.