Annotation of /mambo/branches/4.6/includes/agent_os.php
Parent Directory
|
Revision Log
Revision 1 -
(view)
(download)
Original Path: mambo/trunk/includes/agent_os.php
| 1 : | root | 1 | <?php |
| 2 : | /** | ||
| 3 : | * @version $Id: agent_os.php,v 1.1 2005/07/22 01:57:13 eddieajau Exp $ | ||
| 4 : | * @package Mambo | ||
| 5 : | * @copyright (C) 2000 - 2005 Miro International Pty Ltd | ||
| 6 : | * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL | ||
| 7 : | * Mambo is Free Software | ||
| 8 : | */ | ||
| 9 : | |||
| 10 : | /** ensure this file is being included by a parent file */ | ||
| 11 : | defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); | ||
| 12 : | |||
| 13 : | /** | ||
| 14 : | * AWSTATS BROWSERS DATABASE | ||
| 15 : | * If you want to add a Browser to extend AWStats database detection capabilities, | ||
| 16 : | * you must add an entry in BrowsersSearchIDOrder and in BrowsersHashIDLib. | ||
| 17 : | */ | ||
| 18 : | |||
| 19 : | $osSearchOrder = array ( | ||
| 20 : | "windows nt 6\.0", | ||
| 21 : | "windows nt 5\.2", | ||
| 22 : | "windows nt 5\.1", | ||
| 23 : | "windows nt 5\.0", | ||
| 24 : | "winnt4\.0", | ||
| 25 : | "winnt", | ||
| 26 : | "windows 98", | ||
| 27 : | "windows 95", | ||
| 28 : | "win98", | ||
| 29 : | "win95", | ||
| 30 : | "mac os x", | ||
| 31 : | "debian", | ||
| 32 : | "freebsd", | ||
| 33 : | "linux", | ||
| 34 : | "ppc", | ||
| 35 : | "beos", | ||
| 36 : | "sunos", | ||
| 37 : | "apachebench", | ||
| 38 : | "aix", | ||
| 39 : | "irix", | ||
| 40 : | "osf", | ||
| 41 : | "hp-ux", | ||
| 42 : | "netbsd", | ||
| 43 : | "bsdi", | ||
| 44 : | "openbsd", | ||
| 45 : | "gnu", | ||
| 46 : | "unix" | ||
| 47 : | ); | ||
| 48 : | |||
| 49 : | $osAlias = array ( | ||
| 50 : | "windows nt 6\.0"=>"Windows Longhorn", | ||
| 51 : | "windows nt 5\.2"=>"Windows 2003", | ||
| 52 : | "windows nt 5\.0"=>"Windows 2000", | ||
| 53 : | "windows nt 5\.1"=>"Windows XP", | ||
| 54 : | "winnt"=>"Windows NT", | ||
| 55 : | "winnt 4\.0"=>"Windows NT", | ||
| 56 : | "windows 98"=>"Windows 98", | ||
| 57 : | "win98"=>"Windows 98", | ||
| 58 : | "windows 95"=>"Windows 95", | ||
| 59 : | "win95"=>"Windows 95", | ||
| 60 : | "sunos"=>"Sun Solaris", | ||
| 61 : | "freebsd"=>"FreeBSD", | ||
| 62 : | "ppc"=>"Macintosh", | ||
| 63 : | "mac os x"=>"Mac OS X", | ||
| 64 : | "linux"=>"Linux", | ||
| 65 : | "debian"=>"Debian", | ||
| 66 : | "beos"=>"BeOS", | ||
| 67 : | "winnt4\.0"=>"Windows NT 4.0", | ||
| 68 : | "apachebench"=>"ApacheBench", | ||
| 69 : | "aix"=>"AIX", | ||
| 70 : | "irix"=>"Irix", | ||
| 71 : | "osf"=>"DEC OSF", | ||
| 72 : | "hp-ux"=>"HP-UX", | ||
| 73 : | "netbsd"=>"NetBSD", | ||
| 74 : | "bsdi"=>"BSDi", | ||
| 75 : | "openbsd"=>"OpenBSD", | ||
| 76 : | "gnu"=>"GNU/Linux", | ||
| 77 : | "unix"=>"Unknown Unix system" | ||
| 78 : | ); |
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |
Web Hosting provided by Network Redux.

