* - This is the standard in a browser header and can be found in
* the <code>HttpServletRequest</code> object.
* @return <code>WebClient</code> object
*/
public static WebClient detect(String userAgentString) {
UserAgent ua = UserAgent.UNKNOWN;
int major = 0;
String ver = "<unknown>";
if (!StringUtils.isEmpty(userAgentString)) {
if (userAgentString.contains("Yahoo! Slurp")) {