HTTP::Browscap
==============

Browscap.ini is a file, introduced with Microsoft's IIS, that lists the
User-Agent strings that different browsers send, and various capabilities
of those browsers.  This module parses browscap.ini and allows you to find
the capability definitions for a given browser.

INSTALLATION

To install this module type the following:

  perl Makefile.PL
  make
  make test
  sudo make install

You will also have to get a browscap.ini file.  Gary Keith maintains the
most up to date one.

First, read
   http://browsers.garykeith.com/terms.asp

Then run the following:

   wget -O browscap.ini \
       "http://browsers.garykeith.com/stream.asp?BrowsCapINI"
   sudo browscap-update browscap.ini
   rm browscap.ini

You will need to be the same user you ran make install as.



DEPENDENCIES

This module requires these other modules and libraries:

 Test::More
 MLDBM

COPYRIGHT AND LICENCE

Copyright (C) 2005-2011 Philip Gwyn

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