|
NAMEHTTP::MobileAgent::EZweb - EZweb implementationSYNOPSISuse HTTP::MobileAgent; local $ENV{HTTP_USER_AGENT} = "UP.Browser/3.01-HI02 UP.Link/3.2.1.2"; my $agent = HTTP::MobileAgent->new; printf "Name: %s\n", $agent->name; # "UP.Browser" printf "Version: %s\n", $agent->version; # 3.01 printf "DevieID: %s\n", $agent->device_id; # HI02 printf "Server: %s\n", $agent->server; # "UP.Link/3.2.1.2" # e.g.) UP.Browser/3.01-HI02 UP.Link/3.2.1.2 (Google WAP Proxy/1.0) printf "Comment: %s\n", $agent->comment; # "Google WAP Proxy/1.0" # e.g.) KDDI-TS21 UP.Browser/6.0.2.276 (GUI) MMP/1.1 print "XHTML compiant!\n" if $agent->xhtml_compliant; # true DESCRIPTIONHTTP::MobileAgent::EZweb is a subclass of HTTP::MobileAgent, which implements EZweb (WAP1.0/2.0) user agents.METHODSSee "METHODS" in HTTP::MobileAgent for common methods. Here are HTTP::MobileAgent::EZweb specific methods.
TODO
AUTHORTatsuhiko Miyagawa <miyagawa@bulknews.net>This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSOHTTP::MobileAgenthttp://www.au.kddi.com/ezfactory/tec/spec/4_4.html http://www.au.kddi.com/ezfactory/tec/spec/new_win/ezkishu.html
Visit the GSP FreeBSD Man Page Interface. |