NAME
HTTP::DetectUserAgent - Yet another HTTP useragent string parser.
VERSION
This document describes HTTP::DetectUserAgent version 0.0.1
SYNOPSIS
use HTTP::DetectUserAgent;
my $ua = HTTP::DetectUserAgent->new($useragent_string);
my $type = $ua->type;
my $name = $ua->name;
my $version = $ua->version;
my $vendor = $ua->vendor;
my $os = $ua->os;
DESCRIPTION
HTTP::DetectUserAgent provides the parsing function for HTTP useragent strings. You can use it for determine which browser( or crawler, bot, and so on ) is accessing to your servers or web applications.
SEE ALSO
HTTP::BrowserDetect, HTML::ParseBrowser
AUTHOR
Takaaki Mizuno, <module@takaaki.info>
THANKS
Thanks to yappo-san and drry-san for fixing bugs and cleaning up my code.
COPYRIGHT AND LICENSE
Copyright (C) 2008 by Takaaki Mizuno
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.