| 
 
 NAMECatalyst::TraitFor::Request::BrowserDetect - Browser detection for Catalyst::Requests VERSIONversion 0.02 SYNOPSIS    package MyApp;
    use Moose;
    use namespace::autoclean;
    use Catalyst;
    use CatalystX::RoleApplicator;
    extends 'Catalyst';
    __PACKAGE__->apply_request_class_roles(qw/
        Catalyst::TraitFor::Request::BrowserDetect
    /);
    __PACKAGE__->setup;
DESCRIPTIONExtend request objects with a method for browser detection. ATTRIBUTESbrowsermy $browser = $ctx->request->browser; Returns an "HTTP::BrowserDetect" instance for the request. This allows you to get information about the client's user agent. AUTHORFlorian Ragwitz <rafl@debian.org> COPYRIGHT AND LICENSEThis software is copyright (c) 2009 by Florian Ragwitz. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. 
 
  |