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

