ua.js
上传用户:jdr1jdr
上传日期:2013-05-07
资源大小:68k
文件大小:4k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*
  2.  * $Log: ua.js,v $
  3.  * Revision 1.9  2002/07/22 14:06:21  bc6ix
  4.  * fix license path, change version reporting to use 2 digits for each level
  5.  *
  6.  * Revision 1.8  2002/07/07 08:23:07  bc6ix
  7.  * fix line endings
  8.  *
  9.  * Revision 1.7  2002/05/14 16:52:52  bc6ix
  10.  * use CVS Log for revision history
  11.  *
  12.  *
  13.  */
  14. /* ***** BEGIN LICENSE BLOCK *****
  15.  * Licensed under Version: MPL 1.1/GPL 2.0/LGPL 2.1
  16.  * Full Terms at http://bclary.com/lib/js/license/mpl-tri-license.txt
  17.  *
  18.  * Software distributed under the License is distributed on an "AS IS" basis,
  19.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  20.  * for the specific language governing rights and limitations under the
  21.  * License.
  22.  *
  23.  * The Original Code is Netscape code.
  24.  *
  25.  * The Initial Developer of the Original Code is
  26.  * Netscape Corporation.
  27.  * Portions created by the Initial Developer are Copyright (C) 2001
  28.  * the Initial Developer. All Rights Reserved.
  29.  *
  30.  * Contributor(s): Bob Clary <bclary@netscape.com>
  31.  *
  32.  * ***** END LICENSE BLOCK ***** */
  33. function xbDetectBrowser()
  34. {
  35.   var oldOnError = window.onerror;
  36.   var element = null;
  37.   window.onerror = null;
  38.   
  39.   // work around bug in xpcdom Mozilla 0.9.1
  40.   window.saveNavigator = window.navigator;
  41.   navigator.OS    = '';
  42.   navigator.version  = parseFloat(navigator.appVersion);
  43.   navigator.org    = '';
  44.   navigator.family  = '';
  45.   var platform;
  46.   if (typeof(window.navigator.platform) != 'undefined')
  47.   {
  48.     platform = window.navigator.platform.toLowerCase();
  49.     if (platform.indexOf('win') != -1)
  50.       navigator.OS = 'win';
  51.     else if (platform.indexOf('mac') != -1)
  52.       navigator.OS = 'mac';
  53.     else if (platform.indexOf('unix') != -1 || platform.indexOf('linux') != -1 || platform.indexOf('sun') != -1)
  54.       navigator.OS = 'nix';
  55.   }
  56.   var i = 0;
  57.   var ua = window.navigator.userAgent.toLowerCase();
  58.   
  59.   if (ua.indexOf('safari') != -1)
  60.   {
  61.     i = ua.indexOf('safari');
  62.     navigator.family = 'safari';
  63.     navigator.org = 'safari';
  64.     navigator.version = parseFloat('0' + ua.substr(i+7), 10);
  65.   }
  66.   else if (ua.indexOf('opera') != -1)
  67.   {
  68.     i = ua.indexOf('opera');
  69.     navigator.family  = 'opera';
  70.     navigator.org    = 'opera';
  71.     navigator.version  = parseFloat('0' + ua.substr(i+6), 10);
  72.   }
  73.   else if ((i = ua.indexOf('msie')) != -1)
  74.   {
  75.     navigator.org    = 'microsoft';
  76.     navigator.version  = parseFloat('0' + ua.substr(i+5), 10);
  77.     
  78.     if (navigator.version < 4)
  79.       navigator.family = 'ie3';
  80.     else
  81.       navigator.family = 'ie4'
  82.   }
  83.   else if (ua.indexOf('gecko') != -1)
  84.   {
  85.     navigator.family = 'gecko';
  86.     var rvStart = ua.indexOf('rv:');
  87.     var rvEnd   = ua.indexOf(')', rvStart);
  88.     var rv      = ua.substring(rvStart+3, rvEnd);
  89.     var rvParts = rv.split('.');
  90.     var rvValue = 0;
  91.     var exp     = 1;
  92.     for (var i = 0; i < rvParts.length; i++)
  93.     {
  94.       var val = parseInt(rvParts[i]);
  95.       rvValue += val / exp;
  96.       exp *= 100;
  97.     }
  98.     navigator.version = rvValue;
  99.     if (ua.indexOf('netscape') != -1)
  100.       navigator.org = 'netscape';
  101.     else if (ua.indexOf('compuserve') != -1)
  102.       navigator.org = 'compuserve';
  103.     else
  104.       navigator.org = 'mozilla';
  105.   }
  106.   else if ((ua.indexOf('mozilla') !=-1) && (ua.indexOf('spoofer')==-1) && (ua.indexOf('compatible') == -1) && (ua.indexOf('opera')==-1)&& (ua.indexOf('webtv')==-1) && (ua.indexOf('hotjava')==-1))
  107.   {
  108.     var is_major = parseFloat(navigator.appVersion);
  109.     
  110.     if (is_major < 4)
  111.       navigator.version = is_major;
  112.     else
  113.     {
  114.       i = ua.lastIndexOf('/')
  115.       navigator.version = parseFloat('0' + ua.substr(i+1), 10);
  116.     }
  117.     navigator.org = 'netscape';
  118.     navigator.family = 'nn' + parseInt(navigator.appVersion);
  119.   }
  120.   else if ((i = ua.indexOf('aol')) != -1 )
  121.   {
  122.     // aol
  123.     navigator.family  = 'aol';
  124.     navigator.org    = 'aol';
  125.     navigator.version  = parseFloat('0' + ua.substr(i+4), 10);
  126.   }
  127.   else if ((i = ua.indexOf('hotjava')) != -1 )
  128.   {
  129.     // hotjava
  130.     navigator.family  = 'hotjava';
  131.     navigator.org    = 'sun';
  132.     navigator.version  = parseFloat(navigator.appVersion);
  133.   }
  134.   window.onerror = oldOnError;
  135. }
  136. xbDetectBrowser();