From: Marcin Krol Date: Wed, 8 Feb 2017 14:49:54 +0000 (+0000) Subject: - updated to 7.1.1 X-Git-Url: https://git.tld-linux.org/?p=packages%2Fphp.git;a=commitdiff_plain;h=2145ef2126854956fb897978f38cda33bdc6672c - updated to 7.1.1 --- diff --git a/fpm-conf-split.patch b/fpm-conf-split.patch new file mode 100644 index 0000000..3d4bd92 --- /dev/null +++ b/fpm-conf-split.patch @@ -0,0 +1,871 @@ +--- php-5.6.5/sapi/fpm/php-fpm.conf.in~ 2015-02-04 19:22:00.000000000 +0200 ++++ php-5.6.5/sapi/fpm/php-fpm.conf.in 2015-02-04 19:23:22.109298245 +0200 +@@ -6,14 +6,6 @@ + ; prefix (@prefix@). This prefix can be dynamically changed by using the + ; '-p' argument from the command line. + +-; Include one or more files. If glob(3) exists, it is used to include a bunch of +-; files from a glob(3) pattern. This directive can be used everywhere in the +-; file. +-; Relative path can also be used. They will be prefixed by: +-; - the global prefix if it's been set (-p argument) +-; - @prefix@ otherwise +-;include=etc/fpm.d/*.conf +- + ;;;;;;;;;;;;;;;;;; + ; Global Options ; + ;;;;;;;;;;;;;;;;;; +@@ -115,415 +115,3 @@ + ; ports and different management options. The name of the pool will be + ; used in logs and stats. There is no limitation on the number of pools which + ; FPM can handle. Your system will tell you anyway :) +- +-; Start a new pool named 'www'. +-; the variable $pool can we used in any directive and will be replaced by the +-; pool name ('www' here) +-[www] +- +-; Per pool prefix +-; It only applies on the following directives: +-; - 'access.log' +-; - 'slowlog' +-; - 'listen' (unixsocket) +-; - 'chroot' +-; - 'chdir' +-; - 'php_values' +-; - 'php_admin_values' +-; When not set, the global prefix (or @php_fpm_prefix@) applies instead. +-; Note: This directive can also be relative to the global prefix. +-; Default Value: none +-;prefix = /path/to/pools/$pool +- +-; Unix user/group of processes +-; Note: The user is mandatory. If the group is not set, the default user's group +-; will be used. +-user = @php_fpm_user@ +-group = @php_fpm_group@ +- +-; The address on which to accept FastCGI requests. +-; Valid syntaxes are: +-; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on +-; a specific port; +-; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on +-; a specific port; +-; 'port' - to listen on a TCP socket to all IPv4 addresses on a +-; specific port; +-; '[::]:port' - to listen on a TCP socket to all addresses +-; (IPv6 and IPv4-mapped) on a specific port; +-; '/path/to/unix/socket' - to listen on a unix socket. +-; Note: This value is mandatory. +-listen = 127.0.0.1:9000 +- +-; Set listen(2) backlog. +-; Default Value: 65535 (-1 on FreeBSD and OpenBSD) +-;listen.backlog = 65535 +- +-; Set permissions for unix socket, if one is used. In Linux, read/write +-; permissions must be set in order to allow connections from a web server. Many +-; BSD-derived systems allow connections regardless of permissions. +-; Default Values: user and group are set as the running user +-; mode is set to 0660 +-;listen.owner = @php_fpm_user@ +-;listen.group = @php_fpm_group@ +-;listen.mode = 0660 +-; When POSIX Access Control Lists are supported you can set them using +-; these options, value is a comma separated list of user/group names. +-; When set, listen.owner and listen.group are ignored +-;listen.acl_users = +-;listen.acl_groups = +- +-; List of addresses (IPv4/IPv6) of FastCGI clients which are allowed to connect. +-; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original +-; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address +-; must be separated by a comma. If this value is left blank, connections will be +-; accepted from any ip address. +-; Default Value: any +-;listen.allowed_clients = 127.0.0.1 +- +-; Specify the nice(2) priority to apply to the pool processes (only if set) +-; The value can vary from -19 (highest priority) to 20 (lower priority) +-; Note: - It will only work if the FPM master process is launched as root +-; - The pool processes will inherit the master process priority +-; unless it specified otherwise +-; Default Value: no set +-; process.priority = -19 +- +-; Choose how the process manager will control the number of child processes. +-; Possible Values: +-; static - a fixed number (pm.max_children) of child processes; +-; dynamic - the number of child processes are set dynamically based on the +-; following directives. With this process management, there will be +-; always at least 1 children. +-; pm.max_children - the maximum number of children that can +-; be alive at the same time. +-; pm.start_servers - the number of children created on startup. +-; pm.min_spare_servers - the minimum number of children in 'idle' +-; state (waiting to process). If the number +-; of 'idle' processes is less than this +-; number then some children will be created. +-; pm.max_spare_servers - the maximum number of children in 'idle' +-; state (waiting to process). If the number +-; of 'idle' processes is greater than this +-; number then some children will be killed. +-; ondemand - no children are created at startup. Children will be forked when +-; new requests will connect. The following parameter are used: +-; pm.max_children - the maximum number of children that +-; can be alive at the same time. +-; pm.process_idle_timeout - The number of seconds after which +-; an idle process will be killed. +-; Note: This value is mandatory. +-pm = dynamic +- +-; The number of child processes to be created when pm is set to 'static' and the +-; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'. +-; This value sets the limit on the number of simultaneous requests that will be +-; served. Equivalent to the ApacheMaxClients directive with mpm_prefork. +-; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP +-; CGI. The below defaults are based on a server without much resources. Don't +-; forget to tweak pm.* to fit your needs. +-; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand' +-; Note: This value is mandatory. +-pm.max_children = 5 +- +-; The number of child processes created on startup. +-; Note: Used only when pm is set to 'dynamic' +-; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2 +-pm.start_servers = 2 +- +-; The desired minimum number of idle server processes. +-; Note: Used only when pm is set to 'dynamic' +-; Note: Mandatory when pm is set to 'dynamic' +-pm.min_spare_servers = 1 +- +-; The desired maximum number of idle server processes. +-; Note: Used only when pm is set to 'dynamic' +-; Note: Mandatory when pm is set to 'dynamic' +-pm.max_spare_servers = 3 +- +-; The number of seconds after which an idle process will be killed. +-; Note: Used only when pm is set to 'ondemand' +-; Default Value: 10s +-;pm.process_idle_timeout = 10s; +- +-; The number of requests each child process should execute before respawning. +-; This can be useful to work around memory leaks in 3rd party libraries. For +-; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS. +-; Default Value: 0 +-;pm.max_requests = 500 +- +-; The URI to view the FPM status page. If this value is not set, no URI will be +-; recognized as a status page. It shows the following informations: +-; pool - the name of the pool; +-; process manager - static, dynamic or ondemand; +-; start time - the date and time FPM has started; +-; start since - number of seconds since FPM has started; +-; accepted conn - the number of request accepted by the pool; +-; listen queue - the number of request in the queue of pending +-; connections (see backlog in listen(2)); +-; max listen queue - the maximum number of requests in the queue +-; of pending connections since FPM has started; +-; listen queue len - the size of the socket queue of pending connections; +-; idle processes - the number of idle processes; +-; active processes - the number of active processes; +-; total processes - the number of idle + active processes; +-; max active processes - the maximum number of active processes since FPM +-; has started; +-; max children reached - number of times, the process limit has been reached, +-; when pm tries to start more children (works only for +-; pm 'dynamic' and 'ondemand'); +-; Value are updated in real time. +-; Example output: +-; pool: www +-; process manager: static +-; start time: 01/Jul/2011:17:53:49 +0200 +-; start since: 62636 +-; accepted conn: 190460 +-; listen queue: 0 +-; max listen queue: 1 +-; listen queue len: 42 +-; idle processes: 4 +-; active processes: 11 +-; total processes: 15 +-; max active processes: 12 +-; max children reached: 0 +-; +-; By default the status page output is formatted as text/plain. Passing either +-; 'html', 'xml' or 'json' in the query string will return the corresponding +-; output syntax. Example: +-; http://www.foo.bar/status +-; http://www.foo.bar/status?json +-; http://www.foo.bar/status?html +-; http://www.foo.bar/status?xml +-; +-; By default the status page only outputs short status. Passing 'full' in the +-; query string will also return status for each pool process. +-; Example: +-; http://www.foo.bar/status?full +-; http://www.foo.bar/status?json&full +-; http://www.foo.bar/status?html&full +-; http://www.foo.bar/status?xml&full +-; The Full status returns for each process: +-; pid - the PID of the process; +-; state - the state of the process (Idle, Running, ...); +-; start time - the date and time the process has started; +-; start since - the number of seconds since the process has started; +-; requests - the number of requests the process has served; +-; request duration - the duration in µs of the requests; +-; request method - the request method (GET, POST, ...); +-; request URI - the request URI with the query string; +-; content length - the content length of the request (only with POST); +-; user - the user (PHP_AUTH_USER) (or '-' if not set); +-; script - the main script called (or '-' if not set); +-; last request cpu - the %cpu the last request consumed +-; it's always 0 if the process is not in Idle state +-; because CPU calculation is done when the request +-; processing has terminated; +-; last request memory - the max amount of memory the last request consumed +-; it's always 0 if the process is not in Idle state +-; because memory calculation is done when the request +-; processing has terminated; +-; If the process is in Idle state, then informations are related to the +-; last request the process has served. Otherwise informations are related to +-; the current request being served. +-; Example output: +-; ************************ +-; pid: 31330 +-; state: Running +-; start time: 01/Jul/2011:17:53:49 +0200 +-; start since: 63087 +-; requests: 12808 +-; request duration: 1250261 +-; request method: GET +-; request URI: /test_mem.php?N=10000 +-; content length: 0 +-; user: - +-; script: /home/fat/web/docs/php/test_mem.php +-; last request cpu: 0.00 +-; last request memory: 0 +-; +-; Note: There is a real-time FPM status monitoring sample web page available +-; It's available in: @EXPANDED_DATADIR@/fpm/status.html +-; +-; Note: The value must start with a leading slash (/). The value can be +-; anything, but it may not be a good idea to use the .php extension or it +-; may conflict with a real PHP file. +-; Default Value: not set +-;pm.status_path = /status +- +-; The ping URI to call the monitoring page of FPM. If this value is not set, no +-; URI will be recognized as a ping page. This could be used to test from outside +-; that FPM is alive and responding, or to +-; - create a graph of FPM availability (rrd or such); +-; - remove a server from a group if it is not responding (load balancing); +-; - trigger alerts for the operating team (24/7). +-; Note: The value must start with a leading slash (/). The value can be +-; anything, but it may not be a good idea to use the .php extension or it +-; may conflict with a real PHP file. +-; Default Value: not set +-;ping.path = /ping +- +-; This directive may be used to customize the response of a ping request. The +-; response is formatted as text/plain with a 200 response code. +-; Default Value: pong +-;ping.response = pong +- +-; The access log file +-; Default: not set +-;access.log = log/$pool.access.log +- +-; The access log format. +-; The following syntax is allowed +-; %%: the '%' character +-; %C: %CPU used by the request +-; it can accept the following format: +-; - %{user}C for user CPU only +-; - %{system}C for system CPU only +-; - %{total}C for user + system CPU (default) +-; %d: time taken to serve the request +-; it can accept the following format: +-; - %{seconds}d (default) +-; - %{miliseconds}d +-; - %{mili}d +-; - %{microseconds}d +-; - %{micro}d +-; %e: an environment variable (same as $_ENV or $_SERVER) +-; it must be associated with embraces to specify the name of the env +-; variable. Some exemples: +-; - server specifics like: %{REQUEST_METHOD}e or %{SERVER_PROTOCOL}e +-; - HTTP headers like: %{HTTP_HOST}e or %{HTTP_USER_AGENT}e +-; %f: script filename +-; %l: content-length of the request (for POST request only) +-; %m: request method +-; %M: peak of memory allocated by PHP +-; it can accept the following format: +-; - %{bytes}M (default) +-; - %{kilobytes}M +-; - %{kilo}M +-; - %{megabytes}M +-; - %{mega}M +-; %n: pool name +-; %o: output header +-; it must be associated with embraces to specify the name of the header: +-; - %{Content-Type}o +-; - %{X-Powered-By}o +-; - %{Transfert-Encoding}o +-; - .... +-; %p: PID of the child that serviced the request +-; %P: PID of the parent of the child that serviced the request +-; %q: the query string +-; %Q: the '?' character if query string exists +-; %r: the request URI (without the query string, see %q and %Q) +-; %R: remote IP address +-; %s: status (response code) +-; %t: server time the request was received +-; it can accept a strftime(3) format: +-; %d/%b/%Y:%H:%M:%S %z (default) +-; %T: time the log has been written (the request has finished) +-; it can accept a strftime(3) format: +-; %d/%b/%Y:%H:%M:%S %z (default) +-; %u: remote user +-; +-; Default: "%R - %u %t \"%m %r\" %s" +-;access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%" +- +-; The log file for slow requests +-; Default Value: not set +-; Note: slowlog is mandatory if request_slowlog_timeout is set +-;slowlog = log/$pool.log.slow +- +-; The timeout for serving a single request after which a PHP backtrace will be +-; dumped to the 'slowlog' file. A value of '0s' means 'off'. +-; Available units: s(econds)(default), m(inutes), h(ours), or d(ays) +-; Default Value: 0 +-;request_slowlog_timeout = 0 +- +-; The timeout for serving a single request after which the worker process will +-; be killed. This option should be used when the 'max_execution_time' ini option +-; does not stop script execution for some reason. A value of '0' means 'off'. +-; Available units: s(econds)(default), m(inutes), h(ours), or d(ays) +-; Default Value: 0 +-;request_terminate_timeout = 0 +- +-; Set open file descriptor rlimit. +-; Default Value: system defined value +-;rlimit_files = 1024 +- +-; Set max core size rlimit. +-; Possible Values: 'unlimited' or an integer greater or equal to 0 +-; Default Value: system defined value +-;rlimit_core = 0 +- +-; Chroot to this directory at the start. This value must be defined as an +-; absolute path. When this value is not set, chroot is not used. +-; Note: you can prefix with '$prefix' to chroot to the pool prefix or one +-; of its subdirectories. If the pool prefix is not set, the global prefix +-; will be used instead. +-; Note: chrooting is a great security feature and should be used whenever +-; possible. However, all PHP paths will be relative to the chroot +-; (error_log, sessions.save_path, ...). +-; Default Value: not set +-;chroot = +- +-; Chdir to this directory at the start. +-; Note: relative path can be used. +-; Default Value: current directory or / when chroot +-;chdir = /var/www +- +-; Redirect worker stdout and stderr into main error log. If not set, stdout and +-; stderr will be redirected to /dev/null according to FastCGI specs. +-; Note: on highloaded environement, this can cause some delay in the page +-; process time (several ms). +-; Default Value: no +-;catch_workers_output = yes +- +-; Clear environment in FPM workers +-; Prevents arbitrary environment variables from reaching FPM worker processes +-; by clearing the environment in workers before env vars specified in this +-; pool configuration are added. +-; Setting to "no" will make all environment variables available to PHP code +-; via getenv(), $_ENV and $_SERVER. +-; Default Value: yes +-;clear_env = no +- +-; Limits the extensions of the main script FPM will allow to parse. This can +-; prevent configuration mistakes on the web server side. You should only limit +-; FPM to .php extensions to prevent malicious users to use other extensions to +-; exectute php code. +-; Note: set an empty value to allow all extensions. +-; Default Value: .php +-;security.limit_extensions = .php .php3 .php4 .php5 +- +-; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from +-; the current environment. +-; Default Value: clean env +-;env[HOSTNAME] = $HOSTNAME +-;env[PATH] = /usr/local/bin:/usr/bin:/bin +-;env[TMP] = /tmp +-;env[TMPDIR] = /tmp +-;env[TEMP] = /tmp +- +-; Additional php.ini defines, specific to this pool of workers. These settings +-; overwrite the values previously defined in the php.ini. The directives are the +-; same as the PHP SAPI: +-; php_value/php_flag - you can set classic ini defines which can +-; be overwritten from PHP call 'ini_set'. +-; php_admin_value/php_admin_flag - these directives won't be overwritten by +-; PHP call 'ini_set' +-; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no. +- +-; Defining 'extension' will load the corresponding shared extension from +-; extension_dir. Defining 'disable_functions' or 'disable_classes' will not +-; overwrite previously defined php.ini values, but will append the new value +-; instead. +- +-; Note: path INI options can be relative and will be expanded with the prefix +-; (pool, global or @prefix@) +- +-; Default Value: nothing is defined by default except the values in php.ini and +-; specified at startup with the -d argument +-;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com +-;php_flag[display_errors] = off +-;php_admin_value[error_log] = /var/log/fpm-php.www.log +-;php_admin_flag[log_errors] = on +-;php_admin_value[memory_limit] = 32M +--- /dev/null 2007-02-13 18:29:53.000000000 +0200 ++++ php-5.6.5/sapi/fpm/php-fpm.conf-d.in 2015-02-04 19:23:20.709225773 +0200 +@@ -0,0 +1,411 @@ ++; Start a new pool named 'www'. ++; the variable $pool can we used in any directive and will be replaced by the ++; pool name ('www' here) ++[www] ++ ++; Per pool prefix ++; It only applies on the following directives: ++; - 'access.log' ++; - 'slowlog' ++; - 'listen' (unixsocket) ++; - 'chroot' ++; - 'chdir' ++; - 'php_values' ++; - 'php_admin_values' ++; When not set, the global prefix (or @php_fpm_prefix@) applies instead. ++; Note: This directive can also be relative to the global prefix. ++; Default Value: none ++;prefix = /path/to/pools/$pool ++ ++; Unix user/group of processes ++; Note: The user is mandatory. If the group is not set, the default user's group ++; will be used. ++user = @php_fpm_user@ ++group = @php_fpm_group@ ++ ++; The address on which to accept FastCGI requests. ++; Valid syntaxes are: ++; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on ++; a specific port; ++; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on ++; a specific port; ++; 'port' - to listen on a TCP socket to all IPv4 addresses on a ++; specific port; ++; '[::]:port' - to listen on a TCP socket to all addresses ++; (IPv6 and IPv4-mapped) on a specific port; ++; '/path/to/unix/socket' - to listen on a unix socket. ++; Note: This value is mandatory. ++listen = 127.0.0.1:9000 ++ ++; Set listen(2) backlog. ++; Default Value: 65535 (-1 on FreeBSD and OpenBSD) ++;listen.backlog = 65535 ++ ++; Set permissions for unix socket, if one is used. In Linux, read/write ++; permissions must be set in order to allow connections from a web server. Many ++; BSD-derived systems allow connections regardless of permissions. ++; Default Values: user and group are set as the running user ++; mode is set to 0660 ++;listen.owner = @php_fpm_user@ ++;listen.group = @php_fpm_group@ ++;listen.mode = 0660 ++; When POSIX Access Control Lists are supported you can set them using ++; these options, value is a comma separated list of user/group names. ++; When set, listen.owner and listen.group are ignored ++;listen.acl_users = ++;listen.acl_groups = ++ ++; List of addresses (IPv4/IPv6) of FastCGI clients which are allowed to connect. ++; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original ++; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address ++; must be separated by a comma. If this value is left blank, connections will be ++; accepted from any ip address. ++; Default Value: any ++;listen.allowed_clients = 127.0.0.1 ++ ++; Specify the nice(2) priority to apply to the pool processes (only if set) ++; The value can vary from -19 (highest priority) to 20 (lower priority) ++; Note: - It will only work if the FPM master process is launched as root ++; - The pool processes will inherit the master process priority ++; unless it specified otherwise ++; Default Value: no set ++; process.priority = -19 ++ ++; Choose how the process manager will control the number of child processes. ++; Possible Values: ++; static - a fixed number (pm.max_children) of child processes; ++; dynamic - the number of child processes are set dynamically based on the ++; following directives. With this process management, there will be ++; always at least 1 children. ++; pm.max_children - the maximum number of children that can ++; be alive at the same time. ++; pm.start_servers - the number of children created on startup. ++; pm.min_spare_servers - the minimum number of children in 'idle' ++; state (waiting to process). If the number ++; of 'idle' processes is less than this ++; number then some children will be created. ++; pm.max_spare_servers - the maximum number of children in 'idle' ++; state (waiting to process). If the number ++; of 'idle' processes is greater than this ++; number then some children will be killed. ++; ondemand - no children are created at startup. Children will be forked when ++; new requests will connect. The following parameter are used: ++; pm.max_children - the maximum number of children that ++; can be alive at the same time. ++; pm.process_idle_timeout - The number of seconds after which ++; an idle process will be killed. ++; Note: This value is mandatory. ++pm = dynamic ++ ++; The number of child processes to be created when pm is set to 'static' and the ++; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'. ++; This value sets the limit on the number of simultaneous requests that will be ++; served. Equivalent to the ApacheMaxClients directive with mpm_prefork. ++; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP ++; CGI. The below defaults are based on a server without much resources. Don't ++; forget to tweak pm.* to fit your needs. ++; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand' ++; Note: This value is mandatory. ++pm.max_children = 5 ++ ++; The number of child processes created on startup. ++; Note: Used only when pm is set to 'dynamic' ++; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2 ++pm.start_servers = 2 ++ ++; The desired minimum number of idle server processes. ++; Note: Used only when pm is set to 'dynamic' ++; Note: Mandatory when pm is set to 'dynamic' ++pm.min_spare_servers = 1 ++ ++; The desired maximum number of idle server processes. ++; Note: Used only when pm is set to 'dynamic' ++; Note: Mandatory when pm is set to 'dynamic' ++pm.max_spare_servers = 3 ++ ++; The number of seconds after which an idle process will be killed. ++; Note: Used only when pm is set to 'ondemand' ++; Default Value: 10s ++;pm.process_idle_timeout = 10s; ++ ++; The number of requests each child process should execute before respawning. ++; This can be useful to work around memory leaks in 3rd party libraries. For ++; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS. ++; Default Value: 0 ++;pm.max_requests = 500 ++ ++; The URI to view the FPM status page. If this value is not set, no URI will be ++; recognized as a status page. It shows the following informations: ++; pool - the name of the pool; ++; process manager - static, dynamic or ondemand; ++; start time - the date and time FPM has started; ++; start since - number of seconds since FPM has started; ++; accepted conn - the number of request accepted by the pool; ++; listen queue - the number of request in the queue of pending ++; connections (see backlog in listen(2)); ++; max listen queue - the maximum number of requests in the queue ++; of pending connections since FPM has started; ++; listen queue len - the size of the socket queue of pending connections; ++; idle processes - the number of idle processes; ++; active processes - the number of active processes; ++; total processes - the number of idle + active processes; ++; max active processes - the maximum number of active processes since FPM ++; has started; ++; max children reached - number of times, the process limit has been reached, ++; when pm tries to start more children (works only for ++; pm 'dynamic' and 'ondemand'); ++; Value are updated in real time. ++; Example output: ++; pool: www ++; process manager: static ++; start time: 01/Jul/2011:17:53:49 +0200 ++; start since: 62636 ++; accepted conn: 190460 ++; listen queue: 0 ++; max listen queue: 1 ++; listen queue len: 42 ++; idle processes: 4 ++; active processes: 11 ++; total processes: 15 ++; max active processes: 12 ++; max children reached: 0 ++; ++; By default the status page output is formatted as text/plain. Passing either ++; 'html', 'xml' or 'json' in the query string will return the corresponding ++; output syntax. Example: ++; http://www.foo.bar/status ++; http://www.foo.bar/status?json ++; http://www.foo.bar/status?html ++; http://www.foo.bar/status?xml ++; ++; By default the status page only outputs short status. Passing 'full' in the ++; query string will also return status for each pool process. ++; Example: ++; http://www.foo.bar/status?full ++; http://www.foo.bar/status?json&full ++; http://www.foo.bar/status?html&full ++; http://www.foo.bar/status?xml&full ++; The Full status returns for each process: ++; pid - the PID of the process; ++; state - the state of the process (Idle, Running, ...); ++; start time - the date and time the process has started; ++; start since - the number of seconds since the process has started; ++; requests - the number of requests the process has served; ++; request duration - the duration in µs of the requests; ++; request method - the request method (GET, POST, ...); ++; request URI - the request URI with the query string; ++; content length - the content length of the request (only with POST); ++; user - the user (PHP_AUTH_USER) (or '-' if not set); ++; script - the main script called (or '-' if not set); ++; last request cpu - the %cpu the last request consumed ++; it's always 0 if the process is not in Idle state ++; because CPU calculation is done when the request ++; processing has terminated; ++; last request memory - the max amount of memory the last request consumed ++; it's always 0 if the process is not in Idle state ++; because memory calculation is done when the request ++; processing has terminated; ++; If the process is in Idle state, then informations are related to the ++; last request the process has served. Otherwise informations are related to ++; the current request being served. ++; Example output: ++; ************************ ++; pid: 31330 ++; state: Running ++; start time: 01/Jul/2011:17:53:49 +0200 ++; start since: 63087 ++; requests: 12808 ++; request duration: 1250261 ++; request method: GET ++; request URI: /test_mem.php?N=10000 ++; content length: 0 ++; user: - ++; script: /home/fat/web/docs/php/test_mem.php ++; last request cpu: 0.00 ++; last request memory: 0 ++; ++; Note: There is a real-time FPM status monitoring sample web page available ++; It's available in: @EXPANDED_DATADIR@/fpm/status.html ++; ++; Note: The value must start with a leading slash (/). The value can be ++; anything, but it may not be a good idea to use the .php extension or it ++; may conflict with a real PHP file. ++; Default Value: not set ++;pm.status_path = /status ++ ++; The ping URI to call the monitoring page of FPM. If this value is not set, no ++; URI will be recognized as a ping page. This could be used to test from outside ++; that FPM is alive and responding, or to ++; - create a graph of FPM availability (rrd or such); ++; - remove a server from a group if it is not responding (load balancing); ++; - trigger alerts for the operating team (24/7). ++; Note: The value must start with a leading slash (/). The value can be ++; anything, but it may not be a good idea to use the .php extension or it ++; may conflict with a real PHP file. ++; Default Value: not set ++;ping.path = /ping ++ ++; This directive may be used to customize the response of a ping request. The ++; response is formatted as text/plain with a 200 response code. ++; Default Value: pong ++;ping.response = pong ++ ++; The access log file ++; Default: not set ++;access.log = log/$pool.access.log ++ ++; The access log format. ++; The following syntax is allowed ++; %%: the '%' character ++; %C: %CPU used by the request ++; it can accept the following format: ++; - %{user}C for user CPU only ++; - %{system}C for system CPU only ++; - %{total}C for user + system CPU (default) ++; %d: time taken to serve the request ++; it can accept the following format: ++; - %{seconds}d (default) ++; - %{miliseconds}d ++; - %{mili}d ++; - %{microseconds}d ++; - %{micro}d ++; %e: an environment variable (same as $_ENV or $_SERVER) ++; it must be associated with embraces to specify the name of the env ++; variable. Some exemples: ++; - server specifics like: %{REQUEST_METHOD}e or %{SERVER_PROTOCOL}e ++; - HTTP headers like: %{HTTP_HOST}e or %{HTTP_USER_AGENT}e ++; %f: script filename ++; %l: content-length of the request (for POST request only) ++; %m: request method ++; %M: peak of memory allocated by PHP ++; it can accept the following format: ++; - %{bytes}M (default) ++; - %{kilobytes}M ++; - %{kilo}M ++; - %{megabytes}M ++; - %{mega}M ++; %n: pool name ++; %o: output header ++; it must be associated with embraces to specify the name of the header: ++; - %{Content-Type}o ++; - %{X-Powered-By}o ++; - %{Transfert-Encoding}o ++; - .... ++; %p: PID of the child that serviced the request ++; %P: PID of the parent of the child that serviced the request ++; %q: the query string ++; %Q: the '?' character if query string exists ++; %r: the request URI (without the query string, see %q and %Q) ++; %R: remote IP address ++; %s: status (response code) ++; %t: server time the request was received ++; it can accept a strftime(3) format: ++; %d/%b/%Y:%H:%M:%S %z (default) ++; %T: time the log has been written (the request has finished) ++; it can accept a strftime(3) format: ++; %d/%b/%Y:%H:%M:%S %z (default) ++; %u: remote user ++; ++; Default: "%R - %u %t \"%m %r\" %s" ++;access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%" ++ ++; The log file for slow requests ++; Default Value: not set ++; Note: slowlog is mandatory if request_slowlog_timeout is set ++;slowlog = log/$pool.log.slow ++ ++; The timeout for serving a single request after which a PHP backtrace will be ++; dumped to the 'slowlog' file. A value of '0s' means 'off'. ++; Available units: s(econds)(default), m(inutes), h(ours), or d(ays) ++; Default Value: 0 ++;request_slowlog_timeout = 0 ++ ++; The timeout for serving a single request after which the worker process will ++; be killed. This option should be used when the 'max_execution_time' ini option ++; does not stop script execution for some reason. A value of '0' means 'off'. ++; Available units: s(econds)(default), m(inutes), h(ours), or d(ays) ++; Default Value: 0 ++;request_terminate_timeout = 0 ++ ++; Set open file descriptor rlimit. ++; Default Value: system defined value ++;rlimit_files = 1024 ++ ++; Set max core size rlimit. ++; Possible Values: 'unlimited' or an integer greater or equal to 0 ++; Default Value: system defined value ++;rlimit_core = 0 ++ ++; Chroot to this directory at the start. This value must be defined as an ++; absolute path. When this value is not set, chroot is not used. ++; Note: you can prefix with '$prefix' to chroot to the pool prefix or one ++; of its subdirectories. If the pool prefix is not set, the global prefix ++; will be used instead. ++; Note: chrooting is a great security feature and should be used whenever ++; possible. However, all PHP paths will be relative to the chroot ++; (error_log, sessions.save_path, ...). ++; Default Value: not set ++;chroot = ++ ++; Chdir to this directory at the start. ++; Note: relative path can be used. ++; Default Value: current directory or / when chroot ++;chdir = /var/www ++ ++; Redirect worker stdout and stderr into main error log. If not set, stdout and ++; stderr will be redirected to /dev/null according to FastCGI specs. ++; Note: on highloaded environement, this can cause some delay in the page ++; process time (several ms). ++; Default Value: no ++;catch_workers_output = yes ++ ++; Clear environment in FPM workers ++; Prevents arbitrary environment variables from reaching FPM worker processes ++; by clearing the environment in workers before env vars specified in this ++; pool configuration are added. ++; Setting to "no" will make all environment variables available to PHP code ++; via getenv(), $_ENV and $_SERVER. ++; Default Value: yes ++;clear_env = no ++ ++; Limits the extensions of the main script FPM will allow to parse. This can ++; prevent configuration mistakes on the web server side. You should only limit ++; FPM to .php extensions to prevent malicious users to use other extensions to ++; exectute php code. ++; Note: set an empty value to allow all extensions. ++; Default Value: .php ++;security.limit_extensions = .php .php3 .php4 .php5 ++ ++; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from ++; the current environment. ++; Default Value: clean env ++;env[HOSTNAME] = $HOSTNAME ++;env[PATH] = /usr/local/bin:/usr/bin:/bin ++;env[TMP] = /tmp ++;env[TMPDIR] = /tmp ++;env[TEMP] = /tmp ++ ++; Additional php.ini defines, specific to this pool of workers. These settings ++; overwrite the values previously defined in the php.ini. The directives are the ++; same as the PHP SAPI: ++; php_value/php_flag - you can set classic ini defines which can ++; be overwritten from PHP call 'ini_set'. ++; php_admin_value/php_admin_flag - these directives won't be overwritten by ++; PHP call 'ini_set' ++; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no. ++ ++; Defining 'extension' will load the corresponding shared extension from ++; extension_dir. Defining 'disable_functions' or 'disable_classes' will not ++; overwrite previously defined php.ini values, but will append the new value ++; instead. ++ ++; Note: path INI options can be relative and will be expanded with the prefix ++; (pool, global or @prefix@) ++ ++; Default Value: nothing is defined by default except the values in php.ini and ++; specified at startup with the -d argument ++;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com ++;php_flag[display_errors] = off ++;php_admin_value[error_log] = /var/log/fpm-php.www.log ++;php_admin_flag[log_errors] = on ++;php_admin_value[memory_limit] = 32M +--- php-5.5.7/sapi/fpm/config.m4~ 2013-12-16 17:57:03.000000000 +0200 ++++ php-5.5.7/sapi/fpm/config.m4 2013-12-16 18:00:34.936527309 +0200 +@@ -609,7 +609,7 @@ + + PHP_ADD_BUILD_DIR(sapi/fpm/fpm) + PHP_ADD_BUILD_DIR(sapi/fpm/fpm/events) +- PHP_OUTPUT(sapi/fpm/php-fpm.conf sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html) ++ PHP_OUTPUT(sapi/fpm/php-fpm.conf sapi/fpm/php-fpm.conf-d sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html) + PHP_ADD_MAKEFILE_FRAGMENT([$abs_srcdir/sapi/fpm/Makefile.frag]) + + SAPI_FPM_PATH=sapi/fpm/php-fpm +--- php-5.6.2/sapi/fpm/Makefile.frag~ 2014-10-15 15:59:32.000000000 +0300 ++++ php-5.6.2/sapi/fpm/Makefile.frag 2014-10-27 08:12:57.402883790 +0200 +@@ -11,8 +11,9 @@ + @$(INSTALL) -m 0755 $(SAPI_FPM_PATH) $(INSTALL_ROOT)$(sbindir)/$(program_prefix)php-fpm$(program_suffix)$(EXEEXT) + + @echo "Installing PHP FPM config: $(INSTALL_ROOT)$(sysconfdir)/" && \ +- $(mkinstalldirs) $(INSTALL_ROOT)$(sysconfdir) || : ++ $(mkinstalldirs) $(INSTALL_ROOT)$(sysconfdir)/fpm.d || : + @$(INSTALL_DATA) sapi/fpm/php-fpm.conf $(INSTALL_ROOT)$(sysconfdir)/php-fpm.conf.default || : ++ @$(INSTALL_DATA) sapi/fpm/php-fpm.conf-d $(INSTALL_ROOT)$(sysconfdir)/fpm.d/www.conf.default || : + + @echo "Installing PHP FPM man page: $(INSTALL_ROOT)$(mandir)/man8/" + @$(mkinstalldirs) $(INSTALL_ROOT)$(mandir)/man8 diff --git a/intl-stdc++.patch b/intl-stdc++.patch new file mode 100644 index 0000000..f762c9b --- /dev/null +++ b/intl-stdc++.patch @@ -0,0 +1,26 @@ + +avoid adding -lstdc++ when linking php-common +it's needed for ext/intl +but it requires icu which already links with stdc++ +so just omit PHP_ADD_LIBRARY(stdc++) + +--- php-7.0.6/acinclude.m4~ 2016-05-16 18:31:11.000000000 +0300 ++++ php-7.0.6/acinclude.m4 2016-05-16 18:50:34.614991634 +0300 +@@ -762,7 +762,6 @@ + if test -z "$php_cxx_done"; then + AC_PROG_CXX + AC_PROG_CXXCPP +- PHP_ADD_LIBRARY(stdc++) + php_cxx_done=yes + fi + ]) +--- php-7.0.6/ext/intl/config.m4~ 2016-04-28 21:13:06.000000000 +0300 ++++ php-7.0.6/ext/intl/config.m4 2016-05-16 18:49:53.909531704 +0300 +@@ -6,6 +6,7 @@ + [ --enable-intl Enable internationalization support]) + + if test "$PHP_INTL" != "no"; then ++ dnl -lstdc++ not needed, will be inherited from icu + PHP_SETUP_ICU(INTL_SHARED_LIBADD) + PHP_SUBST(INTL_SHARED_LIBADD) + PHP_REQUIRE_CXX() diff --git a/php-builddir.patch b/php-builddir.patch deleted file mode 100644 index 783dc2b..0000000 --- a/php-builddir.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -urbB php-5.0.5.org/scripts/Makefile.frag php-5.0.5/scripts/Makefile.frag ---- php-5.0.5.org/scripts/Makefile.frag 2005-09-10 21:29:04.884122000 +0200 -+++ php-5.0.5/scripts/Makefile.frag 2005-09-10 21:30:09.333324848 +0200 -@@ -4,7 +4,7 @@ - # - - phpincludedir = $(includedir)/php --phpbuilddir = $(libdir)/build -+phpbuilddir = $(libdir)/php/build - - BUILD_FILES = \ - scripts/phpize.m4 \ -diff -urbB php-5.0.5.org/scripts/phpize.in php-5.0.5/scripts/phpize.in ---- php-5.0.5.org/scripts/phpize.in 2005-06-15 19:19:41.000000000 +0200 -+++ php-5.0.5/scripts/phpize.in 2005-09-10 21:51:45.523274024 +0200 -@@ -3,7 +3,7 @@ - # Variable declaration - prefix='@prefix@' - exec_prefix="`eval echo @exec_prefix@`" --phpdir="`eval echo @libdir@`/build" -+phpdir="`eval echo @libdir@`/php/build" - includedir="`eval echo @includedir@`/php" - builddir="`pwd`" - diff --git a/php-db.patch b/php-db.patch index fbd0fb7..f6ba5be 100644 --- a/php-db.patch +++ b/php-db.patch @@ -1,13 +1,34 @@ ---- php-7.0.2/ext/dba/config.m4~ 2016-01-11 00:42:48.000000000 +0200 -+++ php-7.0.2/ext/dba/config.m4 2016-01-11 00:43:39.055351157 +0200 -@@ -287,6 +287,14 @@ +--- php-7.1.1/ext/dba/config.m4.orig 2017-01-17 21:44:40.000000000 +0100 ++++ php-7.1.1/ext/dba/config.m4 2017-01-27 22:08:45.385645468 +0100 +@@ -245,7 +245,7 @@ + ],[ + AC_EGREP_CPP(yes,[ + #include "$THIS_INCLUDE" +-#if DB_VERSION_MAJOR == $1 || ($1 == 4 && DB_VERSION_MAJOR == 5) ++#if DB_VERSION_MAJOR == $1 || ($1 == 4 && (DB_VERSION_MAJOR == 5 || DB_VERSION_MAJOR == 6)) + yes + #endif + ],[ +@@ -322,10 +322,26 @@ THIS_PREFIX=$i THIS_INCLUDE=$i/db4/db.h break -+ elif test -f "$i/include/db5.3/db.h"; then ++ elif test -f "$i/include/db6.2/db.h"; then + THIS_PREFIX=$i -+ THIS_INCLUDE=$i/include/db5.3/db.h ++ THIS_INCLUDE=$i/include/db6.2/db.h + break ++ elif test -f "$i/include/db6.1/db.h"; then ++ THIS_PREFIX=$i ++ THIS_INCLUDE=$i/include/db6.1/db.h ++ break ++ elif test -f "$i/include/db6.0/db.h"; then ++ THIS_PREFIX=$i ++ THIS_INCLUDE=$i/include/db6.0/db.h ++ break + elif test -f "$i/include/db5.3/db.h"; then + THIS_PREFIX=$i + THIS_INCLUDE=$i/include/db5.3/db.h + break + elif test -f "$i/include/db5.2/db.h"; then + THIS_PREFIX=$i + THIS_INCLUDE=$i/include/db5.2/db.h @@ -15,13 +36,12 @@ elif test -f "$i/include/db5.1/db.h"; then THIS_PREFIX=$i THIS_INCLUDE=$i/include/db5.1/db.h -@@ -376,7 +376,7 @@ +@@ -366,7 +384,7 @@ break fi done - PHP_DBA_DB_CHECK(4, db-5.3 db-5.1 db-5.0 db-4.8 db-4.7 db-4.6 db-4.5 db-4.4 db-4.3 db-4.2 db-4.1 db-4.0 db-4 db4 db, [(void)db_create((DB**)0, (DB_ENV*)0, 0)]) -+ PHP_DBA_DB_CHECK(4, db-5.3 db-5.2 db-5.1 db-5.0 db-4.8 db-4.7 db-4.6 db-4.5 db-4.4 db-4.3 db-4.2 db-4.1 db-4.0 db-4 db4 db, [(void)db_create((DB**)0, (DB_ENV*)0, 0)]) ++ PHP_DBA_DB_CHECK(4, db-6.2 db-6.1 db-6.0 db-5.3 db-5.2 db-5.1 db-5.0 db-4.8 db-4.7 db-4.6 db-4.5 db-4.4 db-4.3 db-4.2 db-4.1 db-4.0 db-4 db4 db, [(void)db_create((DB**)0, (DB_ENV*)0, 0)]) fi PHP_DBA_STD_RESULT(db4,Berkeley DB4) - diff --git a/php-fcgi-graceful.patch b/php-fcgi-graceful.patch index 505462f..2540bc3 100644 --- a/php-fcgi-graceful.patch +++ b/php-fcgi-graceful.patch @@ -18,8 +18,8 @@ while ($i < 35) { echo "end!
\n"; ?> ---- php-7.0.0beta1/sapi/cgi/cgi_main.c~ 2015-07-13 16:14:53.000000000 +0300 -+++ php-7.0.0beta1/sapi/cgi/cgi_main.c 2015-07-15 13:51:32.072326529 +0300 +--- php-7.1.0alpha2/sapi/cgi/cgi_main.c~ 2016-07-04 14:56:49.000000000 +0300 ++++ php-7.1.0alpha2/sapi/cgi/cgi_main.c 2016-07-04 14:58:17.522958766 +0300 @@ -101,6 +101,9 @@ */ static int parent = 1; @@ -60,11 +60,10 @@ echo "end!
\n"; fcgi_request *request = NULL; int repeats = 1; int benchmark = 0; -@@ -2050,10 +2050,13 @@ - */ +@@ -2080,9 +2080,14 @@ parent = 0; -- /* don't catch our signals */ + /* don't catch our signals */ - sigaction(SIGTERM, &old_term, 0); sigaction(SIGQUIT, &old_quit, 0); sigaction(SIGINT, &old_int, 0); @@ -73,6 +72,7 @@ echo "end!
\n"; + act.sa_flags = 0; + act.sa_handler = fastcgi_graceful_shutdown; + sigaction(SIGTERM, &act, &old_term); ++ + zend_signal_init(); break; case -1: - perror("php (pre-forking)"); diff --git a/php-fpm-config.patch b/php-fpm-config.patch index c4b2d8a..c392321 100644 --- a/php-fpm-config.patch +++ b/php-fpm-config.patch @@ -1,5 +1,5 @@ ---- php-5.6.2/sapi/fpm/php-fpm.conf.in 2014-10-27 08:20:34.963718145 +0200 -+++ php-5.6.2.old/sapi/fpm/php-fpm.conf.in 2014-10-27 08:07:47.762117299 +0200 +--- php-7.1.0beta3/sapi/fpm/php-fpm.conf.in~ 2016-08-19 09:48:00.000000000 +0300 ++++ php-7.1.0beta3/sapi/fpm/php-fpm.conf.in 2016-08-31 13:59:19.139523160 +0300 @@ -14,14 +14,14 @@ ; Pid file ; Note: the default prefix is @EXPANDED_LOCALSTATEDIR@ @@ -9,7 +9,7 @@ ; Error log file ; If it's set to "syslog", log is sent to syslogd instead of being written - ; in a local file. + ; into a local file. ; Note: the default prefix is @EXPANDED_LOCALSTATEDIR@ ; Default Value: log/php-fpm.log -;error_log = log/php-fpm.log @@ -17,19 +17,19 @@ ; syslog_facility is used to specify what type of program is logging the ; message. This lets syslogd specify that messages from different facilities ---- php-5.6.2.old/sapi/fpm/www.conf.in 2014-10-27 08:07:47.762117299 +0200 -+++ php-5.6.2/sapi/fpm/www.conf.in 2014-10-27 08:23:41.232196777 +0200 -@@ -33,7 +33,7 @@ - ; (IPv6 and IPv4-mapped) on a specific port; +--- php-5.6.5/sapi/fpm/www.conf.in~ 2015-02-04 19:26:16.000000000 +0200 ++++ php-5.6.5/sapi/fpm/www.conf.in 2015-02-04 19:27:25.275218535 +0200 +@@ -32,7 +32,7 @@ + ; specific port; ; '/path/to/unix/socket' - to listen on a unix socket. ; Note: This value is mandatory. -listen = 127.0.0.1:9000 +listen = /var/run/php/@processname@.sock ; Set listen(2) backlog. - ; Default Value: 511 (-1 on FreeBSD and OpenBSD) -@@ -44,9 +44,9 @@ - ; BSD-derived systems allow connections regardless of permissions. + ; Default Value: 65535 (-1 on FreeBSD and OpenBSD) +@@ -46,9 +46,9 @@ + ; BSD-derived systems allow connections regardless of permissions. ; Default Values: user and group are set as the running user ; mode is set to 0660 -;listen.owner = @php_fpm_user@ @@ -41,7 +41,7 @@ ; When POSIX Access Control Lists are supported you can set them using ; these options, value is a comma separated list of user/group names. ; When set, listen.owner and listen.group are ignored -@@ -59,7 +59,7 @@ +@@ -53,7 +53,7 @@ ; must be separated by a comma. If this value is left blank, connections will be ; accepted from any ip address. ; Default Value: any @@ -50,7 +50,7 @@ ; Specify the nice(2) priority to apply to the pool processes (only if set) ; The value can vary from -19 (highest priority) to 20 (lower priority) -@@ -382,7 +382,7 @@ +@@ -372,7 +372,7 @@ ; the current environment. ; Default Value: clean env ;env[HOSTNAME] = $HOSTNAME @@ -70,16 +70,18 @@ ths = document.getElementsByTagName("th"); for (var i=0; i /dev/null diff --git a/php-imap-annotations.patch b/php-imap-annotations.patch deleted file mode 100644 index d94dcbd..0000000 --- a/php-imap-annotations.patch +++ /dev/null @@ -1,305 +0,0 @@ -Provides get/set ANNOTATIONS support to PHP. [Version: 5.2.6] - -diff -r 76412c484360 ext/imap/php_imap.c ---- a/ext/imap/php_imap.c Wed Dec 23 22:18:41 2009 +0100 -+++ b/ext/imap/php_imap.c Wed Dec 23 22:46:34 2009 +0100 -@@ -161,6 +161,22 @@ - ZEND_ARG_INFO(0, mailbox) - ZEND_END_ARG_INFO() - #endif -+#if defined(HAVE_IMAP2005) -+ZEND_BEGIN_ARG_INFO_EX(arginfo_imap_setannotation, 0, 0, 5) -+ ZEND_ARG_INFO(0, stream_id) -+ ZEND_ARG_INFO(0, mailbox) -+ ZEND_ARG_INFO(0, entry) -+ ZEND_ARG_INFO(0, attr) -+ ZEND_ARG_INFO(0, value) -+ZEND_END_ARG_INFO() -+ -+ZEND_BEGIN_ARG_INFO_EX(arginfo_imap_getannotation, 0, 0, 4) -+ ZEND_ARG_INFO(0, stream_id) -+ ZEND_ARG_INFO(0, mailbox) -+ ZEND_ARG_INFO(0, entry) -+ ZEND_ARG_INFO(0, attr) -+ZEND_END_ARG_INFO() -+#endif - - ZEND_BEGIN_ARG_INFO_EX(arginfo_imap_expunge, 0, 0, 1) - ZEND_ARG_INFO(0, stream_id) -@@ -402,6 +418,11 @@ - ZEND_BEGIN_ARG_INFO_EX(arginfo_imap_status, 0, 0, 3) - ZEND_ARG_INFO(0, stream_id) - ZEND_ARG_INFO(0, mailbox) -+ ZEND_ARG_INFO(0, options) -+ZEND_END_ARG_INFO() -+ -+ZEND_BEGIN_ARG_INFO_EX(arginfo_imap_status_current, 0, 0, 2) -+ ZEND_ARG_INFO(0, stream_id) - ZEND_ARG_INFO(0, options) - ZEND_END_ARG_INFO() - -@@ -504,6 +525,7 @@ - PHP_FE(imap_binary, arginfo_imap_binary) - PHP_FE(imap_utf8, arginfo_imap_utf8) - PHP_FE(imap_status, arginfo_imap_status) -+ PHP_FE(imap_status_current, arginfo_imap_status_current) - PHP_FE(imap_mailboxmsginfo, arginfo_imap_mailboxmsginfo) - PHP_FE(imap_setflag_full, arginfo_imap_setflag_full) - PHP_FE(imap_clearflag_full, arginfo_imap_clearflag_full) -@@ -534,6 +556,10 @@ - PHP_FE(imap_setacl, arginfo_imap_setacl) - PHP_FE(imap_getacl, arginfo_imap_getacl) - #endif -+#if defined(HAVE_IMAP2005) -+ PHP_FE(imap_setannotation, arginfo_imap_setannotation) -+ PHP_FE(imap_getannotation, arginfo_imap_getannotation) -+#endif - - PHP_FE(imap_mail, arginfo_imap_mail) - -@@ -795,6 +821,30 @@ - /* }}} */ - #endif - -+#if defined(HAVE_IMAP2005) -+/* {{{ mail_getannotation -+ * -+ * Mail GET_ANNOTATION callback -+ * Called via the mail_parameter function in c-client:src/c-client/mail.c -+ */ -+void mail_getannotation(MAILSTREAM *stream, ANNOTATION *alist) -+{ -+ ANNOTATION_VALUES *cur; -+ -+ TSRMLS_FETCH(); -+ -+ /* walk through the ANNOTATION_VALUES */ -+ -+ for(cur = alist->values; cur; cur = cur->next) { -+ if (cur->value) -+ add_assoc_stringl(IMAPG(imap_annotation_list), cur->attr, cur->value, strlen(cur->value), 1); -+ else -+ add_assoc_stringl(IMAPG(imap_annotation_list), cur->attr, "", 0, 1); -+ } -+} -+/* }}} */ -+#endif -+ - /* {{{ PHP_GINIT_FUNCTION - */ - static PHP_GINIT_FUNCTION(imap) -@@ -820,6 +870,7 @@ - #if defined(HAVE_IMAP2000) || defined(HAVE_IMAP2001) - imap_globals->quota_return = NIL; - imap_globals->imap_acl_list = NIL; -+ imap_globals->imap_annotation_list = NIL; - #endif - imap_globals->gets_stream = NIL; - } -@@ -1475,7 +1526,119 @@ - } - /* }}} */ - #endif /* HAVE_IMAP2000 || HAVE_IMAP2001 */ -- -+ -+#if defined(HAVE_IMAP2005) -+ -+/* {{{ proto bool imap_setannotation(resource stream_id, string mailbox, string entry, string attr, string value) -+ Sets an annotation for a given mailbox */ -+PHP_FUNCTION(imap_setannotation) -+{ -+ zval **streamind, **mailbox, **entry, **attr, **value; -+ pils *imap_le_struct; -+ long ret; -+ -+ // TODO: Use zend_parse_parameters here -+ if (ZEND_NUM_ARGS() != 5 || zend_get_parameters_ex(5, &streamind, &mailbox, &entry, &attr, &value) == FAILURE) { -+ ZEND_WRONG_PARAM_COUNT(); -+ } -+ -+ ZEND_FETCH_RESOURCE(imap_le_struct, pils *, streamind, -1, "imap", le_imap); -+ -+ convert_to_string_ex(mailbox); -+ convert_to_string_ex(entry); -+ convert_to_string_ex(attr); -+ convert_to_string_ex(value); -+ -+ // create annotation object -+ ANNOTATION *annotation = mail_newannotation(); -+ if (!annotation) -+ RETURN_FALSE; -+ annotation->values = mail_newannotationvalue(); -+ if (!annotation->values) { -+ mail_free_annotation(&annotation); -+ RETURN_FALSE; -+ } -+ -+ // fill in annotation values -+ annotation->mbox = Z_STRVAL_PP(mailbox); -+ annotation->entry = Z_STRVAL_PP(entry); -+ annotation->values->attr = Z_STRVAL_PP(attr); -+ annotation->values->value = Z_STRVAL_PP(value); -+ -+ ret = imap_setannotation(imap_le_struct->imap_stream, annotation); -+ -+ // make sure mail_free_annotation doesn't free our variables -+ annotation->mbox = NULL; -+ annotation->entry = NULL; -+ annotation->values->attr = NULL; -+ annotation->values->value = NULL; -+ mail_free_annotation(&annotation); -+ -+ RETURN_BOOL(ret); -+} -+/* }}} */ -+ -+/* {{{ proto array imap_getannotation(resource stream_id, string mailbox, string entry, string attr) -+ Gets the ACL for a given mailbox */ -+PHP_FUNCTION(imap_getannotation) -+{ -+ zval **streamind, **mailbox, **entry, **attr; -+ pils *imap_le_struct; -+ long ret; -+ -+ if(ZEND_NUM_ARGS() != 4 || zend_get_parameters_ex(4, &streamind, &mailbox, &entry, &attr) == FAILURE) { -+ ZEND_WRONG_PARAM_COUNT(); -+ } -+ -+ ZEND_FETCH_RESOURCE(imap_le_struct, pils *, streamind, -1, "imap", le_imap); -+ -+ convert_to_string_ex(mailbox); -+ convert_to_string_ex(entry); -+ convert_to_string_ex(attr); -+ -+ /* initializing the special array for the return values */ -+ if (array_init(return_value) == FAILURE) { -+ RETURN_FALSE; -+ } -+ -+ // fillup calling parameters -+ STRINGLIST *entries = mail_newstringlist(); -+ if (!entries) -+ RETURN_FALSE; -+ -+ STRINGLIST *cur = entries; -+ cur->text.data = (unsigned char *)cpystr(Z_STRVAL_PP(entry)); -+ cur->text.size = Z_STRLEN_PP(entry); -+ cur->next = NIL; -+ -+ STRINGLIST *attributes = mail_newstringlist(); -+ if (!attributes) -+ RETURN_FALSE; -+ cur = attributes; -+ cur->text.data = (unsigned char *)cpystr (Z_STRVAL_PP(attr)); -+ cur->text.size = Z_STRLEN_PP(attr); -+ cur->next = NIL; -+ -+ IMAPG(imap_annotation_list) = return_value; -+ -+ /* set the callback for the GET_ANNOTATION function */ -+ mail_parameters(NIL, SET_ANNOTATION, (void *) mail_getannotation); -+ ret = imap_getannotation(imap_le_struct->imap_stream, Z_STRVAL_PP(mailbox), entries, attributes); -+ -+ mail_free_stringlist(&entries); -+ mail_free_stringlist(&attributes); -+ -+ if (!ret) { -+ zval_dtor(return_value); -+ RETURN_FALSE; -+ } -+ -+ IMAPG(imap_annotation_list) = NIL; -+} -+/* }}} */ -+ -+#endif /* HAVE_IMAP2005 */ -+ - /* {{{ proto bool imap_expunge(resource stream_id) - Permanently delete all messages marked for deletion */ - PHP_FUNCTION(imap_expunge) -@@ -3118,6 +3281,42 @@ - } - /* }}} */ - -+/* {{{ proto object imap_status_current(resource stream_id, int options) -+ Get (cached) status info from current mailbox */ -+PHP_FUNCTION(imap_status_current) -+{ -+ zval **streamind, **pflags; -+ pils *imap_le_struct; -+ long flags = 0L; -+ -+ if (ZEND_NUM_ARGS() != 2 || zend_get_parameters_ex(2, &streamind, &pflags) == FAILURE) { -+ ZEND_WRONG_PARAM_COUNT(); -+ } -+ -+ ZEND_FETCH_RESOURCE(imap_le_struct, pils *, streamind, -1, "imap", le_imap); -+ -+ convert_to_long_ex(pflags); -+ flags = Z_LVAL_PP(pflags); -+ -+ if (object_init(return_value) == FAILURE) { -+ RETURN_FALSE; -+ } -+ -+ if (flags & SA_MESSAGES) { -+ add_property_long(return_value, "messages", imap_le_struct->imap_stream->nmsgs); -+ } -+ if (flags & SA_RECENT) { -+ add_property_long(return_value, "recent", imap_le_struct->imap_stream->recent); -+ } -+ if (flags & SA_UIDNEXT) { -+ add_property_long(return_value, "uidnext", imap_le_struct->imap_stream->uid_last+1); -+ } -+ if (flags & SA_UIDVALIDITY) { -+ add_property_long(return_value, "uidvalidity", imap_le_struct->imap_stream->uid_validity); -+ } -+} -+/* }}} */ -+ - /* {{{ proto object imap_status(resource stream_id, string mailbox, int options) - Get status info from a mailbox */ - PHP_FUNCTION(imap_status) -diff -r 76412c484360 ext/imap/php_imap.h ---- a/ext/imap/php_imap.h Wed Dec 23 22:18:41 2009 +0100 -+++ b/ext/imap/php_imap.h Wed Dec 23 22:46:34 2009 +0100 -@@ -153,6 +153,7 @@ - PHP_FUNCTION(imap_lsub_full); - PHP_FUNCTION(imap_create); - PHP_FUNCTION(imap_rename); -+PHP_FUNCTION(imap_status_current); - PHP_FUNCTION(imap_status); - PHP_FUNCTION(imap_bodystruct); - PHP_FUNCTION(imap_fetch_overview); -@@ -173,6 +174,9 @@ - PHP_FUNCTION(imap_thread); - PHP_FUNCTION(imap_timeout); - -+// TODO: Needs fixing in configure in -+#define HAVE_IMAP2005 1 -+ - #if defined(HAVE_IMAP2000) || defined(HAVE_IMAP2001) - PHP_FUNCTION(imap_get_quota); - PHP_FUNCTION(imap_get_quotaroot); -@@ -180,7 +184,10 @@ - PHP_FUNCTION(imap_setacl); - PHP_FUNCTION(imap_getacl); - #endif -- -+#if defined(HAVE_IMAP2005) -+PHP_FUNCTION(imap_setannotation); -+PHP_FUNCTION(imap_getannotation); -+#endif - - ZEND_BEGIN_MODULE_GLOBALS(imap) - char *imap_user; -@@ -211,6 +218,9 @@ - zval **quota_return; - zval *imap_acl_list; - #endif -+#if defined(HAVE_IMAP2005) -+ zval *imap_annotation_list; -+#endif - /* php_stream for php_mail_gets() */ - php_stream *gets_stream; - ZEND_END_MODULE_GLOBALS(imap) diff --git a/php-imap-myrights.patch b/php-imap-myrights.patch deleted file mode 100644 index ddadbd3..0000000 --- a/php-imap-myrights.patch +++ /dev/null @@ -1,92 +0,0 @@ -diff -r 5daa8cce8706 ext/imap/php_imap.c ---- a/ext/imap/php_imap.c Wed Dec 23 22:46:34 2009 +0100 -+++ b/ext/imap/php_imap.c Wed Dec 23 22:49:02 2009 +0100 -@@ -157,6 +157,11 @@ - ZEND_END_ARG_INFO() - - ZEND_BEGIN_ARG_INFO_EX(arginfo_imap_getacl, 0, 0, 2) -+ ZEND_ARG_INFO(0, stream_id) -+ ZEND_ARG_INFO(0, mailbox) -+ZEND_END_ARG_INFO() -+ -+ZEND_BEGIN_ARG_INFO_EX(arginfo_imap_myrights, 0, 0, 2) - ZEND_ARG_INFO(0, stream_id) - ZEND_ARG_INFO(0, mailbox) - ZEND_END_ARG_INFO() -@@ -555,6 +560,7 @@ - PHP_FE(imap_set_quota, arginfo_imap_set_quota) - PHP_FE(imap_setacl, arginfo_imap_setacl) - PHP_FE(imap_getacl, arginfo_imap_getacl) -+ PHP_FE(imap_myrights, arginfo_imap_myrights) - #endif - #if defined(HAVE_IMAP2005) - PHP_FE(imap_setannotation, arginfo_imap_setannotation) -@@ -817,6 +823,20 @@ - for(; alist; alist = alist->next) { - add_assoc_stringl(IMAPG(imap_acl_list), alist->identifier, alist->rights, strlen(alist->rights), 1); - } -+} -+/* }}} */ -+ -+/* {{{ mail_myrights -+ * -+ * Mail MYRIGHTS callback -+ * Called via the mail_parameter function in c-client:src/c-client/mail.c -+ */ -+void mail_myrights(MAILSTREAM *stream, char *mailbox, char *rights) -+{ -+ TSRMLS_FETCH(); -+ -+ ZVAL_STRING(IMAPG(imap_acl_list), rights, 1) -+ - } - /* }}} */ - #endif -@@ -1525,6 +1545,36 @@ - IMAPG(imap_acl_list) = NIL; - } - /* }}} */ -+ -+/* {{{ proto string imap_myrights(resource stream_id, string mailbox) -+ Gets my rights (ACL) for a given mailbox */ -+PHP_FUNCTION(imap_myrights) -+{ -+ zval **streamind, **mailbox; -+ pils *imap_le_struct; -+ -+ if(ZEND_NUM_ARGS() != 2 || zend_get_parameters_ex(2, &streamind, &mailbox) == FAILURE) { -+ ZEND_WRONG_PARAM_COUNT(); -+ } -+ -+ ZEND_FETCH_RESOURCE(imap_le_struct, pils *, streamind, -1, "imap", le_imap); -+ -+ convert_to_string_ex(mailbox); -+ -+ IMAPG(imap_acl_list) = return_value; -+ -+ /* set the callback for the GET_ACL function */ -+ mail_parameters(NIL, SET_MYRIGHTS, (void *) mail_myrights); -+ if(!imap_myrights(imap_le_struct->imap_stream, Z_STRVAL_PP(mailbox))) { -+ php_error(E_WARNING, "c-client imap_myrights failed"); -+ zval_dtor(return_value); -+ RETURN_FALSE; -+ } -+ -+ IMAPG(imap_acl_list) = NIL; -+} -+/* }}} */ -+ - #endif /* HAVE_IMAP2000 || HAVE_IMAP2001 */ - - #if defined(HAVE_IMAP2005) -diff -r 5daa8cce8706 ext/imap/php_imap.h ---- a/ext/imap/php_imap.h Wed Dec 23 22:46:34 2009 +0100 -+++ b/ext/imap/php_imap.h Wed Dec 23 22:49:02 2009 +0100 -@@ -183,6 +183,7 @@ - PHP_FUNCTION(imap_set_quota); - PHP_FUNCTION(imap_setacl); - PHP_FUNCTION(imap_getacl); -+PHP_FUNCTION(imap_myrights); - #endif - #if defined(HAVE_IMAP2005) - PHP_FUNCTION(imap_setannotation); diff --git a/php-libpq_fs_h_path.patch b/php-libpq_fs_h_path.patch deleted file mode 100644 index df29656..0000000 --- a/php-libpq_fs_h_path.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -urN php5.3-200803022130/ext/pgsql/php_pgsql.h mod/ext/pgsql/php_pgsql.h ---- php5.3-200803022130/ext/pgsql/php_pgsql.h 2008-01-30 11:31:48.000000000 +0000 -+++ mod/ext/pgsql/php_pgsql.h 2008-03-02 22:27:42.292062316 +0000 -@@ -41,7 +41,7 @@ - #define PHP_PGSQL_API __declspec(dllimport) - #endif - #else --#include -+#include - # if defined(__GNUC__) && __GNUC__ >= 4 - # define PHP_PGSQL_API __attribute__ ((visibility("default"))) - # else diff --git a/php-libtool.patch b/php-libtool.patch index f9713d8..c95f37f 100644 --- a/php-libtool.patch +++ b/php-libtool.patch @@ -2,8 +2,8 @@ +++ php-5.4.6/scripts/phpize.in 2012-08-23 10:16:37.011306948 +0300 @@ -6,10 +6,16 @@ exec_prefix="`eval echo @exec_prefix@`" - phpdir="`eval echo @libdir@`/php/build" - includedir="`eval echo @includedir@`/php" + phpdir="`eval echo @libdir@`/php/php@program_suffix@/build" + includedir="`eval echo @includedir@`/php/php@program_suffix@" +aclocaldir="$prefix/share/aclocal" builddir="`pwd`" SED="@SED@" diff --git a/php-mail.patch b/php-mail.patch deleted file mode 100644 index e541727..0000000 --- a/php-mail.patch +++ /dev/null @@ -1,75 +0,0 @@ ---- php-5.2.0/ext/standard/mail.c 2006-12-01 14:20:27.881416250 +0100 -+++ php-5.2.4/ext/standard/mail.c 2007-08-31 19:25:50.777713042 +0300 -@@ -35,6 +37,8 @@ - #include "php_ini.h" - #include "safe_mode.h" - #include "exec.h" -+#include "zend_operators.h" -+#include "zend_globals.h" - - #ifdef PHP_WIN32 - #include "win32/sendmail.h" -@@ -107,6 +111,18 @@ - return; - } - -+ /* search for To: and Subject: headers which should be specified in proper mail() parameters, not in additional headers */ -+ if (headers != NULL) { -+ if (strncasecmp(headers, "to:", sizeof("to:") - 1) == 0 || strcasestr(headers, "\nto:")) { -+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "To: headers aren't allowed in the additional_headers parameter. Use $to parameter for that. Mail not sent."); -+ RETURN_FALSE; -+ } -+ if (strncasecmp(headers, "subject:", sizeof("subject:") - 1) == 0 || strcasestr(headers, "\nsubject:")) { -+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Subject: headers aren't allowed in the additional_headers parameter. Use $subject parameter for that. Mail not sent."); -+ RETURN_FALSE; -+ } -+ } -+ - if (to_len > 0) { - to_r = estrndup(to, to_len); - for (; to_len; to_len--) { -@@ -231,8 +247,42 @@ - return 0; - } - #endif -- fprintf(sendmail, "To: %s\n", to); -- fprintf(sendmail, "Subject: %s\n", subject); -+ TSRMLS_FETCH(); -+ -+ if ((to != NULL) && (strlen(to)!=0)) { -+ fprintf(sendmail, "To: %s\n", to); -+ } -+ if ((subject != NULL) && (strlen(subject)!=0)) { -+ fprintf(sendmail, "Subject: %s\n", subject); -+ } -+ zend_is_auto_global(ZEND_STRL("_SERVER") TSRMLS_CC); -+ if (PG(http_globals)[TRACK_VARS_SERVER]) { -+ zval **remote_addr, **server_name, **server_port, -+ **script_name, **http_user_agent; -+ -+ if (zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "REMOTE_ADDR", sizeof("REMOTE_ADDR"), (void **) &remote_addr)==SUCCESS) { -+ convert_to_string_ex(remote_addr); -+ fprintf(sendmail, "HTTP-Posting-Client: %s\n", Z_STRVAL_PP(remote_addr)); -+ } -+ if (zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "SERVER_NAME", sizeof("SERVER_NAME"), (void **) &server_name)==SUCCESS) { -+ convert_to_string_ex(server_name); -+ fprintf(sendmail, "HTTP-Posting-URI: %s", Z_STRVAL_PP(server_name)); -+ if (zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "SERVER_PORT", sizeof("SERVER_PORT"), (void **) &server_port)==SUCCESS) { -+ convert_to_string_ex(server_port); -+ fprintf(sendmail, ":%s", Z_STRVAL_PP(server_port)); -+ } -+ if (zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "SCRIPT_NAME", sizeof("SCRIPT_NAME"), (void **) &script_name)==SUCCESS) { -+ convert_to_string_ex(script_name); -+ fprintf(sendmail, "%s", Z_STRVAL_PP(script_name)); -+ } -+ fprintf(sendmail, "\n"); -+ } -+ if (zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "HTTP_USER_AGENT", sizeof("HTTP_USER_AGENT"), (void **) &http_user_agent)==SUCCESS) { -+ convert_to_string_ex(http_user_agent); -+ fprintf(sendmail, "HTTP-Posting-User-Agent: %s\n", Z_STRVAL_PP(http_user_agent)); -+ } -+ } -+ - if (hdr != NULL) { - fprintf(sendmail, "%s\n", hdr); - } diff --git a/php-mysql-ssl-context.patch b/php-mysql-ssl-context.patch deleted file mode 100644 index c8ff48d..0000000 --- a/php-mysql-ssl-context.patch +++ /dev/null @@ -1,36 +0,0 @@ -; obey default context options -; https://bugs.php.net/bug.php?id=68344 -diff -urbB php-5.6.12/ext/mysqlnd/mysqlnd_net.c php-5.6.12/ext/mysqlnd/mysqlnd_net.c ---- php-5.6.12/ext/mysqlnd/mysqlnd_net.c 2015-08-06 09:55:57.000000000 +0200 -+++ php-5.6.12/ext/mysqlnd/mysqlnd_net.c 2015-08-10 13:25:30.187912101 +0200 -@@ -29,6 +29,7 @@ - #include "mysqlnd_ext_plugin.h" - #include "php_network.h" - #include "zend_ini.h" -+#include "ext/standard/file.h" - #ifdef MYSQLND_COMPRESSION_ENABLED - #include - #endif -@@ -868,6 +868,21 @@ MYSQLND_METHOD(mysqlnd_net, enable_ssl)( - DBG_RETURN(FAIL); - } - -+ if (FG(default_context)) { -+ zval **tmpzval = NULL; -+ int i = 0; -+ /* copy values from default stream settings */ -+ char *opts[] = { "allow_self_signed", "cafile", "capath", "ciphers", "CN_match", -+ "disable_compression", "local_cert", "local_pk", "no_ticket", "passphrase", -+ "peer_fingerprint", "peer_name", "SNI_enabled", "SNI_server_certs", "SNI_server_name", -+ "verify_depth", "verify_peer", "verify_peer_name", NULL }; -+ while (opts[i]) { -+ if (php_stream_context_get_option(FG(default_context), "ssl", opts[i], &tmpzval) == SUCCESS) -+ php_stream_context_set_option(context, "ssl", opts[i], *tmpzval); -+ i++; -+ } -+ } -+ - if (net->data->options.ssl_key) { - zval key_zval; - ZVAL_STRING(&key_zval, net->data->options.ssl_key, 0); - diff --git a/php-systzdata.patch b/php-systzdata.patch index a5a7b9d..212820b 100644 --- a/php-systzdata.patch +++ b/php-systzdata.patch @@ -644,13 +644,12 @@ diff -up php-7.0.0RC1/ext/date/lib/parse_tz.c.systzdata php-7.0.0RC1/ext/date/li } else { tmp = NULL; } -diff -up php-7.0.0RC1/ext/date/lib/timelib.m4.systzdata php-7.0.0RC1/ext/date/lib/timelib.m4 ---- php-7.0.0RC1/ext/date/lib/timelib.m4.systzdata 2015-08-18 23:39:24.000000000 +0200 -+++ php-7.0.0RC1/ext/date/lib/timelib.m4 2015-08-22 07:47:34.854055364 +0200 -@@ -78,3 +78,17 @@ stdlib.h +--- php-7.1.0RC4/ext/date/lib/timelib.m4~ 2016-10-17 14:35:11.000000000 +0300 ++++ php-7.1.0RC4/ext/date/lib/timelib.m4 2016-10-25 14:11:32.224877793 +0300 +@@ -78,3 +78,16 @@ dnl Check for strtoll, atoll - AC_CHECK_FUNCS(strtoll atoll strftime) + AC_CHECK_FUNCS(strtoll atoll strftime gettimeofday) + +PHP_ARG_WITH(system-tzdata, for use of system timezone data, +[ --with-system-tzdata[=DIR] to specify use of system timezone data], @@ -664,4 +663,3 @@ diff -up php-7.0.0RC1/ext/date/lib/timelib.m4.systzdata php-7.0.0RC1/ext/date/li + [Define for location of system timezone data]) + fi +fi -+ diff --git a/php-uint32_t.patch b/php-uint32_t.patch deleted file mode 100644 index 5e9ba01..0000000 --- a/php-uint32_t.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -ur php5.3-200903291030/Zend/zend_strtod.c mod/Zend/zend_strtod.c ---- php5.3-200903291030/Zend/zend_strtod.c 2009-03-18 12:36:20.000000000 +0100 -+++ mod/Zend/zend_strtod.c 2009-03-29 18:34:10.000000000 +0200 -@@ -93,6 +93,7 @@ - - #include - #include -+#include - - #ifdef ZTS - #include diff --git a/php.spec b/php.spec index 9e29d4c..5c09bbd 100644 --- a/php.spec +++ b/php.spec @@ -24,20 +24,13 @@ # standard # # Conditional build: -%bcond_without default_php # use this PHP as default PHP in distro # - General options: %bcond_without embed # disable building Embedded API %bcond_with gcov # Enable Code coverage reporting -%bcond_without instantclient # build Oracle oci8 extension module against oracle-instantclient package -%bcond_with interbase_inst # use InterBase install., not Firebird (BR: proprietary libs) %bcond_without kerberos5 # without Kerberos5 support -%bcond_with mm # without mm support for session storage %bcond_with suhosin # with suhosin patch, has little point in PHP>=5.3, see https://github.com/stefanesser/suhosin/issues/42#issuecomment-41728178 -%bcond_with system_gd # with system gd (imageantialias function is missing then) -%bcond_with system_libzip # with system libzip (reported broken currently) %bcond_with systemtap # systemtap/DTrace support %bcond_with tests # default off; test process very often hangs on builders, approx run time 45m; perform "make test" -%bcond_without webp # Without WebP support in GD extension (imagecreatefromwebp) %bcond_with zts # Zend Thread Safety # - SAPI %bcond_without apache2 # disable building Apache 2.x SAPI @@ -55,7 +48,6 @@ %bcond_without dba # without DBA extension module %bcond_without dom # without DOM extension module %bcond_without enchant # without Enchant extension module -%bcond_without ereg # without ext/ereg support %bcond_without exif # without EXIF extension module %bcond_without fileinfo # without fileinfo extension module %bcond_without filter # without filter extension module @@ -98,6 +90,13 @@ %bcond_without tidy # without Tidy extension module %bcond_without wddx # without WDDX extension module %bcond_without xmlrpc # without XML-RPC extension module +# extensions options +%bcond_without instantclient # build Oracle oci8 extension module against oracle-instantclient package +%bcond_with interbase_inst # use InterBase install., not Firebird (BR: proprietary libs) +%bcond_with mm # without mm support for session storage +%bcond_with system_gd # with system gd (imageantialias function is missing then) +%bcond_with system_libzip # with system libzip (reported broken currently) +%bcond_without webp # Without WebP support in GD extension (imagecreatefromwebp) %define apxs1 /usr/sbin/apxs1 %define apxs2 /usr/sbin/apxs @@ -135,8 +134,7 @@ %endif %define orgname php -%define ver_suffix 70 -%define php_suffix %{!?with_default_php:%{ver_suffix}} +%define php_suffix 71 Summary: PHP: Hypertext Preprocessor Summary(fr.UTF-8): Le langage de script embarque-HTML PHP Summary(pl.UTF-8): Język skryptowy PHP @@ -144,16 +142,16 @@ Summary(pt_BR.UTF-8): A linguagem de script PHP Summary(ru.UTF-8): PHP Версии 7 - язык препроцессирования HTML-файлов, выполняемый на сервере Summary(uk.UTF-8): PHP Версії 7 - мова препроцесування HTML-файлів, виконувана на сервері Name: %{orgname}%{php_suffix} -Version: 7.0.15 -Release: 1 +Version: 7.1.1 +Release: 0.1 Epoch: 4 # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD License: PHP 3.01 and Zend and BSD Group: Libraries -Source0: http://www.php.net/distributions/%{orgname}-%{version}.tar.xz -# Source0-md5: dca23412f3e3b3987e582091b751925d +Source0: http://php.net/distributions/%{orgname}-%{version}.tar.xz +# Source0-md5: 65eef256f6e7104a05361939f5e23ada Source2: %{orgname}-mod_php.conf Source3: %{orgname}-cgi-fcgi.ini Source4: %{orgname}-apache.ini @@ -165,8 +163,8 @@ Source13: dep-tests.sh Source14: skip-tests.sh Patch0: %{orgname}-shared.patch Patch1: %{orgname}-tld.patch -Patch2: %{orgname}-mail.patch Patch3: %{orgname}-link-libs.patch +Patch4: intl-stdc++.patch Patch5: %{orgname}-filter-shared.patch Patch6: %{orgname}-build_modules.patch Patch7: %{orgname}-sapi-ini-file.patch @@ -179,7 +177,7 @@ Patch17: %{orgname}-readline.patch Patch18: %{orgname}-nohttpd.patch Patch21: %{orgname}-dba-link.patch Patch22: %{orgname}-both-apxs.patch -Patch23: %{orgname}-builddir.patch +Patch23: %{orgname}-paths.patch Patch24: %{orgname}-zlib-for-getimagesize.patch Patch25: %{orgname}-stupidapache_version.patch Patch26: %{orgname}-pear.patch @@ -194,8 +192,6 @@ Patch41: %{orgname}-fpm-config.patch Patch42: %{orgname}-fpm-shared.patch Patch43: %{orgname}-silent-session-cleanup.patch Patch44: %{orgname}-include_path.patch -Patch45: %{orgname}-imap-annotations.patch -Patch46: %{orgname}-imap-myrights.patch Patch47: suhosin.patch Patch50: extension-shared-optional-dep.patch Patch51: spl-shared.patch @@ -208,29 +204,23 @@ Patch62: mcrypt-libs.patch Patch65: system-libzip.patch Patch66: php-db.patch Patch67: mysql-lib-ver-mismatch.patch -# https://bugs.php.net/bug.php?id=68344 -Patch68: php-mysql-ssl-context.patch +Patch69: fpm-conf-split.patch Patch70: mysqlnd-ssl.patch Patch71: libdb-info.patch Patch72: phar-hash-shared.patch -URL: http://www.php.net/ +URL: http://php.net/ %{?with_interbase:%{!?with_interbase_inst:BuildRequires: Firebird-devel >= 1.0.2.908-2}} %{?with_pspell:BuildRequires: aspell-devel >= 2:0.50.0} BuildRequires: autoconf >= 2.59 BuildRequires: automake >= 1.4d BuildRequires: bison -BuildRequires: bzip2-devel +BuildRequires: bzip2-devel >= 1.0.0 %{?with_curl:BuildRequires: curl-devel >= 7.12.0} -BuildRequires: cyrus-sasl-devel +BuildRequires: cyrus-sasl-devel >= 2 BuildRequires: db-devel >= 4.0 BuildRequires: elfutils-devel %{?with_enchant:BuildRequires: enchant-devel >= 1.1.3} %{?with_kerberos5:BuildRequires: heimdal-devel} -%{?with_fpm:BuildRequires: libapparmor-devel} -%{?with_system_libzip:BuildRequires: libzip-devel >= 0.10.1-2} -%{!?with_mysqlnd:BuildRequires: mysql-devel} -BuildRequires: pkgconfig -BuildRequires: sed >= 4.0 %if %{with pdo_dblib} BuildRequires: freetds-devel >= 0.82 %endif @@ -239,26 +229,30 @@ BuildRequires: freetype-devel >= 1:2.5.1 BuildRequires: gd-devel >= 2.1 %endif BuildRequires: gdbm-devel -BuildRequires: gmp-devel +BuildRequires: gmp-devel >= 4.2 %{?with_imap:BuildRequires: imap-devel >= 1:2007e-2} +%{?with_gcov:BuildRequires: lcov} +%{?with_fpm:BuildRequires: libapparmor-devel} %{?with_intl:BuildRequires: libicu-devel >= 4.4} BuildRequires: libjpeg-devel BuildRequires: libltdl-devel >= 1.4 -BuildRequires: libmcrypt-devel >= 2.4.4 +BuildRequires: libmcrypt-devel >= 2.5.6 BuildRequires: libpng-devel >= 1.0.8 +%{?with_intl:BuildRequires: libstdc++-devel} %{?with_webp:BuildRequires: libwebp-devel} -BuildRequires: tokyocabinet-devel BuildRequires: libtool >= 2:2.4.6 BuildRequires: libxml2-devel >= 1:2.7.6-4 BuildRequires: libxslt-devel >= 1.1.0 +%{?with_system_libzip:BuildRequires: libzip-devel >= 0.10.1-2} +%{?with_snmp:%{?with_tests:BuildRequires: mibs-net-snmp}} %{?with_mm:BuildRequires: mm-devel >= 1.3.0} +%{!?with_pdo_mysql:BuildRequires: mysql-devel} +%{!?with_mysqli:BuildRequires: mysql-devel >= 4.1.13} +%{?with_snmp:BuildRequires: net-snmp-devel >= 5.3} %{?with_ldap:BuildRequires: openldap-devel >= 2.3.0} %if %{with openssl} || %{with ldap} -BuildRequires: openssl-devel >= 0.9.8 +BuildRequires: openssl-devel >= 1.0.1 %endif -%{?with_gcov:BuildRequires: lcov} -%{?with_snmp:%{?with_tests:BuildRequires: mibs-net-snmp}} -%{?with_snmp:BuildRequires: net-snmp-devel >= 5.0.7} %{?with_oci:%{?with_instantclient:BuildRequires: oracle-instantclient-devel}} BuildRequires: pam-devel %{?with_pcre:BuildRequires: pcre-devel >= 8.10} @@ -269,16 +263,18 @@ BuildRequires: readline-devel BuildRequires: rpm >= 4.4.9-56 BuildRequires: rpm-build >= 4.4.0 BuildRequires: rpmbuild(macros) >= 1.566 -%{?with_systemtap:BuildRequires: systemtap-sdt-devel} -BuildRequires: tar >= 1:1.22 -BuildRequires: xz +BuildRequires: sed >= 4.0 %if %{with sqlite3} || %{with pdo_sqlite} BuildRequires: sqlite3-devel >= 3.3.9 %endif +%{?with_systemtap:BuildRequires: systemtap-sdt-devel} +BuildRequires: tar >= 1:1.22 %{?with_tidy:BuildRequires: tidy-devel} +BuildRequires: tokyocabinet-devel %{?with_odbc:BuildRequires: unixODBC-devel} %{?with_xmlrpc:BuildRequires: xmlrpc-epi-devel >= 0.54.1} -BuildRequires: zlib-devel >= 1.0.9 +BuildRequires: xz +BuildRequires: zlib-devel >= 1.2.0.4 %if %{with apache2} BuildRequires: apache-devel >= 2.0.52-2 BuildRequires: apr-devel >= 1:1.0.0 @@ -288,12 +284,13 @@ BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) %define php_sysconfdir /etc/%{name} %define php_extensiondir %{_libdir}/%{name} -%define _sysconfdir %{php_sysconfdir} +%define php_datadir /usr/share/%{name} +%define _sysconfdir %{php_sysconfdir} # must be in sync with source. extra check ensuring that it is so is done in %%build -%define php_api_version 20151012 -%define zend_module_api 20151012 -%define zend_extension_api 320151012 +%define php_api_version 20160303 +%define zend_module_api 20160303 +%define zend_extension_api 320160303 %define php_pdo_api_version 20150127 # Extension versions @@ -302,7 +299,7 @@ BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) %define fileinfover 1.0.5 %define hashver 1.0 %define intlver 1.1.0 -%define jsonver 1.4.0 +%define jsonver 1.5.0 %define pharver 2.0.2 %define sqlite3ver 0.7-dev %define zipver 1.13.5 @@ -428,7 +425,7 @@ Summary: PHP as CLI interpreter Summary(pl.UTF-8): PHP jako interpreter działający z linii poleceń Group: Development/Languages/PHP Requires: %{name}-common = %{epoch}:%{version}-%{release} -Provides: php-program +Requires: alternatives Obsoletes: php-cli < 4:5.3.28-7 %description cli @@ -456,12 +453,14 @@ celu obsługi PHP jako języka skryptowego. Summary: PHP FastCGI Process Manager Summary(pl.UTF-8): PHP FastCGI Process Manager - zarządca procesów FastCGI Group: Development/Languages/PHP -URL: http://www.php-fpm.org/ +URL: http://php-fpm.org/ Requires(post,preun): /sbin/chkconfig Requires(postun): /usr/sbin/userdel Requires(pre): /bin/id Requires(pre): /usr/sbin/useradd Requires: %{name}-common = %{epoch}:%{version}-%{release} +Requires: alternatives +Requires: php-dirs >= 1.4-2 Requires: rc-scripts Provides: php(fcgi) Provides: php(fpm) @@ -478,6 +477,7 @@ PHP FastCGI Process Manager - zarządca procesów FastCGI. %package phpdbg Summary: The debugging platform for PHP 5.4+ +Summary(pl.UTF-8): Platforma diagnostyczna dla PHP 5.4+ Group: Development/Languages/PHP Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(phpdbg) = %{phpdbgver} @@ -492,6 +492,15 @@ your code. phpdbg aims to be a lightweight, powerful, easy to use debugging platform for PHP 5.4+ +%description phpdbg -l pl.UTF-8 +phpdbg - interaktywny debugger dla PHP. + +Jest zaimplementowany jako moduł SAPI, potrafi przejąć pełną kontrolę +nad środowiskiem bez wpływu na zachowanie lub wydajność kodu. + +Narzędzie powstało jako lekka, mająca duże możliwości, łatwa w użyciu +platforma diagnostyczna dla PHP 5.4+. + %package common Summary: Common files needed by both Apache modules and CGI/CLI SAPIs Summary(pl.UTF-8): Wspólne pliki dla modułu Apache'a i programu CGI @@ -504,6 +513,7 @@ Requires: glibc >= 6:2.3.5 Requires: php-dirs >= 1.4 Requires: rpm-whiteout >= 1.28 Requires: tzdata +Requires: zlib >= 1.2.0.4 Provides: %{name}(debug) = %{php_debug} Provides: %{name}(modules_api) = %{php_api_version} Provides: %{name}(thread-safety) = %{_zend_zts} @@ -511,12 +521,10 @@ Provides: %{name}(zend_extension_api) = %{zend_extension_api} Provides: %{name}(zend_module_api) = %{zend_module_api} Provides: %{name}-core Provides: %{name}-date -%{?with_ereg:Provides: %{name}-ereg} Provides: %{name}-reflection Provides: %{name}-standard Provides: php(core) = %{version} Provides: php(date) -%{?with_ereg:Provides: php(ereg)} Provides: php(libxml) Provides: php(reflection) Provides: php(standard) @@ -524,7 +532,14 @@ Provides: php(standard) %{?with_pcre:%requires_ge_to pcre pcre-devel} Suggests: browscap Obsoletes: php-common < 4:5.3.28-7 +# withdrawn modules +Obsoletes: php-filepro < 4:5.2.0 +Obsoletes: php-hwapi < 4:5.2.0 +Obsoletes: php-hyperwave < 3:5.0.0 +Obsoletes: php-java < 3:5.0.0 +Obsoletes: php-mcal < 3:5.0.0 Obsoletes: php-pecl-domxml +Obsoletes: php-qtdom < 3:5.0.0 Conflicts: php4-common < 3:4.4.4-8 Conflicts: php55-common < 4:5.5.10-4 Conflicts: rpm < 4.4.2-0.2 @@ -564,7 +579,6 @@ Obsoletes: php52-devel Obsoletes: php53-devel Obsoletes: php54-devel Obsoletes: php55-devel -Obsoletes: php56-devel %description devel The php-devel package lets you compile dynamic extensions to PHP. @@ -603,7 +617,7 @@ oracle, встановіть цей пакет для компіляції ок Summary: bcmath extension module for PHP Summary(pl.UTF-8): Moduł bcmath dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.bc.php +URL: http://php.net/manual/en/book.bc.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(bcmath) Obsoletes: php-bcmath < 4:5.3.28-7 @@ -620,8 +634,9 @@ matematycznych takich jak w programie bc. Summary: Bzip2 extension module for PHP Summary(pl.UTF-8): Moduł bzip2 dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.bzip2.php +URL: http://php.net/manual/en/book.bzip2.php Requires: %{name}-common = %{epoch}:%{version}-%{release} +Requires: bzip2-libs >= 1.0.0 Provides: php(bz2) = %{bz2ver} Provides: php(bzip2) Provides: php-bzip2 = %{epoch}:%{version}-%{release} @@ -640,7 +655,7 @@ Moduł PHP umożliwiający używanie kompresji bzip2. Summary: Calendar extension module for PHP Summary(pl.UTF-8): Moduł funkcji kalendarza dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.calendar.php +URL: http://php.net/manual/en/book.calendar.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(calendar) Obsoletes: php-calendar < 4:5.3.28-7 @@ -656,7 +671,7 @@ Moduł PHP dodający wsparcie dla kalendarza. Summary: ctype extension module for PHP Summary(pl.UTF-8): Moduł ctype dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.ctype.php +URL: http://php.net/manual/en/book.ctype.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(ctype) Obsoletes: php-ctype < 4:5.3.28-7 @@ -672,8 +687,9 @@ Moduł PHP umożliwiający korzystanie z funkcji ctype. Summary: curl extension module for PHP Summary(pl.UTF-8): Moduł curl dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.curl.php +URL: http://php.net/manual/en/book.curl.php Requires: %{name}-common = %{epoch}:%{version}-%{release} +Requires: curl-libs >= 7.12.0 Provides: php(curl) Obsoletes: php-curl < 4:5.3.28-7 @@ -688,10 +704,12 @@ Moduł PHP umożliwiający korzystanie z biblioteki curl. Summary: DBA extension module for PHP Summary(pl.UTF-8): Moduł DBA dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.dba.php +URL: http://php.net/manual/en/book.dba.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(dba) Obsoletes: php-dba < 4:5.3.28-7 +# withdrawn module of similar functionality but different API +Obsoletes: php-db < 3:5.0.0 %description dba This is a dynamic shared object (DSO) for PHP that will add flat-file @@ -705,7 +723,7 @@ Moduł dla PHP dodający obsługę dla baz danych opartych na plikach Summary: DOM extension module for PHP Summary(pl.UTF-8): Moduł DOM dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.dom.php +URL: http://php.net/manual/en/book.dom.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(dom) # it has some compatibility functions @@ -725,7 +743,7 @@ Moduł PHP dodający nową obsługę DOM. Summary: libenchant binder Summary(pl.UTF-8): dowiązania biblioteki libenchant Group: Libraries -URL: http://www.php.net/manual/en/book.exif.php +URL: http://php.net/manual/en/book.enchant.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(enchant) = %{enchantver} Obsoletes: php-enchant < 4:5.3.28-7 @@ -755,7 +773,7 @@ ujednolicone API dla wielu narzędzi sprawdzających pisownię: Summary: exif extension module for PHP Summary(pl.UTF-8): Moduł exif dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.exif.php +URL: http://php.net/manual/en/book.exif.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(exif) Obsoletes: php-exif < 4:5.3.28-7 @@ -771,7 +789,7 @@ Moduł PHP dodający obsługę znaczników EXIF w plikach obrazków. Summary: libmagic bindings Summary(pl.UTF-8): Wiązania do libmagic Group: Libraries -URL: http://www.php.net/manual/en/book.fileinfo.php +URL: http://php.net/manual/en/book.fileinfo.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-pcre = %{epoch}:%{version}-%{release} Provides: php(fileinfo) = %{fileinfover} @@ -798,7 +816,7 @@ pliku oraz kodowania plików tekstowych. Summary: Extension for safely dealing with input parameters Summary(pl.UTF-8): Rozszerzenie do bezpiecznej obsługi danych wejściowych Group: Libraries -URL: http://www.php.net/manual/en/book.filter.php +URL: http://php.net/manual/en/book.filter.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-pcre = %{epoch}:%{version}-%{release} Provides: php(filter) @@ -823,7 +841,7 @@ mogą bezpiecznie używać do dostępu do danych. Summary: FTP extension module for PHP Summary(pl.UTF-8): Moduł FTP dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.ftp.php +URL: http://php.net/manual/en/book.ftp.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(ftp) Obsoletes: php-ftp < 4:5.3.28-7 @@ -839,7 +857,7 @@ Moduł PHP dodający obsługę protokołu FTP. Summary: GD extension module for PHP Summary(pl.UTF-8): Moduł GD dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.image.php +URL: http://php.net/manual/en/book.image.php Requires: %{name}-common = %{epoch}:%{version}-%{release} %if %{with system_gd} Requires: gd >= 2.1 @@ -860,7 +878,7 @@ tworzenie i obróbkę obrazków. Summary: gettext extension module for PHP Summary(pl.UTF-8): Moduł gettext dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.gettext.php +URL: http://php.net/manual/en/book.gettext.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(gettext) Obsoletes: php-gettext < 4:5.3.28-7 @@ -876,8 +894,9 @@ Moduł PHP dodający obsługę lokalizacji przez gettext. Summary: gmp extension module for PHP Summary(pl.UTF-8): Moduł gmp dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.gmp.php +URL: http://php.net/manual/en/book.gmp.php Requires: %{name}-common = %{epoch}:%{version}-%{release} +Requires: gmp >= 4.2 Provides: php(gmp) Obsoletes: php-gmp < 4:5.3.28-7 @@ -893,7 +912,7 @@ liczbach o dowolnej długości. Summary: HASH Message Digest Framework Summary(pl.UTF-8): Szkielet do obliczania skrótów wiadomości Group: Libraries -URL: http://www.php.net/manual/en/book.gmp.php +URL: http://php.net/manual/en/book.gmp.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(hash) = %{hashver} %if %{with mhash} @@ -916,7 +935,7 @@ wiadomości przy użyciu wspólnego interfejsu. Summary: iconv extension module for PHP Summary(pl.UTF-8): Moduł iconv dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.iconv.php +URL: http://php.net/manual/en/book.iconv.php Requires: %{_libdir}/gconv Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: iconv @@ -935,7 +954,7 @@ Summary: IMAP extension module for PHP Summary(pl.UTF-8): Moduł IMAP dla PHP Summary(pt_BR.UTF-8): Um módulo para aplicações PHP que usam IMAP Group: Libraries -URL: http://www.php.net/manual/en/book.imap.php +URL: http://php.net/manual/en/book.imap.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-pcre = %{epoch}:%{version}-%{release} Requires: imap-lib >= 1:2007e-2 @@ -956,7 +975,7 @@ Um módulo para aplicações PHP que usam IMAP. Summary: InterBase/Firebird database module for PHP Summary(pl.UTF-8): Moduł bazy danych InterBase/Firebird dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.ibase.php +URL: http://php.net/manual/en/book.ibase.php %if %{with interbase_inst} %{?requires_php_extension} %else @@ -976,7 +995,7 @@ Moduł PHP umożliwiający dostęp do baz danych InterBase i Firebird. Summary: Internationalization extension (ICU wrapper) Summary(pl.UTF-8): Rozszerzenie do internacjonalizacji (interfejs do ICU) Group: Libraries -URL: http://www.php.net/intl +URL: http://php.net/intl Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(intl) = %{intlver} Obsoletes: php-intl < 4:5.3.28-7 @@ -998,7 +1017,7 @@ daty/czasu/walut. Summary: PHP C extension for JSON serialization Summary(pl.UTF-8): Rozszerzenie C PHP dla serializacji JSON Group: Libraries -URL: http://www.php.net/manual/en/book.json.php +URL: http://php.net/manual/en/book.json.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(json) = %{jsonver} Obsoletes: php-json < 4:5.3.28-7 @@ -1017,7 +1036,7 @@ Summary: LDAP extension module for PHP Summary(pl.UTF-8): Moduł LDAP dla PHP Summary(pt_BR.UTF-8): Um módulo para aplicações PHP que usam LDAP Group: Libraries -URL: http://www.php.net/manual/en/book.ldap.php +URL: http://php.net/manual/en/book.ldap.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(ldap) Obsoletes: php-ldap < 4:5.3.28-7 @@ -1036,7 +1055,7 @@ Um módulo para aplicações PHP que usam LDAP. Summary: mbstring extension module for PHP Summary(pl.UTF-8): Moduł mbstring dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.mbstring.php +URL: http://php.net/manual/en/book.mbstring.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(mbstring) Obsoletes: php-mbstring < 4:5.3.28-7 @@ -1052,8 +1071,9 @@ Moduł PHP dodający obsługę ciągów znaków wielobajtowych. Summary: mcrypt extension module for PHP Summary(pl.UTF-8): Moduł mcrypt dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.mcrypt.php +URL: http://php.net/manual/en/book.mcrypt.php Requires: %{name}-common = %{epoch}:%{version}-%{release} +Requires: libmcrypt >= 2.5.6 Provides: php(mcrypt) Obsoletes: php-mcrypt < 4:5.3.28-7 @@ -1064,31 +1084,15 @@ support. %description mcrypt -l pl.UTF-8 Moduł PHP dodający możliwość szyfrowania poprzez bibliotekę mcrypt. -%package mssql -Summary: MS SQL extension module for PHP -Summary(pl.UTF-8): Moduł MS SQL dla PHP -Group: Libraries -URL: http://www.php.net/manual/en/book.mssql.php -Requires: %{name}-common = %{epoch}:%{version}-%{release} -Provides: php(mssql) -Obsoletes: php-mssql < 4:5.3.28-7 - -%description mssql -This is a dynamic shared object (DSO) for PHP that will add MS SQL -databases support through FreeTDS library. - -%description mssql -l pl.UTF-8 -Moduł PHP dodający obsługę baz danych MS SQL poprzez bibliotekę -FreeTDS. - %package mysqli Summary: MySQLi module for PHP Summary(pl.UTF-8): Moduł MySQLi dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.mysqli.php +URL: http://php.net/manual/en/book.mysqli.php Requires: %{name}-common = %{epoch}:%{version}-%{release} %{?with_mysqlnd:Requires: %{name}-mysqlnd = %{epoch}:%{version}-%{release}} Requires: %{name}-spl = %{epoch}:%{version}-%{release} +Requires: mysql-libs >= 4.1.13 Provides: php(mysqli) Obsoletes: php-mysqli < 4:5.3.28-7 @@ -1106,7 +1110,7 @@ MySQL w wersji 4.1 i nowszych. Summary: MySQL Native Client Driver for PHP Summary(pl.UTF-8): Sterownik natywnego klienta MySQL dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.mysqlnd.php +URL: http://php.net/manual/en/book.mysqlnd.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(mysqlnd) Obsoletes: php-mysqlnd < 4:5.3.28-7 @@ -1144,10 +1148,12 @@ tym sterowniku - tylko raz. Summary: Oracle 8+ database module for PHP Summary(pl.UTF-8): Moduł bazy danych Oracle 8+ dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.oci8.php +URL: http://php.net/manual/en/book.oci8.php %{?requires_php_extension} Provides: php(oci8) Obsoletes: php-oci8 < 4:5.3.28-7 +# withdrawn module of similar functionality but different API +Obsoletes: php-oracle < 4:5.1.0 %description oci8 This is a dynamic shared object (DSO) for PHP that will add Oracle 7, @@ -1162,7 +1168,7 @@ Summary: ODBC extension module for PHP Summary(pl.UTF-8): Moduł ODBC dla PHP Summary(pt_BR.UTF-8): Um módulo para aplicações PHP que usam bases de dados ODBC Group: Libraries -URL: http://www.php.net/manual/en/book.uodbc.php +URL: http://php.net/manual/en/book.uodbc.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: unixODBC >= 2.1.1-3 Provides: php(odbc) @@ -1207,7 +1213,7 @@ czyniąc wykonywanie kodu szybszym. Summary: OpenSSL extension module for PHP Summary(pl.UTF-8): Moduł OpenSSL dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.openssl.php +URL: http://php.net/manual/en/book.openssl.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(openssl) Obsoletes: php-openssl < 4:5.3.28-7 @@ -1223,7 +1229,7 @@ Moduł PHP umożliwiający korzystanie z biblioteki OpenSSL. Summary: Process Control extension module for PHP Summary(pl.UTF-8): Moduł Process Control dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.pcntl.php +URL: http://php.net/manual/en/book.pcntl.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(pcntl) Obsoletes: php-pcntl < 4:5.3.28-7 @@ -1257,7 +1263,7 @@ Moduł PHP umożliwiający korzystanie z perlowych wyrażeń regularnych Summary: PHP Data Objects (PDO) Summary(pl.UTF-8): Obsługa PHP Data Objects (PDO) Group: Libraries -URL: http://www.php.net/manual/en/book.pdo.php +URL: http://php.net/manual/en/book.pdo.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-spl = %{epoch}:%{version}-%{release} Provides: %{name}(PDO_API) = %{php_pdo_api_version} @@ -1276,10 +1282,10 @@ Moduł PHP dodający obsługę PDO (PHP Data Objects). Summary: PHP Data Objects (PDO) FreeTDS support Summary(pl.UTF-8): Moduł PHP Data Objects (PDO) z obsługą FreeTDS Group: Libraries -URL: http://www.php.net/manual/en/ref.pdo-dblib.php +URL: http://php.net/manual/en/ref.pdo-dblib.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-pdo = %{epoch}:%{version}-%{release} -Provides: php(dblib) +Provides: php(pdo_dblib) Obsoletes: php-pdo-dblib < 4:5.3.28-7 %description pdo-dblib @@ -1294,10 +1300,11 @@ interfejsu PDO. Summary: PHP Data Objects (PDO) Firebird support Summary(pl.UTF-8): Moduł PHP Data Objects (PDO) z obsługą Firebirda Group: Libraries -URL: http://www.php.net/manual/en/ref.pdo-firebird.php +URL: http://php.net/manual/en/ref.pdo-firebird.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-pdo = %{epoch}:%{version}-%{release} Provides: php(pdo-firebird) +Provides: php(pdo_firebird) Obsoletes: php-pdo-firebird < 4:5.3.28-7 Obsoletes: php-pecl-PDO_FIREBIRD @@ -1313,11 +1320,12 @@ interfejsu PDO. Summary: PHP Data Objects (PDO) MySQL support Summary(pl.UTF-8): Moduł PHP Data Objects (PDO) z obsługą MySQL-a Group: Libraries -URL: http://www.php.net/manual/en/ref.pdo-mysql.php +URL: http://php.net/manual/en/ref.pdo-mysql.php Requires: %{name}-common = %{epoch}:%{version}-%{release} %{?with_mysqlnd:Requires: %{name}-mysqlnd = %{epoch}:%{version}-%{release}} Requires: %{name}-pdo = %{epoch}:%{version}-%{release} Provides: php(pdo-mysql) +Provides: php(pdo_mysql) Obsoletes: php-pdo-mysql < 4:5.3.28-7 Obsoletes: php-pecl-PDO_MYSQL @@ -1333,10 +1341,11 @@ interfejsu PDO. Summary: PHP Data Objects (PDO) Oracle support Summary(pl.UTF-8): Moduł PHP Data Objects (PDO) z obsługą Oracle'a Group: Libraries -URL: http://www.php.net/manual/en/ref.pdo-oci.php +URL: http://php.net/manual/en/ref.pdo-oci.php %{?requires_php_extension} %{?requires_php_pdo_module} Provides: php(pdo-oci) +Provides: php(pdo_oci) Obsoletes: php-pdo-oci < 4:5.3.28-7 Obsoletes: php-pecl-PDO_OCI @@ -1352,10 +1361,11 @@ interfejsu PDO. Summary: PHP Data Objects (PDO) ODBC support Summary(pl.UTF-8): Moduł PHP Data Objects (PDO) z obsługą ODBC Group: Libraries -URL: http://www.php.net/manual/en/ref.pdo-odbc.php +URL: http://php.net/manual/en/ref.pdo-odbc.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-pdo = %{epoch}:%{version}-%{release} Provides: php(pdo-odbc) +Provides: php(pdo_odbc) Obsoletes: php-pdo-odbc < 4:5.3.28-7 Obsoletes: php-pecl-PDO_ODBC @@ -1371,11 +1381,11 @@ interfejsu PDO. Summary: PHP Data Objects (PDO) PostgreSQL support Summary(pl.UTF-8): Moduł PHP Data Objects (PDO) z obsługą PostgreSQL-a Group: Libraries -URL: http://www.php.net/manual/en/ref.pdo-pgsql.php +URL: http://php.net/manual/en/ref.pdo-pgsql.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-pdo = %{epoch}:%{version}-%{release} Provides: php(pdo-pgsql) -Provides: php-pecl-PDO_PGSQL +Provides: php(pdo_pgsql) Obsoletes: php-pdo-pgsql < 4:5.3.28-7 Obsoletes: php-pecl-PDO_PGSQL < 4:5.2.1-2 @@ -1391,10 +1401,11 @@ interfejsu PDO. Summary: PHP Data Objects (PDO) SQLite support Summary(pl.UTF-8): Moduł PHP Data Objects (PDO) z obsługą SQLite Group: Libraries -URL: http://www.php.net/manual/en/ref.pdo-sqlite.php +URL: http://php.net/manual/en/ref.pdo-sqlite.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-pdo = %{epoch}:%{version}-%{release} Provides: php(pdo-sqlite) +Provides: php(pdo_sqlite) Obsoletes: php-pdo-sqlite < 4:5.3.28-7 Obsoletes: php-pecl-PDO_SQLITE @@ -1410,7 +1421,7 @@ interfejsu PDO. Summary: PostgreSQL database module for PHP Summary(pl.UTF-8): Moduł bazy danych PostgreSQL dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.pgsql.php +URL: http://php.net/manual/en/book.pgsql.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(pgsql) Obsoletes: php-pgsql < 4:5.3.28-7 @@ -1426,13 +1437,14 @@ Moduł PHP umożliwiający dostęp do bazy danych PostgreSQL. Um módulo para aplicações PHP que usam bancos de dados postgresql. %package phar -Summary: phar database module for PHP +Summary: Phar archive module for PHP Summary(pl.UTF-8): Moduł phar dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.phar.php +URL: http://php.net/manual/en/book.phar.php Requires: %{name}-common = %{epoch}:%{version}-%{release} -Requires: %{name}-spl = %{epoch}:%{version}-%{release} Requires: %{name}-hash = %{epoch}:%{version}-%{release} +Requires: %{name}-spl = %{epoch}:%{version}-%{release} +Requires: alternatives Suggests: %{name}-cli # zlib is required by phar program, but as phar cli is optional should the dep be too Suggests: %{name}-zlib @@ -1452,7 +1464,7 @@ Moduł PHP umożliwiający dostęp do achiwów .phar. Summary: POSIX extension module for PHP Summary(pl.UTF-8): Moduł POSIX dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.posix.php +URL: http://php.net/manual/en/book.posix.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(posix) Obsoletes: php-posix < 4:5.3.28-7 @@ -1468,7 +1480,7 @@ Moduł PHP umożliwiający korzystanie z funkcji POSIX. Summary: pspell extension module for PHP Summary(pl.UTF-8): Moduł pspell dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.pspell.php +URL: http://php.net/manual/en/book.pspell.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(pspell) Obsoletes: php-pspell < 4:5.3.28-7 @@ -1486,7 +1498,7 @@ sprawdzanie pisowni słowa i sugerowanie poprawek. Summary: readline extension module for PHP Summary(pl.UTF-8): Moduł readline dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.readline.php +URL: http://php.net/manual/en/book.readline.php Requires: %{name}-cli = %{epoch}:%{version}-%{release} Provides: php(readline) Obsoletes: php-readline < 4:5.3.28-7 @@ -1502,7 +1514,7 @@ Moduł PHP dodający obsługę funkcji readline (tylko do SAPI cli i cgi). Summary: recode extension module for PHP Summary(pl.UTF-8): Moduł recode dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.recode.php +URL: http://php.net/manual/en/book.recode.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: recode >= 3.5d-3 Provides: php(recode) @@ -1538,7 +1550,7 @@ Moduł PHP dodający obsługę sesji. Summary: Shared Memory Operations extension module for PHP Summary(pl.UTF-8): Moduł shmop dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.shmop.php +URL: http://php.net/manual/en/book.shmop.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(shmop) Obsoletes: php-shmop < 4:5.3.28-7 @@ -1554,7 +1566,7 @@ Moduł PHP umożliwiający korzystanie z pamięci dzielonej. Summary: Simple XML extension module for PHP Summary(pl.UTF-8): Moduł prostego rozszerzenia XML dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.simplexml.php +URL: http://php.net/manual/en/book.simplexml.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-spl = %{epoch}:%{version}-%{release} Provides: php(simplexml) @@ -1571,7 +1583,7 @@ Moduł PHP dodający obsługę prostego XML-a. Summary: SNMP extension module for PHP Summary(pl.UTF-8): Moduł SNMP dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.snmp.php +URL: http://php.net/manual/en/book.snmp.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-sockets = %{epoch}:%{version}-%{release} Requires: %{name}-spl = %{epoch}:%{version}-%{release} @@ -1589,7 +1601,7 @@ Moduł PHP dodający obsługę SNMP. Summary: soap extension module for PHP Summary(pl.UTF-8): Moduł soap dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.soap.php +URL: http://php.net/manual/en/book.soap.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(soap) Obsoletes: php-soap < 4:5.3.28-7 @@ -1605,7 +1617,7 @@ Moduł PHP dodający obsługę SOAP/WSDL. Summary: sockets extension module for PHP Summary(pl.UTF-8): Moduł socket dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.sockets.php +URL: http://php.net/manual/en/book.sockets.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(sockets) Obsoletes: php-sockets < 4:5.3.28-7 @@ -1668,7 +1680,7 @@ dysku. Summary: SysV msg extension module for PHP Summary(pl.UTF-8): Moduł SysV msg dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.sem.php +URL: http://php.net/manual/en/book.sem.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(sysvmsg) Obsoletes: php-sysvmsg < 4:5.3.28-7 @@ -1684,7 +1696,7 @@ Moduł PHP umożliwiający korzystanie z kolejek komunikatów SysV. Summary: SysV sem extension module for PHP Summary(pl.UTF-8): Moduł SysV sem dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.sem.php +URL: http://php.net/manual/en/book.sem.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(sysvsem) Obsoletes: php-sysvsem < 4:5.3.28-7 @@ -1700,7 +1712,7 @@ Moduł PHP umożliwiający korzystanie z semaforów SysV. Summary: SysV shm extension module for PHP Summary(pl.UTF-8): Moduł SysV shm dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.shmop.php +URL: http://php.net/manual/en/book.sem.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(sysvshm) Obsoletes: php-sysvshm < 4:5.3.28-7 @@ -1729,7 +1741,7 @@ Ten pakiet zawiera pliki testów jednostkowych dla PHP i rozszerzeń. Summary: Tidy extension module for PHP Summary(pl.UTF-8): Moduł Tidy dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.tidy.php +URL: http://php.net/manual/en/book.tidy.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: tidy Provides: php(tidy) @@ -1746,7 +1758,7 @@ Moduł PHP umożliwiający korzystanie z tidy. Summary: tokenizer extension module for PHP Summary(pl.UTF-8): Moduł rozszerzenia tokenizer dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.tokenizer.php +URL: http://php.net/manual/en/book.tokenizer.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(tokenizer) Obsoletes: php-tokenizer < 4:5.3.28-7 @@ -1762,7 +1774,7 @@ Moduł PHP dodający obsługę tokenizera do PHP. Summary: wddx extension module for PHP Summary(pl.UTF-8): Moduł wddx dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.wddx.php +URL: http://php.net/manual/en/book.wddx.php Requires: %{name}-common = %{epoch}:%{version}-%{release} # - wddx doesn't require session as it's disabled at compile time: # if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION) @@ -1783,7 +1795,7 @@ Moduł PHP umożliwiający korzystanie z wddx. Summary: XML extension module for PHP Summary(pl.UTF-8): Moduł XML dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.xml.php +URL: http://php.net/manual/en/book.xml.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(xml) Obsoletes: php-xml < 4:5.3.28-7 @@ -1802,7 +1814,7 @@ następnie definiować procedury obsługi dla różnych zdarzeń XML. Summary: XML Reader extension module for PHP Summary(pl.UTF-8): Moduł XML Reader dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.xmlreader.php +URL: http://php.net/manual/en/book.xmlreader.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-dom = %{epoch}:%{version}-%{release} Provides: php(xmlreader) @@ -1823,7 +1835,7 @@ zatrzymujący się na każdym węźle po drodze. Summary: xmlrpc extension module for PHP Summary(pl.UTF-8): Moduł xmlrpc dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.xmlrpc.php +URL: http://php.net/manual/en/book.xmlrpc.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-xml = %{epoch}:%{version}-%{release} Provides: php(xmlrpc) @@ -1840,7 +1852,7 @@ Moduł PHP dodający obsługę XMLRPC. Summary: Fast, non-cached, forward-only means to write XML data Summary(pl.UTF-8): Szybka, nie cachowana metoda zapisu danych w formacie XML Group: Libraries -URL: http://www.php.net/manual/en/book.xmlwriter.php +URL: http://php.net/manual/en/book.xmlwriter.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(xmlwriter) Obsoletes: php-pecl-xmlwriter @@ -1860,10 +1872,10 @@ plików zawierających dane XML. Summary: xsl extension module for PHP Summary(pl.UTF-8): Moduł xsl dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.xsl.php +URL: http://php.net/manual/en/book.xsl.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-dom = %{epoch}:%{version}-%{release} -Requires: libxslt >= 1.0.18 +Requires: libxslt >= 1.1.0 Provides: php(xsl) Obsoletes: php-xsl < 4:5.3.28-7 # actually not true, functionality is similar, but API differs @@ -1880,7 +1892,7 @@ Moduł PHP dodający nową obsługę XSLT (przy użyciu libxslt). Summary: Zip management extension Summary(pl.UTF-8): Zarządzanie archiwami zip Group: Libraries -URL: http://www.php.net/manual/en/book.zip.php +URL: http://php.net/manual/en/book.zip.php Requires: %{name}-common = %{epoch}:%{version}-%{release} %{?with_system_libzip:Requires: libzip >= 0.10.1-2} Provides: php(zip) = %{zipver} @@ -1898,7 +1910,7 @@ odczyt archiwów zip. Summary: Zlib extension module for PHP Summary(pl.UTF-8): Moduł zlib dla PHP Group: Libraries -URL: http://www.php.net/manual/en/book.zlib.php +URL: http://php.net/manual/en/book.zlib.php Requires: %{name}-common = %{epoch}:%{version}-%{release} Provides: php(zlib) Obsoletes: php-zlib < 4:5.3.28-7 @@ -1915,7 +1927,6 @@ Moduł PHP umożliwiający używanie kompresji zlib. cp -p php.ini-production php.ini %patch0 -p1 %patch1 -p1 -#%patch2 -p1 %patch3 -p1 %patch5 -p1 %patch6 -p1 @@ -1945,8 +1956,6 @@ cp -p php.ini-production php.ini %endif %patch43 -p1 %patch44 -p1 -#%patch45 -p1 # imap annotations. fixme -#%patch46 -p1 # imap myrights. fixme %if %{with suhosin} %patch47 -p1 %endif @@ -1962,12 +1971,11 @@ cp -p php.ini-production php.ini %{?with_system_libzip:%patch65 -p1} %patch66 -p1 %patch67 -p1 -#%patch68 -p1 %patch70 -p1 %patch71 -p1 %patch72 -p1 -sed -i -e '/PHP_ADD_LIBRARY_WITH_PATH/s#xmlrpc,#xmlrpc-epi,#' ext/xmlrpc/config.m4 +%{__sed} -i -e '/PHP_ADD_LIBRARY_WITH_PATH/s#xmlrpc,#xmlrpc-epi,#' ext/xmlrpc/config.m4 # cleanup backups after patching find '(' -name '*~' -o -name '*.orig' ')' -print0 | xargs -0 -r -l512 rm -f @@ -2003,22 +2011,22 @@ sed -i -e 's#-fvisibility=hidden##g' configure* # disable broken tests # says just "Terminated" twice and fails -mv sapi/cli/tests/022.phpt{,.broken} +%{__mv} sapi/cli/tests/022.phpt{,.broken} # really dumb test, executable binary name is .libs/ something when building # https://bugs.php.net/bug.php?id=54514 -mv tests/basic/bug54514.phpt{,.disable} +%{__mv} tests/basic/bug54514.phpt{,.disable} # breaks whole testsuite unexpectedly: # Fatal error: Call to undefined function gzencode() in run-tests.php on line 1714 # probably broken as zlib is built as shared -mv ext/soap/tests/server019.phpt{,disable} +%{__mv} ext/soap/tests/server019.phpt{,disable} # Fatal error: Call to undefined function gzcompress() in run-tests.php on line 1728 -mv ext/soap/tests/server020.phpt{,disable} +%{__mv} ext/soap/tests/server020.phpt{,disable} # runs out of memory and kills carme vserver # PASS Bug #39438 (Fatal error: Out of memory) [Zend/tests/bug39438.phpt] -mv Zend/tests/bug39438.phpt{,.disable} +%{__mv} Zend/tests/bug39438.phpt{,.disable} # php-5.3.3/ext/standard/tests/file/statpage.phpt %{__rm} ext/standard/tests/file/statpage.phpt @@ -2229,10 +2237,13 @@ for sapi in $sapis; do esac %configure \ + EXTRA_LDFLAGS="%{rpmldflags}" \ + --program-suffix=%{php_suffix} \ $sapi_args \ %if "%{!?configure_cache:0}%{?configure_cache}" == "0" --cache-file=config.cache \ %endif + --datadir=%{php_datadir} \ --with-libdir=%{_lib} \ --with-config-file-path=%{_sysconfdir} \ --with-config-file-scan-dir=%{_sysconfdir}/conf.d \ @@ -2276,7 +2287,7 @@ for sapi in $sapis; do %{?with_odbc:--with-pdo-odbc=shared,unixODBC,/usr} \ %{?with_pgsql:--with-pdo-pgsql=shared} \ %{?with_pdo_sqlite:--with-pdo-sqlite=shared,/usr} \ - %{?with_webp:--with-vpx-dir=/usr} \ + %{?with_webp:--with-webp-dir=/usr} \ --without-libexpat-dir \ %{__enable_disable posix posix shared} \ --enable-shared \ @@ -2324,7 +2335,6 @@ for sapi in $sapis; do %{?with_pspell:--with-pspell=shared} \ %{__with_without readline readline shared} \ %{?with_recode:--with-recode=shared} \ - %{__with_without ereg regex system} \ %{?with_snmp:--with-snmp=shared} \ %{!?with_pdo_sqlite:--without-pdo-sqlite} \ %{__with_without sqlite3 sqlite3 shared,/usr} \ @@ -2491,10 +2501,12 @@ cp -pf Makefile.cli Makefile INSTALL_ROOT=$RPM_BUILD_ROOT # version the .phar files -mv $RPM_BUILD_ROOT%{_bindir}/phar{,%{ver_suffix}}.phar -mv $RPM_BUILD_ROOT%{_mandir}/man1/phar{,%{ver_suffix}}.phar.1 -# make link relative -ln -sfn phar%{ver_suffix}.phar $RPM_BUILD_ROOT%{_bindir}/phar +%{__mv} $RPM_BUILD_ROOT%{_bindir}/phar{,%{php_suffix}}.phar +%{__mv} $RPM_BUILD_ROOT%{_mandir}/man1/phar{,%{php_suffix}}.1 +# touch for ghost +%{__rm} $RPM_BUILD_ROOT%{_bindir}/phar +touch $RPM_BUILD_ROOT%{_bindir}/phar +touch $RPM_BUILD_ROOT%{_mandir}/man1/phar.1 # version suffix v=$(echo %{version} | cut -d. -f1-2) @@ -2502,7 +2514,7 @@ v=$(echo %{version} | cut -d. -f1-2) # install Apache2 DSO module %if %{with apache2} libtool --mode=install install -p sapi/apache2handler/libphp7.la $RPM_BUILD_ROOT%{_libdir}/apache -mv $RPM_BUILD_ROOT%{_libdir}/apache/libphp7{,-$v}.so +%{__mv} $RPM_BUILD_ROOT%{_libdir}/apache/libphp7{,-$v}.so ln -s libphp7-$v.so $RPM_BUILD_ROOT%{_libdir}/apache/mod_php.so %endif @@ -2513,9 +2525,16 @@ libtool --mode=install install -p sapi/litespeed/php $RPM_BUILD_ROOT%{_sbindir}/ %if %{with phpdbg} %{__make} -f Makefile.phpdbg install-phpdbg \ + INSTALL="libtool --mode=install install -p" \ INSTALL_ROOT=$RPM_BUILD_ROOT %endif +# touch for ghost +touch $RPM_BUILD_ROOT%{_bindir}/phpize +touch $RPM_BUILD_ROOT%{_mandir}/man1/phpize.1 +touch $RPM_BUILD_ROOT%{_bindir}/php-config +touch $RPM_BUILD_ROOT%{_mandir}/man1/php-config.1 + %if %{with milter} %{__make} -f Makefile.milter install-milter \ INSTALL_ROOT=$RPM_BUILD_ROOT @@ -2543,6 +2562,9 @@ install -p %{SOURCE10} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}-fpm install -d $RPM_BUILD_ROOT/etc/logrotate.d cp -p %{SOURCE11} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}-fpm +# touch for ghost for alternatives +touch $RPM_BUILD_ROOT%{_sbindir}/php-fpm + %{__sed} -i -e ' s#/usr/lib/php#%{php_extensiondir}# s#/etc/php/#%{_sysconfdir}/# @@ -2554,24 +2576,15 @@ cp -p %{SOURCE11} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}-fpm %if %{with embed} # we could use install-headers from Makefile.embed, but that would reinstall all headers # install-sapi installs to wrong dir, so just do it all manually -install -d $RPM_BUILD_ROOT%{_includedir}/php/sapi/embed +install -d $RPM_BUILD_ROOT%{_includedir}/php/php%{php_suffix}/sapi/embed install -p libs/libphp7.so $RPM_BUILD_ROOT%{_libdir} -cp -p sapi/embed/php_embed.h $RPM_BUILD_ROOT%{_includedir}/php/sapi/embed +cp -p sapi/embed/php_embed.h $RPM_BUILD_ROOT%{_includedir}/php/php%{php_suffix}/sapi/embed %endif -# install CLI -# versioned suffix is always installed -libtool --mode=install install -p sapi/cli/php $RPM_BUILD_ROOT%{_bindir}/php%{ver_suffix} -cp -p sapi/cli/php.1 $RPM_BUILD_ROOT%{_mandir}/man1/php%{ver_suffix}.1 - -%if %{with default_php} -# man for php -echo ".so php%{ver_suffix}.1" >$RPM_BUILD_ROOT%{_mandir}/man1/php.1 -# link as /usr/bin/php -ln -sf php%{ver_suffix} $RPM_BUILD_ROOT%{_bindir}/php -# php.cli link for backward compatibility -ln -sf php $RPM_BUILD_ROOT%{_bindir}/php.cli -%endif +# CLI +# touch for ghost +touch $RPM_BUILD_ROOT%{_bindir}/php +touch $RPM_BUILD_ROOT%{_mandir}/man1/php.1 cp -p php.ini $RPM_BUILD_ROOT%{_sysconfdir}/php.ini cp -p %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/php-cli.ini @@ -2596,7 +2609,7 @@ cp -p conf.d/*.ini $RPM_BUILD_ROOT%{_sysconfdir}/conf.d install -d $RPM_BUILD_ROOT%{_sysconfdir}/{cgi-fcgi,cli,apache,apache2handler}.d # for CLI SAPI only -mv $RPM_BUILD_ROOT%{_sysconfdir}/{conf.d/readline.ini,cli.d} +%{__mv} $RPM_BUILD_ROOT%{_sysconfdir}/{conf.d/readline.ini,cli.d} # use system automake and {lib,sh}tool ln -snf /usr/share/automake/config.{guess,sub} $RPM_BUILD_ROOT%{_libdir}/%{name}/build @@ -2612,16 +2625,16 @@ for fn in ltmain.sh config/ltmain.sh build-aux/ltmain.sh; do ln -snf $f $RPM_BUILD_ROOT%{_libdir}/%{name}/build break done -sed -i -e '/^phpdir/ s,/php/build,/%{name}/build,' $RPM_BUILD_ROOT%{_bindir}/phpize +sed -i -e '/^phpdir/ s,/php/build,/%{name}/build,' $RPM_BUILD_ROOT%{_bindir}/phpize%{php_suffix} # for php-pecl-mailparse -install -d $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring -cp -p ext/mbstring/libmbfl/mbfl/*.h $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring +install -d $RPM_BUILD_ROOT%{_includedir}/php/php%{php_suffix}/ext/mbstring +cp -p ext/mbstring/libmbfl/mbfl/*.h $RPM_BUILD_ROOT%{_includedir}/php/php%{php_suffix}/ext/mbstring # tests -install -d $RPM_BUILD_ROOT%{php_data_dir}/tests/php -install -p run-tests.php $RPM_BUILD_ROOT%{php_data_dir}/tests/php/run-tests.php -cp -a tests/* $RPM_BUILD_ROOT%{php_data_dir}/tests/php +install -d $RPM_BUILD_ROOT%{php_datadir}/tests/php +install -p run-tests.php $RPM_BUILD_ROOT%{php_datadir}/tests/php/run-tests.php +cp -a tests/* $RPM_BUILD_ROOT%{php_datadir}/tests/php # fix install paths, avoid evil rpaths sed -i -e "s|^libdir=.*|libdir='%{_libdir}'|" $RPM_BUILD_ROOT%{_libdir}/libphp_common.la @@ -2641,17 +2654,43 @@ if [ "$1" = "0" ]; then %service -q httpd restart fi +%post cli +update-alternatives \ + --install %{_bindir}/php php %{_bindir}/php%{php_suffix} %{php_suffix} \ + --slave %{_mandir}/man1/php.1 php.1 %{_mandir}/man1/php%{php_suffix}.1* || : + +%postun cli +if [ $1 -eq 0 ]; then + update-alternatives --remove php %{_bindir}/php || : +fi + +%post devel +update-alternatives \ + --install %{_bindir}/phpize phpize %{_bindir}/phpize%{php_suffix} %{php_suffix} \ + --slave %{_mandir}/man1/php.1 php.1 %{_mandir}/man1/php%{php_suffix}.1* || : +update-alternatives \ + --install %{_bindir}/php-config php-config %{_bindir}/php-config%{php_suffix} %{php_suffix} \ + --slave %{_mandir}/man1/php.1 php.1 %{_mandir}/man1/php%{php_suffix}.1* || : + +%postun devel +if [ $1 -eq 0 ]; then + update-alternatives --remove phpize %{_bindir}/phpize || : + update-alternatives --remove php-config %{_bindir}/php-config || : +fi + %pre fpm %useradd -u 51 -r -s /bin/false -c "HTTP User" -g http http %post fpm /sbin/chkconfig --add %{name}-fpm %service %{name}-fpm restart +update-alternatives --install %{_sbindir}/php-fpm php-fpm %{_sbindir}/php%{php_suffix}-fpm %{php_suffix} || : %preun fpm if [ "$1" = "0" ]; then %service %{name}-fpm stop /sbin/chkconfig --del %{name}-fpm + update-alternatives --remove php-fpm %{_sbindir}/php-fpm || : fi %postun fpm @@ -2662,7 +2701,7 @@ fi %post embedded -p /sbin/ldconfig %postun embedded -p /sbin/ldconfig -%post common +%posttrans common # PHP 5.3 requires timezone being setup, try setup it from tzdata if ! grep -q '^date.timezone[[:space:]]*=' %{_sysconfdir}/php.ini && [ -f /etc/sysconfig/timezone ]; then TIMEZONE= @@ -2672,7 +2711,6 @@ if ! grep -q '^date.timezone[[:space:]]*=' %{_sysconfdir}/php.ini && [ -f /etc/s fi fi -%posttrans common # minimizing apache restarts logics. we restart webserver: # # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2) @@ -2719,16 +2757,24 @@ fi sed -i -e 's#modules/libphp[57].so#modules/mod_php.so#g' /etc/httpd/conf.d/*_mod_php.conf # common macros called at extension post/postun scriptlet -%define extension_scripts() \ -%post %1 \ +%define ext_post \ if [ "$1" = "1" ]; then \ %php_webserver_restart \ fi \ -\ -%postun %1 \ +%{nil} + +%define ext_postun \ if [ "$1" = "0" ]; then \ %php_webserver_restart \ -fi +fi \ +%{nil} + +%define extension_scripts() \ +%post %1 \ +%ext_post \ +\ +%postun %1 \ +%ext_postun \ %{nil} # extension scripts defines @@ -2772,7 +2818,6 @@ fi %extension_scripts pdo-pgsql %extension_scripts pdo-sqlite %extension_scripts pgsql -%extension_scripts phar %extension_scripts pcntl %extension_scripts posix %extension_scripts pspell @@ -2799,6 +2844,18 @@ fi %extension_scripts zip %extension_scripts zlib +%post phar +%ext_post +update-alternatives \ + --install %{_bindir}/phar phar %{_bindir}/phar%{php_suffix}.phar %{php_suffix} \ + --slave %{_mandir}/man1/phar.1 phar.1 %{_mandir}/man1/phar%{php_suffix}.1* || : + +%postun phar +%ext_postun +if [ $1 -eq 0 ]; then + update-alternatives --remove phar %{_bindir}/phar || : +fi + %if %{with apache2} %files -n apache-mod_%{name} %defattr(644,root,root,755) @@ -2834,13 +2891,10 @@ fi %defattr(644,root,root,755) %dir %{_sysconfdir}/cli.d %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-cli.ini -%attr(755,root,root) %{_bindir}/php%{ver_suffix} -%{_mandir}/man1/php%{ver_suffix}.1* -%if %{with default_php} -%attr(755,root,root) %{_bindir}/php -%attr(755,root,root) %{_bindir}/php.cli -%{_mandir}/man1/php.1* -%endif +%attr(755,root,root) %{_bindir}/php%{php_suffix} +%{_mandir}/man1/php%{php_suffix}.1* +%ghost %{_bindir}/php +%ghost %{_mandir}/man1/php.1* %if %{with fpm} %files fpm @@ -2850,6 +2904,7 @@ fi %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-fpm.conf %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-fpm.d/www.conf %attr(755,root,root) %{_sbindir}/%{name}-fpm +%ghost %{_sbindir}/php-fpm %{_mandir}/man8/%{name}-fpm.8* %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/%{name}-fpm %attr(754,root,root) /etc/rc.d/init.d/%{name}-fpm @@ -2858,8 +2913,8 @@ fi %if %{with phpdbg} %files phpdbg %defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/phpdbg -%{_mandir}/man1/phpdbg.1* +%attr(755,root,root) %{_bindir}/phpdbg%{php_suffix} +%{_mandir}/man1/phpdbg%{php_suffix}.1* %endif %if %{with milter} @@ -2882,14 +2937,18 @@ fi %files devel %defattr(644,root,root,755) %doc CODING_STANDARDS README.{EXT_SKEL,PARAMETER_PARSING_API,SELF-CONTAINED-EXTENSIONS,STREAMS,SUBMITTING_PATCH,TESTING,TESTING2,UNIX-BUILD-SYSTEM,input_filter} -%attr(755,root,root) %{_bindir}/phpize -%attr(755,root,root) %{_bindir}/php-config +%attr(755,root,root) %{_bindir}/phpize%{php_suffix} +%attr(755,root,root) %{_bindir}/php-config%{php_suffix} +%ghost %{_bindir}/phpize +%ghost %{_bindir}/php-config %attr(755,root,root) %{_libdir}/libphp_common.so %{_libdir}/libphp_common.la -%{_includedir}/php +%{_includedir}/php/php%{php_suffix} %{_libdir}/%{name}/build -%{_mandir}/man1/php-config.1* -%{_mandir}/man1/phpize.1* +%{_mandir}/man1/php-config%{php_suffix}.1* +%ghost %{_mandir}/man1/php-config.1* +%{_mandir}/man1/phpize%{php_suffix}.1* +%ghost %{_mandir}/man1/phpize.1* %if %{with bcmath} %files bcmath @@ -3225,10 +3284,11 @@ fi %doc ext/phar/{CREDITS,TODO} %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/phar.ini %attr(755,root,root) %{php_extensiondir}/phar.so -%attr(755,root,root) %{_bindir}/phar -%attr(755,root,root) %{_bindir}/phar%{ver_suffix}.phar -%{_mandir}/man1/phar.1* -%{_mandir}/man1/phar%{ver_suffix}.phar.1 +%attr(755,root,root) %{_bindir}/phar%{php_suffix}.phar +%{_mandir}/man1/phar%{php_suffix}.1* +%{_mandir}/man1/phar.phar.1* +%ghost %{_bindir}/phar +%ghost %{_mandir}/man1/phar.1* %endif %if %{with posix} @@ -3340,18 +3400,18 @@ fi %files tests %defattr(644,root,root,755) -%dir %{php_data_dir}/tests -%dir %{php_data_dir}/tests/php -%{php_data_dir}/tests/php/basic -%{php_data_dir}/tests/php/classes -%{php_data_dir}/tests/php/func -%{php_data_dir}/tests/php/lang -%{php_data_dir}/tests/php/output -%{php_data_dir}/tests/php/run-test -%{php_data_dir}/tests/php/security -%{php_data_dir}/tests/php/strings -%{php_data_dir}/tests/php/quicktester.inc -%attr(755,root,root) %{php_data_dir}/tests/php/run-tests.php +%dir %{php_datadir}/tests +%dir %{php_datadir}/tests/php +%{php_datadir}/tests/php/basic +%{php_datadir}/tests/php/classes +%{php_datadir}/tests/php/func +%{php_datadir}/tests/php/lang +%{php_datadir}/tests/php/output +%{php_datadir}/tests/php/run-test +%{php_datadir}/tests/php/security +%{php_datadir}/tests/php/strings +%{php_datadir}/tests/php/quicktester.inc +%attr(755,root,root) %{php_datadir}/tests/php/run-tests.php %if %{with tidy} %files tidy diff --git a/php_browscap.ini b/php_browscap.ini deleted file mode 100644 index 006be27..0000000 --- a/php_browscap.ini +++ /dev/null @@ -1,24778 +0,0 @@ -;;; Provided courtesy of https://browsers.garykeith.com -;;; Created on Monday, July 30, 2012 at 8:00 PM UTC - -;;; Keep up with the latest goings-on with the project: -;;; Follow us on Twitter , or... -;;; Like us on Facebook , or... -;;; Collaborate on GitHub , or... -;;; Discuss on Google Groups . - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Version - -[GJK_Browscap_Version] -Version=5009 -Released=Mon, 30 Jul 2012 20:00:33 -0000 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties - -[DefaultProperties] -Comment="DefaultProperties" -Browser="DefaultProperties" -Version=0.0 -MajorVer=0 -MinorVer=0 -Platform="unknown" -Platform_Version="unknown" -Alpha=false -Beta=false -Win16=false -Win32=false -Win64=false -Frames=false -IFrames=false -Tables=false -Cookies=false -BackgroundSounds=false -JavaScript=false -VBScript=false -JavaApplets=false -ActiveXControls=false -isMobileDevice=false -isSyndicationReader=false -Crawler=false -CssVersion=0 -AolVersion=0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ask - -[Ask] -Parent=DefaultProperties -Comment="Ask" -Browser="Ask" -Frames=true -IFrames=true -Tables=true -Crawler=true - -[Mozilla/?.0 (compatible; Ask Jeeves/Teoma*)] -Parent=Ask -Browser="Teoma" - -[Mozilla/2.0 (compatible; Ask Jeeves)] -Parent=Ask -Browser="AskJeeves" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Baidu - -[Baidu] -Parent=DefaultProperties -Comment="Baidu" -Browser="Baidu" -Frames=true -IFrames=true -Tables=true -Crawler=true - -[*Baiduspider*] -Parent=Baidu -Browser="BaiDu" - -[*Baiduspider-ads*] -Parent=Baidu -Browser="Baidu Business search" - -[*Baiduspider-cpro*] -Parent=Baidu -Browser="Baidu Union" - -[*Baiduspider-favo*] -Parent=Baidu -Browser="Baidu bookmark" - -[*Baiduspider-image*] -Parent=Baidu -Browser="Baidu Image search" - -[*Baiduspider-mobile*] -Parent=Baidu -Browser="Baidu Mobile search" - -[*Baiduspider-news*] -Parent=Baidu -Browser="Baidu News search" - -[*Baiduspider-video*] -Parent=Baidu -Browser="Baidu Video search" - -[AC-BaiduBot/*] -Parent=Baidu -Browser="AC-BaiduBot" - -[BaiduImageSpider*] -Parent=Baidu -Browser="BaiduImageSpider" - -[Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)] -Parent=Baidu -Browser="Baiduspider" -Version=2.0 -MajorVer=2 -MinorVer=0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google - -[Google] -Parent=DefaultProperties -Comment="Google" -Browser="Google" -Frames=true -IFrames=true -Tables=true -Crawler=true - -[*Google Web Preview*] -Parent=Google -Browser="Google Web Preview" - -[*Googlebot-Mobile/2.*] -Parent=Google -Browser="Googlebot-Mobile" -Frames=false -IFrames=false -Tables=false - -[*Googlebot/2.1*] -Parent=Google -Browser="Googlebot" -Version=2.1 -MajorVer=2 -MinorVer=1 - -[AdsBot-Google*] -Parent=Google -Browser="AdsBot-Google" - -[AdsBot-Google-Mobile*] -Parent=Google -Browser="AdsBot-Google-Mobile" - -[AppEngine-Google*] -Parent=Google -Browser="AppEngine-Google" - -[Feedfetcher-Google*] -Parent=Google -Browser="Feedfetcher-Google" -isSyndicationReader=true - -[Feedfetcher-Google-iGoogleGadgets*] -Parent=Google -Browser="iGoogleGadgets" -isSyndicationReader=true - -[google (*Enterprise*)] -Parent=Google -Browser="Google Enterprise" - -[Google OpenSocial agent*] -Parent=Google -Browser="Google OpenSocial" - -[Google-Site-Verification*] -Parent=Google -Browser="Google-Site-Verification/1.0" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Google-Sitemaps*] -Parent=Google -Browser="Google-Sitemaps" - -[Googlebot-Image*] -Parent=Google -Browser="Googlebot-Image" - -[Googlebot-News*] -Parent=Google -Browser="Googlebot-News" - -[googlebot-urlconsole] -Parent=Google -Browser="googlebot-urlconsole" - -[Googlebot-Video*] -Parent=Google -Browser="Google-Video" - -[Googlebot/Test*] -Parent=Google -Browser="Googlebot/Test" - -[GoogleFriendConnect*] -Parent=Google -Browser="Google Friend Connect" - -[gsa-crawler*] -Parent=Google -Browser="Google Search Appliance" - -[Mediapartners-Google*] -Parent=Google -Browser="Mediapartners-Google" - -[Mozilla/5.0 (*Feedfetcher-Google*)] -Parent=Google -Browser="Google Feedfetcher" - -[Mozilla/5.0 (*Google Desktop*)] -Parent=Google -Browser="Google Desktop" - -[Mozilla/5.0 (*Google Keyword Tool*)] -Parent=Google -Browser="Google Keyword Tool" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN - -[MSN] -Parent=DefaultProperties -Comment="MSN" -Browser="MSN" -Frames=true -IFrames=true -Tables=true -Crawler=true - -[adidxbot/1.1 (?http://search.msn.com/msnbot.htm)] -Parent=MSN -Browser="adidxbot" - -[librabot/1.0 (*)] -Parent=MSN -Browser="librabot" - -[llssbot/1.0] -Parent=MSN -Browser="llssbot" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Microsoft Bing Mobile SocialStreams Bot] -Parent=MSN -Browser="Microsoft Bing Mobile SocialStreams Bot" - -[Mozilla/5.0 (compatible; bingbot/2.*http://www.bing.com/bingbot.htm)] -Parent=MSN -Browser="BingBot" - -[Mozilla/5.0 (Danger hiptop 3.*; U; rv:1.7.*) Gecko/*] -Parent=MSN -Browser="Danger" - -[MSMOBOT/1.1*] -Parent=MSN -Browser="msnbot-mobile" -Version=1.1 -MajorVer=1 -MinorVer=1 - -[MSNBot-Academic/1.0*] -Parent=MSN -Browser="MSNBot-Academic" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[msnbot-media/1.0*] -Parent=MSN -Browser="msnbot-media" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[msnbot-media/1.1*] -Parent=MSN -Browser="msnbot-media" -Version=1.1 -MajorVer=1 -MinorVer=1 - -[MSNBot-News/1.0*] -Parent=MSN -Browser="MSNBot-News" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[MSNBot-NewsBlogs/1.0*] -Parent=MSN -Browser="MSNBot-NewsBlogs" -Version=1 -MajorVer=1 - -[msnbot-NewsBlogs/2.* (+http://search.msn.com/msnbot.htm)] -Parent=MSN -Browser="msnbot-NewsBlogs" -Version=2.0 -MajorVer=2 -MinorVer=0 - -[msnbot-products] -Parent=MSN -Browser="msnbot-products" - -[msnbot-webmaster/1.0 (*http://search.msn.com/msnbot.htm)] -Parent=MSN -Browser="msnbot-webmaster tools" - -[msnbot/1.0*] -Parent=MSN -Browser="msnbot" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[msnbot/1.1*] -Parent=MSN -Browser="msnbot" -Version=1.1 -MajorVer=1 -MinorVer=1 - -[msnbot/2.0b*] -Parent=MSN -Browser="msnbot" -Version=2.0 -MajorVer=2 -MinorVer=0 -Beta=true - -[MSR-ISRCCrawler] -Parent=MSN -Browser="MSR-ISRCCrawler" - -[MSRBOT*] -Parent=MSN -Browser="MSRBOT" - -[renlifangbot/1.0 (?http://search.msn.com/msnbot.htm)] -Parent=MSN -Browser="renlifangbot" - -[T-Mobile Dash Mozilla/4.0 (*) MSNBOT-MOBILE/1.1 (*)] -Parent=MSN -Browser="msnbot-mobile" - -[Windows-Live-Social-Object-Extractor-Engine/1.0] -Parent=MSN -Browser="Windows-Live-Social-Object-Extractor-Eng" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo - -[Yahoo] -Parent=DefaultProperties -Comment="Yahoo" -Browser="Yahoo" -Frames=true -IFrames=true -Tables=true -Crawler=true - -[Mozilla/4.0 (compatible; Y!J; for robot study*)] -Parent=Yahoo -Browser="Y!J" - -[Mozilla/5.0 (compatible; BMC/* (Y!J-AGENT))] -Parent=Yahoo -Browser="Y!J-AGENT/BMC" - -[Mozilla/5.0 (compatible; BMF/* (Y!J-AGENT))] -Parent=Yahoo -Browser="Y!J-AGENT/BMF" - -[Mozilla/5.0 (compatible; BMI/* (Y!J-AGENT; 1.0))] -Parent=Yahoo -Browser="Y!J-AGENT/BMI" - -[Mozilla/5.0 (compatible; Yahoo! DE Slurp; http://help.yahoo.com/help/us/ysearch/slurp)] -Parent=Yahoo -Browser="Yahoo! Directory Engine" - -[Mozilla/5.0 (compatible; Yahoo! SearchMonkey*)] -Parent=Yahoo -Browser="Yahoo! Search Monkey" - -[Mozilla/5.0 (compatible; Yahoo! Slurp China*;*http://misc.yahoo.com.cn/help.html)] -Parent=Yahoo -Browser="Yahoo! Slurp China" - -[Mozilla/5.0 (compatible; Yahoo! Slurp*;*http://help.yahoo.com/help/us/ysearch/slurp)] -Parent=Yahoo -Browser="Yahoo! Slurp" -Version=3.0 -MajorVer=3 -MinorVer=0 - -[Mozilla/5.0 (compatible; Yahoo! Verifier/*)] -Parent=Yahoo -Browser="Yahoo! Verifier" -Version=1.1 -MajorVer=1 -MinorVer=1 - -[Mozilla/5.0 (compatible; Yahoo!-AdCrawler;*http://help.yahoo.com/yahoo_adcrawler)] -Parent=Yahoo -Browser="Yahoo!-AdCrawler" - -[Mozilla/5.0 (compatible; YahooSeeker/M1A1-R2D2*)] -Parent=Yahoo -Browser="YahooSeeker-Mobile" - -[Mozilla/5.0 (Yahoo-MMCrawler/*; mailto:vertical-crawl-support@yahoo-inc.com)] -Parent=Yahoo -Browser="Yahoo-MMCrawler" -Version=4.0 -MajorVer=4 -MinorVer=0 - -[Mozilla/5.0 (Yahoo-Test/*)] -Parent=Yahoo -Browser="Yahoo-Test" - -[Mozilla/5.0 (YahooYSMcm*)] -Parent=Yahoo -Browser="YahooYSMcm" - -[mp3Spider cn-search-devel at yahoo-inc dot com] -Parent=Yahoo -Browser="Yahoo! Media" - -[My Browser] -Parent=Yahoo -Browser="Yahoo! My Browser" - -[Scooter*] -Parent=Yahoo -Browser="Scooter" - -[Scooter/*Y!CrawlX] -Parent=Yahoo -Browser="Scooter/3.3Y!CrawlX" -Version=3.3 -MajorVer=3 -MinorVer=3 - -[slurp] -Parent=Yahoo -Browser="slurp" - -[Y!J SearchMonkey*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[Y!J-BRE*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[Y!J-BRG/GSC*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[Y!J-BRI*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[Y!J-BRO/YFSJ*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[Y!J-BRP/YFSBJ*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[Y!J-BRQ/DLCK*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[Y!J-BSC*] -Parent=Yahoo -Browser="YahooFeedSeeker" -Version=1.0 -MajorVer=1 -MinorVer=0 -isSyndicationReader=true - -[Y!J-DSC*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[Y!J-NSC*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[Y!J-PSC*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[Y!J-SRD*] -Parent=Yahoo -Browser="YahooFeedSeeker" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Y!J-VSC/ViSe*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[Y!OASIS*] -Parent=Yahoo -Browser="Y!OASIS" - -[Yahoo Mindset] -Parent=Yahoo -Browser="Yahoo Mindset" - -[Yahoo Pipes*] -Parent=Yahoo -Browser="Yahoo Pipes" - -[Yahoo! Mindset] -Parent=Yahoo -Browser="Yahoo! Mindset" - -[Yahoo! Slurp/Site Explorer] -Parent=Yahoo -Browser="Yahoo! Site Explorer" - -[Yahoo-Blogs*] -Parent=Yahoo -Browser="Yahoo-Blogs" - -[Yahoo-MMAudVid*] -Parent=Yahoo -Browser="Yahoo-MMAudVid" - -[Yahoo-MMCrawler*] -Parent=Yahoo -Browser="Yahoo-MMCrawler" - -[YahooExternalCache] -Parent=Yahoo -Browser="YahooExternalCache" - -[YahooFeedSeeker*] -Parent=Yahoo -Browser="YahooFeedSeeker" -isSyndicationReader=true - -[YahooSeeker*] -Parent=Yahoo -Browser="YahooSeeker" -isMobileDevice=true - -[YahooSeeker/CafeKelsa*] -Parent=Yahoo -Browser="YahooSeeker/CafeKelsa" - -[YahooVideoSearch*] -Parent=Yahoo -Browser="YahooVideoSearch" - -[YahooYSMcm*] -Parent=Yahoo -Browser="YahooYSMcm" - -[YRL_ODP_CRAWLER] -Parent=Yahoo -Browser="YRL_ODP_CRAWLER" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yandex - -[Yandex] -Parent=DefaultProperties -Comment="Yandex" -Browser="Yandex" -Frames=true -IFrames=true -Tables=true -Crawler=true - -[Mozilla/5.0 (compatible; YandexAddurl/*)] -Parent=Yandex -Browser="YandexAddURL" - -[Mozilla/5.0 (compatible; YandexBlogs/*)] -Parent=Yandex -Browser="YandexBlogs" - -[Mozilla/5.0 (compatible; YandexBot/*)] -Parent=Yandex -Browser="YandexBot" - -[Mozilla/5.0 (compatible; YandexBot/*; MirrorDetector*)] -Parent=Yandex -Browser="Yandex MirrorDetector" - -[Mozilla/5.0 (compatible; YandexCatalog/*)] -Parent=Yandex -Browser="YandexCatalog" - -[Mozilla/5.0 (compatible; YandexDirect/*)] -Parent=Yandex -Browser="YandexDirect-Dyatel" - -[Mozilla/5.0 (compatible; YandexFavicons/*)] -Parent=Yandex -Browser="YandexFavicons" - -[Mozilla/5.0 (compatible; YandexImageResizer/*)] -Parent=Yandex -Browser="YandexImageResizer" - -[Mozilla/5.0 (compatible; YandexImages/*)] -Parent=Yandex -Browser="YandexImages" - -[Mozilla/5.0 (compatible; YandexMedia/*)] -Parent=Yandex -Browser="YandexMedia" - -[Mozilla/5.0 (compatible; YandexMetrika/*)] -Parent=Yandex -Browser="YandexMetrika" - -[Mozilla/5.0 (compatible; YandexNews/*)] -Parent=Yandex -Browser="YandexNews" - -[Mozilla/5.0 (compatible; YandexVideo/*)] -Parent=Yandex -Browser="YandexVideo" - -[Mozilla/5.0 (compatible; YandexWebmaster/*)] -Parent=Yandex -Browser="YandexWebmaster" - -[Mozilla/5.0 (compatible; YandexZakladki/*)] -Parent=Yandex -Browser="YandexZakladki" - -[Yandex/1.01.001 (compatible; Win16; *)] -Parent=Yandex -Browser="Yandex" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Best of the Web - -[Best of the Web] -Parent=DefaultProperties -Comment="Best of the Web" -Browser="Best of the Web" -Frames=true -Tables=true -Crawler=true - -[Mozilla/4.0 (compatible; BOTW Feed Grabber; *http://botw.org)] -Parent=Best of the Web -Browser="BOTW Feed Grabber" -isSyndicationReader=true - -[Mozilla/4.0 (compatible; BOTW Spider; *http://botw.org)] -Parent=Best of the Web -Browser="BOTW Spider" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Boitho - -[Boitho] -Parent=DefaultProperties -Comment="Boitho" -Browser="Boitho" -Frames=true -Tables=true -Crawler=true - -[boitho.com-dc/*] -Parent=Boitho -Browser="boitho.com-dc" - -[boitho.com-robot/*] -Parent=Boitho -Browser="boitho.com-robot" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Convera - -[Convera] -Parent=DefaultProperties -Comment="Convera" -Browser="Convera" -Frames=true -Tables=true -Crawler=true - -[ConveraCrawler/*] -Parent=Convera -Browser="ConveraCrawler" - -[ConveraMultiMediaCrawler/0.1*] -Parent=Convera -Browser="ConveraMultiMediaCrawler" -Version=0.1 -MajorVer=0 -MinorVer=1 - -[CrawlConvera*] -Parent=Convera -Browser="CrawlConvera" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DotBot - -[DotBot] -Parent=DefaultProperties -Comment="DotBot" -Browser="DotBot" -Frames=true -Tables=true -Crawler=true - -[DotBot/* (http://www.dotnetdotcom.org/*)] -Parent=DotBot - -[Mozilla/5.0 (compatible; DotBot/*; http://www.dotnetdotcom.org/*)] -Parent=DotBot - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Entireweb - -[Entireweb] -Parent=DefaultProperties -Comment="Entireweb" -Browser="Entireweb" -Frames=true -Tables=true -Crawler=true - -[Mozilla/5.0 (compatible; Speedy Spider; http://www.entireweb.com/about/search_tech/speedy_spider/)] -Parent=Entireweb - -[Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) Speedy Spider (http://www.entireweb.com/about/search_tech/speedy_spider/)] -Parent=Entireweb -Platform_Version=5.1 - -[Speedy Spider (http://www.entireweb.com/about/search_tech/speedy_spider/)] -Parent=Entireweb - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Envolk - -[Envolk] -Parent=DefaultProperties -Comment="Envolk" -Browser="Envolk" -Frames=true -Tables=true -Crawler=true - -[envolk/* (?http://www.envolk.com/envolk*)] -Parent=Envolk - -[envolk?ITS?spider/* (?http://www.envolk.com/envolk*)] -Parent=Envolk - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Exalead - -[Exalead] -Parent=DefaultProperties -Comment="Exalead" -Browser="Exalead" -Frames=true -Tables=true -Crawler=true - -[Exabot-Images/1.0] -Parent=Exalead -Browser="Exabot-Images" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Exabot-Test/*] -Parent=Exalead -Browser="Exabot-Test" - -[Exabot/2.0] -Parent=Exalead -Browser="Exabot" -Version=2.0 -MajorVer=2 -MinorVer=0 - -[Exabot/3.0] -Parent=Exalead -Browser="Exabot" -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="Liberate" - -[Exalead NG/*] -Parent=Exalead -Browser="Exalead NG" - -[Mozilla/5.0 (compatible; Exabot-Images/3.0*)] -Parent=Exalead -Browser="Exabot-Images" -Version=3.0 -MajorVer=3 -MinorVer=0 - -[Mozilla/5.0 (compatible; Exabot/3.0*)] -Parent=Exalead -Browser="Exabot/BiggerBetter" -Version=3.0 -MajorVer=3 -MinorVer=0 - -[Mozilla/5.0 (compatible; NGBot/*)] -Parent=Exalead -Browser="NGBot" - -[NG-Search/*] -Parent=Exalead -Browser="NG-Search" - -[ng/*] -Parent=Exalead -Browser="Exalead Previewer" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Facebook - -[Facebook] -Parent=DefaultProperties -Comment="Facebook" -Browser="Facebook" -Frames=true -Tables=true -Crawler=true - -[facebookexternalhit/1.1 (+http*://www.facebook.com/externalhit_uatext.php)*] -Parent=Facebook -Browser="FacebookExternalHit" -Version=1.1 -MajorVer=1 -MinorVer=1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fast/AllTheWeb - -[Fast/AllTheWeb] -Parent=DefaultProperties -Comment="Fast/AllTheWeb" -Browser="Fast/AllTheWeb" -Frames=true -Tables=true -Crawler=true - -[*FAST Enterprise Crawler*] -Parent=Fast/AllTheWeb -Browser="FAST Enterprise Crawler" - -[FAST Data Search Document Retriever/4.0*] -Parent=Fast/AllTheWeb -Browser="FAST Data Search Document Retriever" - -[FAST MetaWeb Crawler (helpdesk at fastsearch dot com)] -Parent=Fast/AllTheWeb -Browser="FAST MetaWeb Crawler" - -[Fast PartnerSite Crawler*] -Parent=Fast/AllTheWeb -Browser="FAST PartnerSite" - -[FAST-WebCrawler/*] -Parent=Fast/AllTheWeb -Browser="FAST-WebCrawler" - -[FAST-WebCrawler/*/FirstPage*] -Parent=Fast/AllTheWeb -Browser="FAST-WebCrawler/FirstPage" - -[FAST-WebCrawler/*/Fresh*] -Parent=Fast/AllTheWeb -Browser="FAST-WebCrawler/Fresh" - -[FAST-WebCrawler/*/PartnerSite*] -Parent=Fast/AllTheWeb -Browser="FAST PartnerSite" - -[FAST-WebCrawler/*?Multimedia*] -Parent=Fast/AllTheWeb -Browser="FAST-WebCrawler/Multimedia" - -[FastSearch Web Crawler for*] -Parent=Fast/AllTheWeb -Browser="FastSearch Web Crawler" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Gigabot - -[Gigabot] -Parent=DefaultProperties -Comment="Gigabot" -Browser="Gigabot" -Frames=true -Tables=true -Crawler=true - -[Gigabot*] -Parent=Gigabot - -[GigabotSiteSearch/*] -Parent=Gigabot -Browser="GigabotSiteSearch" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ilse - -[Ilse] -Parent=DefaultProperties -Comment="Ilse" -Browser="Ilse" -Frames=true -Tables=true -Crawler=true - -[IlseBot/*] -Parent=Ilse - -[INGRID/?.0*] -Parent=Ilse - -[Mozilla/3.0 (INGRID/*] -Parent=Ilse - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iVia Project - -[iVia Project] -Parent=DefaultProperties -Comment="iVia Project" -Browser="iVia Project" -Frames=true -Tables=true -Crawler=true - -[DataFountains/DMOZ Downloader*] -Parent=iVia Project -Browser="DataFountains/DMOZ Downloader" - -[DataFountains/DMOZ Feature Vector Corpus Creator*] -Parent=iVia Project -Browser="DataFountains/DMOZ Feature Vector Corpus" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Jayde Online - -[Jayde Online] -Parent=DefaultProperties -Comment="Jayde Online" -Browser="Jayde Online" -Frames=true -Tables=true -Crawler=true - -[ExactSeek Crawler/*] -Parent=Jayde Online -Browser="ExactSeek Crawler" - -[exactseek-pagereaper-* (crawler@exactseek.com)] -Parent=Jayde Online -Browser="exactseek-pagereaper" - -[exactseek.com] -Parent=Jayde Online -Browser="exactseek.com" - -[Jayde Crawler*] -Parent=Jayde Online -Browser="Jayde Crawler" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycos - -[Lycos] -Parent=DefaultProperties -Comment="Lycos" -Browser="Lycos" -Frames=true -Tables=true -Crawler=true - -[Lycos*] -Parent=Lycos -Browser="Lycos" - -[Lycos-Proxy] -Parent=Lycos -Browser="Lycos-Proxy" - -[Lycos-Spider_(modspider)] -Parent=Lycos -Browser="Lycos-Spider_(modspider)" - -[Lycos-Spider_(T-Rex)] -Parent=Lycos -Browser="Lycos-Spider_(T-Rex)" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Snap - -[Snap] -Parent=DefaultProperties -Comment="Snap" -Browser="Snap" -Frames=true -Tables=true -Crawler=true - -[Mozilla/5.0 (SnapPreviewBot) Gecko/* Firefox/*] -Parent=Snap -Browser="SnapPreviewBot" - -[Snapbot/*] -Parent=Snap -Browser="Snapbot" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sogou - -[Sogou] -Parent=DefaultProperties -Comment="Sogou" -Browser="Sogou" -Frames=true -Tables=true -Crawler=true - -[shaboyi spider] -Parent=Sogou -Browser="Sogou/Shaboyi Spider" - -[Sogou develop spider/*] -Parent=Sogou -Browser="Sogou Develop Spider" - -[Sogou head spider*] -Parent=Sogou -Browser="Sogou Head Spider" - -[sogou js robot(*)] -Parent=Sogou - -[Sogou Orion spider/*] -Parent=Sogou -Browser="Sogou Orion spider" - -[Sogou Pic Agent] -Parent=Sogou -Browser="Sogou/Image Crawler" - -[Sogou Pic Spider/*] -Parent=Sogou -Browser="Sogou Pic Spider" - -[Sogou Push Spider/*] -Parent=Sogou -Browser="Sogou Push Spider" - -[sogou spider] -Parent=Sogou -Browser="Sogou/Spider" - -[sogou web spider*] -Parent=Sogou -Browser="sogou web spider" - -[Sogou-Test-Spider/*] -Parent=Sogou -Browser="Sogou-Test-Spider" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YodaoBot - -[YodaoBot] -Parent=DefaultProperties -Comment="YodaoBot" -Browser="YodaoBot" -Frames=true -Tables=true -Crawler=true - -[Mozilla/5.0 (compatible; YodaoBot/1.*)] -Parent=YodaoBot - -[Mozilla/5.0 (compatible;YodaoBot-Image/1.*)] -Parent=YodaoBot -Browser="YodaoBot-Image" - -[WAP_Browser/5.0 (compatible; YodaoBot/1.*)] -Parent=YodaoBot - -[YodaoBot/1.* (*)] -Parent=YodaoBot - -[Best Whois (http://www.bestwhois.net/)] -Parent=DNS Tools -Browser="Best Whois" - -[DNSGroup/*] -Parent=DNS Tools -Browser="DNS Group Crawler" - -[TouchStone] -Parent=Feeds Syndicators -Browser="TouchStone" -isSyndicationReader=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General Crawlers - -[General Crawlers] -Parent=DefaultProperties -Comment="General Crawlers" -Browser="General Crawlers" -Crawler=true - -[*altervista.org*] -Parent=General Crawlers -Browser="altervista.org" - -[*naver*] -Parent=General Crawlers -Browser="NaverBot" - -[*Spinn3r*http://spinn3r.com/robot*] -Parent=General Crawlers -Browser="Spinn3r" - -[*SqwidgeBot*] -Parent=General Crawlers -Browser="SqwidgeBot" - -[A .NET Web Crawler] -Parent=General Crawlers -Browser="A .NET Web Crawler" - -[BabalooSpider/1.*] -Parent=General Crawlers -Browser="BabalooSpider" - -[BilgiBot/*] -Parent=General Crawlers -Browser="BilgiBot" - -[bitlybot/2.*] -Parent=General Crawlers -Browser="BitlyBot" - -[bot/* (bot; *bot@bot.bot)] -Parent=General Crawlers -Browser="bot" - -[cisco-IOS] -Parent=General Crawlers -Browser="cisco-IOS" - -[Covario-IDS/*] -Parent=General Crawlers -Browser="Covario-IDS/*" - -[CyberPatrol*] -Parent=General Crawlers -Browser="CyberPatrol" - -[Cynthia 1.0] -Parent=General Crawlers -Browser="Cynthia" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[cz32ts] -Parent=General Crawlers -Browser="cz32ts" - -[ddetailsbot (http://www.displaydetails.com)] -Parent=General Crawlers -Browser="ddetailsbot" - -[DomainCrawler/1.0 (info@domaincrawler.com; http://www.domaincrawler.com/domains/view/*)] -Parent=General Crawlers -Browser="DomainCrawler" - -[DomainsBotBot/1.*] -Parent=General Crawlers -Browser="DomainsBotBot" - -[DomainsDB.net MetaCrawler*] -Parent=General Crawlers -Browser="DomainsDB" - -[DomainWatcher Bot*] -Parent=General Crawlers -Browser="DomainWatcher Bot" - -[Drupal (*)] -Parent=General Crawlers -Browser="Drupal" - -[Dumbot (version *)*] -Parent=General Crawlers -Browser="Dumbfind" - -[EuripBot/*] -Parent=General Crawlers -Browser="Europe Internet Portal" - -[eventax/*] -Parent=General Crawlers -Browser="eventax" - -[FANGCrawl/*] -Parent=General Crawlers -Browser="Safe-t.net Web Filtering Service" - -[favorstarbot/*] -Parent=General Crawlers -Browser="favorstarbot" - -[FollowSite.com (*)] -Parent=General Crawlers -Browser="FollowSite" - -[Gaisbot*] -Parent=General Crawlers -Browser="Gaisbot" - -[gosospider Mozilla/5.0 (compatible; GosoSpider*)] -Parent=General Crawlers -Browser="GosoSpider" - -[Healthbot/Health_and_Longevity_Project_(HealthHaven.com) ] -Parent=General Crawlers -Browser="Healthbot" - -[hitcrawler_0.*] -Parent=General Crawlers -Browser="hitcrawler" - -[htdig/*] -Parent=General Crawlers -Browser="ht://Dig" - -[http://hilfe.acont.de/bot.html ACONTBOT] -Parent=General Crawlers -Browser="ACONTBOT" - -[http://www.yellowpages.com*] -Parent=General Crawlers -Browser="Yellow Pages" - -[HuaweiSymantecSpider/*] -Parent=General Crawlers -Browser="HuaweiSymantecSpider" - -[JetBrains*] -Parent=General Crawlers -Browser="Omea Pro" - -[JS-Kit URL Resolver, http://js-kit.com/] -Parent=General Crawlers -Browser="JS-Kit/Echo" - -[KakleBot - www.kakle.com/0.1] -Parent=General Crawlers -Browser="KakleBot" - -[KBeeBot/0.*] -Parent=General Crawlers -Browser="KBeeBot" - -[Keyword Density/*] -Parent=General Crawlers -Browser="Keyword Density" - -[LetsCrawl.com/1.0*] -Parent=General Crawlers -Browser="LetsCrawl.com" - -[Lincoln State Web Browser] -Parent=General Crawlers -Browser="Lincoln State Web Browser" - -[LinkedInBot/1.*] -Parent=General Crawlers -Browser="LinkedInBot" - -[Links4US-Crawler,*] -Parent=General Crawlers -Browser="Links4US-Crawler" - -[Lorkyll *.* -- lorkyll@444.net] -Parent=General Crawlers -Browser="Lorkyll" - -[Lsearch/sondeur] -Parent=General Crawlers -Browser="Lsearch/sondeur" - -[LucidMedia ClickSense/4.?] -Parent=General Crawlers -Browser="LucidMedia-ClickSense" - -[Made by ZmEu @ WhiteHat v0.* (www.WhiteHat.ro)] -Parent=General Crawlers -Browser="ZmEu" - -[magpie-crawler/1.*] -Parent=General Crawlers -Browser="magpie-crawler" - -[Mahalobot/1.0 (?http://www.mahalo.com/)] -Parent=General Crawlers -Browser="Mahalobot" - -[MapoftheInternet.com?(?http://MapoftheInternet.com)] -Parent=General Crawlers -Browser="MapoftheInternet" - -[Marvin v0.3] -Parent=General Crawlers -Browser="MedHunt" -Version=0.3 -MajorVer=0 -MinorVer=3 - -[masidani_bot_v0.6*] -Parent=General Crawlers -Browser="masidani_bot" - -[Metaspinner/0.01 (Metaspinner; http://www.meta-spinner.de/; support@meta-spinner.de/)] -Parent=General Crawlers -Browser="Metaspinner/0.01" -Version=0.01 -MajorVer=0 -MinorVer=01 - -[metatagsdir/*] -Parent=General Crawlers -Browser="metatagsdir" - -[Microsoft Windows Network Diagnostics] -Parent=General Crawlers -Browser="Microsoft Windows Network Diagnostics" - -[Miva (AlgoFeedback@miva.com)] -Parent=General Crawlers -Browser="Miva" - -[moget/*] -Parent=General Crawlers -Browser="Goo" - -[Mozdex/0.7*] -Parent=General Crawlers -Browser="Mozdex" - -[Mozilla/* (compatible; WebCapture*)] -Parent=General Crawlers -Browser="WebCapture" - -[Mozilla/*(*redditbot/*http://www.reddit.com/feedback*)] -Parent=General Crawlers -Browser="Reddit" - -[Mozilla/4.0 (compatible; DepSpid/*)] -Parent=General Crawlers -Browser="DepSpid" - -[Mozilla/4.0 (compatible; MSIE 4.01; Vonna.com b o t)] -Parent=General Crawlers -Browser="Vonna.com" - -[Mozilla/4.0 (compatible; MSIE 4.01; Windows95)] -Parent=General Crawlers -Browser="Generic Crawler" -Win32=true - -[Mozilla/4.0 (compatible; MyFamilyBot/*)] -Parent=General Crawlers -Browser="MyFamilyBot" - -[Mozilla/4.0 (compatible; N-Stealth)] -Parent=General Crawlers -Browser="N-Stealth" - -[Mozilla/4.0 (compatible; Scumbot/*; Linux/*)] -Parent=General Crawlers -Browser="Generic Crawler" - -[Mozilla/4.0 (compatible; Spider; Linux)] -Parent=General Crawlers -Browser="Generic Crawler" - -[Mozilla/4.0 (compatible; Win32)] -Parent=General Crawlers -Browser="Unknown Crawler" - -[Mozilla/5.0 (*http://gnomit.com/) Gecko/* Gnomit/1.0] -Parent=General Crawlers -Browser="Gnomit" - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) ADM/*] -Parent=General Crawlers -Browser="Adobe Dialog Manager" -Platform="MacOSX" - -[Mozilla/5.0 (compatible; *; http://www.80legs.com/spider.html;) Gecko/*] -Parent=General Crawlers -Browser="80Legs" - -[Mozilla/5.0 (compatible; AboutUsBot/*)] -Parent=General Crawlers -Browser="AboutUsBot" - -[Mozilla/5.0 (compatible; AdHitz; http://adhitz.com/)] -Parent=General Crawlers -Browser="AdHitz" - -[Mozilla/5.0 (compatible; aiHitBot*/*; +http://www.aihit.com/)] -Parent=General Crawlers -Browser="aiHitBot" - -[Mozilla/5.0 (compatible; BuzzRankingBot/*)] -Parent=General Crawlers -Browser="BuzzRankingBot" - -[Mozilla/5.0 (compatible; ClixSense; http://www.clixsense.com/)] -Parent=General Crawlers -Browser="ClixSense" - -[Mozilla/5.0 (compatible; Crawly/1.*; +http://*/crawler.html)] -Parent=General Crawlers -Browser="Crawly" - -[Mozilla/5.0 (compatible; Diffbot/0.1; +http://www.diffbot.com)] -Parent=General Crawlers -Browser="Diffbot" - -[Mozilla/5.0 (compatible; Ezooms/1.0; ezooms.bot@gmail.com)] -Parent=General Crawlers -Browser="Ezooms" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 (compatible; FirstSearchBot/1.0; *)] -Parent=General Crawlers -Browser="FirstSearchBot" - -[mozilla/5.0 (compatible; genevabot +http://www.healthdash.com)] -Parent=General Crawlers -Browser="Healthdash" - -[Mozilla/5.0 (compatible; JadynAveBot; *http://www.jadynave.com/robot*] -Parent=General Crawlers -Browser="JadynAveBot" - -[Mozilla/5.0 (compatible; Kyluka crawl; http://www.kyluka.com/crawl.html; crawl@kyluka.com)] -Parent=General Crawlers -Browser="Kyluka" - -[Mozilla/5.0 (compatible; LegalAnalysisAgent/1.*; http://www.legalx.net)] -Parent=General Crawlers -Browser="LegalAnalysisAgent" - -[Mozilla/5.0 (compatible; MJ12bot/v1.*)] -Parent=General Crawlers -Browser="MJ12bot" - -[Mozilla/5.0 (compatible; MSIE 7.0 ?http://www.europarchive.org)] -Parent=General Crawlers -Browser="Europe Web Archive" - -[Mozilla/5.0 (compatible; MSIE 7.0; MSIE 6.0; ScanAlert; +http://www.scanalert.com/bot.jsp) Firefox/*] -Parent=General Crawlers -Browser="McAffee Scan Alert" - -[Mozilla/5.0 (compatible; Nigma.ru/*; crawler@nigma.ru)] -Parent=General Crawlers -Browser="Nigma.ru" - -[Mozilla/5.0 (compatible; Plukkie/1.?; http://www.botje.com/plukkie.htm)] -Parent=General Crawlers -Browser="Plukkie" - -[Mozilla/5.0 (compatible; SEODat/0.* http://crawler.seodat.com)] -Parent=General Crawlers -Browser="SEODat" - -[Mozilla/5.0 (compatible; Seznam screenshot-generator 2.0;*)] -Parent=General Crawlers -Browser="Seznam screenshot-generator" - -[Mozilla/5.0 (compatible; spbot/*; +http://www.seoprofiler.com/bot/ )] -Parent=General Crawlers -Browser="SEOprofiler" - -[Mozilla/5.0 (compatible; SuchbaerBot/0.*; +http://bot.suchbaer.de/info.html)] -Parent=General Crawlers -Browser="SuchbaerBot" - -[Mozilla/5.0 (compatible; TweetedTimes Bot/1.0; +http://tweetedtimes.com)] -Parent=General Crawlers -Browser="TweetedTimes Bot" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 (compatible; Twingly Recon; http://www.twingly.com/)] -Parent=General Crawlers -Browser="Twingly Recon" - -[Mozilla/5.0 (compatible; unwrapbot/2.*; +http://www.unwrap.jp*)] -Parent=General Crawlers -Browser="UnWrap" - -[Mozilla/5.0 (compatible; Vermut*)] -Parent=General Crawlers -Browser="Vermut" - -[Mozilla/5.0 (compatible; Viralheat Bot/*) ] -Parent=General Crawlers -Browser="Viralheat" - -[Mozilla/5.0 (compatible; Webbot/*)] -Parent=General Crawlers -Browser="Webbot.ru" - -[n4p_bot*] -Parent=General Crawlers -Browser="n4p_bot" - -[nabot*] -Parent=General Crawlers -Browser="Nabot" - -[NetCarta_WebMapper/*] -Parent=General Crawlers -Browser="NetCarta_WebMapper" - -[Netchart Adv Crawler*] -Parent=General Crawlers -Browser="Netchart Adv Crawler" - -[NetID.com Bot*] -Parent=General Crawlers -Browser="NetID.com Bot" - -[neTVision AG andreas.heidoetting@thomson-webcast.net] -Parent=General Crawlers -Browser="neTVision" - -[NextopiaBOT*] -Parent=General Crawlers -Browser="NextopiaBOT" - -[nicebot] -Parent=General Crawlers -Browser="nicebot" - -[niXXieBot?Foster*] -Parent=General Crawlers -Browser="niXXiebot-Foster" - -[Nozilla/P.N (Just for IDS woring)] -Parent=General Crawlers -Browser="Nozilla/P.N" - -[NSO_Debugger_User/2.0] -Parent=General Crawlers -Browser="NSO_Debugger_User" - -[Nudelsalat/*] -Parent=General Crawlers -Browser="Nudelsalat" - -[NV32ts] -Parent=General Crawlers -Browser="NV32ts" - -[Ocelli/*] -Parent=General Crawlers -Browser="Ocelli" - -[OpenTaggerBot (http://www.opentagger.com/opentaggerbot.htm)] -Parent=General Crawlers -Browser="OpenTaggerBot" - -[Oracle Enterprise Search] -Parent=General Crawlers -Browser="Oracle Enterprise Search" - -[Oracle Ultra Search] -Parent=General Crawlers -Browser="Oracle Ultra Search" - -[Pajaczek/*] -Parent=General Crawlers -Browser="Pajaczek" - -[panscient.com] -Parent=General Crawlers -Browser="panscient.com" - -[Patwebbot (http://www.herz-power.de/technik.html)] -Parent=General Crawlers -Browser="Patwebbot" - -[PDFBot (crawler@pdfind.com)] -Parent=General Crawlers -Browser="PDFBot" - -[Pete-Spider/1.*] -Parent=General Crawlers -Browser="Pete-Spider" - -[PhpDig/*] -Parent=General Crawlers -Browser="PhpDig" - -[PlantyNet_WebRobot*] -Parent=General Crawlers -Browser="PlantyNet" - -[PluckItCrawler/*] -Parent=General Crawlers -Browser="PluckItCrawler" -isMobileDevice=true - -[PMAFind] -Parent=General Crawlers -Browser="PMAFind" - -[Poodle_predictor_1.0] -Parent=General Crawlers -Browser="Poodle Predictor" - -[QuickFinder Crawler] -Parent=General Crawlers -Browser="QuickFinder" - -[Radiation Retriever*] -Parent=General Crawlers -Browser="Radiation Retriever" - -[RedCarpet/*] -Parent=General Crawlers -Browser="RedCarpet" - -[RixBot (http://babelserver.org/rix)] -Parent=General Crawlers -Browser="RixBot" - -[roboobot/1.* (roboo; http://wap.roboo.com; winter.pi@roboo.com)] -Parent=General Crawlers -Browser="roboo" - -[rogerbot/* (http://www.seomoz.org, rogerbot-crawler@seomoz.org)] -Parent=General Crawlers -Browser="rogerbot" - -[Rome Client (http://tinyurl.com/64t5n) Ver: 0.*] -Parent=General Crawlers -Browser="TinyURL" - -[SBIder/*] -Parent=General Crawlers -Browser="SiteSell" - -[ScollSpider/2.*] -Parent=General Crawlers -Browser="ScollSpider" - -[Search Fst] -Parent=General Crawlers -Browser="Search Fst" - -[searchbot admin@google.com] -Parent=General Crawlers -Browser="searchbot" - -[Seeker.lookseek.com] -Parent=General Crawlers -Browser="LookSeek" - -[semanticdiscovery/*] -Parent=General Crawlers -Browser="Semantic Discovery" - -[SeznamBot/*] -Parent=General Crawlers -Browser="SeznamBot" - -[Shelob (shelob@gmx.net)] -Parent=General Crawlers -Browser="Shelob" - -[shelob v1.*] -Parent=General Crawlers -Browser="shelob" - -[ShopWiki/1.0*] -Parent=General Crawlers -Browser="ShopWiki" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[ShowXML/1.0 libwww/5.4.0] -Parent=General Crawlers -Browser="ShowXML" - -[sitecheck.internetseer.com*] -Parent=General Crawlers -Browser="Internetseer" - -[SMBot/*] -Parent=General Crawlers -Browser="SMBot" - -[sohu*] -Parent=General Crawlers -Browser="sohu-search" - -[SpankBot*] -Parent=General Crawlers -Browser="SpankBot" - -[spider (tspyyp@tom.com)] -Parent=General Crawlers -Browser="spider (tspyyp@tom.com)" - -[Sunrise/0.*] -Parent=General Crawlers -Browser="Sunrise" - -[Superpages URL Verification Engine] -Parent=General Crawlers -Browser="Superpages" - -[Surf Knight] -Parent=General Crawlers -Browser="Surf Knight" - -[SurveyBot/*] -Parent=General Crawlers -Browser="SurveyBot" - -[SynapticSearch/AI Crawler 1.?] -Parent=General Crawlers -Browser="SynapticSearch" - -[SyncMgr] -Parent=General Crawlers -Browser="SyncMgr" - -[Tagyu Agent/1.0] -Parent=General Crawlers -Browser="Tagyu" - -[Talkro Web-Shot/*] -Parent=General Crawlers -Browser="Talkro Web-Shot" - -[Tasap-image-robot/0.* (http://www.tasap.com)] -Parent=General Crawlers -Browser="Tasap-image-robot" - -[Tecomi Bot (http://www.tecomi.com/bot.htm)] -Parent=General Crawlers -Browser="Tecomi" - -[TencentTraveler*] -Parent=General Crawlers -Browser="TencentTraveler" - -[TheInformant*] -Parent=General Crawlers -Browser="TheInformant" - -[Toata dragostea*] -Parent=General Crawlers -Browser="Toata dragostea" - -[Tutorial Crawler*] -Parent=General Crawlers -Browser="Tutorial Crawler" - -[Twitterbot/*] -Parent=General Crawlers -Browser="Twitterbot" - -[UbiCrawler/*] -Parent=General Crawlers -Browser="UbiCrawler" - -[UCmore] -Parent=General Crawlers -Browser="UCmore" - -[User*Agent:*] -Parent=General Crawlers -Browser="Generic Crawler" - -[USER_AGENT] -Parent=General Crawlers -Browser="Generic Crawler" - -[VadixBot] -Parent=General Crawlers -Browser="VadixBot" - -[VengaBot/*] -Parent=General Crawlers -Browser="VengaBot" - -[Visicom Toolbar] -Parent=General Crawlers -Browser="Visicom Toolbar" - -[Visited by http://tools.geek-tools.org] -Parent=General Crawlers -Browser="geek-tools.org" - -[Webclipping.com] -Parent=General Crawlers -Browser="Webclipping.com" - -[webcollage*] -Parent=General Crawlers -Browser="WebCollage" - -[WebCrawler_1.*] -Parent=General Crawlers -Browser="WebCrawler" - -[WebFilter Robot*] -Parent=General Crawlers -Browser="WebFilter Robot" - -[WeBoX/*] -Parent=General Crawlers -Browser="WeBoX" - -[WebTrends/*] -Parent=General Crawlers -Browser="WebTrends" - -[West Wind Internet Protocols*] -Parent=General Crawlers -Browser="Versatel" - -[WhizBang] -Parent=General Crawlers -Browser="WhizBang" - -[Willow Internet Crawler by Twotrees V*] -Parent=General Crawlers -Browser="Willow Internet Crawler" - -[WIRE/* (Linux*Bot,Robot,Spider,Crawler)] -Parent=General Crawlers -Browser="WIRE" - -[www.fi crawler, contact crawler@www.fi] -Parent=General Crawlers -Browser="www.fi crawler" - -[Xerka WebBot v1.*] -Parent=General Crawlers -Browser="Xerka" - -[XML Sitemaps Generator*] -Parent=General Crawlers -Browser="XML Sitemaps Generator" - -[XSpider*] -Parent=General Crawlers -Browser="XSpider" - -[YooW!/* (?http://www.yoow.eu)] -Parent=General Crawlers -Browser="YooW!" - -[yp-crawl@attinteractive.com] -Parent=General Crawlers -Browser="YellowPages" - -[HiddenMarket-*] -Parent=General RSS -Browser="HiddenMarket" - -[FOTOCHECKER] -Parent=Image Crawlers -Browser="FOTOCHECKER" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Search Engines - -[Search Engines] -Parent=DefaultProperties -Comment="Search Engines" -Browser="Search Engines" -Crawler=true - -[*FDSE robot*] -Parent=Search Engines -Browser="FDSE Robot" - -[*Fluffy the spider*] -Parent=Search Engines -Browser="SearchHippo" - -[Abacho*] -Parent=Search Engines -Browser="Abacho" - -[ah-ha.com crawler (crawler@ah-ha.com)] -Parent=Search Engines -Browser="Ah-Ha" - -[AIBOT/*] -Parent=Search Engines -Browser="21Seek.Com" - -[ALeadSoftbot/*] -Parent=Search Engines -Browser="ALeadSoftbot" - -[Amfibibot/*] -Parent=Search Engines -Browser="Amfibi" - -[AnswerBus (http://www.answerbus.com/)] -Parent=Search Engines -Browser="AnswerBus" - -[antibot-V*] -Parent=Search Engines -Browser="antibot" - -[appie*(www.walhello.com)] -Parent=Search Engines -Browser="Walhello" - -[ASPSeek/*] -Parent=Search Engines -Browser="ASPSeek" - -[Atrax Solutions atraxbot/0.*; http://www.atraxsolutions.com/atraxbot] -Parent=Search Engines -Browser="Atrax Solutions" - -[BigCliqueBOT/*] -Parent=Search Engines -Browser="BigClique.com/BigClic.com" - -[Blaiz-Bee/*] -Parent=Search Engines -Browser="RawGrunt" - -[btbot/*] -Parent=Search Engines -Browser="Bit Torrent Search Engine" - -[Busiversebot/v1.0 (http://www.busiverse.com/bot.php)] -Parent=Search Engines -Browser="Busiversebot" - -[CatchBot/*; +http://www.catchbot.com] -Parent=Search Engines -Browser="CatchBot" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[CipinetBot (http://www.cipinet.com/bot.html)] -Parent=Search Engines -Browser="CipinetBot" - -[Cogentbot/1.?*] -Parent=Search Engines -Browser="Cogentbot" - -[compatible; Mozilla 4.0; MSIE 5.5; (SqwidgeBot v1.01 - http://www.sqwidge.com/bot/)] -Parent=Search Engines -Browser="SqwidgeBot" - -[cosmos*] -Parent=Search Engines -Browser="Xyleme" - -[Deepindex] -Parent=Search Engines -Browser="Deepindex" - -[DiamondBot] -Parent=Search Engines -Browser="DiamondBot" - -[DuckDuckBot/*; (?http://duckduckgo.com/duckduckbot.html)] -Parent=Search Engines -Browser="DuckDuckBot" - -[Dumbot*] -Parent=Search Engines -Browser="Dumbot" -Version=0.2 -MajorVer=0 -MinorVer=2 -Beta=true - -[Eule?Robot*] -Parent=Search Engines -Browser="Eule-Robot" - -[Faxobot/*] -Parent=Search Engines -Browser="Faxo" - -[Filangy/*] -Parent=Search Engines -Browser="Filangy" - -[flatlandbot/*] -Parent=Search Engines -Browser="Flatland" - -[Fooky.com/ScorpionBot/ScoutOut;*] -Parent=Search Engines -Browser="ScorpionBot" - -[FyberSpider*] -Parent=Search Engines -Browser="FyberSpider" - -[Gaisbot/*] -Parent=Search Engines -Browser="Gaisbot" - -[gazz/*(gazz@nttr.co.jp)] -Parent=Search Engines -Browser="gazz" - -[geniebot*] -Parent=Search Engines -Browser="GenieKnows" - -[GOFORITBOT (?http://www.goforit.com/about/?)] -Parent=Search Engines -Browser="GoForIt" - -[GoGuidesBot/*] -Parent=Search Engines -Browser="GoGuidesBot" - -[GroschoBot/*] -Parent=Search Engines -Browser="GroschoBot" - -[GurujiBot/1.*] -Parent=Search Engines -Browser="GurujiBot" - -[HenryTheMiragoRobot*] -Parent=Search Engines -Browser="Mirago" - -[HolmesBot (http://holmes.ge)] -Parent=Search Engines -Browser="HolmesBot" - -[Hotzonu/*] -Parent=Search Engines -Browser="Hotzonu" - -[HyperEstraier/*] -Parent=Search Engines -Browser="HyperEstraier" - -[i1searchbot/*] -Parent=Search Engines -Browser="i1searchbot" - -[IIITBOT/1.*] -Parent=Search Engines -Browser="Indian Language Web Search Engine" - -[Iltrovatore-?etaccio/*] -Parent=Search Engines -Browser="Iltrovatore-Setaccio" - -[InfociousBot (?http://corp.infocious.com/tech_crawler.php)] -Parent=Search Engines -Browser="InfociousBot" - -[Infoseek SideWinder/*] -Parent=Search Engines -Browser="Infoseek" - -[iSEEKbot/*] -Parent=Search Engines -Browser="iSEEKbot" - -[Knight/0.? (Zook Knight; http://knight.zook.in/; knight@zook.in)] -Parent=Search Engines -Browser="Knight" - -[Kolinka Forum Search (www.kolinka.com)] -Parent=Search Engines -Browser="Kolinka Forum Search" - -[KRetrieve/] -Parent=Search Engines -Browser="KRetrieve" - -[LapozzBot/*] -Parent=Search Engines -Browser="LapozzBot" - -[Linguee Bot (http://www.linguee.com/bot; bot@linguee.com)] -Parent=Search Engines -Browser="Linguee Bot" - -[Linknzbot*] -Parent=Search Engines -Browser="Linknzbot" - -[LocalcomBot/*] -Parent=Search Engines -Browser="LocalcomBot" - -[Mail.Ru/1.0] -Parent=Search Engines -Browser="Mail.Ru" - -[MaSagool/*] -Parent=Search Engines -Browser="Sagoo" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[miniRank/*] -Parent=Search Engines -Browser="miniRank" - -[Mnogosearch*] -Parent=Search Engines -Browser="Mnogosearch" - -[Mozilla/0.9* no dos :) (Linux*)] -Parent=Search Engines -Browser="goliat" - -[Mozilla/4.0 (compatible; *Vagabondo/*; webcrawler at wise-guys dot nl; *)] -Parent=Search Engines -Browser="Vagabondo" - -[Mozilla/4.0 (compatible; Arachmo)] -Parent=Search Engines -Browser="Arachmo" - -[Mozilla/4.0 (compatible; http://search.thunderstone.com/texis/websearch/about.html)] -Parent=Search Engines -Browser="ThunderStone" - -[Mozilla/4.0 (compatible; MSIE *; Windows NT; Girafabot; girafabot at girafa dot com; http://www.girafa.com)] -Parent=Search Engines -Browser="Girafabot" -Win32=true - -[Mozilla/4.0(?compatible; MSIE 6.0; Qihoo *)] -Parent=Search Engines -Browser="Qihoo" - -[Mozilla/4.7 (compatible; WhizBang; http://www.whizbang.com/crawler)] -Parent=Search Engines -Browser="Inxight Software" - -[Mozilla/5.0 (*) VoilaBot*] -Parent=Search Engines -Browser="VoilaBot" - -[Mozilla/5.0 (compatible; ActiveTouristBot*; http://www.activetourist.com)] -Parent=Search Engines -Browser="ActiveTouristBot" - -[Mozilla/5.0 (compatible; AhrefsBot/*; +http://ahrefs.com/robot/)] -Parent=Search Engines -Browser="AhrefsBot" - -[Mozilla/5.0 (compatible; ayna-crawler*)] -Parent=Search Engines -Browser="ayna-crawler" - -[Mozilla/5.0 (compatible; Butterfly/1.0; *)*] -Parent=Search Engines -Browser="Butterfly" - -[Mozilla/5.0 (compatible; Charlotte/*; *)] -Parent=Search Engines -Browser="Charlotte" -Beta=true - -[Mozilla/5.0 (compatible; CXL-FatAssANT*)] -Parent=Search Engines -Browser="FatAssANT" - -[Mozilla/5.0 (compatible; DBLBot/1.0; ?http://www.dontbuylists.com/)] -Parent=Search Engines -Browser="DBLBot" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 (compatible; EARTHCOM.info/*)] -Parent=Search Engines -Browser="EARTHCOM" - -[Mozilla/5.0 (compatible; Lipperhey Spider; http://www.lipperhey.com/)] -Parent=Search Engines -Browser="Lipperhey Spider" - -[Mozilla/5.0 (compatible; Mail.RU/*)] -Parent=Search Engines -Browser="Mail.RU" - -[Mozilla/5.0 (compatible; MojeekBot/*; http://www.mojeek.com/bot.html)] -Parent=Search Engines -Browser="MojeekBot" - -[Mozilla/5.0 (compatible; NLCrawler/*] -Parent=Search Engines -Browser="Northern Light Web Search" - -[Mozilla/5.0 (compatible; OsO;*] -Parent=Search Engines -Browser="Octopodus" - -[Mozilla/5.0 (compatible; ParchBot/1.0;*)] -Parent=Search Engines -Browser="ParchBot" - -[Mozilla/5.0 (compatible; Pogodak.*)] -Parent=Search Engines -Browser="Pogodak" - -[Mozilla/5.0 (compatible; Quantcastbot/1.*)] -Parent=Search Engines -Browser="Quantcastbot" - -[Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)] -Parent=Search Engines -Browser="ScoutJet" - -[Mozilla/5.0 (compatible; Scrubby/*; +http://www.scrubtheweb.com/abs/meta-check.html)] -Parent=Search Engines -Browser="Scrubby" - -[Mozilla/5.0 (compatible; YoudaoBot/1.*; http://www.youdao.com/help/webmaster/spider/*)] -Parent=Search Engines -Browser="YoudaoBot" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 (Twiceler*)] -Parent=Search Engines -Browser="Twiceler" - -[Mozilla/5.0 CostaCider Search*] -Parent=Search Engines -Browser="CostaCider Search" - -[Mozilla/5.0 GurujiBot/1.0 (*)] -Parent=Search Engines -Browser="GurujiBot" - -[NavissoBot] -Parent=Search Engines -Browser="NavissoBot" - -[NextGenSearchBot*(for information visit *)] -Parent=Search Engines -Browser="ZoomInfo" - -[Norbert the Spider(Burf.com)] -Parent=Search Engines -Browser="Norbert the Spider" - -[NuSearch Spider*] -Parent=Search Engines -Browser="nuSearch" - -[ObjectsSearch/*] -Parent=Search Engines -Browser="ObjectsSearch" - -[OOZBOT/0.20 ( http://www.setooz.com/oozbot.html ; agentname at setooz dot_com )] -Parent=Search Engines -Browser="Setooz" - -[OpenISearch/1.*] -Parent=Search Engines -Browser="OpenISearch (Amazon)" - -[Pagebull http://www.pagebull.com/] -Parent=Search Engines -Browser="Pagebull" - -[PEERbot*] -Parent=Search Engines -Browser="PEERbot" - -[Pompos/*] -Parent=Search Engines -Browser="Pompos" - -[Popdexter/*] -Parent=Search Engines -Browser="Popdex" - -[Qweery*] -Parent=Search Engines -Browser="QweeryBot" - -[RedCell/* (*)] -Parent=Search Engines -Browser="RedCell" - -[SaladSpoon/ShopSalad 1.* (Search Engine crawler for ShopSalad.com; *; crawler@shopsalad.com)] -Parent=Search Engines -Browser="ShopSalad" - -[Scrubby/*] -Parent=Search Engines -Browser="Scrub The Web" - -[Search-10/*] -Parent=Search Engines -Browser="Search-10" - -[search.ch*] -Parent=Search Engines -Browser="Swiss Search Engine" - -[Searchmee! Spider*] -Parent=Search Engines -Browser="Searchmee!" - -[Seekbot/*] -Parent=Search Engines -Browser="Seekbot" - -[SiteSpider] -Parent=Search Engines -Browser="SiteSpider" - -[Sosospider?(+http://help.soso.com/webspider.htm)] -Parent=Search Engines -Browser="Sosospider" - -[Spinne/*] -Parent=Search Engines -Browser="Spinne" - -[sproose/*] -Parent=Search Engines -Browser="Sproose" - -[Sqeobot/0.*] -Parent=Search Engines -Browser="Branzel" - -[SquigglebotBot/*] -Parent=Search Engines -Browser="SquigglebotBot" - -[StackRambler/*] -Parent=Search Engines -Browser="StackRambler" - -[SygolBot*] -Parent=Search Engines -Browser="SygolBot" - -[SynoBot] -Parent=Search Engines -Browser="SynoBot" - -[Szukacz/*] -Parent=Search Engines -Browser="Szukacz" - -[Tarantula/*] -Parent=Search Engines -Browser="Tarantula" - -[TerrawizBot/*] -Parent=Search Engines -Browser="TerrawizBot" - -[Tkensaku/*] -Parent=Search Engines -Browser="Tkensaku" - -[TMCrawler] -Parent=Search Engines -Browser="TMCrawler" - -[TwengaBot-Discover (http://www.twenga.fr/bot-discover.html)] -Parent=Search Engines -Browser="TwengaBot-Discover" - -[Twingly Recon] -Parent=Search Engines -Browser="Twingly Recon" - -[updated/*] -Parent=Search Engines -Browser="Updated!" - -[URL Spider Pro/*] -Parent=Search Engines -Browser="URL Spider Pro" - -[URL Spider SQL*] -Parent=Search Engines -Browser="Innerprise Enterprise Search" - -[VMBot/*] -Parent=Search Engines -Browser="VMBot" - -[voyager/2.0 (http://www.kosmix.com/html/crawler.html)] -Parent=Search Engines -Browser="Voyager" - -[wadaino.jp-crawler*] -Parent=Search Engines -Browser="wadaino.jp" - -[WebAlta Crawler/*] -Parent=Search Engines -Browser="WebAlta Crawler" - -[WebCorp/*] -Parent=Search Engines -Browser="WebCorp" - -[webcrawl.net] -Parent=Search Engines -Browser="webcrawl.net" - -[WISEbot/*] -Parent=Search Engines -Browser="WISEbot" - -[Wotbox/*] -Parent=Search Engines -Browser="Wotbox" - -[www.zatka.com] -Parent=Search Engines -Browser="Zatka" - -[WWWeasel Robot v*] -Parent=Search Engines -Browser="World Wide Weasel" - -[YadowsCrawler*] -Parent=Search Engines -Browser="YadowsCrawler" - -[YodaoBot/*] -Parent=Search Engines -Browser="YodaoBot" - -[ZeBot_www.ze.bz*] -Parent=Search Engines -Browser="ZE.bz" - -[zibber-v*] -Parent=Search Engines -Browser="Zibb" - -[ZipppBot/*] -Parent=Search Engines -Browser="ZipppBot" - -[ATA-Translation-Service] -Parent=Translators -Browser="ATA-Translation-Service" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BitTorrent Clients - -[BitTorrent Clients] -Parent=DefaultProperties -Comment="BitTorrent Clients" -Browser="" -Crawler=true - -[Azureus*] -Parent=BitTorrent Clients -Browser="Azureus" - -[BitComet/*] -Parent=BitTorrent Clients -Browser="BitComet" - -[BitTornado/*] -Parent=BitTorrent Clients -Browser="BitTornado" - -[BitTorrent/*] -Parent=BitTorrent Clients -Browser="BitTorrent" - -[BitTorrentMac/*] -Parent=BitTorrent Clients -Browser="BitTorrentMac" - -[BTSP/*] -Parent=BitTorrent Clients -Browser="BTSP" - -[Deluge*] -Parent=BitTorrent Clients -Browser="Deluge" - -[FDM*] -Parent=BitTorrent Clients -Browser="FDM" - -[KTorrent/*] -Parent=BitTorrent Clients -Browser="KTorrent" - -[libtorrent/*] -Parent=BitTorrent Clients -Browser="libtorrent" - -[MediaGet*] -Parent=BitTorrent Clients -Browser="MediaGet" - -[rtorrent/*] -Parent=BitTorrent Clients -Browser="rtorrent" - -[Transmission/*] -Parent=BitTorrent Clients -Browser="Transmission" - -[uTorrent/*] -Parent=BitTorrent Clients -Browser="uTorrent" - -[uTorrentMac/*] -Parent=BitTorrent Clients -Browser="uTorrentMac" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Hatena - -[Hatena] -Parent=DefaultProperties -Comment="Hatena" -Browser="Hatena" -Crawler=true - -[Feed::Find/*] -Parent=Hatena -Browser="Feed Find" -isSyndicationReader=true - -[Hatena Antenna/*] -Parent=Hatena -Browser="Hatena Antenna" - -[Hatena Bookmark/*] -Parent=Hatena -Browser="Hatena Bookmark" - -[Hatena RSS/*] -Parent=Hatena -Browser="Hatena RSS" -isSyndicationReader=true - -[Hatena::Crawler/*] -Parent=Hatena -Browser="Hatena Crawler" - -[HatenaScreenshot*] -Parent=Hatena -Browser="HatenaScreenshot" - -[URI::Fetch/*] -Parent=Hatena -Browser="URI::Fetch" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Internet Archive - -[Internet Archive] -Parent=DefaultProperties -Comment="Internet Archive" -Browser="Internet Archive" -Frames=true -IFrames=true -Tables=true -Crawler=true - -[*heritrix*] -Parent=Internet Archive -Browser="Heritrix" - -[ia_archiver*] -Parent=Internet Archive -Browser="Internet Archive" - -[InternetArchive/*] -Parent=Internet Archive -Browser="InternetArchive" - -[Mozilla/5.0 (compatible; archive.org_bot*)] -Parent=Internet Archive - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nutch - -[Nutch] -Parent=DefaultProperties -Comment="Nutch" -Browser="Nutch" -Frames=true -Tables=true -Crawler=true - -[*Nutch*] -Parent=Nutch - -[CazoodleBot/*] -Parent=Nutch -Browser="CazoodleBot" - -[LOOQ/0.1*] -Parent=Nutch -Browser="LOOQ" - -[Nutch/0.? (OpenX Spider)] -Parent=Nutch - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Webaroo - -[Webaroo] -Parent=DefaultProperties -Comment="Webaroo" -Browser="Webaroo" -Frames=true -Tables=true -Crawler=true - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Webaroo/*)] -Parent=Webaroo -Browser="Webaroo" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows *; *; rv:*) Gecko/* Firefox/* webaroo/*] -Parent=Webaroo -Browser="Webaroo" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Word Press - -[Word Press] -Parent=DefaultProperties -Comment="Word Press" -Browser="Word Press" -Frames=true -Tables=true -Crawler=true - -[WordPress-B-/2.*] -Parent=Word Press -Browser="WordPress-B" - -[WordPress-Do-P-/2.*] -Parent=Word Press -Browser="WordPress-Do-P" - -[BlueCoat ProxySG] -Parent=Blue Coat Systems -Browser="BlueCoat ProxySG" - -[CerberianDrtrs/*] -Parent=Blue Coat Systems -Browser="Cerberian" - -[Inne: Mozilla/4.0 (compatible; Cerberian Drtrs*)] -Parent=Blue Coat Systems -Browser="Cerberian" - -[Mozilla/4.0 (compatible; Cerberian Drtrs*)] -Parent=Blue Coat Systems -Browser="Cerberian" - -[Mozilla/4.0 (compatible; MSIE 6.0; Bluecoat DRTR)] -Parent=Blue Coat Systems -Browser="Bluecoat" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Copyright/Plagiarism - -[Copyright/Plagiarism] -Parent=DefaultProperties -Comment="Copyright/Plagiarism" -Browser="Copyright/Plagiarism" -Crawler=true - -[BDFetch] -Parent=Copyright/Plagiarism -Browser="BDFetch" - -[copyright sheriff (*)] -Parent=Copyright/Plagiarism -Browser="copyright sheriff" - -[CopyRightCheck*] -Parent=Copyright/Plagiarism -Browser="CopyRightCheck" - -[FairAd Client*] -Parent=Copyright/Plagiarism -Browser="FairAd Client" - -[iCopyright Conductor*] -Parent=Copyright/Plagiarism -Browser="iCopyright Conductor" - -[IPiumBot laurion(dot)com] -Parent=Copyright/Plagiarism -Browser="IPiumBot" - -[IWAgent/*] -Parent=Copyright/Plagiarism -Browser="Brand Protect" - -[Mozilla/5.0 (compatible; DKIMRepBot/*)] -Parent=Copyright/Plagiarism -Browser="DKIMRepBot" - -[oBot] -Parent=Copyright/Plagiarism -Browser="oBot" - -[SlySearch/*] -Parent=Copyright/Plagiarism -Browser="SlySearch" - -[TurnitinBot/*] -Parent=Copyright/Plagiarism -Browser="TurnitinBot" - -[TutorGigBot/*] -Parent=Copyright/Plagiarism -Browser="TutorGig" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DNS Tools - -[DNS Tools] -Parent=DefaultProperties -Comment="DNS Tools" -Browser="DNS Tools" -Crawler=true - -[Domain Dossier utility*] -Parent=DNS Tools -Browser="Domain Dossier" - -[Mozilla/5.0 (compatible; DNS-Digger/*)] -Parent=DNS Tools -Browser="DNS-Digger" - -[OpenDNS Domain Crawler noc@opendns.com] -Parent=DNS Tools -Browser="OpenDNS Domain Crawler" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Download Managers - -[Download Managers] -Parent=DefaultProperties -Comment="Download Managers" -Browser="Download Managers" -Crawler=true - -[A1 Website Download/1.* (*) miggibot] -Parent=Download Managers -Browser="A1 Website Download" - -[AndroidDownloadManager] -Parent=Download Managers -Browser="Android Download Manager" - -[AutoMate5] -Parent=Download Managers -Browser="AutoMate5" - -[Beamer*] -Parent=Download Managers -Browser="Beamer" - -[BitBeamer/*] -Parent=Download Managers -Browser="BitBeamer" - -[DA *] -Parent=Download Managers -Browser="Download Accelerator" - -[Download Demon*] -Parent=Download Managers -Browser="Download Demon" - -[Download Express*] -Parent=Download Managers -Browser="Download Express" - -[Download Master*] -Parent=Download Managers -Browser="Download Master" - -[Download Ninja*] -Parent=Download Managers -Browser="Download Ninja" - -[Download Wonder*] -Parent=Download Managers -Browser="Download Wonder" - -[DownloadSession*] -Parent=Download Managers -Browser="DownloadSession" - -[EasyDL/*] -Parent=Download Managers -Browser="EasyDL" - -[FDM 1.x] -Parent=Download Managers -Browser="Free Download Manager" - -[FlashGet] -Parent=Download Managers -Browser="FlashGet" - -[FreshDownload/*] -Parent=Download Managers -Browser="FreshDownload" - -[GetRight/*] -Parent=Download Managers -Browser="GetRight" - -[GetRightPro/*] -Parent=Download Managers -Browser="GetRightPro" - -[GetSmart/*] -Parent=Download Managers -Browser="GetSmart" - -[Go!Zilla*] -Parent=Download Managers -Browser="GoZilla" - -[Gozilla/*] -Parent=Download Managers -Browser="Gozilla" - -[Internet Ninja*] -Parent=Download Managers -Browser="Internet Ninja" - -[Kontiki Client*] -Parent=Download Managers -Browser="Kontiki Client" - -[lftp/3.2.1] -Parent=Download Managers -Browser="lftp" - -[LightningDownload/*] -Parent=Download Managers -Browser="LightningDownload" - -[LMQueueBot/*] -Parent=Download Managers -Browser="LMQueueBot" - -[MetaProducts Download Express/*] -Parent=Download Managers -Browser="Download Express" - -[Mozilla/4.0 (compatible; Getleft*)] -Parent=Download Managers -Browser="Getleft" - -[Myzilla] -Parent=Download Managers -Browser="Myzilla" - -[Net Vampire/*] -Parent=Download Managers -Browser="Net Vampire" - -[Net_Vampire*] -Parent=Download Managers -Browser="Net_Vampire" - -[NetAnts*] -Parent=Download Managers -Browser="NetAnts" - -[NetPumper*] -Parent=Download Managers -Browser="NetPumper" - -[NetSucker*] -Parent=Download Managers -Browser="NetSucker" - -[NetZip Downloader*] -Parent=Download Managers -Browser="NetZip Downloader" - -[NexTools WebAgent*] -Parent=Download Managers -Browser="NexTools WebAgent" - -[Offline Downloader*] -Parent=Download Managers -Browser="Offline Downloader" - -[P3P Client] -Parent=Download Managers -Browser="P3P Client" - -[PageDown*] -Parent=Download Managers -Browser="PageDown" - -[PicaLoader*] -Parent=Download Managers -Browser="PicaLoader" - -[Prozilla*] -Parent=Download Managers -Browser="Prozilla" - -[RealDownload/*] -Parent=Download Managers -Browser="RealDownload" - -[sEasyDL/*] -Parent=Download Managers -Browser="EasyDL" - -[shareaza*] -Parent=Download Managers -Browser="shareaza" - -[SmartDownload/*] -Parent=Download Managers -Browser="SmartDownload" - -[SpeedDownload/*] -Parent=Download Managers -Browser="Speed Download" - -[Star*Downloader/*] -Parent=Download Managers -Browser="StarDownloader" - -[STEROID Download] -Parent=Download Managers -Browser="STEROID Download" - -[SuperBot/*] -Parent=Download Managers -Browser="SuperBot" - -[Vegas95/*] -Parent=Download Managers -Browser="Vegas95" - -[WebZIP*] -Parent=Download Managers -Browser="WebZIP" - -[Wget*] -Parent=Download Managers -Browser="Wget" - -[WinTools] -Parent=Download Managers -Browser="WinTools" - -[Xaldon WebSpider*] -Parent=Download Managers -Browser="Xaldon WebSpider" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; E-Mail Harvesters - -[E-Mail Harvesters] -Parent=DefaultProperties -Comment="E-Mail Harvesters" -Browser="E-Mail Harvesters" -Crawler=true - -[*E-Mail Address Extractor*] -Parent=E-Mail Harvesters -Browser="E-Mail Address Extractor" - -[*Larbin*] -Parent=E-Mail Harvesters -Browser="Larbin" - -[*www4mail/*] -Parent=E-Mail Harvesters -Browser="www4mail" - -[8484 Boston Project*] -Parent=E-Mail Harvesters -Browser="8484 Boston Project" - -[Atomic_Email] -Parent=E-Mail Harvesters -Browser="Atomic_Email" - -[Atomic_Email_Hunter/*] -Parent=E-Mail Harvesters -Browser="Atomic Email Hunter" - -[CherryPicker*/*] -Parent=E-Mail Harvesters -Browser="CherryPickerElite" - -[Chilkat/*] -Parent=E-Mail Harvesters -Browser="Chilkat" - -[ContactBot/*] -Parent=E-Mail Harvesters -Browser="ContactBot" - -[eCatch*] -Parent=E-Mail Harvesters -Browser="eCatch" - -[EmailCollector*] -Parent=E-Mail Harvesters -Browser="E-Mail Collector" - -[EMAILsearcher] -Parent=E-Mail Harvesters -Browser="EMAILsearcher" - -[EmailSiphon*] -Parent=E-Mail Harvesters -Browser="E-Mail Siphon" - -[EmailWolf*] -Parent=E-Mail Harvesters -Browser="EMailWolf" - -[Epsilon SoftWorks' MailMunky] -Parent=E-Mail Harvesters -Browser="MailMunky" - -[ExtractorPro*] -Parent=E-Mail Harvesters -Browser="ExtractorPro" - -[Franklin Locator*] -Parent=E-Mail Harvesters -Browser="Franklin Locator" - -[Missigua Locator*] -Parent=E-Mail Harvesters -Browser="Missigua Locator" - -[Mozilla/4.0 (compatible; Advanced Email Extractor*)] -Parent=E-Mail Harvesters -Browser="Advanced Email Extractor" - -[Netprospector*] -Parent=E-Mail Harvesters -Browser="Netprospector" - -[ProWebWalker*] -Parent=E-Mail Harvesters -Browser="ProWebWalker" - -[sna-0.0.*] -Parent=E-Mail Harvesters -Browser="Mike Elliott's E-Mail Harvester" - -[WebEnhancer*] -Parent=E-Mail Harvesters -Browser="WebEnhancer" - -[WebMiner*] -Parent=E-Mail Harvesters -Browser="WebMiner" - -[ZIBB Crawler (email address / WWW address)] -Parent=E-Mail Harvesters -Browser="ZIBB Crawler" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Blogs - -[Feeds Blogs] -Parent=DefaultProperties -Comment="Feeds Blogs" -Browser="Feeds Blogs" -isSyndicationReader=true -Crawler=true - -[Bloglines Title Fetch/*] -Parent=Feeds Blogs -Browser="Bloglines Title Fetch" - -[Bloglines/* (http://www.bloglines.com*)] -Parent=Feeds Blogs -Browser="BlogLines Web" - -[BlogPulse (ISSpider-3.*)] -Parent=Feeds Blogs -Browser="BlogPulse" - -[BlogPulseLive (support@blogpulse.com)] -Parent=Feeds Blogs -Browser="BlogPulseLive" - -[blogsearchbot-pumpkin-2] -Parent=Feeds Blogs -Browser="blogsearchbot-pumpkin" -isSyndicationReader=false - -[Irish Blogs Aggregator/*1.0*] -Parent=Feeds Blogs -Browser="Irish Blogs Aggregator" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[kinjabot (http://www.kinja.com; *)] -Parent=Feeds Blogs -Browser="kinjabot" - -[Net::Trackback/*] -Parent=Feeds Blogs -Browser="Net::Trackback" - -[Reblog*] -Parent=Feeds Blogs -Browser="Reblog" - -[WordPress/*] -Parent=Feeds Blogs -Browser="WordPress" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Syndicators - -[Feeds Syndicators] -Parent=DefaultProperties -Comment="Feeds Syndicators" -Browser="Feeds Syndicators" -isSyndicationReader=true -Crawler=true - -[*LinkLint*] -Parent=Feeds Syndicators -Browser="LinkLint" - -[*NetNewsWire/*] -Parent=Feeds Syndicators -Browser="NetNewsWire" - -[*NetVisualize*] -Parent=Feeds Syndicators -Browser="NetVisualize" - -[AideRSS 2.* (postrank.com)] -Parent=Feeds Syndicators -Browser="AideRSS" - -[AideRSS/2.0 (aiderss.com)] -Parent=Feeds Syndicators -Browser="AideRSS" - -[Akregator/*] -Parent=Feeds Syndicators -Browser="Akregator" - -[Apple-PubSub/*] -Parent=Feeds Syndicators -Browser="Apple-PubSub" - -[AppleSyndication/*] -Parent=Feeds Syndicators -Browser="Safari RSS" -Platform="MacOSX" - -[Cocoal.icio.us/* (*)*] -Parent=Feeds Syndicators -Browser="Cocoal.icio.us" - -[Feed43 Proxy/* (*)] -Parent=Feeds Syndicators -Browser="Feed For Free" - -[FeedBurner/*] -Parent=Feeds Syndicators -Browser="FeedBurner" - -[FeedDemon/* (*)] -Parent=Feeds Syndicators -Browser="FeedDemon" -Platform="Win32" - -[FeedDigest/* (*)] -Parent=Feeds Syndicators -Browser="FeedDigest" - -[FeedGhost/1.*] -Parent=Feeds Syndicators -Browser="FeedGhost" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[FeedOnFeeds/0.1.* ( http://minutillo.com/steve/feedonfeeds/)] -Parent=Feeds Syndicators -Browser="FeedOnFeeds" -Version=0.1 -MajorVer=0 -MinorVer=1 - -[Feedreader * (Powered by Newsbrain)] -Parent=Feeds Syndicators -Browser="Newsbrain" - -[Feedshow/* (*)] -Parent=Feeds Syndicators -Browser="Feedshow" - -[Feedster Crawler/?.0; Feedster, Inc.] -Parent=Feeds Syndicators -Browser="Feedster" - -[GreatNews/1.0] -Parent=Feeds Syndicators -Browser="GreatNews" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Gregarius/*] -Parent=Feeds Syndicators -Browser="Gregarius" - -[intraVnews/*] -Parent=Feeds Syndicators -Browser="intraVnews" - -[JetBrains Omea Reader*] -Parent=Feeds Syndicators -Browser="Omea Reader" - -[Liferea/1.* (Linux; *; http://liferea.sf.net/)] -Parent=Feeds Syndicators -Browser="Liferea" - -[livedoor FeedFetcher/0.0* (http://reader.livedoor.com/;*)] -Parent=Feeds Syndicators -Browser="FeedFetcher" -Version=0.0 -MajorVer=0 -MinorVer=0 - -[MagpieRSS/* (*)] -Parent=Feeds Syndicators -Browser="MagpieRSS" - -[Mobitype * (compatible; Mozilla/*; MSIE *.*; Windows *)] -Parent=Feeds Syndicators -Browser="Mobitype" -Platform="Win32" - -[Mozilla/5.0 (*; Rojo *; http://www.rojo.com/corporate/help/agg; *)*] -Parent=Feeds Syndicators -Browser="Rojo" - -[Mozilla/5.0 (*aggregator:TailRank; http://tailrank.com/robot)*] -Parent=Feeds Syndicators -Browser="TailRank" - -[Mozilla/5.0 (compatible; MSIE 6.0; Podtech Network; crawler_admin@podtech.net)] -Parent=Feeds Syndicators -Browser="Podtech Network" - -[Mozilla/5.0 (compatible; Newz Crawler *; http://www.newzcrawler.com/?)] -Parent=Feeds Syndicators -Browser="Newz Crawler" - -[Mozilla/5.0 (compatible; RSSMicro.com RSS/Atom Feed Robot)] -Parent=Feeds Syndicators -Browser="RSSMicro" - -[Mozilla/5.0 (compatible;*newstin.com;*)] -Parent=Feeds Syndicators -Browser="NewsTin" - -[Mozilla/5.0 (RSS Reader Panel)] -Parent=Feeds Syndicators -Browser="RSS Reader Panel" - -[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:FeedParser; *) Gecko/*] -Parent=Feeds Syndicators -Browser="FeedParser" - -[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:NewsMonster; *) Gecko/*] -Parent=Feeds Syndicators -Browser="NewsMonster" - -[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:Rojo; *) Gecko/*] -Parent=Feeds Syndicators -Browser="Rojo" - -[Mozilla/5.0 NewsFox/*] -Parent=Feeds Syndicators -Browser="NewsFox" - -[Netvibes (*)] -Parent=Feeds Syndicators -Browser="Netvibes" - -[NewsAlloy/* (*)] -Parent=Feeds Syndicators -Browser="NewsAlloy" - -[Omnipelagos*] -Parent=Feeds Syndicators -Browser="Omnipelagos" - -[Particls] -Parent=Feeds Syndicators -Browser="Particls" - -[Protopage/* (*)] -Parent=Feeds Syndicators -Browser="Protopage" - -[PubSub-RSS-Reader/* (*)] -Parent=Feeds Syndicators -Browser="PubSub-RSS-Reader" - -[RSS Menu/*] -Parent=Feeds Syndicators -Browser="RSS Menu" - -[RssBandit/*] -Parent=Feeds Syndicators -Browser="RssBandit" - -[RssBar/1.2*] -Parent=Feeds Syndicators -Browser="RssBar" -Version=1.2 -MajorVer=1 -MinorVer=2 - -[SharpReader/*] -Parent=Feeds Syndicators -Browser="SharpReader" - -[SimplePie/*] -Parent=Feeds Syndicators -Browser="SimplePie" - -[Strategic Board Bot (?http://www.strategicboard.com)] -Parent=Feeds Syndicators -Browser="Strategic Board Bot" - -[TargetYourNews.com bot] -Parent=Feeds Syndicators -Browser="TargetYourNews" - -[Technoratibot/*] -Parent=Feeds Syndicators -Browser="Technoratibot" - -[Tumblr/* RSS syndication ( http://www.tumblr.com/) (support@tumblr.com)] -Parent=Feeds Syndicators -Browser="Tumblr RSS syndication" - -[Windows-RSS-Platform/1.0*] -Parent=Feeds Syndicators -Browser="Windows-RSS-Platform" -Version=1.0 -MajorVer=1 -MinorVer=0 -Win32=true - -[Wizz RSS News Reader] -Parent=Feeds Syndicators -Browser="Wizz" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General RSS - -[General RSS] -Parent=DefaultProperties -Comment="General RSS" -Browser="General RSS" -isSyndicationReader=true -Crawler=true - -[AideRSS/1.0 (aiderss.com); * subscribers] -Parent=General RSS -Browser="AideRSS" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[BlijbolReallySimpleAggregator/2.0*] -Parent=General RSS -Browser="BlijbolReallySimpleAggregator" - -[CC Metadata Scaper http://wiki.creativecommons.org/Metadata_Scraper] -Parent=General RSS -Browser="CC Metadata Scaper" - -[Mozilla/5.0 (compatible) GM RSS Panel] -Parent=General RSS -Browser="RSS Panel" - -[Mozilla/5.0 http://www.inclue.com; graeme@inclue.com] -Parent=General RSS -Browser="Inclue" - -[Runnk online rss reader : http://www.runnk.com/ : RSS favorites : RSS ranking : RSS aggregator*] -Parent=General RSS -Browser="Ruunk" - -[UniversalFeedParser/4.* +http://feedparser.org/] -Parent=General RSS -Browser="UniversalFeedParser" - -[Windows-RSS-Platform/2.0 (MSIE ?.0; Windows NT *.*)] -Parent=General RSS -Browser="Windows-RSS-Platform" -Version=2.0 -MajorVer=2 -MinorVer=0 -Platform="Win32" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Validation Checkers - -[HTML Validators] -Parent=DefaultProperties -Comment="Validation Checkers" -Browser="HTML Validators" -Crawler=true - -[(HTML Validator http://www.searchengineworld.com/validator/)] -Parent=HTML Validators -Browser="Search Engine World HTML Validator" - -[FeedValidator/*] -Parent=HTML Validators -Browser="FeedValidator" - -[Search Engine World Robots.txt Validator*] -Parent=HTML Validators -Browser="Search Engine World Robots.txt Validator" - -[Weblide/*] -Parent=HTML Validators -Browser="Weblide" -Beta=true - -[WebmasterWorld StickyMail Server Header Checker*] -Parent=HTML Validators -Browser="WebmasterWorld Server Header Checker" - -[WWWC/*] -Parent=HTML Validators -Browser="WWWC" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Image Crawlers - -[Image Crawlers] -Parent=DefaultProperties -Comment="Image Crawlers" -Browser="Image Crawlers" -Crawler=true - -[*CFNetwork*] -Parent=Image Crawlers -Browser="CFNetwork" - -[*PhotoStickies/*] -Parent=Image Crawlers -Browser="PhotoStickies" - -[Camcrawler*] -Parent=Image Crawlers -Browser="Camcrawler" - -[CydralSpider/*] -Parent=Image Crawlers -Browser="Cydral Web Image Search" - -[Der gro\xdfe BilderSauger*] -Parent=Image Crawlers -Browser="Gallery Grabber" - -[Extreme Picture Finder] -Parent=Image Crawlers -Browser="Extreme Picture Finder" - -[FLATARTS_FAVICO] -Parent=Image Crawlers -Browser="FlatArts Favorites Icon Tool" - -[HTML2JPG Blackbox, http://www.html2jpg.com] -Parent=Image Crawlers -Browser="HTML2JPG" - -[IconSurf/2.*] -Parent=Image Crawlers -Browser="IconSurf" - -[Mister PIX*] -Parent=Image Crawlers -Browser="Mister PIX" - -[Mozilla/5.0 (compatible; KaloogaBot; http://www.kalooga.com/info.html?page=crawler)] -Parent=Image Crawlers -Browser="KaloogaBot" - -[Mozilla/5.0 (Macintosh; U; *Mac OS X; *) AppleWebKit/* (*) Pandora/2.*] -Parent=Image Crawlers -Browser="Pandora" - -[naoFavicon4IE*] -Parent=Image Crawlers -Browser="naoFavicon4IE" - -[pixfinder/*] -Parent=Image Crawlers -Browser="pixfinder" - -[psbot/* (?http://www.picsearch.com/bot.html)] -Parent=Image Crawlers -Browser="PicSearchBot" - -[rssImagesBot/0.1 (*http://herbert.groot.jebbink.nl/?app=rssImages)] -Parent=Image Crawlers -Browser="rssImagesBot" - -[Web Image Collector*] -Parent=Image Crawlers -Browser="Web Image Collector" - -[WebImages * (?http://herbert.groot.jebbink.nl/?app=WebImages?)] -Parent=Image Crawlers -Browser="WebImages" - -[WebPix*] -Parent=Image Crawlers -Browser="Custo" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Link Checkers - -[Link Checkers] -Parent=DefaultProperties -Comment="Link Checkers" -Browser="Link Checkers" -Crawler=true - -[!Susie (http://www.sync2it.com/susie)] -Parent=Link Checkers -Browser="!Susie" - -[*AgentName/*] -Parent=Link Checkers -Browser="AgentName" - -[*Linkman*] -Parent=Link Checkers -Browser="Linkman" - -[*LinksManager.com*] -Parent=Link Checkers -Browser="LinksManager" - -[*Powermarks/*] -Parent=Link Checkers -Browser="Powermarks" - -[*Web Link Validator*] -Parent=Link Checkers -Browser="Web Link Validator" - -[*Zeus*] -Parent=Link Checkers -Browser="Zeus" - -[ActiveBookmark *] -Parent=Link Checkers -Browser="ActiveBookmark" - -[Bookdog/*] -Parent=Link Checkers -Browser="Bookdog" - -[Bookmark Buddy*] -Parent=Link Checkers -Browser="Bookmark Buddy" - -[Bookmark Renewal Check Agent*] -Parent=Link Checkers -Browser="Bookmark Renewal Check Agent" - -[Bookmark search tool*] -Parent=Link Checkers -Browser="Bookmark search tool" - -[Bookmark-Manager] -Parent=Link Checkers -Browser="Bookmark-Manager" - -[Checkbot*] -Parent=Link Checkers -Browser="Checkbot" - -[CheckLinks/*] -Parent=Link Checkers -Browser="CheckLinks" - -[CyberSpyder Link Test/*] -Parent=Link Checkers -Browser="CyberSpyder Link Test" - -[DLC/*] -Parent=Link Checkers -Browser="DLC" - -[DocWeb Link Crawler (http://doc.php.net)] -Parent=Link Checkers -Browser="DocWeb Link Crawler" - -[FavOrg] -Parent=Link Checkers -Browser="FavOrg" - -[Favorites Sweeper v.3.*] -Parent=Link Checkers -Browser="Favorites Sweeper" - -[FindLinks/*] -Parent=Link Checkers -Browser="FindLinks" - -[Funnel Web Profiler*] -Parent=Link Checkers -Browser="Funnel Web Profiler" - -[Html Link Validator (www.lithopssoft.com)] -Parent=Link Checkers -Browser="HTML Link Validator" - -[IECheck] -Parent=Link Checkers -Browser="IECheck" - -[JCheckLinks/*] -Parent=Link Checkers -Browser="JCheckLinks" - -[JRTwine Software Check Favorites Utility] -Parent=Link Checkers -Browser="JRTwine" - -[Link Valet Online*] -Parent=Link Checkers -Browser="Link Valet" - -[LinkAlarm/*] -Parent=Link Checkers -Browser="LinkAlarm" - -[Linkbot*] -Parent=Link Checkers -Browser="Linkbot" - -[LinkChecker/*] -Parent=Link Checkers -Browser="LinkChecker" - -[LinkextractorPro*] -Parent=Link Checkers -Browser="LinkextractorPro" - -[LinkLint-checkonly/*] -Parent=Link Checkers -Browser="LinkLint" - -[LinkScan/*] -Parent=Link Checkers -Browser="LinkScan" - -[LinkSweeper/*] -Parent=Link Checkers -Browser="LinkSweeper" - -[LinkWalker*] -Parent=Link Checkers -Browser="LinkWalker" - -[MetaGer-LinkChecker] -Parent=Link Checkers -Browser="MetaGer-LinkChecker" - -[Mozilla/* (compatible; linktiger/*; *http://www.linktiger.com*)] -Parent=Link Checkers -Browser="LinkTiger" - -[Mozilla/4.0 (Compatible); URLBase*] -Parent=Link Checkers -Browser="URLBase" - -[Mozilla/4.0 (compatible; Link Utility; http://net-promoter.com)] -Parent=Link Checkers -Browser="NetPromoter Link Utility" - -[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Web Link Validator*] -Parent=Link Checkers -Browser="Web Link Validator" -Platform_Version=98 -Win32=true - -[Mozilla/4.0 (compatible; MSIE 7.0; Win32) Link Commander 3.0] -Parent=Link Checkers -Browser="Link Commander" -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="Win32" - -[Mozilla/4.0 (compatible; smartBot/1.*; checking links; *)] -Parent=Link Checkers -Browser="smartBot" - -[Mozilla/4.0 (compatible; SuperCleaner*;*)] -Parent=Link Checkers -Browser="SuperCleaner" - -[Mozilla/5.0 gURLChecker/*] -Parent=Link Checkers -Browser="gURLChecker" - -[Newsgroupreporter LinkCheck] -Parent=Link Checkers -Browser="Newsgroupreporter LinkCheck" - -[onCHECK Linkchecker von www.scientec.de fuer www.onsinn.de] -Parent=Link Checkers -Browser="onCHECK Linkchecker" - -[online link validator (http://www.dead-links.com/)] -Parent=Link Checkers -Browser="Dead-Links.com" - -[REL Link Checker*] -Parent=Link Checkers -Browser="REL Link Checker" - -[RLinkCheker*] -Parent=Link Checkers -Browser="RLinkCheker" - -[Robozilla/*] -Parent=Link Checkers -Browser="Robozilla" - -[RPT-HTTPClient/*] -Parent=Link Checkers -Browser="RPT-HTTPClient" - -[SafariBookmarkChecker*(?http://www.coriolis.ch/)] -Parent=Link Checkers -Browser="SafariBookmarkChecker" -Platform="MacOSX" -CssVersion=2 - -[Simpy/* (Simpy; http://www.simpy.com/?ref=bot; feedback at simpy dot com)] -Parent=Link Checkers -Browser="Simpy" - -[SiteBar/*] -Parent=Link Checkers -Browser="SiteBar" - -[Susie (http://www.sync2it.com/bms/susie.php] -Parent=Link Checkers -Browser="Susie" - -[URLBase/*] -Parent=Link Checkers -Browser="URLBase" - -[VSE/*] -Parent=Link Checkers -Browser="VSE Link Tester" - -[WebTrends Link Analyzer] -Parent=Link Checkers -Browser="WebTrends Link Analyzer" - -[WorQmada/*] -Parent=Link Checkers -Browser="WorQmada" - -[Xenu* Link Sleuth*] -Parent=Link Checkers -Browser="Xenu's Link Sleuth" - -[Z-Add Link Checker*] -Parent=Link Checkers -Browser="Z-Add Link Checker" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft - -[Microsoft] -Parent=DefaultProperties -Comment="Microsoft" -Browser="Microsoft" -Crawler=true - -[Live (http://www.live.com/)] -Parent=Microsoft -Browser="Microsoft Live" -isSyndicationReader=true - -[MFC Foundation Class Library*] -Parent=Microsoft -Browser="MFC Foundation Class Library" - -[MFHttpScan] -Parent=Microsoft -Browser="MFHttpScan" - -[Microsoft BITS/*] -Parent=Microsoft -Browser="BITS" - -[Microsoft Data Access Internet Publishing Provider Cache Manager] -Parent=Microsoft -Browser="MS IPP" - -[Microsoft Data Access Internet Publishing Provider DAV*] -Parent=Microsoft -Browser="MS IPP DAV" - -[Microsoft Data Access Internet Publishing Provider Protocol Discovery] -Parent=Microsoft -Browser="MS IPPPD" - -[Microsoft Internet Explorer] -Parent=Microsoft -Browser="Fake IE" - -[Microsoft Office Existence Discovery] -Parent=Microsoft -Browser="Microsoft Office Existence Discovery" - -[Microsoft Office Protocol Discovery] -Parent=Microsoft -Browser="MS OPD" - -[Microsoft Office/* (*Picture Manager*)] -Parent=Microsoft -Browser="Microsoft Office Picture Manager" - -[Microsoft URL Control*] -Parent=Microsoft -Browser="Microsoft URL Control" - -[Microsoft Visio MSIE] -Parent=Microsoft -Browser="Microsoft Visio" - -[Microsoft-WebDAV-MiniRedir/*] -Parent=Microsoft -Browser="Microsoft-WebDAV" - -[Mozilla/5.0 (Macintosh; Intel Mac OS X) Excel/12.*] -Parent=Microsoft -Browser="Microsoft Excel" -Version=12.0 -MajorVer=12 -MinorVer=0 -Platform="MacOSX" - -[MSN Feed Manager] -Parent=Microsoft -Browser="MSN Feed Manager" -isSyndicationReader=true - -[MSProxy/*] -Parent=Microsoft -Browser="MS Proxy" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Miscellaneous Browsers - -[Miscellaneous Browsers] -Parent=DefaultProperties -Comment="Miscellaneous Browsers" -Browser="Miscellaneous Browsers" -Crawler=true - -[*Amiga*] -Parent=Miscellaneous Browsers -Browser="Amiga" -Platform="Amiga" - -[*avantbrowser*] -Parent=Miscellaneous Browsers -Browser="Avant Browser" - -[12345] -Parent=Miscellaneous Browsers -Browser="12345" - -[1st ZipCommander (Net) - http://www.zipcommander.com/] -Parent=Miscellaneous Browsers -Browser="1st ZipCommander" - -[Ace Explorer] -Parent=Miscellaneous Browsers -Browser="Ace Explorer" - -[Enigma Browser*] -Parent=Miscellaneous Browsers -Browser="Enigma Browser" - -[EVE-minibrowser/*] -Parent=Miscellaneous Browsers -Browser="EVE-minibrowser" -IFrames=false -Tables=false -BackgroundSounds=false -JavaScript=false -VBScript=false -JavaApplets=false -ActiveXControls=false -Crawler=false - -[Godzilla/* (Basic*; *; Commodore C=64; *; rv:1.*)*] -Parent=Miscellaneous Browsers -Browser="Godzilla" - -[GreenBrowser] -Parent=Miscellaneous Browsers -Browser="GreenBrowser" -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=2 - -[Kopiczek/* (WyderOS*; *)] -Parent=Miscellaneous Browsers -Browser="Kopiczek" -Platform="WyderOS" -IFrames=true -VBScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/* (*) - BrowseX (*)] -Parent=Miscellaneous Browsers -Browser="BrowseX" - -[Mozilla/* (Win32;*Escape?*; ?)] -Parent=Miscellaneous Browsers -Browser="Escape" -Platform="Win32" - -[Mozilla/4.0 (compatible; ibisBrowser)] -Parent=Miscellaneous Browsers -Browser="ibisBrowser" - -[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) AppleWebKit/* (*) HistoryHound/*] -Parent=Miscellaneous Browsers -Browser="HistoryHound" - -[Mozilla/5.0 (X11; U; Linux*; *) AppleWebKit/*(KHTML, like Gecko) Safari/* Epiphany/2.30.*] -Parent=Miscellaneous Browsers -Browser="Epiphany" -Version=2.30 -MajorVer=2 -MinorVer=30 -Platform="Linux" -Win16=false -Win32=false -Win64=false -IFrames=true -VBScript=true -JavaApplets=true -CssVersion=3 - -[NetRecorder*] -Parent=Miscellaneous Browsers -Browser="NetRecorder" - -[NetSurf*] -Parent=Miscellaneous Browsers -Browser="NetSurf" - -[ogeb browser , Version 1.1.0] -Parent=Miscellaneous Browsers -Browser="ogeb browser" -Version=1.1 -MajorVer=1 -MinorVer=1 - -[SCEJ PSP BROWSER 0102pspNavigator] -Parent=Miscellaneous Browsers -Browser="Wipeout Pure" - -[SlimBrowser] -Parent=Miscellaneous Browsers -Browser="SlimBrowser" - -[WWW_Browser/*] -Parent=Miscellaneous Browsers -Browser="WWW Browser" -Version=1.69 -MajorVer=1 -MinorVer=69 -Platform="Win16" -CssVersion=3 - -[*Netcraft Webserver Survey*] -Parent=Netcraft -Browser="Netcraft Webserver Survey" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Offline Browsers - -[Offline Browsers] -Parent=DefaultProperties -Comment="Offline Browsers" -Browser="Offline Browsers" -Crawler=true - -[*Check&Get*] -Parent=Offline Browsers -Browser="Check&Get" - -[*HTTrack*] -Parent=Offline Browsers -Browser="HTTrack" - -[*MSIECrawler*] -Parent=Offline Browsers -Browser="IE Offline Browser" - -[*TweakMASTER*] -Parent=Offline Browsers -Browser="TweakMASTER" - -[BackStreet Browser *] -Parent=Offline Browsers -Browser="BackStreet Browser" - -[Go-Ahead-Got-It*] -Parent=Offline Browsers -Browser="Go Ahead Got-It" - -[iGetter/*] -Parent=Offline Browsers -Browser="iGetter" - -[Teleport*] -Parent=Offline Browsers -Browser="Teleport" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Online Scanners - -[Online Scanners] -Parent=DefaultProperties -Comment="Online Scanners" -Browser="Online Scanners" - -[JoeDog/* (X11; I; Siege *)] -Parent=Online Scanners -Browser="JoeDog" - -[Morfeus Fucking Scanner] -Parent=Online Scanners -Browser="Morfeus Fucking Scanner" - -[Mozilla/4.0 (compatible; Trend Micro tmdr 1.*] -Parent=Online Scanners -Browser="Trend Micro" - -[Titanium 2005 (4.02.01)] -Parent=Online Scanners -Browser="Panda Antivirus Titanium" - -[virus_detector*] -Parent=Online Scanners -Browser="Secure Computing Corporation" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Proxy Servers - -[Proxy Servers] -Parent=DefaultProperties -Comment="Proxy Servers" -Browser="Proxy Servers" - -[*squid*] -Parent=Proxy Servers -Browser="Squid" - -[Anonymisiert*] -Parent=Proxy Servers -Browser="Anonymizied" - -[Anonymizer/*] -Parent=Proxy Servers -Browser="Anonymizer" - -[Anonymizied*] -Parent=Proxy Servers -Browser="Anonymizied" - -[Anonymous*] -Parent=Proxy Servers -Browser="Anonymous" - -[Anonymous/*] -Parent=Proxy Servers -Browser="Anonymous" - -[CE-Preload] -Parent=Proxy Servers -Browser="CE-Preload" - -[http://Anonymouse.org/*] -Parent=Proxy Servers -Browser="Anonymouse" - -[IE/6.01 (CP/M; 8-bit*)] -Parent=Proxy Servers -Browser="Squid" - -[Mozilla/* (TuringOS; Turing Machine; 0.0)] -Parent=Proxy Servers -Browser="Anonymizer" - -[Mozilla/4.0 (compatible; MSIE ?.0; SaferSurf*)] -Parent=Proxy Servers -Browser="SaferSurf" - -[Mozilla/5.0 (compatible; del.icio.us-thumbnails/*; *) KHTML/* (like Gecko)] -Parent=Proxy Servers -Browser="Yahoo!" -Crawler=true - -[Nutscrape] -Parent=Proxy Servers -Browser="Squid" - -[Nutscrape/* (CP/M; 8-bit*)] -Parent=Proxy Servers -Browser="Squid" - -[Privoxy/*] -Parent=Proxy Servers -Browser="Privoxy" - -[ProxyTester*] -Parent=Proxy Servers -Browser="ProxyTester" -Crawler=true - -[SilentSurf*] -Parent=Proxy Servers -Browser="SilentSurf" - -[SmallProxy*] -Parent=Proxy Servers -Browser="SmallProxy" - -[Space*Bison/*] -Parent=Proxy Servers -Browser="Proxomitron" - -[Sqworm/*] -Parent=Proxy Servers -Browser="Websense" - -[SurfControl] -Parent=Proxy Servers -Browser="SurfControl" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Research Projects - -[Research Projects] -Parent=DefaultProperties -Comment="Research Projects" -Browser="Research Projects" -Crawler=true - -[*research*] -Parent=Research Projects -Browser="Generic Research Crawler" - -[AcadiaUniversityWebCensusClient] -Parent=Research Projects -Browser="AcadiaUniversityWebCensusClient" - -[Amico Alpha * (*) Gecko/* AmicoAlpha/*] -Parent=Research Projects -Browser="Amico Alpha" - -[annotate_google; http://ponderer.org/*] -Parent=Research Projects -Browser="Annotate Google" - -[CMS crawler (?http://buytaert.net/crawler/)] -Parent=Research Projects - -[e-SocietyRobot(http://www.yama.info.waseda.ac.jp/~yamana/es/)] -Parent=Research Projects -Browser="e-SocietyRobot" - -[Forschungsportal/*] -Parent=Research Projects -Browser="Forschungsportal" - -[Gulper Web *] -Parent=Research Projects -Browser="Gulper Web Bot" - -[HooWWWer/*] -Parent=Research Projects -Browser="HooWWWer" - -[inetbot/* (?http://www.inetbot.com/bot.html)] -Parent=Research Projects -Browser="inetbot" - -[IRLbot/1.0 (*http://irl.cs.tamu.edu/crawler*)] -Parent=Research Projects -Browser="IRLbot" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[IRLbot/2.0 (*http://irl.cs.tamu.edu/crawler*)] -Parent=Research Projects -Version=2.0 -MajorVer=2 -MinorVer=0 - -[IRLbot/3.0 (*http://irl.cs.tamu.edu/crawler*)] -Parent=Research Projects -Version=3.0 -MajorVer=3 -MinorVer=0 - -[JUST-CRAWLER(*)] -Parent=Research Projects -Browser="JUST-CRAWLER" - -[Lachesis] -Parent=Research Projects -Browser="Lachesis" - -[Mozilla/5.0 (compatible; nextthing.org/*)] -Parent=Research Projects -Browser="nextthing.org" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 (compatible; Theophrastus/*)] -Parent=Research Projects -Browser="Theophrastus" - -[Mozilla/5.0 (compatible; Webscan v0.*; +http://otc.dyndns.org/webscan/)] -Parent=Research Projects -Browser="Webscan" - -[MQbot*] -Parent=Research Projects -Browser="MQbot" - -[OutfoxBot/*] -Parent=Research Projects -Browser="OutfoxBot" - -[polybot?*] -Parent=Research Projects -Browser="Polybot" - -[Shim?Crawler*] -Parent=Research Projects -Browser="Shim Crawler" - -[Steeler/*] -Parent=Research Projects -Browser="Steeler" - -[Taiga web spider] -Parent=Research Projects -Browser="Taiga" - -[Theme Spider*] -Parent=Research Projects -Browser="Theme Spider" - -[UofTDB_experiment* (leehyun@cs.toronto.edu)] -Parent=Research Projects -Browser="UofTDB Experiment" - -[USyd-NLP-Spider*] -Parent=Research Projects -Browser="USyd-NLP-Spider" - -[woriobot*] -Parent=Research Projects -Browser="woriobot" - -[wwwster/* (Beta, mailto:gue@cis.uni-muenchen.de)] -Parent=Research Projects -Browser="wwwster" -Beta=true - -[Zao-Crawler] -Parent=Research Projects -Browser="Zao-Crawler" - -[Zao/*] -Parent=Research Projects -Browser="Zao" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Rippers - -[Rippers] -Parent=DefaultProperties -Comment="Rippers" -Browser="Ripper" -Crawler=true - -[*grub*] -Parent=Rippers -Browser="grub" - -[*ickHTTP*] -Parent=Rippers -Browser="IP*Works" - -[*java*] -Parent=Rippers -Browser="Generic Java Crawler" - -[*libwww*] -Parent=Rippers -Browser="libwww" - -[*WebGrabber*] -Parent=Rippers -Browser="WebGrabber" - -[*WinHttpRequest*] -Parent=Rippers -Browser="WinHttp" - -[3D-FTP/*] -Parent=Rippers -Browser="3D-FTP" - -[3wGet/*] -Parent=Rippers -Browser="3wGet" - -[ActiveRefresh*] -Parent=Rippers -Browser="ActiveRefresh" - -[Ad Muncher*] -Parent=Rippers -Browser="Ad Muncher" - -[Artera (Version *)] -Parent=Rippers -Browser="Artera" - -[AutoHotkey] -Parent=Rippers -Browser="AutoHotkey" - -[b2w/*] -Parent=Rippers -Browser="b2w" - -[BasicHTTP/*] -Parent=Rippers -Browser="BasicHTTP" - -[BlockNote.Net] -Parent=Rippers -Browser="BlockNote.Net" - -[CAST] -Parent=Rippers -Browser="CAST" - -[CFNetwork/*] -Parent=Rippers -Browser="CFNetwork" - -[CFSCHEDULE*] -Parent=Rippers -Browser="ColdFusion Task Scheduler" - -[CobWeb/*] -Parent=Rippers -Browser="CobWeb" - -[ColdFusion*] -Parent=Rippers -Browser="ColdFusion" - -[Crawl_Application] -Parent=Rippers -Browser="Crawl_Application" - -[CTerm/*] -Parent=Rippers -Browser="CTerm" - -[curl*] -Parent=Rippers -Browser="cURL" - -[Custo*] -Parent=Rippers -Browser="Custo" - -[DataCha0s/*] -Parent=Rippers -Browser="DataCha0s" - -[DeepIndexer*] -Parent=Rippers -Browser="DeepIndexer" - -[DISCo Pump *] -Parent=Rippers -Browser="DISCo Pump" - -[eStyleSearch * (compatible; MSIE 6.0; Windows NT 5.0)] -Parent=Rippers -Browser="eStyleSearch" -Platform_Version=5.0 -Win32=true - -[ezic.com http agent *] -Parent=Rippers -Browser="Ezic.com" - -[fetch libfetch/*] -Parent=Rippers -Browser="fetch libfetch" - -[FGet*] -Parent=Rippers -Browser="FGet" - -[findfiles.net/* (Robot;test_robot@gmx-topmail.de)] -Parent=Rippers -Browser="FindFiles" - -[Flaming AttackBot*] -Parent=Rippers -Browser="Flaming AttackBot" - -[Foobot*] -Parent=Rippers -Browser="Foobot" - -[GameSpyHTTP/*] -Parent=Rippers -Browser="GameSpyHTTP" - -[gnome-vfs/*] -Parent=Rippers -Browser="gnome-vfs" - -[Harvest/*] -Parent=Rippers -Browser="Harvest" - -[hcat/*] -Parent=Rippers -Browser="hcat" - -[HLoader] -Parent=Rippers -Browser="HLoader" - -[Holmes/*] -Parent=Rippers -Browser="Holmes" - -[HTMLParser/*] -Parent=Rippers -Browser="HTMLParser" - -[http generic] -Parent=Rippers -Browser="http generic" - -[http://arachnode.net*] -Parent=Rippers -Browser="arachnode" - -[httpclient*] -Parent=Rippers -Browser="httpclient" - -[httperf/*] -Parent=Rippers -Browser="httperf" - -[HTTPFetch/*] -Parent=Rippers -Browser="HTTPFetch" - -[HTTPGrab] -Parent=Rippers -Browser="HTTPGrab" - -[HttpSession] -Parent=Rippers -Browser="HttpSession" - -[httpunit/*] -Parent=Rippers -Browser="HttpUnit" - -[ICE_GetFile] -Parent=Rippers -Browser="ICE_GetFile" - -[iexplore.exe] -Parent=Rippers -Browser="iexplore.exe" - -[Inet - Eureka App] -Parent=Rippers -Browser="Inet - Eureka App" - -[INetURL/*] -Parent=Rippers -Browser="INetURL" - -[InetURL:/*] -Parent=Rippers -Browser="InetURL" - -[Internet Exploiter/*] -Parent=Rippers -Browser="Internet Exploiter" - -[Internet Explore *] -Parent=Rippers -Browser="Fake IE" - -[Internet Explorer *] -Parent=Rippers -Browser="Fake IE" - -[IP*Works!*/*] -Parent=Rippers -Browser="IP*Works!" - -[IrssiUrlLog/*] -Parent=Rippers -Browser="IrssiUrlLog" - -[JPluck/*] -Parent=Rippers -Browser="JPluck" - -[Kapere (http://www.kapere.com)] -Parent=Rippers -Browser="Kapere" - -[LeechFTP] -Parent=Rippers -Browser="LeechFTP" - -[LeechGet*] -Parent=Rippers -Browser="LeechGet" - -[libcurl-agent/*] -Parent=Rippers -Browser="libcurl" - -[libWeb/clsHTTP*] -Parent=Rippers -Browser="libWeb/clsHTTP" - -[lwp*] -Parent=Rippers -Browser="lwp" - -[MFC_Tear_Sample] -Parent=Rippers -Browser="MFC_Tear_Sample" - -[Moozilla] -Parent=Rippers -Browser="Moozilla" - -[MovableType/*] -Parent=Rippers -Browser="MovableType Web Log" - -[Mozilla/* (compatible; OffByOne; Windows*) Webster Pro V3.*] -Parent=Rippers -Browser="OffByOne" -Version=3.0 -MajorVer=3 -MinorVer=0 - -[Mozilla/2.0 (compatible; NEWT ActiveX; Win32)] -Parent=Rippers -Browser="NEWT ActiveX" -Platform="Win32" - -[Mozilla/3.0 (compatible; Indy Library)] -Parent=Rippers -Cookies=true - -[Mozilla/4.0 (compatible; BorderManager*)] -Parent=Rippers -Browser="Novell BorderManager" - -[Mozilla/5.0 (compatible; IPCheck Server Monitor*)] -Parent=Rippers -Browser="IPCheck Server Monitor" - -[OCN-SOC/*] -Parent=Rippers -Browser="OCN-SOC" - -[Offline Explorer*] -Parent=Rippers -Browser="Offline Explorer" - -[Open Web Analytics Bot*] -Parent=Rippers -Browser="Open Web Analytics Bot" - -[OSSProxy*] -Parent=Rippers -Browser="OSSProxy" - -[Pageload*] -Parent=Rippers -Browser="PageLoad" - -[PageNest/*] -Parent=Rippers -Browser="PageNest" - -[pavuk/*] -Parent=Rippers -Browser="Pavuk" - -[PEAR HTTP_Request*] -Parent=Rippers -Browser="PEAR-PHP" - -[PHP*] -Parent=Rippers -Browser="PHP" - -[PigBlock (Windows NT 5.1; U)*] -Parent=Rippers -Browser="PigBlock" -Platform_Version=5.1 -Win32=true - -[Pockey*] -Parent=Rippers -Browser="Pockey-GetHTML" - -[POE-Component-Client-HTTP/*] -Parent=Rippers -Browser="POE-Component-Client-HTTP" - -[PycURL/*] -Parent=Rippers -Browser="PycURL" - -[Python*] -Parent=Rippers -Browser="Python" - -[RepoMonkey*] -Parent=Rippers -Browser="RepoMonkey" - -[SBL-BOT*] -Parent=Rippers -Browser="BlackWidow" - -[ScoutAbout*] -Parent=Rippers -Browser="ScoutAbout" - -[sherlock/*] -Parent=Rippers -Browser="Sherlock" - -[SiteParser/*] -Parent=Rippers -Browser="SiteParser" - -[SiteSnagger*] -Parent=Rippers -Browser="SiteSnagger" - -[SiteSucker/*] -Parent=Rippers -Browser="SiteSucker" - -[SiteWinder*] -Parent=Rippers -Browser="SiteWinder" - -[Snoopy*] -Parent=Rippers -Browser="Snoopy" - -[SOFTWING_TEAR_AGENT*] -Parent=Rippers -Browser="AspTear" - -[SuperHTTP/*] -Parent=Rippers -Browser="SuperHTTP" - -[Tcl http client package*] -Parent=Rippers -Browser="Tcl http client package" - -[Twisted PageGetter] -Parent=Rippers -Browser="Twisted PageGetter" - -[URL2File/*] -Parent=Rippers -Browser="URL2File" - -[UtilMind HTTPGet] -Parent=Rippers -Browser="UtilMind HTTPGet" - -[VCI WebViewer*] -Parent=Rippers -Browser="VCI WebViewer" - -[Web Downloader*] -Parent=Rippers -Browser="Web Downloader" - -[Web Downloader/*] -Parent=Rippers -Browser="Web Downloader" - -[Web Magnet*] -Parent=Rippers -Browser="Web Magnet" - -[WebAuto/*] -Parent=Rippers -Browser="WebAuto" - -[webbandit/*] -Parent=Rippers -Browser="webbandit" - -[WebCopier*] -Parent=Rippers -Browser="WebCopier" - -[WebDownloader*] -Parent=Rippers -Browser="WebDownloader" - -[WebFetch] -Parent=Rippers -Browser="WebFetch" - -[webfetch/*] -Parent=Rippers -Browser="WebFetch" - -[WebGatherer*] -Parent=Rippers -Browser="WebGatherer" - -[WebGet] -Parent=Rippers -Browser="WebGet" - -[WebReaper*] -Parent=Rippers -Browser="WebReaper" - -[WebRipper] -Parent=Rippers -Browser="WebRipper" - -[WebSauger*] -Parent=Rippers -Browser="WebSauger" - -[Website Downloader*] -Parent=Rippers -Browser="Website Downloader" - -[Website eXtractor*] -Parent=Rippers -Browser="Website eXtractor" - -[Website Quester] -Parent=Rippers -Browser="Website Quester" - -[WebsiteExtractor*] -Parent=Rippers -Browser="Website eXtractor" - -[WebSnatcher*] -Parent=Rippers -Browser="WebSnatcher" - -[Webster Pro*] -Parent=Rippers -Browser="Webster Pro" - -[WebStripper*] -Parent=Rippers -Browser="WebStripper" - -[WebWhacker*] -Parent=Rippers -Browser="WebWhacker" - -[WinHttp*] -Parent=Rippers -Browser="WinHttp" - -[WinScripter iNet Tools] -Parent=Rippers -Browser="WinScripter iNet Tools" - -[WWW-Mechanize/*] -Parent=Rippers -Browser="WWW-Mechanize" - -[Zend_Http_Client] -Parent=Rippers -Browser="Zend_Http_Client" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Site Monitors - -[Site Monitors] -Parent=DefaultProperties -Comment="Site Monitors" -Browser="Site Monitors" -Crawler=true - -[*EasyRider*] -Parent=Site Monitors -Browser="EasyRider" - -[*maxamine.com--robot*] -Parent=Site Monitors -Browser="maxamine.com--robot" - -[*Pingdom*] -Parent=Site Monitors -Browser="Pingdom" - -[*WebMon ?.*] -Parent=Site Monitors -Browser="WebMon" - -[Kenjin Spider*] -Parent=Site Monitors -Browser="Kenjin Spider" - -[Kevin http://*] -Parent=Site Monitors -Browser="Kevin" - -[Mozilla/4.0 (compatible; ChangeDetection/*] -Parent=Site Monitors -Browser="ChangeDetection" - -[Mozilla/4.0 (compatible; MSIE ?.0; GomezAgent ?.0; Windows NT)] -Parent=Site Monitors -Browser="Gomez Site Monitor" - -[Mozilla/5.0 (compatible; Chirp/1.0; +http://www.binarycanary.com/chirp.cfm)] -Parent=Site Monitors -Browser="BinaryCanary" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 (compatible; UptimeRobot/1.0; http://www.uptimerobot.com/)] -Parent=Site Monitors -Browser="UptimeRobot" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Myst Monitor Service v*] -Parent=Site Monitors -Browser="Myst Monitor Service" - -[Net Probe] -Parent=Site Monitors -Browser="Net Probe" - -[NetMechanic*] -Parent=Site Monitors -Browser="NetMechanic" - -[NetReality*] -Parent=Site Monitors -Browser="NetReality" - -[Pingdom.com_bot_version_*_(http://www.pingdom.com/)] -Parent=Site Monitors -Browser="Pingdom" - -[Site Valet Online*] -Parent=Site Monitors -Browser="Site Valet" - -[SITECHECKER] -Parent=Site Monitors -Browser="SITECHECKER" - -[sitemonitor@dnsvr.com/*] -Parent=Site Monitors -Browser="ZoneEdit Failover Monitor" - -[UpTime Checker*] -Parent=Site Monitors -Browser="UpTime Checker" - -[URL Control*] -Parent=Site Monitors -Browser="URL Control" - -[URL_Access/*] -Parent=Site Monitors -Browser="URL_Access" - -[URLCHECK] -Parent=Site Monitors -Browser="URLCHECK" - -[URLy Warning*] -Parent=Site Monitors -Browser="URLy Warning" - -[Webcheck *] -Parent=Site Monitors -Browser="Webcheck" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[WebPatrol/*] -Parent=Site Monitors -Browser="WebPatrol" - -[websitepulse checker/*] -Parent=Site Monitors -Browser="websitepulse checker" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Social Bookmarkers - -[Social Networking] -Parent=DefaultProperties -Comment="Social Bookmarkers" -Browser="Social Bookmarkers" -Crawler=true - -[BookmarkBase(2/;http://bookmarkbase.com)] -Parent=Social Networking -Browser="BookmarkBase" - -[Cocoal.icio.us/1.0 (v43) (Mac OS X; http://www.scifihifi.com/cocoalicious)] -Parent=Social Networking -Browser="Cocoalicious" - -[Mozilla/5.0 (*) Gecko/* Firefox/2.0 OneRiot/1.0 (http://www.oneriot.com) ] -Parent=Social Networking -Browser="OneRiot" - -[Mozilla/5.0 (compatible; FriendFeedBot/0.*; +Http://friendfeed.com/about/bot)] -Parent=Social Networking -Browser="FriendFeedBot" - -[Mozilla/5.0 (compatible; Twitturls; +http://twitturls.com)] -Parent=Social Networking -Browser="Twitturls" - -[SocialSpider-Finder/0.*] -Parent=Social Networking -Browser="SocialSpider-Finder" - -[Twitturly*] -Parent=Social Networking -Browser="Twitturly" - -[WinkBot/*] -Parent=Social Networking -Browser="WinkBot" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Translators - -[Translators] -Parent=DefaultProperties -Comment="Translators" -Browser="Translators" -Frames=true -Tables=true -Crawler=true - -[Seram Server] -Parent=Translators -Browser="Seram Server" - -[TeragramWebcrawler/*] -Parent=Translators -Browser="TeragramWebcrawler" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[WebIndexer/* (Web Indexer; *)] -Parent=Translators -Browser="WorldLingo" - -[WebTrans] -Parent=Translators -Browser="WebTrans" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Version Checkers - -[Version Checkers] -Parent=DefaultProperties -Comment="Version Checkers" -Browser="Version Checkers" -Crawler=true - -[Automated Browscap.ini Updater. Gary contact me at serge@skycomp.ca with problems.] -Parent=Version Checkers -Browser="Automated Browscap Updater" - -[Automated Browscap.ini Updater. To report issues contact us at+http://www.skycomp.ca] -Parent=Version Checkers -Browser="Automated Browscap.ini Updater" - -[Browscap Mirror System/1.* (browscap.giantrealm.com)] -Parent=Version Checkers -Browser="Browscap Mirror System" - -[Browscap Mirror v1.30] -Parent=Version Checkers -Browser="Browscap Mirror" - -[Browscap updater] -Parent=Version Checkers -Browser="Browscap updater" - -[browscap updater; interval:weekly; server:rohan.doppy.nl; questions:support@doppy.nl;] -Parent=Version Checkers -Browser="browscap updater" - -[BrowscapUpdater1.0] -Parent=Version Checkers -Browser="BrowscapUpdater" - -[Browser Capabilities Project - PHP Browscap*] -Parent=Version Checkers -Browser="BCP - PHP Browscap" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Browser Capabilities Project AutoDownloader; created by Tom Kelleher Consulting, Inc. (tkelleher.com); used with special permission from Gary Joel Keith; uses Microsoft's WinHTTP component] -Parent=Version Checkers -Browser="TKC AutoDownloader" - -[Decode Framework 0.* browscap library] -Parent=Version Checkers -Browser="Decode Framework browscap library" - -[Desktop Sidebar*] -Parent=Version Checkers -Browser="Desktop Sidebar" - -[Mono Browser Capabilities Updater*] -Parent=Version Checkers -Browser="Mono Browser Capabilities Updater" - -[PHP Browser Capabilities Project/*] -Parent=Version Checkers -Browser="PHP Browser Capabilities Project" - -[UpdateBrowscap*] -Parent=Version Checkers -Browser="UpdateBrowscap" - -[WCC Browscap Updater/0.* (PHP: file_get_contents)] -Parent=Version Checkers -Browser="WCC Browscap Updater" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; W3C - -[W3C] -Parent=DefaultProperties -Comment="W3C" -Browser="W3C" -Crawler=true - -[*W3C-checklink/*] -Parent=W3C -Browser="W3C-checklink" - -[Jigsaw/* W3C_CSS_Validator*/*] -Parent=W3C -Browser="Jigsaw_W3C_CSS_Validator" - -[P3P Validator] -Parent=W3C -Browser="P3P Validator" - -[Unicorn/1.*] -Parent=W3C -Browser="W3C Unicorn" - -[W3C-mobileOK/*] -Parent=W3C -Browser="W3C-mobileOK" -Alpha=false -Beta=false -Win16=false -Win32=false -Win64=false -Frames=false -IFrames=false -Tables=false -Cookies=false -BackgroundSounds=false -JavaScript=false -VBScript=false -JavaApplets=false -ActiveXControls=false -isMobileDevice=false -isSyndicationReader=false -Crawler=true - -[W3C-mobileOK/DDC-*] -Parent=W3C -Browser="W3C-mobileOK/DDC" -isMobileDevice=true - -[W3C-WebCon/*] -Parent=W3C -Browser="W3C-WebCon" - -[W3C_Validator/*] -Parent=W3C -Browser="W3C_Validator" - -[W3CLineMode/*] -Parent=W3C -Browser="W3CLineMode" - -[W3CRobot/*] -Parent=W3C -Browser="W3CRobot" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Become - -[Become] -Parent=DefaultProperties -Comment="Become" -Browser="Become" -isSyndicationReader=true -Crawler=true - -[*BecomeBot/*] -Parent=Become -Browser="BecomeBot" - -[*BecomeBot@exava.com*] -Parent=Become -Browser="BecomeBot" - -[*Exabot@exava.com*] -Parent=Become -Browser="Exabot" - -[MonkeyCrawl/*] -Parent=Become -Browser="MonkeyCrawl" - -[Mozilla/5.0 (compatible; BecomeJPBot/2.3; *)] -Parent=Become -Browser="BecomeJPBot" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Blue Coat Systems - -[Blue Coat Systems] -Parent=DefaultProperties -Comment="Blue Coat Systems" -Browser="Blue Coat Systems" -Crawler=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FeedHub - -[FeedHub] -Parent=DefaultProperties -Comment="FeedHub" -Browser="FeedHub" -isSyndicationReader=true -Crawler=true - -[FeedHub FeedDiscovery/1.0 (http://www.feedhub.com)] -Parent=FeedHub -Browser="FeedHub FeedDiscovery" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[FeedHub FeedFetcher/1.0 (http://www.feedhub.com)] -Parent=FeedHub -Browser="FeedHub FeedFetcher" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[FeedHub MetaDataFetcher/1.0 (http://www.feedhub.com)] -Parent=FeedHub -Browser="FeedHub MetaDataFetcher" -Version=1.0 -MajorVer=1 -MinorVer=0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Internet Content Rating Association - -[Internet Content Rating Association] -Parent=DefaultProperties -Comment="Internet Content Rating Association" -Browser="" -Frames=true -Tables=true -Crawler=true - -[ICRA_label_generator/1.?] -Parent=Internet Content Rating Association -Browser="ICRA_label_generator" - -[ICRA_Semantic_spider/0.?] -Parent=Internet Content Rating Association -Browser="ICRA_Semantic_spider" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nagios - -[Nagios] -Parent=DefaultProperties -Comment="Nagios" -Browser="Nagios" -Crawler=true - -[check_http/* (nagios-plugins 1.*)] -Parent=Nagios -Version=1.0 -MajorVer=1 -MinorVer=0 - -[check_http/* (nagios-plugins 1.1.*)] -Parent=Nagios -Version=1.1 -MajorVer=1 -MinorVer=1 - -[check_http/* (nagios-plugins 1.2.*)] -Parent=Nagios -Version=1.2 -MajorVer=1 -MinorVer=2 - -[check_http/* (nagios-plugins 1.3.*)] -Parent=Nagios -Version=1.3 -MajorVer=1 -MinorVer=3 - -[check_http/* (nagios-plugins 1.4.*)] -Parent=Nagios -Version=1.4 -MajorVer=1 -MinorVer=4 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NameProtect - -[NameProtect] -Parent=DefaultProperties -Comment="NameProtect" -Browser="NameProtect" -Crawler=true - -[abot/*] -Parent=NameProtect -Browser="NameProtect" - -[NP/*] -Parent=NameProtect -Browser="NameProtect" - -[NPBot*] -Parent=NameProtect -Browser="NameProtect" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netcraft - -[Netcraft] -Parent=DefaultProperties -Comment="Netcraft" -Browser="Netcraft" -Crawler=true - -[*Netcraft Web Server Survey*] -Parent=Netcraft -Browser="Netcraft Webserver Survey" - -[Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; *info@netcraft.com)] -Parent=Netcraft -Browser="NetcraftSurveyAgent" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NewsGator - -[NewsGator] -Parent=DefaultProperties -Comment="NewsGator" -Browser="NewsGator" -isSyndicationReader=true -Crawler=true - -[MarsEdit*] -Parent=NewsGator -Browser="MarsEdit" - -[NetNewsWire*/*] -Parent=NewsGator -Browser="NetNewsWire" -Platform="MacOSX" - -[NewsFire/*] -Parent=NewsGator -Browser="NewsFire" - -[NewsGator FetchLinks extension/*] -Parent=NewsGator -Browser="NewsGator FetchLinks" - -[NewsGator/*] -Parent=NewsGator -Browser="NewsGator" - -[NewsGatorOnline/*] -Parent=NewsGator -Browser="NewsGatorOnline" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 10.0 - -[Chromium 10.0] -Parent=DefaultProperties -Comment="Chromium 10.0" -Browser="Chromium" -Version=10.0 -MajorVer=10 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/10.*Chrome/*Safari/*] -Parent=Chromium 10.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/10.*Chrome/*Safari/*] -Parent=Chromium 10.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 11.0 - -[Chromium 11.0] -Parent=DefaultProperties -Comment="Chromium 11.0" -Browser="Chromium" -Version=11.0 -MajorVer=11 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/11.*Chrome/*Safari/*] -Parent=Chromium 11.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/11.*Chrome/*Safari/*] -Parent=Chromium 11.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 12.0 - -[Chromium 12.0] -Parent=DefaultProperties -Comment="Chromium 12.0" -Browser="Chromium" -Version=12.0 -MajorVer=12 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/12.*Chrome/*Safari/*] -Parent=Chromium 12.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/12.*Chrome/*Safari/*] -Parent=Chromium 12.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 13.0 - -[Chromium 13.0] -Parent=DefaultProperties -Comment="Chromium 13.0" -Browser="Chromium" -Version=13.0 -MajorVer=13 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/13.*Chrome/*Safari/*] -Parent=Chromium 13.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/13.*Chrome/*Safari/*] -Parent=Chromium 13.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 14.0 - -[Chromium 14.0] -Parent=DefaultProperties -Comment="Chromium 14.0" -Browser="Chromium" -Version=14.0 -MajorVer=14 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/14.*Chrome/*Safari/*] -Parent=Chromium 14.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/14.*Chrome/*Safari/*] -Parent=Chromium 14.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 15.0 - -[Chromium 15.0] -Parent=DefaultProperties -Comment="Chromium 15.0" -Browser="Chromium" -Version=15.0 -MajorVer=15 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/15.*Chrome/*Safari/*] -Parent=Chromium 15.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/15.*Chrome/*Safari/*] -Parent=Chromium 15.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 16.0 - -[Chromium 16.0] -Parent=DefaultProperties -Comment="Chromium 16.0" -Browser="Chromium" -Version=16.0 -MajorVer=16 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/16.*Chrome/*Safari/*] -Parent=Chromium 16.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/16.*Chrome/*Safari/*] -Parent=Chromium 16.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 17.0 - -[Chromium 17.0] -Parent=DefaultProperties -Comment="Chromium 17.0" -Browser="Chromium" -Version=17.0 -MajorVer=17 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/17.*Chrome/*Safari/*] -Parent=Chromium 17.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/17.*Chrome/*Safari/*] -Parent=Chromium 17.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 18.0 - -[Chromium 18.0] -Parent=DefaultProperties -Comment="Chromium 18.0" -Browser="Chromium" -Version=18.0 -MajorVer=18 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/18.*Chrome/*Safari/*] -Parent=Chromium 18.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/18.*Chrome/*Safari/*] -Parent=Chromium 18.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 19.0 - -[Chromium 19.0] -Parent=DefaultProperties -Comment="Chromium 19.0" -Browser="Chromium" -Version=19.0 -MajorVer=19 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/19.*Chrome/*Safari/*] -Parent=Chromium 19.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/19.*Chrome/*Safari/*] -Parent=Chromium 19.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 20.0 - -[Chromium 20.0] -Parent=DefaultProperties -Comment="Chromium 20.0" -Browser="Chromium" -Version=20.0 -MajorVer=20 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/20.*Chrome/*Safari/*] -Parent=Chromium 20.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/20.*Chrome/*Safari/*] -Parent=Chromium 20.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 21.0 - -[Chromium 21.0] -Parent=DefaultProperties -Comment="Chromium 21.0" -Browser="Chromium" -Version=21.0 -MajorVer=21 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/21.*Chrome/*Safari/*] -Parent=Chromium 21.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/21.*Chrome/*Safari/*] -Parent=Chromium 21.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 22.0 - -[Chromium 22.0] -Parent=DefaultProperties -Comment="Chromium 22.0" -Browser="Chromium" -Version=22.0 -MajorVer=22 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/22.*Chrome/*Safari/*] -Parent=Chromium 22.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/22.*Chrome/*Safari/*] -Parent=Chromium 22.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 6.0 - -[Chromium 6.0] -Parent=DefaultProperties -Comment="Chromium 6.0" -Browser="Chromium" -Version=6.0 -MajorVer=6 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/6.*Chrome/*Safari/*] -Parent=Chromium 6.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/6.*Chrome/*Safari/*] -Parent=Chromium 6.0 -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 7.0 - -[Chromium 7.0] -Parent=DefaultProperties -Comment="Chromium 7.0" -Browser="Chromium" -Version=7.0 -MajorVer=7 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/7.*Chrome/*Safari/*] -Parent=Chromium 7.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/7.*Chrome/*Safari/*] -Parent=Chromium 7.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 8.0 - -[Chromium 8.0] -Parent=DefaultProperties -Comment="Chromium 8.0" -Browser="Chromium" -Version=8.0 -MajorVer=8 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/8.*Chrome/*Safari/*] -Parent=Chromium 8.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/8.*Chrome/*Safari/*] -Parent=Chromium 8.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 9.0 - -[Chromium 9.0] -Parent=DefaultProperties -Comment="Chromium 9.0" -Browser="Chromium" -Version=9.0 -MajorVer=9 -MinorVer=0 -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/9.*Chrome/*Safari/*] -Parent=Chromium 9.0 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/9.*Chrome/*Safari/*] -Parent=Chromium 9.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium Generic - -[Chromium Generic] -Parent=DefaultProperties -Comment="Chromium Generic" -Browser="Chromium" -Platform="Linux" -CssVersion=1 - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/*Chrome/*Safari/*] -Parent=Chromium Generic - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/*Chrome/*Safari/*] -Parent=Chromium Generic - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 10.0 - -[Chrome 10.0] -Parent=DefaultProperties -Comment="Chrome 10.0" -Browser="Chrome" -Version=10.0 -MajorVer=10 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Safari/*] -Parent=Chrome 10.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 11.0 - -[Chrome 11.0] -Parent=DefaultProperties -Comment="Chrome 11.0" -Browser="Chrome" -Version=11.0 -MajorVer=11 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Safari/*] -Parent=Chrome 11.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 12.0 - -[Chrome 12.0] -Parent=DefaultProperties -Comment="Chrome 12.0" -Browser="Chrome" -Version=12.0 -MajorVer=12 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*] -Parent=Chrome 12.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 13.0 - -[Chrome 13.0] -Parent=DefaultProperties -Comment="Chrome 13.0" -Browser="Chrome" -Version=13.0 -MajorVer=13 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Safari/*] -Parent=Chrome 13.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 14.0 - -[Chrome 14.0] -Parent=DefaultProperties -Comment="Chrome 14.0" -Browser="Chrome" -Version=14.0 -MajorVer=14 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Safari/*] -Parent=Chrome 14.0 -Platform="Win8" -Platform_Version=6.2 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 15.0 - -[Chrome 15.0] -Parent=DefaultProperties -Comment="Chrome 15.0" -Browser="Chrome" -Version=15.0 -MajorVer=15 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Safari/*] -Parent=Chrome 15.0 -Platform="Win8" -Platform_Version=6.2 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 16.0 - -[Chrome 16.0] -Parent=DefaultProperties -Comment="Chrome 16.0" -Browser="Chrome" -Version=16.0 -MajorVer=16 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Safari/*] -Parent=Chrome 16.0 -Platform="Win8" -Platform_Version=6.2 -Win32=false -Win64=true - -[Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*CrMo/16.0*Safari/*] -Parent=Chrome 16.0 -Platform="Android" -Platform_Version=4.0 -isMobileDevice=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 17.0 - -[Chrome 17.0] -Parent=DefaultProperties -Comment="Chrome 17.0" -Browser="Chrome" -Version=17.0 -MajorVer=17 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Safari/*] -Parent=Chrome 17.0 -Platform="Win8" -Platform_Version=6.2 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 18.0 - -[Chrome 18.0] -Parent=DefaultProperties -Comment="Chrome 18.0" -Browser="Chrome" -Version=18.0 -MajorVer=18 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Win8" -Platform_Version=6.2 -Win32=false -Win64=true - -[Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Android" -Platform_Version=1.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Android" -Platform_Version=1.1 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Android" -Platform_Version=1.5 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Android" -Platform_Version=1.6 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Android" -Platform_Version=2.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Android" -Platform_Version=2.1 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Android" -Platform_Version=2.2 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Android" -Platform_Version=2.3 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Android" -Platform_Version=4.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/18.*Safari/*] -Parent=Chrome 18.0 -Platform="Android" -Platform_Version=4.1 -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 19.0 - -[Chrome 19.0] -Parent=DefaultProperties -Comment="Chrome 19.0" -Browser="Chrome" -Version=19.0 -MajorVer=19 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Win8" -Platform_Version=6.2 -Win32=false -Win64=true - -[Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Android" -Platform_Version=1.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Android" -Platform_Version=1.1 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Android" -Platform_Version=1.5 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Android" -Platform_Version=1.6 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Android" -Platform_Version=2.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Android" -Platform_Version=2.1 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Android" -Platform_Version=2.2 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Android" -Platform_Version=2.3 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Android" -Platform_Version=4.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/19.*Safari/*] -Parent=Chrome 19.0 -Platform="Android" -Platform_Version=4.1 -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 20.0 - -[Chrome 20.0] -Parent=DefaultProperties -Comment="Chrome 20.0" -Browser="Chrome" -Version=20.0 -MajorVer=20 -MinorVer=0 -Beta=true -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Win8" -Platform_Version=6.2 -Win32=false -Win64=true - -[Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Android" -Platform_Version=1.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Android" -Platform_Version=1.1 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Android" -Platform_Version=1.5 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Android" -Platform_Version=1.6 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Android" -Platform_Version=2.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Android" -Platform_Version=2.1 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Android" -Platform_Version=2.2 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Android" -Platform_Version=2.3 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Android" -Platform_Version=4.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/20.*Safari/*] -Parent=Chrome 20.0 -Platform="Android" -Platform_Version=4.1 -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 21.0 - -[Chrome 21.0] -Parent=DefaultProperties -Comment="Chrome 21.0" -Browser="Chrome" -Version=21.0 -MajorVer=21 -MinorVer=0 -Alpha=true -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Win8" -Platform_Version=6.2 -Win32=false -Win64=true - -[Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Android" -Platform_Version=1.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Android" -Platform_Version=1.1 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Android" -Platform_Version=1.5 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Android" -Platform_Version=1.6 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Android" -Platform_Version=2.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Android" -Platform_Version=2.1 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Android" -Platform_Version=2.2 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Android" -Platform_Version=2.3 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Android" -Platform_Version=4.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/21.*Safari/*] -Parent=Chrome 21.0 -Platform="Android" -Platform_Version=4.1 -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 22.0 - -[Chrome 22.0] -Parent=DefaultProperties -Comment="Chrome 22.0" -Browser="Chrome" -Version=22.0 -MajorVer=22 -MinorVer=0 -Alpha=true -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Win8" -Platform_Version=6.2 -Win32=false -Win64=true - -[Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Android" -Platform_Version=1.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Android" -Platform_Version=1.1 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Android" -Platform_Version=1.5 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Android" -Platform_Version=1.6 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Android" -Platform_Version=2.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Android" -Platform_Version=2.1 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Android" -Platform_Version=2.2 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Android" -Platform_Version=2.3 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Android" -Platform_Version=4.0 -Win32=false -isMobileDevice=true - -[Mozilla/5.0 (Linux*Android 4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Chrome/22.*Safari/*] -Parent=Chrome 22.0 -Platform="Android" -Platform_Version=4.1 -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 6.0 - -[Chrome 6.0] -Parent=DefaultProperties -Comment="Chrome 6.0" -Browser="Chrome" -Version=6.0 -MajorVer=6 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Safari/*] -Parent=Chrome 6.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 7.0 - -[Chrome 7.0] -Parent=DefaultProperties -Comment="Chrome 7.0" -Browser="Chrome" -Version=7.0 -MajorVer=7 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Safari/*] -Parent=Chrome 7.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 8.0 - -[Chrome 8.0] -Parent=DefaultProperties -Comment="Chrome 8.0" -Browser="Chrome" -Version=8.0 -MajorVer=8 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Safari/*] -Parent=Chrome 8.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 9.0 - -[Chrome 9.0] -Parent=DefaultProperties -Comment="Chrome 9.0" -Browser="Chrome" -Version=9.0 -MajorVer=9 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Safari/*] -Parent=Chrome 9.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome Generic - -[Chrome Generic] -Parent=DefaultProperties -Comment="Chrome Generic" -Browser="Chrome" -CssVersion=1 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="MacOSX" - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="Linux" - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*] -Parent=Chrome Generic -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Code - -[Google Code] -Parent=DefaultProperties -Comment="Google Code" -Browser="Google Code" - -[Mozilla/5.0 (Windows; U; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.6*] -Parent=Google Code -Browser="Arora" -Version=0.6 -MajorVer=0 -MinorVer=6 -Platform="Win32" - -[Mozilla/5.0 (Windows; U; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8.*] -Parent=Google Code -Browser="Arora" -Version=0.8.0 -MajorVer=0 -MinorVer=8.0 -Platform="Win32" - -[Mozilla/5.0 (X11; U; Linux; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.6*] -Parent=Google Code -Browser="Arora" -Version=0.6 -MajorVer=0 -MinorVer=6 -Platform="Linux" - -[Mozilla/5.0 (X11; U; Linux; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8.*] -Parent=Google Code -Browser="Arora" -Version=0.8.0 -MajorVer=0 -MinorVer=8.0 -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 10.0 - -[Iron 10.0] -Parent=DefaultProperties -Comment="Iron 10.0" -Browser="Iron" -Version=10.0 -MajorVer=10 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*] -Parent=Iron 10.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*] -Parent=Iron 10.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*] -Parent=Iron 10.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*] -Parent=Iron 10.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*] -Parent=Iron 10.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*] -Parent=Iron 10.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/10.* Safari/*] -Parent=Iron 10.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 11.0 - -[Iron 11.0] -Parent=DefaultProperties -Comment="Iron 11.0" -Browser="Iron" -Version=11.0 -MajorVer=11 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*] -Parent=Iron 11.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*] -Parent=Iron 11.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*] -Parent=Iron 11.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*] -Parent=Iron 11.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*] -Parent=Iron 11.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*] -Parent=Iron 11.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/11.* Safari/*] -Parent=Iron 11.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 12.0 - -[Iron 12.0] -Parent=DefaultProperties -Comment="Iron 12.0" -Browser="Iron" -Version=12.0 -MajorVer=12 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -VBScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*] -Parent=Iron 12.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*] -Parent=Iron 12.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*] -Parent=Iron 12.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*] -Parent=Iron 12.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*] -Parent=Iron 12.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*] -Parent=Iron 12.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/12.* Safari/*] -Parent=Iron 12.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 13.0 - -[Iron 13.0] -Parent=DefaultProperties -Comment="Iron 13.0" -Browser="Iron" -Version=13.0 -MajorVer=13 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -VBScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*] -Parent=Iron 13.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*] -Parent=Iron 13.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*] -Parent=Iron 13.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*] -Parent=Iron 13.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*] -Parent=Iron 13.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*] -Parent=Iron 13.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/13.* Safari/*] -Parent=Iron 13.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 14.0 - -[Iron 14.0] -Parent=DefaultProperties -Comment="Iron 14.0" -Browser="Iron" -Version=14.0 -MajorVer=14 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -VBScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*] -Parent=Iron 14.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*] -Parent=Iron 14.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*] -Parent=Iron 14.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*] -Parent=Iron 14.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*] -Parent=Iron 14.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*] -Parent=Iron 14.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/14.* Safari/*] -Parent=Iron 14.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 15.0 - -[Iron 15.0] -Parent=DefaultProperties -Comment="Iron 15.0" -Browser="Iron" -Version=15.0 -MajorVer=15 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -VBScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*] -Parent=Iron 15.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*] -Parent=Iron 15.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*] -Parent=Iron 15.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*] -Parent=Iron 15.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*] -Parent=Iron 15.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*] -Parent=Iron 15.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/15.* Safari/*] -Parent=Iron 15.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 16.0 - -[Iron 16.0] -Parent=DefaultProperties -Comment="Iron 16.0" -Browser="Iron" -Version=16.0 -MajorVer=16 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*] -Parent=Iron 16.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*] -Parent=Iron 16.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*] -Parent=Iron 16.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*] -Parent=Iron 16.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*] -Parent=Iron 16.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*] -Parent=Iron 16.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/16.* Safari/*] -Parent=Iron 16.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 17.0 - -[Iron 17.0] -Parent=DefaultProperties -Comment="Iron 17.0" -Browser="Iron" -Version=17.0 -MajorVer=17 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*] -Parent=Iron 17.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*] -Parent=Iron 17.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*] -Parent=Iron 17.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*] -Parent=Iron 17.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*] -Parent=Iron 17.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*] -Parent=Iron 17.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/17.* Safari/*] -Parent=Iron 17.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 18.0 - -[Iron 18.0] -Parent=DefaultProperties -Comment="Iron 18.0" -Browser="Iron" -Version=18.0 -MajorVer=18 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*] -Parent=Iron 18.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*] -Parent=Iron 18.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*] -Parent=Iron 18.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*] -Parent=Iron 18.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*] -Parent=Iron 18.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*] -Parent=Iron 18.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/18.* Safari/*] -Parent=Iron 18.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 19.0 - -[Iron 19.0] -Parent=DefaultProperties -Comment="Iron 19.0" -Browser="Iron" -Version=19.0 -MajorVer=19 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*] -Parent=Iron 19.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*] -Parent=Iron 19.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*] -Parent=Iron 19.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*] -Parent=Iron 19.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*] -Parent=Iron 19.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*] -Parent=Iron 19.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/19.* Safari/*] -Parent=Iron 19.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 6.0 - -[Iron 6.0] -Parent=DefaultProperties -Comment="Iron 6.0" -Browser="Iron" -Version=6.0 -MajorVer=6 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*] -Parent=Iron 6.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*] -Parent=Iron 6.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*] -Parent=Iron 6.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*] -Parent=Iron 6.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*] -Parent=Iron 6.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*] -Parent=Iron 6.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/6.* Safari/*] -Parent=Iron 6.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 7.0 - -[Iron 7.0] -Parent=DefaultProperties -Comment="Iron 7.0" -Browser="Iron" -Version=7.0 -MajorVer=7 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*] -Parent=Iron 7.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*] -Parent=Iron 7.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*] -Parent=Iron 7.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*] -Parent=Iron 7.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*] -Parent=Iron 7.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*] -Parent=Iron 7.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/7.* Safari/*] -Parent=Iron 7.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 8.0 - -[Iron 8.0] -Parent=DefaultProperties -Comment="Iron 8.0" -Browser="Iron" -Version=8.0 -MajorVer=8 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*] -Parent=Iron 8.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*] -Parent=Iron 8.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*] -Parent=Iron 8.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*] -Parent=Iron 8.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*] -Parent=Iron 8.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*] -Parent=Iron 8.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/8.* Safari/*] -Parent=Iron 8.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 9.0 - -[Iron 9.0] -Parent=DefaultProperties -Comment="Iron 9.0" -Browser="Iron" -Version=9.0 -MajorVer=9 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*] -Parent=Iron 9.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*] -Parent=Iron 9.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*] -Parent=Iron 9.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*] -Parent=Iron 9.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*] -Parent=Iron 9.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*] -Parent=Iron 9.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/9.* Safari/*] -Parent=Iron 9.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron Generic - -[Iron Generic] -Parent=DefaultProperties -Comment="Iron Generic" -Browser="Iron" -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=1 - -[Mozilla/5.0 (*Intel Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*] -Parent=Iron Generic -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*] -Parent=Iron Generic -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*] -Parent=Iron Generic -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*] -Parent=Iron Generic -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*] -Parent=Iron Generic -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*] -Parent=Iron Generic -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Iron/* Safari/*] -Parent=Iron Generic -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt - -[Rockmelt] -Parent=DefaultProperties -Comment="RockMelt" -Browser="RockMelt" -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10*; *) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*] -Parent=Rockmelt -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*] -Parent=Rockmelt -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*] -Parent=Rockmelt -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*] -Parent=Rockmelt -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.10 - -[Arora 0.10] -Parent=DefaultProperties -Comment="Arora 0.10" -Browser="Arora" -Version=0.10 -MajorVer=0 -MinorVer=10 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*] -Parent=Arora 0.10 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*] -Parent=Arora 0.10 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*] -Parent=Arora 0.10 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*] -Parent=Arora 0.10 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*] -Parent=Arora 0.10 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*] -Parent=Arora 0.10 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*] -Parent=Arora 0.10 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.10*] -Parent=Arora 0.10 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.11 - -[Arora 0.11] -Parent=DefaultProperties -Comment="Arora 0.11" -Browser="Arora" -Version=0.11 -MajorVer=0 -MinorVer=11 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*] -Parent=Arora 0.11 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*] -Parent=Arora 0.11 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*] -Parent=Arora 0.11 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*] -Parent=Arora 0.11 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*] -Parent=Arora 0.11 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*] -Parent=Arora 0.11 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*] -Parent=Arora 0.11 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.11*] -Parent=Arora 0.11 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.8 - -[Arora 0.8] -Parent=DefaultProperties -Comment="Arora 0.8" -Browser="Arora" -Version=0.8 -MajorVer=0 -MinorVer=8 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*] -Parent=Arora 0.8 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*] -Parent=Arora 0.8 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*] -Parent=Arora 0.8 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*] -Parent=Arora 0.8 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*] -Parent=Arora 0.8 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*] -Parent=Arora 0.8 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*] -Parent=Arora 0.8 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.8*] -Parent=Arora 0.8 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.9 - -[Arora 0.9] -Parent=DefaultProperties -Comment="Arora 0.9" -Browser="Arora" -Version=0.9 -MajorVer=0 -MinorVer=9 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*] -Parent=Arora 0.9 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*] -Parent=Arora 0.9 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*] -Parent=Arora 0.9 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*] -Parent=Arora 0.9 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*] -Parent=Arora 0.9 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*] -Parent=Arora 0.9 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*] -Parent=Arora 0.9 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.9*] -Parent=Arora 0.9 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora Generic - -[Arora Generic] -Parent=DefaultProperties -Comment="Arora Generic" -Browser="Arora" -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=3 - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*] -Parent=Arora Generic -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*] -Parent=Arora Generic -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*] -Parent=Arora Generic -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*] -Parent=Arora Generic -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*] -Parent=Arora Generic -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*] -Parent=Arora Generic -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*] -Parent=Arora Generic -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Arora/0.?*] -Parent=Arora Generic -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Media Players - -[Media Players] -Parent=DefaultProperties -Comment="Media Players" -Browser="Media Players" -isMobileDevice=true - -[Microsoft NetShow(TM) Player with RealVideo(R)] -Parent=Media Players -Browser="Microsoft NetShow" - -[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; *) AppleWebKit/* RealPlayer] -Parent=Media Players -Browser="RealPlayer" -Platform="MacOSX" - -[MPlayer 0.9*] -Parent=Media Players -Browser="MPlayer" -Version=0.9 -MajorVer=0 -MinorVer=9 - -[MPlayer 1.*] -Parent=Media Players -Browser="MPlayer" -Version=1.0 -MajorVer=1 -MinorVer=0 - -[MPlayer HEAD CVS] -Parent=Media Players -Browser="MPlayer" - -[RealPlayer*] -Parent=Media Players -Browser="RealPlayer" - -[RMA/*] -Parent=Media Players -Browser="RMA" - -[VLC media player*] -Parent=Media Players -Browser="VLC" - -[vobsub] -Parent=Media Players -Browser="vobsub" - -[WinampMPEG/*] -Parent=Media Players -Browser="WinAmp" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Zune - -[Microsoft Zune] -Parent=DefaultProperties -Comment="Microsoft Zune" -Browser="" -Win32=true -isMobileDevice=true - -[Mozilla/4.0 (compatible; MSIE ?.0; Microsoft ZuneHD 4.*)] -Parent=Microsoft Zune -Version=4.0 -MajorVer=4 -MinorVer=0 - -[Mozilla/4.0 (compatible; ZuneHD 4.*)] -Parent=Microsoft Zune -Browser="ZuneHD" -Version=4 -MajorVer=4 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nintendo - -[Nintendo Wii] -Parent=DefaultProperties -Comment="Nintendo" -Browser="" -isMobileDevice=true - -[Opera/* (Nintendo DSi; Opera/*; *; *)] -Parent=Nintendo Wii -Browser="DSi" - -[Opera/* (Nintendo Wii; U; *)] -Parent=Nintendo Wii -Browser="Wii" - -[VLC Media Player] -Parent=DefaultProperties -Browser="VLC Media Player" - -[vlc/*] -Parent=VLC Media Player - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Media Player - -[Windows Media Player] -Parent=DefaultProperties -Comment="Windows Media Player" -Browser="Windows Media Player" -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true - -[NSPlayer/10.*] -Parent=Windows Media Player -Version=10.0 -MajorVer=10 -MinorVer=0 - -[NSPlayer/11.*] -Parent=Windows Media Player -Version=11.0 -MajorVer=11 -MinorVer=0 - -[NSPlayer/4.*] -Parent=Windows Media Player -Version=4.0 -MajorVer=4 -MinorVer=0 - -[NSPlayer/7.*] -Parent=Windows Media Player -Version=7.0 -MajorVer=7 -MinorVer=0 - -[NSPlayer/8.*] -Parent=Windows Media Player -Version=8.0 -MajorVer=8 -MinorVer=0 - -[NSPlayer/9.*] -Parent=Windows Media Player -Version=9.0 -MajorVer=9 -MinorVer=0 - -[Windows-Media-Player/10.*] -Parent=Windows Media Player -Version=10.0 -MajorVer=10 -MinorVer=0 - -[Windows-Media-Player/11.*] -Parent=Windows Media Player -Version=11.0 -MajorVer=11 -MinorVer=0 - -[Windows-Media-Player/7.*] -Parent=Windows Media Player -Version=7.0 -MajorVer=7 -MinorVer=0 - -[Windows-Media-Player/8.*] -Parent=Windows Media Player -Version=8.0 -MajorVer=8 -MinorVer=0 - -[Windows-Media-Player/9.*] -Parent=Windows Media Player -Version=9.0 -MajorVer=9 -MinorVer=0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 10.0 - -[QuickTime 10.0] -Parent=DefaultProperties -Comment="QuickTime 10.0" -Browser="QuickTime" -Version=10.0 -MajorVer=10 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true - -[QuickTime*(qtver=10.*os=Mac 10.*)] -Parent=QuickTime 10.0 -Platform="MacOSX" -Win32=false - -[QuickTime*(qtver=10.*os=Mac 9.*)] -Parent=QuickTime 10.0 -Platform="MacPPC" -Win32=false - -[QuickTime*(qtver=10.*os=Windows 95*)] -Parent=QuickTime 10.0 -Platform="Win95" -Platform_Version=95 - -[QuickTime*(qtver=10.*os=Windows 98*)] -Parent=QuickTime 10.0 -Platform="Win98" -Platform_Version=98 - -[QuickTime*(qtver=10.*os=Windows Me*)] -Parent=QuickTime 10.0 -Platform="WinME" - -[QuickTime*(qtver=10.*os=Windows NT 4.0*)] -Parent=QuickTime 10.0 -Platform="WinNT" -Platform_Version=4.0 - -[QuickTime*(qtver=10.*os=Windows NT 5.0*)] -Parent=QuickTime 10.0 -Platform="Win2000" -Platform_Version=5.0 - -[QuickTime*(qtver=10.*os=Windows NT 5.1*)] -Parent=QuickTime 10.0 -Platform="WinXP" -Platform_Version=5.1 - -[QuickTime*(qtver=10.*os=Windows NT 5.2*)] -Parent=QuickTime 10.0 -Platform="WinXP" -Platform_Version=5.2 - -[QuickTime*(qtver=10.*os=Windows NT 6.0*)] -Parent=QuickTime 10.0 -Platform="WinVista" -Platform_Version=6.0 - -[QuickTime*(qtver=10.*os=Windows NT 6.1*)] -Parent=QuickTime 10.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 5.0 - -[QuickTime 5.0] -Parent=DefaultProperties -Comment="QuickTime 5.0" -Browser="QuickTime" -Version=5.0 -MajorVer=5 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true - -[QuickTime*(qtver=5.*os=Mac 10.*)] -Parent=QuickTime 5.0 -Platform="MacOSX" -Win32=false - -[QuickTime*(qtver=5.*os=Mac 9.*)] -Parent=QuickTime 5.0 -Platform="MacPPC" -Win32=false - -[QuickTime*(qtver=5.*os=Windows 95*)] -Parent=QuickTime 5.0 -Platform="Win95" -Platform_Version=95 - -[QuickTime*(qtver=5.*os=Windows 98*)] -Parent=QuickTime 5.0 -Platform="Win98" -Platform_Version=98 - -[QuickTime*(qtver=5.*os=Windows Me*)] -Parent=QuickTime 5.0 -Platform="WinME" - -[QuickTime*(qtver=5.*os=Windows NT 4.0*)] -Parent=QuickTime 5.0 -Platform="WinNT" -Platform_Version=4.0 - -[QuickTime*(qtver=5.*os=Windows NT 5.0*)] -Parent=QuickTime 5.0 -Platform="Win2000" -Platform_Version=5.0 - -[QuickTime*(qtver=5.*os=Windows NT 5.1*)] -Parent=QuickTime 5.0 -Platform="WinXP" -Platform_Version=5.1 - -[QuickTime*(qtver=5.*os=Windows NT 5.2*)] -Parent=QuickTime 5.0 -Platform="WinXP" -Platform_Version=5.2 - -[QuickTime*(qtver=5.*os=Windows NT 6.0*)] -Parent=QuickTime 5.0 -Platform="WinVista" -Platform_Version=6.0 - -[QuickTime*(qtver=5.*os=Windows NT 6.1*)] -Parent=QuickTime 5.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 6.0 - -[QuickTime 6.0] -Parent=DefaultProperties -Comment="QuickTime 6.0" -Browser="QuickTime" -Version=6.0 -MajorVer=6 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true - -[QuickTime*(qtver=6.*os=Mac 10.*)] -Parent=QuickTime 6.0 -Platform="MacOSX" -Win32=false - -[QuickTime*(qtver=6.*os=Mac 9.*)] -Parent=QuickTime 6.0 -Platform="MacPPC" -Win32=false - -[QuickTime*(qtver=6.*os=Windows 95*)] -Parent=QuickTime 6.0 -Platform="Win95" -Platform_Version=95 - -[QuickTime*(qtver=6.*os=Windows 98*)] -Parent=QuickTime 6.0 -Platform="Win98" -Platform_Version=98 - -[QuickTime*(qtver=6.*os=Windows Me*)] -Parent=QuickTime 6.0 -Platform="WinME" - -[QuickTime*(qtver=6.*os=Windows NT 4.0*)] -Parent=QuickTime 6.0 -Platform="WinNT" -Platform_Version=4.0 - -[QuickTime*(qtver=6.*os=Windows NT 5.0*)] -Parent=QuickTime 6.0 -Platform="Win2000" -Platform_Version=5.0 - -[QuickTime*(qtver=6.*os=Windows NT 5.1*)] -Parent=QuickTime 6.0 -Platform="WinXP" -Platform_Version=5.1 - -[QuickTime*(qtver=6.*os=Windows NT 5.2*)] -Parent=QuickTime 6.0 -Platform="WinXP" -Platform_Version=5.2 - -[QuickTime*(qtver=6.*os=Windows NT 6.0*)] -Parent=QuickTime 6.0 -Platform="WinVista" -Platform_Version=6.0 - -[QuickTime*(qtver=6.*os=Windows NT 6.1*)] -Parent=QuickTime 6.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.0 - -[QuickTime 7.0] -Parent=DefaultProperties -Comment="QuickTime 7.0" -Browser="QuickTime" -Version=7.0 -MajorVer=7 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true - -[QuickTime*(qtver=7.*;os=Windows 98*)] -Parent=QuickTime 7.0 -Platform="Win98" -Platform_Version=98 - -[QuickTime*(qtver=7.*;os=Windows Me*)] -Parent=QuickTime 7.0 -Platform="WinME" - -[QuickTime*(qtver=7.*;os=Windows NT 4.0*)] -Parent=QuickTime 7.0 -Platform="WinNT" -Platform_Version=4.0 - -[QuickTime*(qtver=7.*;os=Windows NT 5.0*)] -Parent=QuickTime 7.0 -Platform="Win2000" -Platform_Version=5.0 - -[QuickTime*(qtver=7.*;os=Windows NT 5.1*)] -Parent=QuickTime 7.0 -Platform="WinXP" -Platform_Version=5.1 - -[QuickTime*(qtver=7.*;os=Windows NT 5.2*)] -Parent=QuickTime 7.0 -Platform="WinXP" -Platform_Version=5.2 - -[QuickTime*(qtver=7.*;os=Windows NT 6.0*)] -Parent=QuickTime 7.0 -Platform="WinVista" -Platform_Version=6.0 - -[QuickTime*(qtver=7.*;os=Windows NT 6.1*)] -Parent=QuickTime 7.0 -Platform="Win7" -Platform_Version=6.1 - -[QuickTime*(qtver=7.*os=Mac 10.*)] -Parent=QuickTime 7.0 -Platform="MacOSX" -Win32=false - -[QuickTime*(qtver=7.*os=Mac 9.*)] -Parent=QuickTime 7.0 -Platform="MacPPC" -Win32=false - -[QuickTime*(qtver=7.*os=Windows 95*)] -Parent=QuickTime 7.0 -Platform="Win95" -Platform_Version=95 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.6 - -[QuickTime 7.6] -Parent=DefaultProperties -Comment="QuickTime 7.6" -Browser="QuickTime" -Version=7.6 -MajorVer=7 -MinorVer=6 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true - -[QuickTime*(qtver=7.6*;os=Mac 9.*)] -Parent=QuickTime 7.6 -Platform="MacPPC" -Win32=false - -[QuickTime*(qtver=7.6*;os=Windows 95*)] -Parent=QuickTime 7.6 -Platform="Win95" -Platform_Version=95 - -[QuickTime*(qtver=7.6*;os=Windows 98*)] -Parent=QuickTime 7.6 -Platform="Win98" -Platform_Version=98 - -[QuickTime*(qtver=7.6*;os=Windows Me*)] -Parent=QuickTime 7.6 -Platform="WinME" - -[QuickTime*(qtver=7.6*;os=Windows NT 4.0*)] -Parent=QuickTime 7.6 -Platform="WinNT" -Platform_Version=4.0 - -[QuickTime*(qtver=7.6*;os=Windows NT 5.0*)] -Parent=QuickTime 7.6 -Platform="Win2000" -Platform_Version=5.0 - -[QuickTime*(qtver=7.6*;os=Windows NT 5.1*)] -Parent=QuickTime 7.6 -Platform="WinXP" -Platform_Version=5.1 - -[QuickTime*(qtver=7.6*;os=Windows NT 5.2*)] -Parent=QuickTime 7.6 -Platform="WinXP" -Platform_Version=5.2 - -[QuickTime*(qtver=7.6*;os=Windows NT 6.0*)] -Parent=QuickTime 7.6 -Platform="WinVista" -Platform_Version=6.0 - -[QuickTime*(qtver=7.6*;os=Windows NT 6.1*)] -Parent=QuickTime 7.6 -Platform="Win7" -Platform_Version=6.1 - -[QuickTime*(qtver=7.6*os=Mac 10.*)] -Parent=QuickTime 7.6 -Platform="MacOSX" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lotus Notes 5.0 - -[Lotus Notes 5.0] -Parent=DefaultProperties -Comment="Lotus Notes 5.0" -Browser="Lotus Notes" -Version=5.0 -MajorVer=5 -MinorVer=0 - -[Mozilla/4.0 (compatible; Lotus-Notes/5.0; Macintosh PPC)] -Parent=Lotus Notes 5.0 -Platform="MacOSX" - -[Mozilla/4.0 (compatible; Lotus-Notes/5.0; Windows-NT)] -Parent=Lotus Notes 5.0 -Platform="WinNT" -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lotus Notes 6.0 - -[Lotus Notes 6.0] -Parent=DefaultProperties -Comment="Lotus Notes 6.0" -Browser="Lotus Notes" -Version=6.0 -MajorVer=6 -MinorVer=0 - -[Mozilla/4.0 (compatible; Lotus-Notes/6.0; Windows-NT)] -Parent=Lotus Notes 6.0 -Platform="WinNT" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Outlook 2007 - -[Microsoft Outlook 2007] -Parent=DefaultProperties -Comment="Microsoft Outlook 2007" -Browser="Microsoft Outlook" -Version=2007 -MajorVer=2007 -Frames=true -Tables=true -CssVersion=2 - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; *MSOffice 12)] -Parent=Microsoft Outlook 2007 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0; *MSOffice 12)] -Parent=Microsoft Outlook 2007 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; *MSOffice 12)] -Parent=Microsoft Outlook 2007 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; *MSOffice 12)] -Parent=Microsoft Outlook 2007 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; *MSOffice 12)] -Parent=Microsoft Outlook 2007 -Platform="WinNT" -Platform_Version=6.1 - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; *MSOffice 12)] -Parent=Microsoft Outlook 2007 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; *MSOffice 12)] -Parent=Microsoft Outlook 2007 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Outlook 2010 - -[Microsoft Outlook 2010] -Parent=DefaultProperties -Comment="Microsoft Outlook 2010" -Browser="Microsoft Outlook" -Version=2010 -MajorVer=2010 -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -CssVersion=2 - -[Microsoft Office/14.0 (Windows NT 5.1; Microsoft Outlook 14.*; *MSOffice 14)] -Parent=Microsoft Outlook 2010 -Platform="WinXP" -Platform_Version=5.1 - -[Microsoft Office/14.0 (Windows NT 6.1; Microsoft Outlook 14.*; *MSOffice 14)] -Parent=Microsoft Outlook 2010 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; *MSOffice 14)] -Parent=Microsoft Outlook 2010 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; *MSOffice 14)] -Parent=Microsoft Outlook 2010 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; *MSOffice 14)] -Parent=Microsoft Outlook 2010 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/4.0; *MSOffice 14)] -Parent=Microsoft Outlook 2010 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Live Mail - -[Windows Live Mail] -Parent=DefaultProperties -Comment="Windows Live Mail" -Browser="Windows Live Mail" -Version=7.0 -MajorVer=7 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -CssVersion=2 - -[Outlook-Express/7.0 (MSIE 7.0; Windows NT 5.1; Trident/4.0; *)] -Parent=Windows Live Mail -Platform="WinXP" -Platform_Version=5.1 - -[Outlook-Express/7.0 (MSIE 7.0; Windows NT 6.1; Trident/4.0; *)] -Parent=Windows Live Mail -Platform="Win7" -Platform_Version=6.1 - -[Outlook-Express/7.0 (MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; *)] -Parent=Windows Live Mail -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Handspring Blazer - -[Blazer] -Parent=DefaultProperties -Comment="Handspring Blazer" -Browser="Handspring Blazer" -Platform="Palm" -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true - -[Mozilla/4.0 (compatible; MSIE 6.0; Windows 95; PalmSource; Blazer 3.0) 16;160x160] -Parent=Blazer -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform_Version=95 - -[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.0) 16;320x448] -Parent=Blazer -Version=4.0 -MajorVer=4 -MinorVer=0 -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.1) 16;320x320] -Parent=Blazer -Version=4.1 -MajorVer=4 -MinorVer=1 -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.2) 16;320x320] -Parent=Blazer -Version=4.2 -MajorVer=4 -MinorVer=2 -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.4) 16;320x320] -Parent=Blazer -Version=4.4 -MajorVer=4 -MinorVer=4 -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.5) 16;320x320] -Parent=Blazer -Version=4.5 -MajorVer=4 -MinorVer=5 -Platform_Version=98 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Brew - -[Brew] -Parent=DefaultProperties -Comment="Brew" -Browser="Brew" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true - -[*-*/1.0 BREW/2.0* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1] -Parent=Brew -Version=2.0 -MajorVer=2 -MinorVer=0 -CssVersion=1 - -[*-*/1.0 BREW/2.1* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1] -Parent=Brew -Version=2.1 -MajorVer=2 -MinorVer=1 -CssVersion=1 - -[*-*/1.0 BREW/3.0* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1] -Parent=Brew -Version=3.0 -MajorVer=3 -MinorVer=0 -CssVersion=1 - -[*-*/1.0 BREW/3.1* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1] -Parent=Brew -Version=3.1 -MajorVer=3 -MinorVer=1 -CssVersion=1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DoCoMo - -[DoCoMo] -Parent=DefaultProperties -Comment="DoCoMo" -Browser="DoCoMo" -Platform="DoCoMo" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -Crawler=true -CssVersion=1 - -[DoCoMo/1.0*] -Parent=DoCoMo -Version=1.0 -MajorVer=1 -MinorVer=0 - -[DoCoMo/2.0*] -Parent=DoCoMo -Version=2.0 -MajorVer=2 -MinorVer=0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile - -[IEMobile] -Parent=DefaultProperties -Comment="IEMobile" -Browser="IEMobile" -Platform="WinCE" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=2 - -[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.*)*] -Parent=IEMobile -Version=6.0 -MajorVer=6 -MinorVer=0 - -[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.*)*] -Parent=IEMobile -Version=7.0 -MajorVer=7 -MinorVer=0 - -[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 8.*)*] -Parent=IEMobile -Version=8.0 -MajorVer=8 -MinorVer=0 - -[Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Windows Phone 6.5 HTC_HD2/1.0)] -Parent=IEMobile -Version=6.0 -MajorVer=6 -MinorVer=0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/4.0 (compatible; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0*)*] -Parent=IEMobile -Version=7.0 -MajorVer=7 -MinorVer=0 -Platform="WinPhone7" - -[Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0*)*] -Parent=IEMobile -Version=9.0 -MajorVer=9 -MinorVer=0 -Platform="WinPhone7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; KDDI - -[KDDI] -Parent=DefaultProperties -Comment="KDDI" -Browser="KDDI" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=1 - -[KDDI-* UP.Browser/* (GUI) MMP/*] -Parent=KDDI - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Kindle - -[Kindle] -Parent=DefaultProperties -Comment="Kindle" -Browser="Kindle" -Platform="Android" -Frames=true -IFrames=true -Tables=true -Cookies=true -isMobileDevice=true -CssVersion=2 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Kindle Fire - -[Mozilla/5.0 (Linux; U; Android 2.3*Kindle Fire*) AppleWebKit/533.1 (*KHTML, like Gecko*) Version/4.0 Mobile Safari/533.1] -Parent=Kindle -Comment="Kindle Fire" -Browser="Kindle Fire" -Version=4.0 -MajorVer=4 -MinorVer=0 -Platform_Version=2.3 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maemo Browser - -[Maemo] -Parent=DefaultProperties -Comment="Maemo Browser" -Browser="Maemo" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=2 - -[Mozilla/5.0 (X11; U; Linux*; *; rv:1.9.*) Gecko/* Firefox/* Maemo Browser 1.7.*] -Parent=Maemo -Version=1.7 -MajorVer=1 -MinorVer=7 -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Motorola Internet Browser - -[Motorola Internet Browser] -Parent=DefaultProperties -Comment="Motorola Internet Browser" -Browser="Motorola Internet Browser" -Frames=true -IFrames=true -Tables=true -Cookies=true -isMobileDevice=true - -[MOT-*/*] -Parent=Motorola Internet Browser - -[MOT-1*/* UP.Browser/*] -Parent=Motorola Internet Browser - -[MOT-8700_/* UP.Browser/*] -Parent=Motorola Internet Browser - -[MOT-A-0A/* UP.Browser/*] -Parent=Motorola Internet Browser - -[MOT-A-2B/* UP.Browser/*] -Parent=Motorola Internet Browser - -[MOT-A-88/* UP.Browser/*] -Parent=Motorola Internet Browser - -[MOT-C???/* MIB/*] -Parent=Motorola Internet Browser - -[MOT-GATW_/* UP.Browser/*] -Parent=Motorola Internet Browser - -[MOT-L6/* MIB/*] -Parent=Motorola Internet Browser - -[MOT-L7/* MIB/*] -Parent=Motorola Internet Browser - -[MOT-M*/* UP.Browser/*] -Parent=Motorola Internet Browser - -[MOT-MP*/* Mozilla/* (compatible; MSIE *; Windows CE; *)] -Parent=Motorola Internet Browser -Win32=true - -[MOT-MP*/* Mozilla/4.0 (compatible; MSIE *; Windows CE; *)] -Parent=Motorola Internet Browser -Win32=true - -[MOT-SAP4_/* UP.Browser/*] -Parent=Motorola Internet Browser - -[MOT-T*/*] -Parent=Motorola Internet Browser - -[MOT-T7*/* MIB/*] -Parent=Motorola Internet Browser - -[MOT-T721*] -Parent=Motorola Internet Browser - -[MOT-TA02/* MIB/*] -Parent=Motorola Internet Browser - -[MOT-V*/*] -Parent=Motorola Internet Browser - -[MOT-V*/* MIB/*] -Parent=Motorola Internet Browser - -[MOT-V*/* UP.Browser/*] -Parent=Motorola Internet Browser - -[MOT-V3/* MIB/*] -Parent=Motorola Internet Browser - -[MOT-V4*/* MIB/*] -Parent=Motorola Internet Browser - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia - -[Nokia] -Parent=DefaultProperties -Comment="Nokia" -Browser="Nokia" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true - -[*Nokia*/*] -Parent=Nokia - -[Mozilla/* (SymbianOS/*; ?; *) AppleWebKit/* (KHTML, like Gecko) Safari/*] -Parent=Nokia -Platform="SymbianOS" - -[Mozilla/5.0 (SymbianOS/9.4; Series60/* NokiaC6-00/*; Profile/MIDP-* Configuration/CLDC-*) AppleWebKit/525 (KHTML, like Gecko) BrowserNG/7.2.*] -Parent=Nokia -Browser="BrowserNG" -Version=7.2 -MajorVer=7 -MinorVer=2 -Platform="SymbianOS" -Platform_Version=9.4 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Openwave Mobile Browser - -[Openwave Mobile Browser] -Parent=DefaultProperties -Comment="Openwave Mobile Browser" -Browser="Openwave Mobile Browser" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true - -[*UP.Browser/*] -Parent=Openwave Mobile Browser - -[*UP.Link/*] -Parent=Openwave Mobile Browser - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Palm Web - -[Palm Web] -Parent=DefaultProperties -Comment="Palm Web" -Browser="Palm Web" -Platform="webOS" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true - -[Mozilla/5.0 (*webOS*) AppleWebKit/* (KHTML, like Gecko) *Version/1.* *Safari/* *Pixi/1.*] -Parent=Palm Web -Version=1.0 -MajorVer=1 -MinorVer=0 -CssVersion=2 - -[Mozilla/5.0 (*webOS*) AppleWebKit/* (KHTML, like Gecko) *Version/1.* *Safari/* *Pixi/2.*] -Parent=Palm Web -Version=2.0 -MajorVer=2 -MinorVer=0 -CssVersion=2 - -[Mozilla/5.0 (*webOS*) AppleWebKit/* (KHTML, like Gecko) *Version/1.* *Safari/* *Pre/2.*] -Parent=Palm Web -Version=2.0 -MajorVer=2 -MinorVer=0 -CssVersion=2 - -[Mozilla/5.0 (*webOS*) AppleWebKit/* (KHTML, like Gecko) *Version/1.* Safari/* *Pre/1.*] -Parent=Palm Web -Version=1.0 -MajorVer=1 -MinorVer=0 -CssVersion=2 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Playstation - -[Playstation] -Parent=DefaultProperties -Comment="Playstation" -Browser="Playstation" -Platform="WAP" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true - -[Mozilla/* (PLAYSTATION*)] -Parent=Playstation -Browser="Sony PS3" -Frames=false - -[Mozilla/* (PSP (PlayStation Portable)*)] -Parent=Playstation -Browser="Sony PSP" - -[Sony PS2 (Linux)] -Parent=Playstation -Browser="Sony PS2" -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Pocket PC - -[Pocket PC] -Parent=DefaultProperties -Comment="Pocket PC" -Browser="Pocket PC" -Platform="WinCE" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=1 - -[*(compatible; MSIE *.*; Windows CE; PPC; *)] -Parent=Pocket PC - -[HTC-*/* Mozilla/* (compatible; MSIE *.*; Windows CE*)*] -Parent=Pocket PC - -[Mozilla/* (compatible; MSPIE *.*; *Windows CE*)*] -Parent=Pocket PC - -[T-Mobile* Mozilla/* (compatible; MSIE *.*; Windows CE; *)] -Parent=Pocket PC - -[Vodafone* Mozilla/* (compatible; MSIE *.*; Windows CE; *)*] -Parent=Pocket PC - -[Windows CE (Pocket PC) - Version *.*] -Parent=Pocket PC - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Polaris - -[Polaris] -Parent=DefaultProperties -Comment="Polaris" -Browser="Polaris" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=2 - -[LG-* Polaris/5.* MMP/2.*] -Parent=Polaris -Browser="Polaris LG" -Version=5.0 -MajorVer=5 -MinorVer=0 - -[LG-* Polaris/6.* MMP/2.*] -Parent=Polaris -Browser="Polaris LG" -Version=6.0 -MajorVer=6 -MinorVer=0 - -[LG-* Polaris/7.* MMP/2.*] -Parent=Polaris -Browser="Polaris LG" -Version=7.0 -MajorVer=7 -MinorVer=0 - -[Samsung-* Polaris/5.* MMP/2.*] -Parent=Polaris -Browser="Polaris Samsung" -Version=5.0 -MajorVer=5 -MinorVer=0 - -[Samsung-* Polaris/6.* MMP/2.*] -Parent=Polaris -Browser="Polaris Samsung" -Version=6.0 -MajorVer=6 -MinorVer=0 - -[Samsung-* Polaris/7.* MMP/2.*] -Parent=Polaris -Browser="Polaris Samsung" -Version=7.0 -MajorVer=7 -MinorVer=0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SEMC Browser - -[SEMC Browser] -Parent=DefaultProperties -Comment="SEMC Browser" -Browser="SEMC Browser" -Platform="JAVA" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=1 - -[*SEMC-Browser/*] -Parent=SEMC Browser - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk - -[Silk] -Parent=DefaultProperties -Comment="Silk" -Browser="Silk" -Platform="Android" -Frames=true -IFrames=true -Tables=true -Cookies=true -isMobileDevice=true -CssVersion=2 - -[Mozilla/5.0 (*Mac OS X 10*Silk/1.*) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16 Silk-Accelerated=*] -Parent=Silk -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 (Linux*Android*Silk/1.*) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 Silk-Accelerated=*] -Parent=Silk -Version=1.0 -MajorVer=1 -MinorVer=0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Skyfire - -[Skyfire] -Parent=DefaultProperties -Comment="Skyfire" -Browser="Skyfire" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (Macintosh*Mac OS X 10_5*)*AppleWebKit/530.17*(KHTML, like Gecko)*Version/*Safari/*Skyfire/2.*] -Parent=Skyfire -Version=2.0 -MajorVer=2 -MinorVer=0 -Platform="MacOSX" -Platform_Version=10.5 -isMobileDevice=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Teleca - -[Teleca] -Parent=DefaultProperties -Comment="Teleca" -Browser="Teleca" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=1 - -[Mozilla/5.0 (compatible; Teleca *; Brew 3.0*; U; *)*] -Parent=Teleca -Version=3.0 -MajorVer=3 -MinorVer=0 - -[Mozilla/5.0 (compatible; Teleca *; Brew 3.1*; U; *)*] -Parent=Teleca -Version=3.1 -MajorVer=3 -MinorVer=1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser - -[UC Browser] -Parent=DefaultProperties -Comment="UC Browser" -Browser="UC Browser" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true - -[Mozilla/5.0 (Java;*samsung*) UCBrowser8.2*UCWEB*Mobile*UNTRUSTED/*] -Parent=UC Browser -Version=8.2 -MajorVer=8 -MinorVer=2 -Platform="JAVA" - -[Mozilla/5.0 (Java;*samsung-gt-s5263) UCBrowser8.2*UCWEB*Mobile*UNTRUSTED/*] -Parent=UC Browser -Version=8.2 -MajorVer=8 -MinorVer=2 -Platform="JAVA" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 3.0 - -[Android Browser 3.0] -Parent=DefaultProperties -Comment="Android Browser 3.0" -Browser="Android" -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="Android" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.0*Mobile Safari/*] -Parent=Android Browser 3.0 -Platform_Version=1.0 - -[Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.0*Mobile Safari/*] -Parent=Android Browser 3.0 -Platform_Version=1.1 - -[Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*] -Parent=Android Browser 3.0 -Version=3.1 -MajorVer=3 -MinorVer=1 -Platform_Version=1.5 - -[Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*] -Parent=Android Browser 3.0 -Version=3.1 -MajorVer=3 -MinorVer=1 -Platform_Version=1.6 - -[Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*] -Parent=Android Browser 3.0 -Platform_Version=2.0 - -[Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*] -Parent=Android Browser 3.0 -Platform_Version=2.1 - -[Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*] -Parent=Android Browser 3.0 -Platform_Version=2.2 - -[Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile Safari/*] -Parent=Android Browser 3.0 -Platform_Version=2.3 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.0 - -[Android Browser 4.0] -Parent=DefaultProperties -Comment="Android Browser 4.0" -Browser="Android" -Version=4.0 -MajorVer=4 -MinorVer=0 -Platform="Android" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (Linux*Android 1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*] -Parent=Android Browser 4.0 -Platform_Version=1.0 - -[Mozilla/5.0 (Linux*Android 1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*] -Parent=Android Browser 4.0 -Platform_Version=1.1 - -[Mozilla/5.0 (Linux*Android 1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*] -Parent=Android Browser 4.0 -Platform_Version=1.5 - -[Mozilla/5.0 (Linux*Android 1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*] -Parent=Android Browser 4.0 -Platform_Version=1.6 - -[Mozilla/5.0 (Linux*Android 2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*] -Parent=Android Browser 4.0 -Platform_Version=2.0 - -[Mozilla/5.0 (Linux*Android 2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*] -Parent=Android Browser 4.0 -Platform_Version=2.1 - -[Mozilla/5.0 (Linux*Android 2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*] -Parent=Android Browser 4.0 -Platform_Version=2.2 - -[Mozilla/5.0 (Linux*Android 2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*] -Parent=Android Browser 4.0 -Platform_Version=2.3 - -[Mozilla/5.0 (Linux*Android 3.*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*] -Parent=Android Browser 4.0 -Platform_Version=3.0 - -[Mozilla/5.0 (Linux*Android 3.*sdk*)*AppleWebKit/534.13*(*KHTML, like Gecko*)*Version/4.*Safari/*] -Parent=Android Browser 4.0 -Platform_Version=3.0 - -[Mozilla/5.0 (Linux*Android 4.*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile Safari/*] -Parent=Android Browser 4.0 -Platform_Version=4.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BlackBerry - -[BlackBerry] -Parent=DefaultProperties -Comment="BlackBerry" -Browser="BlackBerry" -Platform="BlackBerry OS" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=2 - -[*BlackBerry*] -Parent=BlackBerry -Platform_Version=1.0 - -[*PlayBook*RIM Tablet OS 1.0.*] -Parent=BlackBerry -Platform="RIM Tablet OS" -Platform_Version=1.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Playbook Simulator - -[*PlayBook*RIM Tablet OS 2.0.*] -Parent=BlackBerry -Comment="Playbook Simulator" -Browser="Playbook" -Version=2.0 -MajorVer=2 -MinorVer=0 -Platform_Version=2.0 -CssVersion=3 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 3.0 - -[Mobile Safari 3.0] -Parent=DefaultProperties -Comment="Mobile Safari 3.0" -Browser="Safari" -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="iOS" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (iPhone*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.0*Mobile/*Safari/*] -Parent=Mobile Safari 3.0 -Platform_Version=1.0 - -[Mozilla/5.0 (iPhone*CPU like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*] -Parent=Mobile Safari 3.0 -Version=0 -MajorVer=0 -Platform_Version=1.0 - -[Mozilla/5.0 (iPhone*CPU like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*Mobile/*] -Parent=Mobile Safari 3.0 -Platform_Version=1.0 - -[Mozilla/5.0 (iPod*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 3.0 -Version=0 -MajorVer=0 -Platform_Version=1.0 - -[Mozilla/5.0 (iPod*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 3.0 -Platform_Version=1.0 - -[Mozilla/5.0 (iPod*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.0*Mobile/*Safari/*] -Parent=Mobile Safari 3.0 -Platform_Version=1.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 3.1 - -[Mobile Safari 3.1] -Parent=DefaultProperties -Comment="Mobile Safari 3.1" -Browser="Safari" -Version=3.1 -MajorVer=3 -MinorVer=1 -Platform="iOS" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (iPhone*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.0 - -[Mozilla/5.0 (iPhone*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*] -Parent=Mobile Safari 3.1 -Version=0 -MajorVer=0 -Platform_Version=2.0 - -[Mozilla/5.0 (iPhone*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*Mobile/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.0 - -[Mozilla/5.0 (iPhone*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.1 - -[Mozilla/5.0 (iPhone*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*] -Parent=Mobile Safari 3.1 -Version=0 -MajorVer=0 -Platform_Version=2.1 - -[Mozilla/5.0 (iPhone*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*Mobile/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.1 - -[Mozilla/5.0 (iPhone*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.2 - -[Mozilla/5.0 (iPhone*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*] -Parent=Mobile Safari 3.1 -Version=0 -MajorVer=0 -Platform_Version=2.2 - -[Mozilla/5.0 (iPhone*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*Mobile/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.2 - -[Mozilla/5.0 (iPod*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 3.1 -Version=0 -MajorVer=0 -Platform_Version=2.0 - -[Mozilla/5.0 (iPod*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.0 - -[Mozilla/5.0 (iPod*CPU*OS 2_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.0 - -[Mozilla/5.0 (iPod*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 3.1 -Version=0 -MajorVer=0 -Platform_Version=2.1 - -[Mozilla/5.0 (iPod*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.1 - -[Mozilla/5.0 (iPod*CPU*OS 2_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.1 - -[Mozilla/5.0 (iPod*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 3.1 -Version=0 -MajorVer=0 -Platform_Version=2.2 - -[Mozilla/5.0 (iPod*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.2 - -[Mozilla/5.0 (iPod*CPU*OS 2_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/3.1*Mobile/*Safari/*] -Parent=Mobile Safari 3.1 -Platform_Version=2.2 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 4.0 - -[Mobile Safari 4.0] -Parent=DefaultProperties -Comment="Mobile Safari 4.0" -Browser="Safari" -Version=4.0 -MajorVer=4 -MinorVer=0 -Platform="iOS" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (iPad*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 4.0 -Version=0 -MajorVer=0 -Platform_Version=3.2 - -[Mozilla/5.0 (iPad*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 4.0 -Platform_Version=3.2 - -[Mozilla/5.0 (iPad*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0.*Mobile/*Safari/*] -Parent=Mobile Safari 4.0 -Platform_Version=3.2 - -[Mozilla/5.0 (iPhone*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 4.0 -Version=0 -MajorVer=0 -Platform_Version=3.0 - -[Mozilla/5.0 (iPhone*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 4.0 -Platform_Version=3.0 - -[Mozilla/5.0 (iPhone*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*] -Parent=Mobile Safari 4.0 -Platform_Version=3.0 - -[Mozilla/5.0 (iPhone*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 4.0 -Version=0 -MajorVer=0 -Platform_Version=3.1 - -[Mozilla/5.0 (iPhone*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 4.0 -Platform_Version=3.1 - -[Mozilla/5.0 (iPhone*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/528*] -Parent=Mobile Safari 4.0 -Platform_Version=3.1 - -[Mozilla/5.0 (iPhone*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 4.0 -Version=0 -MajorVer=0 -Platform_Version=3.2 - -[Mozilla/5.0 (iPhone*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 4.0 -Platform_Version=3.2 - -[Mozilla/5.0 (iPhone*CPU*OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*] -Parent=Mobile Safari 4.0 -Platform_Version=3.2 - -[Mozilla/5.0 (iPhone*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 4.0 -Version=0 -MajorVer=0 -Platform_Version=4.0 - -[Mozilla/5.0 (iPhone*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 4.0 -Platform_Version=4.0 - -[Mozilla/5.0 (iPhone*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*] -Parent=Mobile Safari 4.0 -Platform_Version=4.0 - -[Mozilla/5.0 (iPhone*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 4.0 -Version=0 -MajorVer=0 -Platform_Version=4.1 - -[Mozilla/5.0 (iPhone*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 4.0 -Platform_Version=4.1 - -[Mozilla/5.0 (iPhone*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*] -Parent=Mobile Safari 4.0 -Platform_Version=4.1 - -[Mozilla/5.0 (iPod*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 4.0 -Version=0 -MajorVer=0 -Platform_Version=3.0 - -[Mozilla/5.0 (iPod*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 4.0 -Platform_Version=3.0 - -[Mozilla/5.0 (iPod*CPU*OS 3_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*] -Parent=Mobile Safari 4.0 -Platform_Version=3.0 - -[Mozilla/5.0 (iPod*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 4.0 -Version=0 -MajorVer=0 -Platform_Version=3.1 - -[Mozilla/5.0 (iPod*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 4.0 -Platform_Version=3.1 - -[Mozilla/5.0 (iPod*CPU*OS 3_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*] -Parent=Mobile Safari 4.0 -Platform_Version=3.1 - -[Mozilla/5.0 (iPod*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 4.0 -Version=0 -MajorVer=0 -Platform_Version=4.0 - -[Mozilla/5.0 (iPod*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 4.0 -Platform_Version=4.0 - -[Mozilla/5.0 (iPod*CPU*OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*] -Parent=Mobile Safari 4.0 -Platform_Version=4.0 - -[Mozilla/5.0 (iPod*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 4.0 -Version=0 -MajorVer=0 -Platform_Version=4.1 - -[Mozilla/5.0 (iPod*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 4.0 -Platform_Version=4.1 - -[Mozilla/5.0 (iPod*CPU*OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Mobile/*Safari/*] -Parent=Mobile Safari 4.0 -Platform_Version=4.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 5.0 - -[Mobile Safari 5.0] -Parent=DefaultProperties -Comment="Mobile Safari 5.0" -Browser="Safari" -Version=5.0 -MajorVer=5 -MinorVer=0 -Platform="iOS" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (iPad*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.0 -Version=0 -MajorVer=0 -Platform_Version=4.2 - -[Mozilla/5.0 (iPad*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.2 - -[Mozilla/5.0 (iPad*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0.*Mobile/*Safari/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.2 - -[Mozilla/5.0 (iPad*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.0 -Version=0 -MajorVer=0 -Platform_Version=4.3 - -[Mozilla/5.0 (iPad*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.3 - -[Mozilla/5.0 (iPad*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0.*Mobile/*Safari/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.3 - -[Mozilla/5.0 (iPhone*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.0 -Version=0 -MajorVer=0 -Platform_Version=4.2 - -[Mozilla/5.0 (iPhone*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.2 - -[Mozilla/5.0 (iPhone*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0*Mobile/*Safari/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.2 - -[Mozilla/5.0 (iPhone*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.0 -Version=0 -MajorVer=0 -Platform_Version=4.3 - -[Mozilla/5.0 (iPhone*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.3 - -[Mozilla/5.0 (iPhone*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0*Mobile/*Safari/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.3 - -[Mozilla/5.0 (iPod*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.0 -Version=0 -MajorVer=0 -Platform_Version=4.2 - -[Mozilla/5.0 (iPod*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.2 - -[Mozilla/5.0 (iPod*CPU*OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0*Mobile/*Safari/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.2 - -[Mozilla/5.0 (iPod*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.0 -Version=0 -MajorVer=0 -Platform_Version=4.3 - -[Mozilla/5.0 (iPod*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.3 - -[Mozilla/5.0 (iPod*CPU*OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.0*Mobile/*Safari/*] -Parent=Mobile Safari 5.0 -Platform_Version=4.3 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 5.1 - -[Mobile Safari 5.1] -Parent=DefaultProperties -Comment="Mobile Safari 5.1" -Browser="Safari" -Version=5.1 -MajorVer=5 -MinorVer=1 -Platform="iOS" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (iPad*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.1 -Version=0 -MajorVer=0 -Platform_Version=5.0 - -[Mozilla/5.0 (iPad*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.0 - -[Mozilla/5.0 (iPad*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1.*Mobile/*Safari/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.0 - -[Mozilla/5.0 (iPad*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.1 -Version=0 -MajorVer=0 -Platform_Version=5.1 - -[Mozilla/5.0 (iPad*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.1 - -[Mozilla/5.0 (iPad*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1.*Mobile/*Safari/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.1 - -[Mozilla/5.0 (iPhone*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.1 -Version=0 -MajorVer=0 -Platform_Version=5.0 - -[Mozilla/5.0 (iPhone*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.0 - -[Mozilla/5.0 (iPhone*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1*Mobile/*Safari/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Facebook App - -[Mozilla/5.0 (iPhone*CPU*OS 5_1* like Mac OS X*)*AppleWebKit*(*KHTML, like Gecko*)*Mobile*FB*] -Parent=Mobile Safari 5.1 -Comment="Facebook App" -Platform_Version=5.1 - -[Mozilla/5.0 (iPhone*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.1 -Version=0 -MajorVer=0 -Platform_Version=5.1 - -[Mozilla/5.0 (iPhone*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.1 - -[Mozilla/5.0 (iPhone*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1*Mobile/*Safari/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google+ App - -[Mozilla/5.0 (iPhone*CPU*OS 5_1* like Mac OS X*)*GooglePlus/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.1 -Comment="Google+ App" -Platform_Version=5.1 - -[Mozilla/5.0 (iPod*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.1 -Version=0 -MajorVer=0 -Platform_Version=5.0 - -[Mozilla/5.0 (iPod*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.0 - -[Mozilla/5.0 (iPod*CPU*OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1*Mobile/*Safari/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.0 - -[Mozilla/5.0 (iPod*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 5.1 -Version=0 -MajorVer=0 -Platform_Version=5.1 - -[Mozilla/5.0 (iPod*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.1 - -[Mozilla/5.0 (iPod*CPU*OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/5.1*Mobile/*Safari/*] -Parent=Mobile Safari 5.1 -Platform_Version=5.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 6.0 - -[Mobile Safari 6.0] -Parent=DefaultProperties -Comment="Mobile Safari 6.0" -Browser="Safari" -Version=6.0 -MajorVer=6 -MinorVer=0 -Platform="iOS" -Platform_Version=6.0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (iPad*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 6.0 - -[Mozilla/5.0 (iPad*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 6.0 - -[Mozilla/5.0 (iPad*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/6.0.*Mobile/*Safari/*] -Parent=Mobile Safari 6.0 - -[Mozilla/5.0 (iPhone*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 6.0 - -[Mozilla/5.0 (iPhone*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 6.0 - -[Mozilla/5.0 (iPhone*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/6.0*Mobile/*Safari/*] -Parent=Mobile Safari 6.0 - -[Mozilla/5.0 (iPod*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*] -Parent=Mobile Safari 6.0 -Version=0 -MajorVer=0 - -[Mozilla/5.0 (iPod*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Mobile/*] -Parent=Mobile Safari 6.0 - -[Mozilla/5.0 (iPod*CPU*OS 6_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/6.0*Mobile/*Safari/*] -Parent=Mobile Safari 6.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini 2.0 - -[Opera Mini 2.0] -Parent=DefaultProperties -Comment="Opera Mini 2.0" -Browser="Opera Mini" -Version=2.0 -MajorVer=2 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=1 - -[Opera/*(Android*Opera Mini/2.*)*] -Parent=Opera Mini 2.0 -Platform="Android" - -[Opera/*(BlackBerry*Opera Mini/2.*)*] -Parent=Opera Mini 2.0 -Platform="BlackBerry OS" - -[Opera/*(J2ME/MIDP*Opera Mini/2.*)*] -Parent=Opera Mini 2.0 -Platform="JAVA" - -[Opera/*(Series 60*Opera Mini/2.*)*] -Parent=Opera Mini 2.0 -Platform="SymbianOS" - -[Opera/*(Windows Mobile*Opera Mini/2.*)*] -Parent=Opera Mini 2.0 -Platform="WinMobile" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini 3.0 - -[Opera Mini 3.0] -Parent=DefaultProperties -Comment="Opera Mini 3.0" -Browser="Opera Mini" -Version=3.0 -MajorVer=3 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=1 - -[Opera/*(Android*Opera Mini/3.*)*] -Parent=Opera Mini 3.0 -Platform="Android" - -[Opera/*(BlackBerry*Opera Mini/3.*)*] -Parent=Opera Mini 3.0 -Platform="BlackBerry OS" - -[Opera/*(J2ME/MIDP*Opera Mini/3.*)*] -Parent=Opera Mini 3.0 -Platform="JAVA" - -[Opera/*(Series 60*Opera Mini/3.*)*] -Parent=Opera Mini 3.0 -Platform="SymbianOS" - -[Opera/*(Windows Mobile*Opera Mini/3.*)*] -Parent=Opera Mini 3.0 -Platform="WinMobile" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini 4.0 - -[Opera Mini 4.0] -Parent=DefaultProperties -Comment="Opera Mini 4.0" -Browser="Opera Mini" -Version=4.0 -MajorVer=4 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=1 - -[Opera/*(Android*Opera Mini/4.*)*] -Parent=Opera Mini 4.0 -Platform="Android" - -[Opera/*(BlackBerry*Opera Mini/4.*)*] -Parent=Opera Mini 4.0 -Platform="BlackBerry OS" - -[Opera/*(J2ME/MIDP*Opera Mini/4.*)*] -Parent=Opera Mini 4.0 -Platform="JAVA" - -[Opera/*(Series 60*Opera Mini/4.*)*] -Parent=Opera Mini 4.0 -Platform="SymbianOS" - -[Opera/*(Windows Mobile*Opera Mini/4.*)*] -Parent=Opera Mini 4.0 -Platform="WinMobile" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini 5.0 - -[Opera Mini 5.0] -Parent=DefaultProperties -Comment="Opera Mini 5.0" -Browser="Opera Mini" -Version=5.0 -MajorVer=5 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=1 - -[Opera/*(Android*Opera Mini/5.*)*] -Parent=Opera Mini 5.0 -Platform="Android" - -[Opera/*(BlackBerry*Opera Mini/5.*)*] -Parent=Opera Mini 5.0 -Platform="BlackBerry OS" - -[Opera/*(iPhone*Opera Mini/5.*)*] -Parent=Opera Mini 5.0 - -[Opera/*(J2ME/MIDP*Opera Mini/5.*)*] -Parent=Opera Mini 5.0 -Platform="JAVA" - -[Opera/*(Series 60*Opera Mini/5.*)*] -Parent=Opera Mini 5.0 -Platform="SymbianOS" - -[Opera/*(Windows Mobile*Opera Mini/5.*)*] -Parent=Opera Mini 5.0 -Platform="WinMobile" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini 6.0 - -[Opera Mini 6.0] -Parent=DefaultProperties -Comment="Opera Mini 6.0" -Browser="Opera Mini" -Version=6.0 -MajorVer=6 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=1 - -[Opera/*(*Android*Opera Mini/6.*)*] -Parent=Opera Mini 6.0 -Platform="Android" - -[Opera/*(*BlackBerry*Opera Mini/6.*)*] -Parent=Opera Mini 6.0 -Platform="BlackBerry OS" - -[Opera/*(*iPad*Opera Mini/6.*)*] -Parent=Opera Mini 6.0 - -[Opera/*(*iPhone*Opera Mini/6.*)*] -Parent=Opera Mini 6.0 - -[Opera/*(*J2ME/MIDP*Opera Mini/6.*)*] -Parent=Opera Mini 6.0 -Platform="JAVA" - -[Opera/*(*Series 60*Opera Mini/6.*)*] -Parent=Opera Mini 6.0 -Platform="SymbianOS" - -[Opera/*(*Windows Mobile*Opera Mini/6.*)*] -Parent=Opera Mini 6.0 -Platform="WinMobile" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini Generic - -[Opera Mini Generic] -Parent=DefaultProperties -Comment="Opera Mini Generic" -Browser="Opera Mini" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=1 - -[Opera/*(Android*Opera Mini/*)*] -Parent=Opera Mini Generic -Platform="Android" - -[Opera/*(BlackBerry*Opera Mini/*)*] -Parent=Opera Mini Generic -Platform="BlackBerry OS" - -[Opera/*(iPhone*Opera Mini/*)*] -Parent=Opera Mini Generic - -[Opera/*(J2ME/MIDP*Opera Mini/*)*] -Parent=Opera Mini Generic -Platform="JAVA" - -[Opera/*(Series 60*Opera Mini/*)*] -Parent=Opera Mini Generic -Platform="SymbianOS" - -[Opera/*(Windows Mobile*Opera Mini/*)*] -Parent=Opera Mini Generic -Platform="WinMobile" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile - -[Opera Mobile] -Parent=DefaultProperties -Comment="Opera Mobile" -Browser="Opera Mobi" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=2 - -[Mozilla/?.*(*Windows CE*)*Opera?*] -Parent=Opera Mobile -Browser="Opera Mobile" -Platform="WinCE" - -[Opera/*(*Android 4.*Linux*Opera Mobi/ADR-1205181138*)*Presto/2.10*Version/12.*] -Parent=Opera Mobile -Version=12.00 -MajorVer=12 -MinorVer=00 -Platform="Android" -Platform_Version=4.0 -CssVersion=3 - -[Opera/*(*Android*Opera Mobi*)*] -Parent=Opera Mobile -Platform="Android" - -[Opera/*(*Microsoft Windows*Opera Mobi*)*] -Parent=Opera Mobile -Platform="Win" - -[Opera/*(*Symbian*Opera Mobi*)*] -Parent=Opera Mobile -Platform="SymbianOS" - -[Opera/*(*SymbOS*Opera Mobi*)*] -Parent=Opera Mobile -Platform="SymbianOS" - -[Opera/*(*Windows Mobile*Opera Mobi*)*] -Parent=Opera Mobile -Platform="WinCE" - -[Opera/*(Android 4.0*Linux*Opera Mobi/*)*Presto/2.10*Version/12.00*] -Parent=Opera Mobile -Version=12.00 -MajorVer=12 -MinorVer=00 -Platform="Android" -Platform_Version=4.0 -CssVersion=3 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 2.0 - -[NetFront 2.0] -Parent=DefaultProperties -Comment="Access NetFront 2.0" -Browser="Access NetFront" -Version=2.0 -MajorVer=2 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=2 - -[*NetFront/2.*] -Parent=NetFront 2.0 - -[Mozilla/4.0 (*) *NetFront/2.*] -Parent=NetFront 2.0 - -[Mozilla/4.0 (*NetFront/2.*)*] -Parent=NetFront 2.0 - -[SAMSUNG* *NetFront/2.*] -Parent=NetFront 2.0 - -[SEC-* *NetFront/2.*] -Parent=NetFront 2.0 - -[SonyEricsson*/* Mozilla/5.0 (SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* *Safari/*] -Parent=NetFront 2.0 -Platform="SymbianOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 3.0 - -[NetFront 3.0] -Parent=DefaultProperties -Comment="Access NetFront 3.0" -Browser="Access NetFront" -Version=3.0 -MajorVer=3 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=2 - -[*NetFront/3.*] -Parent=NetFront 3.0 - -[Mozilla/4.0 (*) *NetFront/3.*] -Parent=NetFront 3.0 - -[Mozilla/4.0 (*NetFront/3.*)*] -Parent=NetFront 3.0 - -[Mozilla/4.0 (compatible; Linux*) NetFront/3.* Kindle/1.0 (screen 600x800)] -Parent=NetFront 3.0 -Platform="Android" - -[Mozilla/4.0 (compatible; Linux*) NetFront/3.* Kindle/2.0 (screen 600x800)] -Parent=NetFront 3.0 -Platform="Linux" - -[SAMSUNG* *NetFront/3.*] -Parent=NetFront 3.0 - -[SEC-* *NetFront/3.*] -Parent=NetFront 3.0 - -[SonyEricsson*; Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* *Safari/*] -Parent=NetFront 3.0 -Platform="SymbianOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Boxee - -[Boxee] -Parent=DefaultProperties -Comment="Boxee" -Browser="Boxee" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -[curl/* (Linux * intel.*dlink.dsm* *; *; beta) boxee/*] -Parent=Boxee -Version=1.0 -MajorVer=1 -MinorVer=0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; GoogleTV - -[GoogleTV] -Parent=DefaultProperties -Comment="GoogleTV" -Browser="GoogleTV" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (X11; U: Linux i686; *) AppleWebKit/* (KHTML, like Gecko) Chrome/5.* Large Screen Safari/* GoogleTV/*] -Parent=GoogleTV -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netbox - -[Netbox] -Parent=DefaultProperties -Comment="Netbox" -Browser="Netbox" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=1 - -[Mozilla/3.01 (compatible; Netbox/*; Linux*)] -Parent=Netbox -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PowerTV - -[PowerTV] -Parent=DefaultProperties -Comment="PowerTV" -Browser="PowerTV" -Platform="PowerTV" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -[Mozilla/4.0 PowerTV/1.5 (Compatible; Spyglass DM 3.2.1, EXPLORER)] -Parent=PowerTV -Version=1.5 -MajorVer=1 -MinorVer=5 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WebTV/MSNTV - -[WebTV] -Parent=DefaultProperties -Comment="WebTV/MSNTV" -Browser="WebTV/MSNTV" -Platform="WebTV" -Frames=true -IFrames=true -Tables=true -Cookies=true - -[Mozilla/3.0 WebTV/1.*(compatible; MSIE 2.0)] -Parent=WebTV -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/4.0 WebTV/2.0*(compatible; MSIE 3.0)] -Parent=WebTV -Version=2.0 -MajorVer=2 -MinorVer=0 - -[Mozilla/4.0 WebTV/2.1*(compatible; MSIE 3.0)] -Parent=WebTV -Version=2.1 -MajorVer=2 -MinorVer=1 - -[Mozilla/4.0 WebTV/2.2*(compatible; MSIE 3.0)] -Parent=WebTV -Version=2.2 -MajorVer=2 -MinorVer=2 - -[Mozilla/4.0 WebTV/2.3*(compatible; MSIE 3.0)] -Parent=WebTV -Version=2.3 -MajorVer=2 -MinorVer=3 - -[Mozilla/4.0 WebTV/2.4*(compatible; MSIE 3.0)] -Parent=WebTV -Version=2.4 -MajorVer=2 -MinorVer=4 - -[Mozilla/4.0 WebTV/2.5*(compatible; MSIE 4.0)] -Parent=WebTV -Version=2.5 -MajorVer=2 -MinorVer=5 -CssVersion=1 - -[Mozilla/4.0 WebTV/2.6*(compatible; MSIE 4.0)] -Parent=WebTV -Version=2.6 -MajorVer=2 -MinorVer=6 -CssVersion=1 - -[Mozilla/4.0 WebTV/2.7*(compatible; MSIE 4.0)] -Parent=WebTV -Version=2.7 -MajorVer=2 -MinorVer=7 -CssVersion=1 - -[Mozilla/4.0 WebTV/2.8*(compatible; MSIE 4.0)] -Parent=WebTV -Version=2.8 -MajorVer=2 -MinorVer=8 -VBScript=true -CssVersion=1 - -[Mozilla/4.0 WebTV/2.9*(compatible; MSIE 4.0)] -Parent=WebTV -Version=2.9 -MajorVer=2 -MinorVer=9 -VBScript=true -CssVersion=1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Amaya - -[Amaya] -Parent=DefaultProperties -Comment="Amaya" -Browser="Amaya" -Frames=true -Tables=true - -[amaya/10.*] -Parent=Amaya -Version=10.0 -MajorVer=10 -MinorVer=0 - -[amaya/11.*] -Parent=Amaya -Version=11.0 -MajorVer=11 -MinorVer=0 - -[amaya/7.*] -Parent=Amaya -Version=7.0 -MajorVer=7 -MinorVer=0 - -[amaya/8.*] -Parent=Amaya -Version=8.0 -MajorVer=8 -MinorVer=0 -CssVersion=2 - -[amaya/9.*] -Parent=Amaya -Version=9.0 -MajorVer=9 -MinorVer=0 - -[Emacs-w3m/*] -Parent=Emacs/W3 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Links - -[Links] -Parent=DefaultProperties -Comment="Links" -Browser="Links" -Frames=true -Tables=true - -[Links (0.9*; CYGWIN_NT-5.1*)] -Parent=Links -Version=0.9 -MajorVer=0 -MinorVer=9 -Platform="WinXP" - -[Links (0.9*; Darwin*)] -Parent=Links -Version=0.9 -MajorVer=0 -MinorVer=9 -Platform="MacPPC" - -[Links (0.9*; FreeBSD*)] -Parent=Links -Version=0.9 -MajorVer=0 -MinorVer=9 -Platform="FreeBSD" - -[Links (0.9*; Linux*)] -Parent=Links -Version=0.9 -MajorVer=0 -MinorVer=9 -Platform="Linux" - -[Links (0.9*; OS/2*)] -Parent=Links -Version=0.9 -MajorVer=0 -MinorVer=9 -Platform="OS/2" - -[Links (0.9*; Unix*)] -Parent=Links -Version=0.9 -MajorVer=0 -MinorVer=9 -Platform="Unix" - -[Links (0.9*; Win32*)] -Parent=Links -Version=0.9 -MajorVer=0 -MinorVer=9 -Platform="Win32" -Win32=true - -[Links (1.0*; CYGWIN_NT-5.1*)] -Parent=Links -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="WinXP" - -[Links (1.0*; FreeBSD*)] -Parent=Links -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="FreeBSD" - -[Links (1.0*; Linux*)] -Parent=Links -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Linux" - -[Links (1.0*; OS/2*)] -Parent=Links -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="OS/2" - -[Links (1.0*; Unix*)] -Parent=Links -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Unix" - -[Links (1.0*; Win32*)] -Parent=Links -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win32" -Win32=true - -[Links (2.0*; Linux*)] -Parent=Links -Version=2.0 -MajorVer=2 -MinorVer=0 -Platform="Linux" - -[Links (2.1*; FreeBSD*)] -Parent=Links -Version=2.1 -MajorVer=2 -MinorVer=1 -Platform="FreeBSD" - -[Links (2.1*; Linux *)] -Parent=Links -Version=2.1 -MajorVer=2 -MinorVer=1 -Platform="Linux" - -[Links (2.1*; OpenBSD*)] -Parent=Links -Version=2.1 -MajorVer=2 -MinorVer=1 -Platform="OpenBSD" - -[Links (2.2*; FreeBSD*)] -Parent=Links -Version=2.2 -MajorVer=2 -MinorVer=2 -Platform="FreeBSD" - -[Links (2.2*; Linux *)] -Parent=Links -Version=2.2 -MajorVer=2 -MinorVer=2 -Platform="Linux" - -[Links (2.2*; NetBSD*)] -Parent=Links -Platform="NetBSD" - -[Links (2.2*; OpenBSD*)] -Parent=Links -Version=2.2 -MajorVer=2 -MinorVer=2 -Platform="OpenBSD" - -[Links (2.3*; FreeBSD*)] -Parent=Links -Version=2.3 -MajorVer=2 -MinorVer=3 -Platform="Linux" - -[Links (2.3*; Linux*)] -Parent=Links -Version=2.3 -MajorVer=2 -MinorVer=3 -Platform="Linux" - -[Links (2.3*; NetBSD*)] -Parent=Links -Platform="NetBSD" - -[Links (2.3*; OpenBSD*)] -Parent=Links -Version=2.3 -MajorVer=2 -MinorVer=3 -Platform="OpenBSD" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lynx - -[Lynx] -Parent=DefaultProperties -Comment="Lynx" -Browser="Lynx" -Frames=true -IFrames=true -Tables=true - -[Lynx *] -Parent=Lynx - -[Lynx/2.3*] -Parent=Lynx -Version=2.3 -MajorVer=2 -MinorVer=3 - -[Lynx/2.4*] -Parent=Lynx -Version=2.4 -MajorVer=2 -MinorVer=4 - -[Lynx/2.5*] -Parent=Lynx -Version=2.5 -MajorVer=2 -MinorVer=5 - -[Lynx/2.6*] -Parent=Lynx -Version=2.6 -MajorVer=2 -MinorVer=6 - -[Lynx/2.7*] -Parent=Lynx -Version=2.7 -MajorVer=2 -MinorVer=7 - -[Lynx/2.8*] -Parent=Lynx -Version=2.8 -MajorVer=2 -MinorVer=8 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NCSA Mosaic - -[Mosaic] -Parent=DefaultProperties -Comment="NCSA Mosaic" -Browser="Mosaic" -Frames=true -Tables=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; w3m - -[w3m] -Parent=DefaultProperties -Comment="w3m" -Browser="w3m" -Frames=true -Tables=true - -[w3m/0.1*] -Parent=w3m -Version=0.1 -MajorVer=0 -MinorVer=1 - -[w3m/0.2*] -Parent=w3m -Version=0.2 -MajorVer=0 -MinorVer=2 - -[w3m/0.3*] -Parent=w3m -Version=0.3 -MajorVer=0 -MinorVer=3 - -[w3m/0.4*] -Parent=w3m -Version=0.4 -MajorVer=0 -MinorVer=4 -Cookies=true - -[w3m/0.5*] -Parent=w3m -Version=0.5 -MajorVer=0 -MinorVer=5 -Cookies=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.10 - -[ELinks 0.10] -Parent=DefaultProperties -Comment="ELinks 0.10" -Browser="ELinks" -Version=0.10 -MajorVer=0 -MinorVer=10 -Frames=true -Tables=true - -[ELinks (0.10*; *AIX*)] -Parent=ELinks 0.10 -Platform="AIX" - -[ELinks (0.10*; *BeOS*)] -Parent=ELinks 0.10 -Platform="BeOS" - -[ELinks (0.10*; *CygWin*)] -Parent=ELinks 0.10 -Platform="CygWin" - -[ELinks (0.10*; *Darwin*)] -Parent=ELinks 0.10 -Platform="Darwin" - -[ELinks (0.10*; *Digital Unix*)] -Parent=ELinks 0.10 -Platform="Digital Unix" - -[ELinks (0.10*; *FreeBSD*)] -Parent=ELinks 0.10 -Platform="FreeBSD" - -[ELinks (0.10*; *HPUX*)] -Parent=ELinks 0.10 -Platform="HP-UX" - -[ELinks (0.10*; *IRIX*)] -Parent=ELinks 0.10 -Platform="IRIX" - -[ELinks (0.10*; *Linux*)] -Parent=ELinks 0.10 -Platform="Linux" - -[ELinks (0.10*; *NetBSD*)] -Parent=ELinks 0.10 -Platform="NetBSD" - -[ELinks (0.10*; *OpenBSD*)] -Parent=ELinks 0.10 -Platform="OpenBSD" - -[ELinks (0.10*; *OS/2*)] -Parent=ELinks 0.10 -Platform="OS/2" - -[ELinks (0.10*; *RISC*)] -Parent=ELinks 0.10 -Platform="RISC OS" - -[ELinks (0.10*; *Solaris*)] -Parent=ELinks 0.10 -Platform="Solaris" - -[ELinks (0.10*; *Unix*)] -Parent=ELinks 0.10 -Platform="Unix" - -[ELinks/0.10* (*AIX*)] -Parent=ELinks 0.10 -Platform="AIX" - -[ELinks/0.10* (*BeOS*)] -Parent=ELinks 0.10 -Platform="BeOS" - -[ELinks/0.10* (*CygWin*)] -Parent=ELinks 0.10 -Platform="CygWin" - -[ELinks/0.10* (*Darwin*)] -Parent=ELinks 0.10 -Platform="Darwin" - -[ELinks/0.10* (*Digital Unix*)] -Parent=ELinks 0.10 -Platform="Digital Unix" - -[ELinks/0.10* (*FreeBSD*)] -Parent=ELinks 0.10 -Platform="FreeBSD" - -[ELinks/0.10* (*HPUX*)] -Parent=ELinks 0.10 -Platform="HP-UX" - -[ELinks/0.10* (*IRIX*)] -Parent=ELinks 0.10 -Platform="IRIX" - -[ELinks/0.10* (*Linux*)] -Parent=ELinks 0.10 -Platform="Linux" - -[ELinks/0.10* (*NetBSD*)] -Parent=ELinks 0.10 -Platform="NetBSD" - -[ELinks/0.10* (*OpenBSD*)] -Parent=ELinks 0.10 -Platform="OpenBSD" - -[ELinks/0.10* (*OS/2*)] -Parent=ELinks 0.10 -Platform="OS/2" - -[ELinks/0.10* (*RISC*)] -Parent=ELinks 0.10 -Platform="RISC OS" - -[ELinks/0.10* (*Solaris*)] -Parent=ELinks 0.10 -Platform="Solaris" - -[ELinks/0.10* (*Unix*)] -Parent=ELinks 0.10 -Platform="Unix" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.11 - -[ELinks 0.11] -Parent=DefaultProperties -Comment="ELinks 0.11" -Browser="ELinks" -Version=0.11 -MajorVer=0 -MinorVer=11 -Frames=true -Tables=true - -[ELinks (0.11*; *AIX*)] -Parent=ELinks 0.11 -Platform="AIX" - -[ELinks (0.11*; *BeOS*)] -Parent=ELinks 0.11 -Platform="BeOS" - -[ELinks (0.11*; *CygWin*)] -Parent=ELinks 0.11 -Platform="CygWin" - -[ELinks (0.11*; *Darwin*)] -Parent=ELinks 0.11 -Platform="Darwin" - -[ELinks (0.11*; *Digital Unix*)] -Parent=ELinks 0.11 -Platform="Digital Unix" - -[ELinks (0.11*; *FreeBSD*)] -Parent=ELinks 0.11 -Platform="FreeBSD" - -[ELinks (0.11*; *HPUX*)] -Parent=ELinks 0.11 -Platform="HP-UX" - -[ELinks (0.11*; *IRIX*)] -Parent=ELinks 0.11 -Platform="IRIX" - -[ELinks (0.11*; *Linux*)] -Parent=ELinks 0.11 -Platform="Linux" - -[ELinks (0.11*; *NetBSD*)] -Parent=ELinks 0.11 -Platform="NetBSD" - -[ELinks (0.11*; *OpenBSD*)] -Parent=ELinks 0.11 -Platform="OpenBSD" - -[ELinks (0.11*; *OS/2*)] -Parent=ELinks 0.11 -Platform="OS/2" - -[ELinks (0.11*; *RISC*)] -Parent=ELinks 0.11 -Platform="RISC OS" - -[ELinks (0.11*; *Solaris*)] -Parent=ELinks 0.11 -Platform="Solaris" - -[ELinks (0.11*; *Unix*)] -Parent=ELinks 0.11 -Platform="Unix" - -[ELinks/0.11* (*AIX*)] -Parent=ELinks 0.11 -Platform="AIX" - -[ELinks/0.11* (*BeOS*)] -Parent=ELinks 0.11 -Platform="BeOS" - -[ELinks/0.11* (*CygWin*)] -Parent=ELinks 0.11 -Platform="CygWin" - -[ELinks/0.11* (*Darwin*)] -Parent=ELinks 0.11 -Platform="Darwin" - -[ELinks/0.11* (*Digital Unix*)] -Parent=ELinks 0.11 -Platform="Digital Unix" - -[ELinks/0.11* (*FreeBSD*)] -Parent=ELinks 0.11 -Platform="FreeBSD" - -[ELinks/0.11* (*HPUX*)] -Parent=ELinks 0.11 -Platform="HP-UX" - -[ELinks/0.11* (*IRIX*)] -Parent=ELinks 0.11 -Platform="IRIX" - -[ELinks/0.11* (*Linux*)] -Parent=ELinks 0.11 -Platform="Linux" - -[ELinks/0.11* (*NetBSD*)] -Parent=ELinks 0.11 -Platform="NetBSD" - -[ELinks/0.11* (*OpenBSD*)] -Parent=ELinks 0.11 -Platform="OpenBSD" - -[ELinks/0.11* (*OS/2*)] -Parent=ELinks 0.11 -Platform="OS/2" - -[ELinks/0.11* (*RISC*)] -Parent=ELinks 0.11 -Platform="RISC OS" - -[ELinks/0.11* (*Solaris*)] -Parent=ELinks 0.11 -Platform="Solaris" - -[ELinks/0.11* (*Unix*)] -Parent=ELinks 0.11 -Platform="Unix" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.12 - -[ELinks 0.12] -Parent=DefaultProperties -Comment="ELinks 0.12" -Browser="ELinks" -Version=0.12 -MajorVer=0 -MinorVer=12 -Frames=true -Tables=true - -[ELinks (0.12*; *AIX*)] -Parent=ELinks 0.12 -Platform="AIX" - -[ELinks (0.12*; *BeOS*)] -Parent=ELinks 0.12 -Platform="BeOS" - -[ELinks (0.12*; *CygWin*)] -Parent=ELinks 0.12 -Platform="CygWin" - -[ELinks (0.12*; *Darwin*)] -Parent=ELinks 0.12 -Platform="Darwin" - -[ELinks (0.12*; *Digital Unix*)] -Parent=ELinks 0.12 -Platform="Digital Unix" - -[ELinks (0.12*; *FreeBSD*)] -Parent=ELinks 0.12 -Platform="FreeBSD" - -[ELinks (0.12*; *HPUX*)] -Parent=ELinks 0.12 -Platform="HP-UX" - -[ELinks (0.12*; *IRIX*)] -Parent=ELinks 0.12 -Platform="IRIX" - -[ELinks (0.12*; *Linux*)] -Parent=ELinks 0.12 -Platform="Linux" - -[ELinks (0.12*; *NetBSD*)] -Parent=ELinks 0.12 -Platform="NetBSD" - -[ELinks (0.12*; *OpenBSD*)] -Parent=ELinks 0.12 -Platform="OpenBSD" - -[ELinks (0.12*; *OS/2*)] -Parent=ELinks 0.12 -Platform="OS/2" - -[ELinks (0.12*; *RISC*)] -Parent=ELinks 0.12 -Platform="RISC OS" - -[ELinks (0.12*; *Solaris*)] -Parent=ELinks 0.12 -Platform="Solaris" - -[ELinks (0.12*; *Unix*)] -Parent=ELinks 0.12 -Platform="Unix" - -[ELinks/0.12* (*AIX*)] -Parent=ELinks 0.12 -Platform="AIX" - -[ELinks/0.12* (*BeOS*)] -Parent=ELinks 0.12 -Platform="BeOS" - -[ELinks/0.12* (*CygWin*)] -Parent=ELinks 0.12 -Platform="CygWin" - -[ELinks/0.12* (*Darwin*)] -Parent=ELinks 0.12 -Platform="Darwin" - -[ELinks/0.12* (*Digital Unix*)] -Parent=ELinks 0.12 -Platform="Digital Unix" - -[ELinks/0.12* (*FreeBSD*)] -Parent=ELinks 0.12 -Platform="FreeBSD" - -[ELinks/0.12* (*HPUX*)] -Parent=ELinks 0.12 -Platform="HP-UX" - -[ELinks/0.12* (*IRIX*)] -Parent=ELinks 0.12 -Platform="IRIX" - -[ELinks/0.12* (*Linux*)] -Parent=ELinks 0.12 -Platform="Linux" - -[ELinks/0.12* (*NetBSD*)] -Parent=ELinks 0.12 -Platform="NetBSD" - -[ELinks/0.12* (*OpenBSD*)] -Parent=ELinks 0.12 -Platform="OpenBSD" - -[ELinks/0.12* (*OS/2*)] -Parent=ELinks 0.12 -Platform="OS/2" - -[ELinks/0.12* (*RISC*)] -Parent=ELinks 0.12 -Platform="RISC OS" - -[ELinks/0.12* (*Solaris*)] -Parent=ELinks 0.12 -Platform="Solaris" - -[ELinks/0.12* (*Unix*)] -Parent=ELinks 0.12 -Platform="Unix" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.13 - -[ELinks 0.13] -Parent=DefaultProperties -Comment="ELinks 0.13" -Browser="ELinks" -Version=0.13 -MajorVer=0 -MinorVer=13 -Frames=true -Tables=true - -[ELinks (0.13*; *AIX*)] -Parent=ELinks 0.13 -Platform="AIX" - -[ELinks (0.13*; *BeOS*)] -Parent=ELinks 0.13 -Platform="BeOS" - -[ELinks (0.13*; *CygWin*)] -Parent=ELinks 0.13 -Platform="CygWin" - -[ELinks (0.13*; *Darwin*)] -Parent=ELinks 0.13 -Platform="Darwin" - -[ELinks (0.13*; *Digital Unix*)] -Parent=ELinks 0.13 -Platform="Digital Unix" - -[ELinks (0.13*; *FreeBSD*)] -Parent=ELinks 0.13 -Platform="FreeBSD" - -[ELinks (0.13*; *HPUX*)] -Parent=ELinks 0.13 -Platform="HP-UX" - -[ELinks (0.13*; *IRIX*)] -Parent=ELinks 0.13 -Platform="IRIX" - -[ELinks (0.13*; *Linux*)] -Parent=ELinks 0.13 -Platform="Linux" - -[ELinks (0.13*; *NetBSD*)] -Parent=ELinks 0.13 -Platform="NetBSD" - -[ELinks (0.13*; *OpenBSD*)] -Parent=ELinks 0.13 -Platform="OpenBSD" - -[ELinks (0.13*; *OS/2*)] -Parent=ELinks 0.13 -Platform="OS/2" - -[ELinks (0.13*; *RISC*)] -Parent=ELinks 0.13 -Platform="RISC OS" - -[ELinks (0.13*; *Solaris*)] -Parent=ELinks 0.13 -Platform="Solaris" - -[ELinks (0.13*; *Unix*)] -Parent=ELinks 0.13 -Platform="Unix" - -[ELinks/0.13* (*AIX*)] -Parent=ELinks 0.13 -Platform="AIX" - -[ELinks/0.13* (*BeOS*)] -Parent=ELinks 0.13 -Platform="BeOS" - -[ELinks/0.13* (*CygWin*)] -Parent=ELinks 0.13 -Platform="CygWin" - -[ELinks/0.13* (*Darwin*)] -Parent=ELinks 0.13 -Platform="Darwin" - -[ELinks/0.13* (*Digital Unix*)] -Parent=ELinks 0.13 -Platform="Digital Unix" - -[ELinks/0.13* (*FreeBSD*)] -Parent=ELinks 0.13 -Platform="FreeBSD" - -[ELinks/0.13* (*HPUX*)] -Parent=ELinks 0.13 -Platform="HP-UX" - -[ELinks/0.13* (*IRIX*)] -Parent=ELinks 0.13 -Platform="IRIX" - -[ELinks/0.13* (*Linux*)] -Parent=ELinks 0.13 -Platform="Linux" - -[ELinks/0.13* (*NetBSD*)] -Parent=ELinks 0.13 -Platform="NetBSD" - -[ELinks/0.13* (*OpenBSD*)] -Parent=ELinks 0.13 -Platform="OpenBSD" - -[ELinks/0.13* (*OS/2*)] -Parent=ELinks 0.13 -Platform="OS/2" - -[ELinks/0.13* (*RISC*)] -Parent=ELinks 0.13 -Platform="RISC OS" - -[ELinks/0.13* (*Solaris*)] -Parent=ELinks 0.13 -Platform="Solaris" - -[ELinks/0.13* (*Unix*)] -Parent=ELinks 0.13 -Platform="Unix" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.9 - -[ELinks 0.9] -Parent=DefaultProperties -Comment="ELinks 0.9" -Browser="ELinks" -Version=0.9 -MajorVer=0 -MinorVer=9 -Frames=true -Tables=true - -[ELinks (0.9*; *AIX*)] -Parent=ELinks 0.9 -Platform="AIX" - -[ELinks (0.9*; *BeOS*)] -Parent=ELinks 0.9 -Platform="BeOS" - -[ELinks (0.9*; *CygWin*)] -Parent=ELinks 0.9 -Platform="CygWin" - -[ELinks (0.9*; *Darwin*)] -Parent=ELinks 0.9 -Platform="Darwin" - -[ELinks (0.9*; *Digital Unix*)] -Parent=ELinks 0.9 -Platform="Digital Unix" - -[ELinks (0.9*; *FreeBSD*)] -Parent=ELinks 0.9 -Platform="FreeBSD" - -[ELinks (0.9*; *HPUX*)] -Parent=ELinks 0.9 -Platform="HP-UX" - -[ELinks (0.9*; *IRIX*)] -Parent=ELinks 0.9 -Platform="IRIX" - -[ELinks (0.9*; *Linux*)] -Parent=ELinks 0.9 -Platform="Linux" - -[ELinks (0.9*; *NetBSD*)] -Parent=ELinks 0.9 -Platform="NetBSD" - -[ELinks (0.9*; *OpenBSD*)] -Parent=ELinks 0.9 -Platform="OpenBSD" - -[ELinks (0.9*; *OS/2*)] -Parent=ELinks 0.9 -Platform="OS/2" - -[ELinks (0.9*; *RISC*)] -Parent=ELinks 0.9 -Platform="RISC OS" - -[ELinks (0.9*; *Solaris*)] -Parent=ELinks 0.9 -Platform="Solaris" - -[ELinks (0.9*; *Unix*)] -Parent=ELinks 0.9 -Platform="Unix" - -[ELinks/0.9* (*AIX*)] -Parent=ELinks 0.9 -Platform="AIX" - -[ELinks/0.9* (*BeOS*)] -Parent=ELinks 0.9 -Platform="BeOS" - -[ELinks/0.9* (*CygWin*)] -Parent=ELinks 0.9 -Platform="CygWin" - -[ELinks/0.9* (*Darwin*)] -Parent=ELinks 0.9 -Platform="Darwin" - -[ELinks/0.9* (*Digital Unix*)] -Parent=ELinks 0.9 -Platform="Digital Unix" - -[ELinks/0.9* (*FreeBSD*)] -Parent=ELinks 0.9 -Platform="FreeBSD" - -[ELinks/0.9* (*HPUX*)] -Parent=ELinks 0.9 -Platform="HP-UX" - -[ELinks/0.9* (*IRIX*)] -Parent=ELinks 0.9 -Platform="IRIX" - -[ELinks/0.9* (*Linux*)] -Parent=ELinks 0.9 -Platform="Linux" - -[ELinks/0.9* (*NetBSD*)] -Parent=ELinks 0.9 -Platform="NetBSD" - -[ELinks/0.9* (*OpenBSD*)] -Parent=ELinks 0.9 -Platform="OpenBSD" - -[ELinks/0.9* (*OS/2*)] -Parent=ELinks 0.9 -Platform="OS/2" - -[ELinks/0.9* (*RISC*)] -Parent=ELinks 0.9 -Platform="RISC OS" - -[ELinks/0.9* (*Solaris*)] -Parent=ELinks 0.9 -Platform="Solaris" - -[ELinks/0.9* (*Unix*)] -Parent=ELinks 0.9 -Platform="Unix" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Camino - -[Camino] -Parent=DefaultProperties -Comment="Camino" -Browser="Camino" -Platform="MacOSX" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (Macintosh; *Intel Mac OS X*; *; rv:1.9.*) Gecko/* Camino/2.0*] -Parent=Camino -Version=2.0 -MajorVer=2 -MinorVer=0 - -[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.7*] -Parent=Camino -Version=0.7 -MajorVer=0 -MinorVer=7 -Beta=true - -[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.8*] -Parent=Camino -Version=0.8 -MajorVer=0 -MinorVer=8 -Beta=true - -[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.9*] -Parent=Camino -Version=0.9 -MajorVer=0 -MinorVer=9 -Beta=true - -[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.0*] -Parent=Camino -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.2*] -Parent=Camino -Version=1.2 -MajorVer=1 -MinorVer=2 - -[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.3*] -Parent=Camino -Version=1.3 -MajorVer=1 -MinorVer=3 -Platform="MacOSX" - -[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.4*] -Parent=Camino -Version=1.4 -MajorVer=1 -MinorVer=4 -Platform="MacOSX" - -[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.5*] -Parent=Camino -Version=1.5 -MajorVer=1 -MinorVer=5 -Platform="MacOSX" - -[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.6*] -Parent=Camino -Version=1.6 -MajorVer=1 -MinorVer=6 -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chimera - -[Chimera] -Parent=DefaultProperties -Comment="Chimera" -Browser="Chimera" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Chimera/*] -Parent=Chimera -Platform="MacOSX" - -[Mozilla/5.0 Gecko/* Chimera/*] -Parent=Chimera - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dillo - -[Dillo] -Parent=DefaultProperties -Comment="Dillo" -Browser="Dillo" -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Dillo/0.6*] -Parent=Dillo -Version=0.6 -MajorVer=0 -MinorVer=6 - -[Dillo/0.7*] -Parent=Dillo -Version=0.7 -MajorVer=0 -MinorVer=7 - -[Dillo/0.8*] -Parent=Dillo -Version=0.8 -MajorVer=0 -MinorVer=8 - -[Dillo/2.0] -Parent=Dillo -Version=2.0 -MajorVer=2 -MinorVer=0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Emacs/W3 - -[Emacs/W3] -Parent=DefaultProperties -Comment="Emacs/W3" -Browser="Emacs/W3" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=default - -[Emacs/W3/2.* (Unix*] -Parent=Emacs/W3 -Version=2.0 -MajorVer=2 -MinorVer=0 -Platform="Unix" - -[Emacs/W3/2.* (X11*] -Parent=Emacs/W3 -Version=2.0 -MajorVer=2 -MinorVer=0 -Platform="Linux" - -[Emacs/W3/3.* (Unix*] -Parent=Emacs/W3 -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="Unix" - -[Emacs/W3/3.* (X11*] -Parent=Emacs/W3 -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="Linux" - -[Emacs/W3/4.* (Unix*] -Parent=Emacs/W3 -Version=4.0 -MajorVer=4 -MinorVer=0 -Platform="Unix" - -[Emacs/W3/4.* (X11*] -Parent=Emacs/W3 -Version=4.0 -MajorVer=4 -MinorVer=0 -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; fantomas - -[fantomas] -Parent=DefaultProperties -Comment="fantomas" -Browser="fantomas" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -[Mozilla/4.0 (cloakBrowser)] -Parent=fantomas -Browser="fantomas cloakBrowser" - -[Mozilla/4.0 (fantomas shadowMaker Browser)] -Parent=fantomas -Browser="fantomas shadowMaker Browser" - -[Mozilla/4.0 (fantomBrowser)] -Parent=fantomas -Browser="fantomas fantomBrowser" - -[Mozilla/4.0 (fantomCrew Browser)] -Parent=fantomas -Browser="fantomas fantomCrew Browser" - -[Mozilla/4.0 (stealthBrowser)] -Parent=fantomas -Browser="fantomas stealthBrowser" - -[multiBlocker browser*] -Parent=fantomas -Browser="fantomas multiBlocker browser" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FrontPage - -[FrontPage] -Parent=DefaultProperties -Comment="FrontPage" -Browser="FrontPage" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -[Mozilla/?* (compatible; MS FrontPage*)] -Parent=FrontPage - -[MSFrontPage/*] -Parent=FrontPage - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Galeon - -[Galeon] -Parent=DefaultProperties -Comment="Galeon" -Browser="Galeon" -Platform="Linux" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/1.*] -Parent=Galeon -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/2.*] -Parent=Galeon -Version=2.0 -MajorVer=2 -MinorVer=0 - -[Mozilla/5.0 Galeon/1.* (X11; Linux*)*] -Parent=Galeon -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 Galeon/2.* (X11; Linux*)*] -Parent=Galeon -Version=2.0 -MajorVer=2 -MinorVer=0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; HP Secure Web Browser - -[HP Secure Web Browser] -Parent=DefaultProperties -Comment="HP Secure Web Browser" -Browser="HP Secure Web Browser" -Platform="OpenVMS" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.0*) Gecko/*] -Parent=HP Secure Web Browser -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.1*) Gecko/*] -Parent=HP Secure Web Browser -Version=1.1 -MajorVer=1 -MinorVer=1 - -[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.2*) Gecko/*] -Parent=HP Secure Web Browser -Version=1.2 -MajorVer=1 -MinorVer=2 - -[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.3*) Gecko/*] -Parent=HP Secure Web Browser -Version=1.3 -MajorVer=1 -MinorVer=3 - -[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.4*) Gecko/*] -Parent=HP Secure Web Browser -Version=1.4 -MajorVer=1 -MinorVer=4 - -[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.5*) Gecko/*] -Parent=HP Secure Web Browser -Version=1.5 -MajorVer=1 -MinorVer=5 - -[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.6*) Gecko/*] -Parent=HP Secure Web Browser -Version=1.6 -MajorVer=1 -MinorVer=6 - -[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.7*) Gecko/*] -Parent=HP Secure Web Browser -Version=1.7 -MajorVer=1 -MinorVer=7 - -[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.8*) Gecko/*] -Parent=HP Secure Web Browser -Version=1.8 -MajorVer=1 -MinorVer=8 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IBrowse - -[IBrowse] -Parent=DefaultProperties -Comment="IBrowse" -Browser="IBrowse" -Platform="Amiga" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -[Arexx (compatible; MSIE 6.0; AmigaOS5.0) IBrowse 4.0] -Parent=IBrowse -Version=4.0 -MajorVer=4 -MinorVer=0 - -[IBrowse/1.22 (AmigaOS *)] -Parent=IBrowse -Version=1.22 -MajorVer=1 -MinorVer=22 - -[IBrowse/2.1 (AmigaOS *)] -Parent=IBrowse -Version=2.1 -MajorVer=2 -MinorVer=1 - -[IBrowse/2.2 (AmigaOS *)] -Parent=IBrowse -Version=2.2 -MajorVer=2 -MinorVer=2 - -[IBrowse/2.3 (AmigaOS *)] -Parent=IBrowse -Version=2.2 -MajorVer=2 -MinorVer=2 - -[Mozilla/* (Win98; I) IBrowse/2.1 (AmigaOS 3.1)] -Parent=IBrowse -Version=2.1 -MajorVer=2 -MinorVer=1 -Platform_Version=98 - -[Mozilla/* (Win98; I) IBrowse/2.2 (AmigaOS 3.1)] -Parent=IBrowse -Version=2.2 -MajorVer=2 -MinorVer=2 -Platform_Version=98 - -[Mozilla/* (Win98; I) IBrowse/2.3 (AmigaOS 3.1)] -Parent=IBrowse -Version=2.3 -MajorVer=2 -MinorVer=3 -Platform_Version=98 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iCab - -[iCab] -Parent=DefaultProperties -Comment="iCab" -Browser="iCab" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -[iCab/2.7* (Macintosh; ?; 68K*)] -Parent=iCab -Version=2.7 -MajorVer=2 -MinorVer=7 -Platform="Mac68K" -CssVersion=1 - -[iCab/2.7* (Macintosh; ?; PPC*)] -Parent=iCab -Version=2.7 -MajorVer=2 -MinorVer=7 -Platform="MacPPC" -CssVersion=1 - -[iCab/2.8* (Macintosh; ?; *Mac OS X*)] -Parent=iCab -Version=2.8 -MajorVer=2 -MinorVer=8 -Platform="MacOSX" -CssVersion=1 - -[iCab/2.8* (Macintosh; ?; 68K*)] -Parent=iCab -Version=2.8 -MajorVer=2 -MinorVer=8 -Platform="Mac68K" -CssVersion=1 - -[iCab/2.8* (Macintosh; ?; PPC)] -Parent=iCab -Version=2.8 -MajorVer=2 -MinorVer=8 -Platform="MacPPC" -CssVersion=1 - -[iCab/2.9* (Macintosh; ?; *Mac OS X*)] -Parent=iCab -Version=2.9 -MajorVer=2 -MinorVer=9 -Platform="MacOSX" -CssVersion=1 - -[iCab/2.9* (Macintosh; ?; 68K*)] -Parent=iCab -Version=2.9 -MajorVer=2 -MinorVer=9 -Platform="Mac68K" -CssVersion=1 - -[iCab/2.9* (Macintosh; ?; PPC*)] -Parent=iCab -Version=2.9 -MajorVer=2 -MinorVer=9 -Platform="MacPPC" -CssVersion=1 - -[iCab/3.0* (Macintosh; ?; *Mac OS X*)] -Parent=iCab -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="MacOSX" -CssVersion=2 - -[iCab/3.0* (Macintosh; ?; PPC*)] -Parent=iCab -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="MacPPC" -CssVersion=2 - -[iCab/4.0 (Macintosh; U; *Mac OS X)] -Parent=iCab -Version=4.0 -MajorVer=4 -MinorVer=0 -Platform="MacOSX" -CssVersion=3 - -[Mozilla/* (compatible; iCab 2.7*; Macintosh; ?; 68K*)] -Parent=iCab -Version=2.7 -MajorVer=2 -MinorVer=7 -Platform="Mac68K" -CssVersion=2 - -[Mozilla/* (compatible; iCab 2.7*; Macintosh; ?; PPC*)] -Parent=iCab -Version=2.7 -MajorVer=2 -MinorVer=7 -Platform="MacPPC" -CssVersion=2 - -[Mozilla/* (compatible; iCab 2.8*; Macintosh; ?; *Mac OS X*)] -Parent=iCab -Version=2.8 -MajorVer=2 -MinorVer=8 -Platform="MacOSX" -CssVersion=2 - -[Mozilla/* (compatible; iCab 2.9*; Macintosh; *Mac OS X*)] -Parent=iCab -Version=2.9 -MajorVer=2 -MinorVer=9 -Platform="MacOSX" -CssVersion=2 - -[Mozilla/* (compatible; iCab 2.9*; Macintosh; ?; PPC*)] -Parent=iCab -Version=2.9 -MajorVer=2 -MinorVer=9 -Platform="MacPPC" -CssVersion=2 - -[Mozilla/* (compatible; iCab 3.0*; Macintosh; *Mac OS X*)] -Parent=iCab -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="MacOSX" -CssVersion=2 - -[Mozilla/* (compatible; iCab 3.0*; Macintosh; ?; PPC*)] -Parent=iCab -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="MacPPC" -CssVersion=2 - -[Mozilla/* (compatible; iCab 4.2*; Macintosh; *Mac OS X*)] -Parent=iCab -Version=4.2 -MajorVer=4 -MinorVer=2 -Platform="MacOSX" -CssVersion=3 - -[Mozilla/* (compatible; iCab 4.8*; Macintosh; *Mac OS X*)] -Parent=iCab -Version=4.8 -MajorVer=4 -MinorVer=8 -CssVersion=3 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iSiloX - -[iSiloX] -Parent=DefaultProperties -Comment="iSiloX" -Browser="iSiloX" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[iSiloX/4.0* MacOS] -Parent=iSiloX -Version=4.0 -MajorVer=4 -MinorVer=0 -Platform="MacPPC" - -[iSiloX/4.0* Windows/32] -Parent=iSiloX -Version=4.0 -MajorVer=4 -MinorVer=0 -Platform="Win32" -Win32=true - -[iSiloX/4.1* MacOS] -Parent=iSiloX -Version=4.1 -MajorVer=4 -MinorVer=1 -Platform="MacPPC" - -[iSiloX/4.1* Windows/32] -Parent=iSiloX -Version=4.1 -MajorVer=4 -MinorVer=1 -Platform="Win32" -Win32=true - -[iSiloX/4.2* MacOS] -Parent=iSiloX -Version=4.2 -MajorVer=4 -MinorVer=2 -Platform="MacPPC" - -[iSiloX/4.2* Windows/32] -Parent=iSiloX -Version=4.2 -MajorVer=4 -MinorVer=2 -Platform="Win32" -Win32=true - -[iSiloX/4.3* MacOS] -Parent=iSiloX -Version=4.3 -MajorVer=4 -MinorVer=3 -Platform="MacOSX" - -[iSiloX/4.3* Windows/32] -Parent=iSiloX -Version=4.3 -MajorVer=4 -MinorVer=3 -Platform="Win32" -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycoris Desktop/LX - -[Lycoris Desktop/LX] -Parent=DefaultProperties -Comment="Lycoris Desktop/LX" -Browser="Lycoris Desktop/LX" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -[Mozilla/5.0 (*Linux i686* *Desktop/LX Amethyst*) *Gecko/*] -Parent=Lycoris Desktop/LX -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Linux" - -[Mozilla/4.0 (VMS_Mosaic)] -Parent=Mosaic -Platform="OpenVMS" - -[VMS_Mosaic/3.7*] -Parent=Mosaic -Version=3.7 -MajorVer=3 -MinorVer=7 -Platform="OpenVMS" - -[VMS_Mosaic/3.8*] -Parent=Mosaic -Version=3.8 -MajorVer=3 -MinorVer=8 -Platform="OpenVMS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetPositive - -[NetPositive] -Parent=DefaultProperties -Comment="NetPositive" -Browser="NetPositive" -Platform="BeOS" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -[*NetPositive/2.2*] -Parent=NetPositive -Version=2.2 -MajorVer=2 -MinorVer=2 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Shiira - -[Shiira] -Parent=DefaultProperties -Comment="Shiira" -Browser="Shiira" -Platform="MacOSX" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/0.9*] -Parent=Shiira -Version=0.9 -MajorVer=0 -MinorVer=9 - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/1.0*] -Parent=Shiira -Version=1.0 -MajorVer=1 -MinorVer=0 - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/1.1*] -Parent=Shiira -Version=1.1 -MajorVer=1 -MinorVer=1 - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/1.2*] -Parent=Shiira -Version=1.2 -MajorVer=1 -MinorVer=2 - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/2.1*] -Parent=Shiira -Version=2.1 -MajorVer=2 -MinorVer=1 - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/2.2*] -Parent=Shiira -Version=2.2 -MajorVer=2 -MinorVer=2 - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* *Shiira/2.3*] -Parent=Shiira -Version=2.3 -MajorVer=2 -MinorVer=3 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.0 - -[K-Meleon 1.0] -Parent=DefaultProperties -Comment="K-Meleon 1.0" -Browser="K-Meleon" -Version=1.0 -MajorVer=1 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.0*] -Parent=K-Meleon 1.0 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.0*] -Parent=K-Meleon 1.0 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.0*] -Parent=K-Meleon 1.0 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.0*] -Parent=K-Meleon 1.0 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.0*] -Parent=K-Meleon 1.0 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.0*] -Parent=K-Meleon 1.0 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="WinNT" -Platform_Version=4.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.1 - -[K-Meleon 1.1] -Parent=DefaultProperties -Comment="K-Meleon 1.1" -Browser="K-Meleon" -Version=1.1 -MajorVer=1 -MinorVer=1 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.1*] -Parent=K-Meleon 1.1 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.1*] -Parent=K-Meleon 1.1 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.1*] -Parent=K-Meleon 1.1 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.1*] -Parent=K-Meleon 1.1 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.1*] -Parent=K-Meleon 1.1 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.1*] -Parent=K-Meleon 1.1 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="WinNT" -Platform_Version=4.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.5 - -[K-Meleon 1.5] -Parent=DefaultProperties -Comment="K-Meleon 1.5" -Browser="K-Meleon" -Version=1.5 -MajorVer=1 -MinorVer=5 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.5*] -Parent=K-Meleon 1.5 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.5*] -Parent=K-Meleon 1.5 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.5*] -Parent=K-Meleon 1.5 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.5*] -Parent=K-Meleon 1.5 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.5*] -Parent=K-Meleon 1.5 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* K-Meleon/1.5*] -Parent=K-Meleon 1.5 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* K-Meleon/1.5*] -Parent=K-Meleon 1.5 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.5*] -Parent=K-Meleon 1.5 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="WinNT" -Platform_Version=4.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.6 - -[K-Meleon 1.6] -Parent=DefaultProperties -Comment="K-Meleon 1.6" -Browser="K-Meleon" -Version=1.6 -MajorVer=1 -MinorVer=6 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.6*] -Parent=K-Meleon 1.6 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.6*] -Parent=K-Meleon 1.6 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.6*] -Parent=K-Meleon 1.6 -Version=1.0 -MajorVer=1 -MinorVer=0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* K-Meleon/1.6*] -Parent=K-Meleon 1.6 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* K-Meleon/1.6*] -Parent=K-Meleon 1.6 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 3.0 - -[Konqueror 3.0] -Parent=DefaultProperties -Comment="Konqueror 3.0" -Browser="Konqueror" -Version=3.0 -MajorVer=3 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[*Konqueror/3.*] -Parent=Konqueror 3.0 -Version=3.0 -MajorVer=3 -MinorVer=0 -IFrames=false - -[*Konqueror/3.*FreeBSD*] -Parent=Konqueror 3.0 -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="FreeBSD" -IFrames=false - -[*Konqueror/3.*Linux*] -Parent=Konqueror 3.0 -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="Linux" - -[*Konqueror/3.*OpenBSD*] -Parent=Konqueror 3.0 -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="OpenBSD" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.0 - -[Konqueror 4.0] -Parent=DefaultProperties -Comment="Konqueror 4.0" -Browser="Konqueror" -Version=4.0 -MajorVer=4 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (compatible; Konqueror/4.*; *Linux) KHTML/4.* (like Gecko)] -Parent=Konqueror 4.0 -Platform="Linux" - -[Mozilla/5.0 (compatible; Konqueror/4.*; FreeBSD) KHTML/4.* (like Gecko)] -Parent=Konqueror 4.0 -Platform="FreeBSD" - -[Mozilla/5.0 (compatible; Konqueror/4.*; NetBSD) KHTML/4.* (like Gecko)] -Parent=Konqueror 4.0 -Platform="NetBSD" - -[Mozilla/5.0 (compatible; Konqueror/4.0*) KHTML/4.* (like Gecko)] -Parent=Konqueror 4.0 - -[Mozilla/5.0 (compatible; Konqueror/4.0*; Debian) KHTML/4.* (like Gecko)] -Parent=Konqueror 4.0 -Platform="Debian" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.5 - -[Konqueror 4.5] -Parent=DefaultProperties -Comment="Konqueror 4.5" -Browser="Konqueror" -Version=4.5 -MajorVer=4 -MinorVer=5 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (compatible; Konqueror/4.5*) KHTML/4.5* (like Gecko)*] -Parent=Konqueror 4.5 - -[Mozilla/5.0 (compatible; Konqueror/4.5*; *Linux*) KHTML/4.5* (like Gecko)*] -Parent=Konqueror 4.5 -Platform="Linux" - -[Mozilla/5.0 (compatible; Konqueror/4.5*; Debian) KHTML/4.5* (like Gecko)*] -Parent=Konqueror 4.5 -Platform="Debian" - -[Mozilla/5.0 (compatible; Konqueror/4.5*; FreeBSD) KHTML/4.5* (like Gecko)*] -Parent=Konqueror 4.5 -Platform="FreeBSD" - -[Mozilla/5.0 (compatible; Konqueror/4.5*; NetBSD) KHTML/4.5* (like Gecko)*] -Parent=Konqueror 4.5 -Platform="NetBSD" - -[Mozilla/5.0 (compatible; Konqueror/4.5*; Windows) KHTML/4.5* (like Gecko)] -Parent=Konqueror 4.5 -Platform="Win" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.6 - -[Konqueror 4.6] -Parent=DefaultProperties -Comment="Konqueror 4.6" -Browser="Konqueror" -Version=4.6 -MajorVer=4 -MinorVer=6 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (compatible; Konqueror/4.6*) KHTML/4.6* (like Gecko)*] -Parent=Konqueror 4.6 - -[Mozilla/5.0 (compatible; Konqueror/4.6*; *Linux*) KHTML/4.6* (like Gecko)*] -Parent=Konqueror 4.6 -Platform="Linux" - -[Mozilla/5.0 (compatible; Konqueror/4.6*; Debian) KHTML/4.6* (like Gecko)*] -Parent=Konqueror 4.6 -Platform="Debian" - -[Mozilla/5.0 (compatible; Konqueror/4.6*; FreeBSD) KHTML/4.6* (like Gecko)*] -Parent=Konqueror 4.6 -Platform="FreeBSD" - -[Mozilla/5.0 (compatible; Konqueror/4.6*; NetBSD) KHTML/4.6* (like Gecko)*] -Parent=Konqueror 4.6 -Platform="NetBSD" - -[Mozilla/5.0 (compatible; Konqueror/4.6*; Windows) KHTML/4.6* (like Gecko)] -Parent=Konqueror 4.6 -Platform="Win" -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.7 - -[Konqueror 4.7] -Parent=DefaultProperties -Comment="Konqueror 4.7" -Browser="Konqueror" -Version=4.7 -MajorVer=4 -MinorVer=7 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (compatible; Konqueror/4.7*) KHTML/4.7* (like Gecko)*] -Parent=Konqueror 4.7 - -[Mozilla/5.0 (compatible; Konqueror/4.7*; *Linux*) KHTML/4.7* (like Gecko)*] -Parent=Konqueror 4.7 -Platform="Linux" - -[Mozilla/5.0 (compatible; Konqueror/4.7*; Debian) KHTML/4.7* (like Gecko)*] -Parent=Konqueror 4.7 -Platform="Debian" - -[Mozilla/5.0 (compatible; Konqueror/4.7*; FreeBSD) KHTML/4.7* (like Gecko)*] -Parent=Konqueror 4.7 -Platform="FreeBSD" - -[Mozilla/5.0 (compatible; Konqueror/4.7*; NetBSD) KHTML/4.7* (like Gecko)*] -Parent=Konqueror 4.7 -Platform="NetBSD" - -[Mozilla/5.0 (compatible; Konqueror/4.7*; Windows) KHTML/4.7* (like Gecko)] -Parent=Konqueror 4.7 -Platform="Win" -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.8 - -[Konqueror 4.8] -Parent=DefaultProperties -Comment="Konqueror 4.8" -Browser="Konqueror" -Version=4.8 -MajorVer=4 -MinorVer=8 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/5.0 (compatible; Konqueror/4.8*) KHTML/4.8* (like Gecko)*] -Parent=Konqueror 4.8 - -[Mozilla/5.0 (compatible; Konqueror/4.8*; *Linux*) KHTML/4.8* (like Gecko)*] -Parent=Konqueror 4.8 -Platform="Linux" - -[Mozilla/5.0 (compatible; Konqueror/4.8*; Debian) KHTML/4.8* (like Gecko)*] -Parent=Konqueror 4.8 -Platform="Debian" - -[Mozilla/5.0 (compatible; Konqueror/4.8*; FreeBSD) KHTML/4.8* (like Gecko)*] -Parent=Konqueror 4.8 -Platform="FreeBSD" - -[Mozilla/5.0 (compatible; Konqueror/4.8*; NetBSD) KHTML/4.8* (like Gecko)*] -Parent=Konqueror 4.8 -Platform="NetBSD" - -[Mozilla/5.0 (compatible; Konqueror/4.8*; Windows) KHTML/4.8* (like Gecko)] -Parent=Konqueror 4.8 -Platform="Win" -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 2.0 - -[Safari 2.0] -Parent=DefaultProperties -Comment="Safari 2.0" -Browser="Safari" -Version=2.0 -MajorVer=2 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*] -Parent=Safari 2.0 -Platform="CentOS" - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*] -Parent=Safari 2.0 - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*] -Parent=Safari 2.0 -Platform="Linux" - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*] -Parent=Safari 2.0 -Platform="MacOSX" - -[Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*] -Parent=Safari 2.0 -Platform="SymbianOS" -isMobileDevice=true - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*] -Parent=Safari 2.0 -Platform="Win2000" -Platform_Version=5.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*] -Parent=Safari 2.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*] -Parent=Safari 2.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*] -Parent=Safari 2.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/2.* Safari/*] -Parent=Safari 2.0 -Platform="Win7" -Platform_Version=6.1 -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.0 - -[Safari 3.0] -Parent=DefaultProperties -Comment="Safari 3.0" -Browser="Safari" -Version=3.0 -MajorVer=3 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*] -Parent=Safari 3.0 -Platform="CentOS" - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*] -Parent=Safari 3.0 - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*] -Parent=Safari 3.0 -Platform="Linux" - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*] -Parent=Safari 3.0 -Platform="MacOSX" - -[Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*] -Parent=Safari 3.0 -Platform="SymbianOS" -isMobileDevice=true - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*] -Parent=Safari 3.0 -Platform="Win2000" -Platform_Version=5.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*] -Parent=Safari 3.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*] -Parent=Safari 3.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*] -Parent=Safari 3.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/3.* Safari/*] -Parent=Safari 3.0 -Platform="Win7" -Platform_Version=6.1 -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 4.0 - -[Safari 4.0] -Parent=DefaultProperties -Comment="Safari 4.0" -Browser="Safari" -Version=4.0 -MajorVer=4 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*] -Parent=Safari 4.0 -Platform="CentOS" - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*] -Parent=Safari 4.0 - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*] -Parent=Safari 4.0 -Platform="Linux" - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*] -Parent=Safari 4.0 -Platform="MacOSX" - -[Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*] -Parent=Safari 4.0 -Platform="SymbianOS" -isMobileDevice=true - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*] -Parent=Safari 4.0 -Platform="Win2000" -Platform_Version=5.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*] -Parent=Safari 4.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*] -Parent=Safari 4.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*] -Parent=Safari 4.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/4.* Safari/*] -Parent=Safari 4.0 -Platform="Win7" -Platform_Version=6.1 -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 5.0 - -[Safari 5.0] -Parent=DefaultProperties -Comment="Safari 5.0" -Browser="Safari" -Version=5.0 -MajorVer=5 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*] -Parent=Safari 5.0 -Platform="CentOS" - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*] -Parent=Safari 5.0 - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*] -Parent=Safari 5.0 -Platform="Linux" - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*] -Parent=Safari 5.0 -Platform="MacOSX" - -[Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*] -Parent=Safari 5.0 -Platform="SymbianOS" -isMobileDevice=true - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*] -Parent=Safari 5.0 -Platform="Win2000" -Platform_Version=5.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*] -Parent=Safari 5.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*] -Parent=Safari 5.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*] -Parent=Safari 5.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/5.* Safari/*] -Parent=Safari 5.0 -Platform="Win7" -Platform_Version=6.1 -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 5.1 - -[Safari 5.1] -Parent=DefaultProperties -Comment="Safari 5.1" -Browser="Safari" -Version=5.1 -MajorVer=5 -MinorVer=1 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*] -Parent=Safari 5.1 -Platform="CentOS" - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*] -Parent=Safari 5.1 -Platform="Linux" - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*] -Parent=Safari 5.1 -Platform="Linux" - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*] -Parent=Safari 5.1 -Platform="MacOSX" - -[Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*] -Parent=Safari 5.1 -Platform="SymbianOS" -isMobileDevice=true - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*] -Parent=Safari 5.1 -Platform="Win2000" -Platform_Version=5.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*] -Parent=Safari 5.1 -Platform="WinXP" -Platform_Version=5.1 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*] -Parent=Safari 5.1 -Platform="WinXP" -Platform_Version=5.2 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*] -Parent=Safari 5.1 -Platform="WinVista" -Platform_Version=6.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/5.1* Safari/*] -Parent=Safari 5.1 -Platform="Win7" -Platform_Version=6.1 -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 6.0 - -[Safari 6.0] -Parent=DefaultProperties -Comment="Safari 6.0" -Browser="Safari" -Version=6.0 -MajorVer=6 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*] -Parent=Safari 6.0 -Platform="CentOS" - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*] -Parent=Safari 6.0 -Platform="Linux" - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*] -Parent=Safari 6.0 -Platform="Linux" - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*] -Parent=Safari 6.0 -Platform="MacOSX" - -[Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*] -Parent=Safari 6.0 -Platform="SymbianOS" -isMobileDevice=true - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*] -Parent=Safari 6.0 -Platform="Win2000" -Platform_Version=5.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*] -Parent=Safari 6.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*] -Parent=Safari 6.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*] -Parent=Safari 6.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Version/6.0* Safari/*] -Parent=Safari 6.0 -Platform="Win7" -Platform_Version=6.1 -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari Generic - -[Safari Generic] -Parent=DefaultProperties -Comment="Safari Generic" -Browser="Safari" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=1 - -[Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) *Safari/*] -Parent=Safari Generic -Platform="CentOS" - -[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) *Safari/*] -Parent=Safari Generic - -[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) *Safari/*] -Parent=Safari Generic -Platform="Linux" - -[Mozilla/5.0 (*Mac OS X*) *AppleWebKit/* (KHTML, like Gecko) *Safari/*] -Parent=Safari Generic -Platform="MacOSX" - -[Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Safari/*] -Parent=Safari Generic -Platform="SymbianOS" -isMobileDevice=true - -[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*] -Parent=Safari Generic -Platform="Win2000" -Platform_Version=5.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*] -Parent=Safari Generic -Platform="WinXP" -Platform_Version=5.1 -Win32=true - -[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*] -Parent=Safari Generic -Platform="WinXP" -Platform_Version=5.2 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*] -Parent=Safari Generic -Platform="WinVista" -Platform_Version=6.0 -Win32=true - -[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*] -Parent=Safari Generic -Platform="Win7" -Platform_Version=6.1 -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lunascape 5.0 - -[Lunascape 5.0] -Parent=DefaultProperties -Comment="Lunascape 5.0" -Browser="Lunascape" -Version=5.0 -MajorVer=5 -MinorVer=0 -Platform="Win32" -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT *Lunascape 5.0*)*] -Parent=Lunascape 5.0 - -[Mozilla/5.0 (Windows; U; Windows NT *; *) AppleWebKit/* (KHTML, like Gecko*) Lunascape/5.0*] -Parent=Lunascape 5.0 - -[Mozilla/5.0 (Windows; U; Windows NT *; *; rv:1.9.*) Gecko/* Firefox/3.* Lunascape/5.0*] -Parent=Lunascape 5.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lunascape 5.1 - -[Lunascape 5.1] -Parent=DefaultProperties -Comment="Lunascape 5.1" -Browser="Lunascape" -Version=5.1 -MajorVer=5 -MinorVer=1 -Platform="Win32" -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT *Lunascape 5.1*)*] -Parent=Lunascape 5.1 - -[Mozilla/5.0 (Windows; U; Windows NT *; *) AppleWebKit/* (KHTML, like Gecko*) Lunascape/5.1*] -Parent=Lunascape 5.1 - -[Mozilla/5.0 (Windows; U; Windows NT *; *; rv:1.9.*) Gecko/* Firefox/3.* Lunascape/5.1*] -Parent=Lunascape 5.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lunascape 6.0 - -[Lunascape 6.0] -Parent=DefaultProperties -Comment="Lunascape 6.0" -Browser="Lunascape" -Version=6.0 -MajorVer=6 -MinorVer=0 -Platform="Win32" -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT *Lunascape 6.0*)*] -Parent=Lunascape 6.0 - -[Mozilla/5.0 (Windows; U; Windows NT *; *) AppleWebKit/* (KHTML, like Gecko*) Lunascape/6.0*] -Parent=Lunascape 6.0 - -[Mozilla/5.0 (Windows; U; Windows NT *; *; rv:1.9.*) Gecko/* Firefox/3.* Lunascape/6.0*] -Parent=Lunascape 6.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 2.0 - -[Maxthon 2.0] -Parent=DefaultProperties -Comment="Maxthon 2.0" -Browser="Maxthon" -Version=2.0 -MajorVer=2 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -CssVersion=2 - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.0; *Maxthon*)*] -Parent=Maxthon 2.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.1; *Maxthon*)*] -Parent=Maxthon 2.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.2; *Maxthon*)*] -Parent=Maxthon 2.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.0; *Maxthon*)*] -Parent=Maxthon 2.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.1; *Maxthon*)*] -Parent=Maxthon 2.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 3.0 - -[Maxthon 3.0] -Parent=DefaultProperties -Comment="Maxthon 3.0" -Browser="Maxthon" -Version=3.0 -MajorVer=3 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Windows; U; Windows NT 5.0; *) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0 Safari/*] -Parent=Maxthon 3.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0 Safari/*] -Parent=Maxthon 3.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0 Safari/*] -Parent=Maxthon 3.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0 Safari/*] -Parent=Maxthon 3.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0 Safari/*] -Parent=Maxthon 3.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb 5.0 - -[OmniWeb 5.0] -Parent=DefaultProperties -Comment="OmniWeb 5.0" -Browser="OmniWeb" -Version=5.0 -MajorVer=5 -MinorVer=0 -Platform="MacOSX" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *OmniWeb/*] -Parent=OmniWeb 5.0 -CssVersion=1 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *OmniWeb/v558.*] -Parent=OmniWeb 5.0 -Version=5.0 -MajorVer=5 -MinorVer=0 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari) *OmniWeb/v563.*] -Parent=OmniWeb 5.0 -Version=5.1 -MajorVer=5 -MinorVer=1 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/420) *OmniWeb/v*] -Parent=OmniWeb 5.0 -Version=5.5 -MajorVer=5 -MinorVer=5 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/522) *OmniWeb/v61?.0.*] -Parent=OmniWeb 5.0 -Version=5.6 -MajorVer=5 -MinorVer=6 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/523.10) *OmniWeb/v621.*] -Parent=OmniWeb 5.0 -Version=5.7 -MajorVer=5 -MinorVer=7 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/525.20) *OmniWeb/v622.*] -Parent=OmniWeb 5.0 -Version=5.9 -MajorVer=5 -MinorVer=9 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/525.20) *OmniWeb/v622.3.*] -Parent=OmniWeb 5.0 -Version=5.8 -MajorVer=5 -MinorVer=8 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/420 (KHTML, like Gecko, Safari) *OmniWeb/v*] -Parent=OmniWeb 5.0 -Version=5.5 -MajorVer=5 -MinorVer=5 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb 5.10 - -[OmniWeb 5.10] -Parent=DefaultProperties -Comment="OmniWeb 5.10" -Browser="OmniWeb" -Version=5.10 -MajorVer=5 -MinorVer=10 -Platform="MacOSX" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/528.16) *OmniWeb/622.*] -Parent=OmniWeb 5.10 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/528.16) *Version/5.10* *OmniWeb/v622.*] -Parent=OmniWeb 5.10 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb 5.11 - -[OmniWeb 5.11] -Parent=DefaultProperties -Comment="OmniWeb 5.11" -Browser="OmniWeb" -Version=5.11 -MajorVer=5 -MinorVer=11 -Platform="MacOSX" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb 5.11 - -[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Version/5.11* *OmniWeb/*] -Parent=OmniWeb 5.11 -Comment="OmniWeb 5.11" -Browser="OmniWeb" -Version=5.11 -MajorVer=5 -MinorVer=11 -CssVersion=3 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.00 - -[Opera 10.00] -Parent=DefaultProperties -Comment="Opera 10.00" -Browser="Opera" -Version=10.00 -MajorVer=10 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/?.*(*FreeBSD*)*Opera?10.*] -Parent=Opera 10.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?10.*] -Parent=Opera 10.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?10.*] -Parent=Opera 10.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/10.*FreeBSD*)*] -Parent=Opera 10.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/10.*Linux*)*] -Parent=Opera 10.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/10.*Mac OS X*)*] -Parent=Opera 10.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/10.*SunOS*)*] -Parent=Opera 10.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/10.*Win 9x 4.90*)*] -Parent=Opera 10.00 -Platform="WinME" - -[Mozilla/?.*(*Opera/10.*Windows 2000*)*] -Parent=Opera 10.00 -Platform="Win2000" - -[Mozilla/?.*(*Opera/10.*Windows 95*)*] -Parent=Opera 10.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/10.*Windows 98*)*] -Parent=Opera 10.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/10.*Windows ME*)*] -Parent=Opera 10.00 - -[Mozilla/?.*(*Opera/10.*Windows NT 4.0*)*] -Parent=Opera 10.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/10.*Windows NT 5.0*)*] -Parent=Opera 10.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/10.*Windows NT 5.1*)*] -Parent=Opera 10.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/10.*Windows NT 5.2*)*] -Parent=Opera 10.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/10.*Windows NT 6.0*)*] -Parent=Opera 10.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/10.*Windows NT 6.1*)*] -Parent=Opera 10.00 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?10.*] -Parent=Opera 10.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.*] -Parent=Opera 10.00 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?10.*] -Parent=Opera 10.00 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?10.*] -Parent=Opera 10.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?10.*] -Parent=Opera 10.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?10.*] -Parent=Opera 10.00 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.*] -Parent=Opera 10.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.*] -Parent=Opera 10.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.*] -Parent=Opera 10.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.*] -Parent=Opera 10.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.*] -Parent=Opera 10.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.*] -Parent=Opera 10.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/10.*(*FreeBSD*)*] -Parent=Opera 10.00 -Platform="FreeBSD" -Win32=false - -[Opera/10.*(*Linux*)*] -Parent=Opera 10.00 -Platform="Linux" -Win32=false - -[Opera/10.*(*Mac OS X*)*] -Parent=Opera 10.00 -Platform="MacOSX" -Win32=false - -[Opera/10.*(*SunOS*)*] -Parent=Opera 10.00 -Platform="SunOS" -Win32=false - -[Opera/10.*(*Win 9x 4.90*)*] -Parent=Opera 10.00 -Platform="WinME" - -[Opera/10.*(*Windows 2000*)*] -Parent=Opera 10.00 -Platform="Win2000" - -[Opera/10.*(*Windows 95*)*] -Parent=Opera 10.00 -Platform="Win95" -Platform_Version=95 - -[Opera/10.*(*Windows 98*)*] -Parent=Opera 10.00 -Platform="Win98" -Platform_Version=98 - -[Opera/10.*(*Windows ME*)*] -Parent=Opera 10.00 -Platform="WinME" - -[Opera/10.*(*Windows NT 4.0*)*] -Parent=Opera 10.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/10.*(*Windows NT 5.0*)*] -Parent=Opera 10.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/10.*(*Windows NT 5.1*)*] -Parent=Opera 10.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/10.*(*Windows NT 5.2*)*] -Parent=Opera 10.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/10.*(*Windows NT 6.0*)*] -Parent=Opera 10.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/10.*(*Windows NT 6.1*)*] -Parent=Opera 10.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/9.80*(*FreeBSD*)*Version/10.*] -Parent=Opera 10.00 -Platform="FreeBSD" -Win32=false - -[Opera/9.80*(*Linux*)*Version/10.*] -Parent=Opera 10.00 -Platform="Linux" -Win32=false - -[Opera/9.80*(*Mac OS X*)*Version/10.*] -Parent=Opera 10.00 -Platform="MacOSX" -Win32=false - -[Opera/9.80*(*SunOS*)*Version/10.*] -Parent=Opera 10.00 -Platform="SunOS" - -[Opera/9.80*(*Win 9x 4.90*)*Version/10.*] -Parent=Opera 10.00 -Platform="WinME" - -[Opera/9.80*(*Windows 2000*)*Version/10.*] -Parent=Opera 10.00 -Platform="Win2000" - -[Opera/9.80*(*Windows 95*)*Version/10.*] -Parent=Opera 10.00 -Platform="Win95" -Platform_Version=95 - -[Opera/9.80*(*Windows 98*)*Version/10.*] -Parent=Opera 10.00 -Platform="Win98" -Platform_Version=98 - -[Opera/9.80*(*Windows ME*)*Version/10.*] -Parent=Opera 10.00 -Platform="WinME" - -[Opera/9.80*(*Windows NT 4.0*)*Version/10.*] -Parent=Opera 10.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/9.80*(*Windows NT 5.0*)*Version/10.*] -Parent=Opera 10.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/9.80*(*Windows NT 5.1*)*Version/10.*] -Parent=Opera 10.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/9.80*(*Windows NT 5.2*)*Version/10.*] -Parent=Opera 10.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/9.80*(*Windows NT 6.0*)*Version/10.*] -Parent=Opera 10.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/9.80*(*Windows NT 6.1*)*Version/10.*] -Parent=Opera 10.00 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.00 - -[Opera 11.00] -Parent=DefaultProperties -Comment="Opera 11.00" -Browser="Opera" -Version=11.00 -MajorVer=11 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/?.*(*FreeBSD*)*Opera?11.*] -Parent=Opera 11.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?11.*] -Parent=Opera 11.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?11.*] -Parent=Opera 11.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/11.*FreeBSD*)*] -Parent=Opera 11.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/11.*Linux*)*] -Parent=Opera 11.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/11.*Mac OS X*)*] -Parent=Opera 11.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/11.*SunOS*)*] -Parent=Opera 11.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/11.*Win 9x 4.90*)*] -Parent=Opera 11.00 -Platform="WinME" - -[Mozilla/?.*(*Opera/11.*Windows 2000*)*] -Parent=Opera 11.00 -Platform="Win2000" - -[Mozilla/?.*(*Opera/11.*Windows 95*)*] -Parent=Opera 11.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/11.*Windows 98*)*] -Parent=Opera 11.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/11.*Windows ME*)*] -Parent=Opera 11.00 - -[Mozilla/?.*(*Opera/11.*Windows NT 4.0*)*] -Parent=Opera 11.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/11.*Windows NT 5.0*)*] -Parent=Opera 11.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/11.*Windows NT 5.1*)*] -Parent=Opera 11.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/11.*Windows NT 5.2*)*] -Parent=Opera 11.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/11.*Windows NT 6.0*)*] -Parent=Opera 11.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/11.*Windows NT 6.1*)*] -Parent=Opera 11.00 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?11.*] -Parent=Opera 11.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.*] -Parent=Opera 11.00 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?11.*] -Parent=Opera 11.00 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?11.*] -Parent=Opera 11.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?11.*] -Parent=Opera 11.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?11.*] -Parent=Opera 11.00 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.*] -Parent=Opera 11.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.*] -Parent=Opera 11.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.*] -Parent=Opera 11.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.*] -Parent=Opera 11.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.*] -Parent=Opera 11.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.*] -Parent=Opera 11.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/11.*(*FreeBSD*)*] -Parent=Opera 11.00 -Platform="FreeBSD" -Win32=false - -[Opera/11.*(*Linux*)*] -Parent=Opera 11.00 -Platform="Linux" -Win32=false - -[Opera/11.*(*Mac OS X*)*] -Parent=Opera 11.00 -Platform="MacOSX" -Win32=false - -[Opera/11.*(*SunOS*)*] -Parent=Opera 11.00 -Platform="SunOS" -Win32=false - -[Opera/11.*(*Win 9x 4.90*)*] -Parent=Opera 11.00 -Platform="WinME" - -[Opera/11.*(*Windows 2000*)*] -Parent=Opera 11.00 -Platform="Win2000" - -[Opera/11.*(*Windows 95*)*] -Parent=Opera 11.00 -Platform="Win95" -Platform_Version=95 - -[Opera/11.*(*Windows 98*)*] -Parent=Opera 11.00 -Platform="Win98" -Platform_Version=98 - -[Opera/11.*(*Windows ME*)*] -Parent=Opera 11.00 -Platform="WinME" - -[Opera/11.*(*Windows NT 4.0*)*] -Parent=Opera 11.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/11.*(*Windows NT 5.0*)*] -Parent=Opera 11.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/11.*(*Windows NT 5.1*)*] -Parent=Opera 11.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/11.*(*Windows NT 5.2*)*] -Parent=Opera 11.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/11.*(*Windows NT 6.0*)*] -Parent=Opera 11.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/11.*(*Windows NT 6.1*)*] -Parent=Opera 11.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/9.80*(*FreeBSD*)*Version/11.*] -Parent=Opera 11.00 -Platform="FreeBSD" -Win32=false - -[Opera/9.80*(*Linux*)*Version/11.*] -Parent=Opera 11.00 -Platform="Linux" -Win32=false - -[Opera/9.80*(*Mac OS X*)*Version/11.*] -Parent=Opera 11.00 -Platform="MacOSX" -Win32=false - -[Opera/9.80*(*SunOS*)*Version/11.*] -Parent=Opera 11.00 -Platform="SunOS" - -[Opera/9.80*(*Win 9x 4.90*)*Version/11.*] -Parent=Opera 11.00 -Platform="WinME" - -[Opera/9.80*(*Windows 2000*)*Version/11.*] -Parent=Opera 11.00 -Platform="Win2000" - -[Opera/9.80*(*Windows 95*)*Version/11.*] -Parent=Opera 11.00 -Platform="Win95" -Platform_Version=95 - -[Opera/9.80*(*Windows 98*)*Version/11.*] -Parent=Opera 11.00 -Platform="Win98" -Platform_Version=98 - -[Opera/9.80*(*Windows ME*)*Version/11.*] -Parent=Opera 11.00 -Platform="WinME" - -[Opera/9.80*(*Windows NT 4.0*)*Version/11.*] -Parent=Opera 11.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/9.80*(*Windows NT 5.0*)*Version/11.*] -Parent=Opera 11.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/9.80*(*Windows NT 5.1*)*Version/11.*] -Parent=Opera 11.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/9.80*(*Windows NT 5.2*)*Version/11.*] -Parent=Opera 11.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/9.80*(*Windows NT 6.0*)*Version/11.*] -Parent=Opera 11.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/9.80*(*Windows NT 6.1*)*Version/11.*] -Parent=Opera 11.00 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.10 - -[Opera 11.10] -Parent=DefaultProperties -Comment="Opera 11.10" -Browser="Opera" -Version=11.10 -MajorVer=11 -MinorVer=10 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/?.*(*FreeBSD*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/11.1*FreeBSD*)*] -Parent=Opera 11.10 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/11.1*Linux*)*] -Parent=Opera 11.10 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/11.1*Mac OS X*)*] -Parent=Opera 11.10 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/11.1*SunOS*)*] -Parent=Opera 11.10 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/11.1*Win 9x 4.90*)*] -Parent=Opera 11.10 -Platform="WinME" - -[Mozilla/?.*(*Opera/11.1*Windows 2000*)*] -Parent=Opera 11.10 -Platform="Win2000" - -[Mozilla/?.*(*Opera/11.1*Windows 95*)*] -Parent=Opera 11.10 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/11.1*Windows 98*)*] -Parent=Opera 11.10 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/11.1*Windows ME*)*] -Parent=Opera 11.10 - -[Mozilla/?.*(*Opera/11.1*Windows NT 4.0*)*] -Parent=Opera 11.10 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/11.1*Windows NT 5.0*)*] -Parent=Opera 11.10 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/11.1*Windows NT 5.1*)*] -Parent=Opera 11.10 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/11.1*Windows NT 5.2*)*] -Parent=Opera 11.10 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/11.1*Windows NT 6.0*)*] -Parent=Opera 11.10 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/11.1*Windows NT 6.1*)*] -Parent=Opera 11.10 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.1*] -Parent=Opera 11.10 -Platform="Win7" -Platform_Version=6.1 - -[Opera/11.1*(*FreeBSD*)*] -Parent=Opera 11.10 -Platform="FreeBSD" -Win32=false - -[Opera/11.1*(*Linux*)*] -Parent=Opera 11.10 -Platform="Linux" -Win32=false - -[Opera/11.1*(*Mac OS X*)*] -Parent=Opera 11.10 -Platform="MacOSX" -Win32=false - -[Opera/11.1*(*SunOS*)*] -Parent=Opera 11.10 -Platform="SunOS" -Win32=false - -[Opera/11.1*(*Win 9x 4.90*)*] -Parent=Opera 11.10 -Platform="WinME" - -[Opera/11.1*(*Windows 2000*)*] -Parent=Opera 11.10 -Platform="Win2000" - -[Opera/11.1*(*Windows 95*)*] -Parent=Opera 11.10 -Platform="Win95" -Platform_Version=95 - -[Opera/11.1*(*Windows 98*)*] -Parent=Opera 11.10 -Platform="Win98" -Platform_Version=98 - -[Opera/11.1*(*Windows ME*)*] -Parent=Opera 11.10 -Platform="WinME" - -[Opera/11.1*(*Windows NT 4.0*)*] -Parent=Opera 11.10 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/11.1*(*Windows NT 5.0*)*] -Parent=Opera 11.10 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/11.1*(*Windows NT 5.1*)*] -Parent=Opera 11.10 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/11.1*(*Windows NT 5.2*)*] -Parent=Opera 11.10 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/11.1*(*Windows NT 6.0*)*] -Parent=Opera 11.10 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/11.1*(*Windows NT 6.1*)*] -Parent=Opera 11.10 -Platform="Win7" -Platform_Version=6.1 - -[Opera/9.80*(*FreeBSD*)*Version/11.1*] -Parent=Opera 11.10 -Platform="FreeBSD" -Win32=false - -[Opera/9.80*(*Linux*)*Version/11.1*] -Parent=Opera 11.10 -Platform="Linux" -Win32=false - -[Opera/9.80*(*Mac OS X*)*Version/11.1*] -Parent=Opera 11.10 -Platform="MacOSX" -Win32=false - -[Opera/9.80*(*SunOS*)*Version/11.1*] -Parent=Opera 11.10 -Platform="SunOS" - -[Opera/9.80*(*Win 9x 4.90*)*Version/11.1*] -Parent=Opera 11.10 -Platform="WinME" - -[Opera/9.80*(*Windows 2000*)*Version/11.1*] -Parent=Opera 11.10 -Platform="Win2000" - -[Opera/9.80*(*Windows 95*)*Version/11.1*] -Parent=Opera 11.10 -Platform="Win95" -Platform_Version=95 - -[Opera/9.80*(*Windows 98*)*Version/11.1*] -Parent=Opera 11.10 -Platform="Win98" -Platform_Version=98 - -[Opera/9.80*(*Windows ME*)*Version/11.1*] -Parent=Opera 11.10 -Platform="WinME" - -[Opera/9.80*(*Windows NT 4.0*)*Version/11.1*] -Parent=Opera 11.10 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/9.80*(*Windows NT 5.0*)*Version/11.1*] -Parent=Opera 11.10 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/9.80*(*Windows NT 5.1*)*Version/11.1*] -Parent=Opera 11.10 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/9.80*(*Windows NT 5.2*)*Version/11.1*] -Parent=Opera 11.10 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/9.80*(*Windows NT 6.0*)*Version/11.1*] -Parent=Opera 11.10 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/9.80*(*Windows NT 6.1*)*Version/11.1*] -Parent=Opera 11.10 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.50 - -[Opera 11.50] -Parent=DefaultProperties -Comment="Opera 11.50" -Browser="Opera" -Version=11.50 -MajorVer=11 -MinorVer=50 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/?.*(*FreeBSD*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/11.5*FreeBSD*)*] -Parent=Opera 11.50 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/11.5*Linux*)*] -Parent=Opera 11.50 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/11.5*Mac OS X*)*] -Parent=Opera 11.50 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/11.5*SunOS*)*] -Parent=Opera 11.50 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/11.5*Win 9x 4.90*)*] -Parent=Opera 11.50 -Platform="WinME" - -[Mozilla/?.*(*Opera/11.5*Windows 2000*)*] -Parent=Opera 11.50 -Platform="Win2000" - -[Mozilla/?.*(*Opera/11.5*Windows 95*)*] -Parent=Opera 11.50 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/11.5*Windows 98*)*] -Parent=Opera 11.50 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/11.5*Windows ME*)*] -Parent=Opera 11.50 - -[Mozilla/?.*(*Opera/11.5*Windows NT 4.0*)*] -Parent=Opera 11.50 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/11.5*Windows NT 5.0*)*] -Parent=Opera 11.50 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/11.5*Windows NT 5.1*)*] -Parent=Opera 11.50 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/11.5*Windows NT 5.2*)*] -Parent=Opera 11.50 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/11.5*Windows NT 6.0*)*] -Parent=Opera 11.50 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/11.5*Windows NT 6.1*)*] -Parent=Opera 11.50 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.5*] -Parent=Opera 11.50 -Platform="Win7" -Platform_Version=6.1 - -[Opera/11.5*(*FreeBSD*)*] -Parent=Opera 11.50 -Platform="FreeBSD" -Win32=false - -[Opera/11.5*(*Linux*)*] -Parent=Opera 11.50 -Platform="Linux" -Win32=false - -[Opera/11.5*(*Mac OS X*)*] -Parent=Opera 11.50 -Platform="MacOSX" -Win32=false - -[Opera/11.5*(*SunOS*)*] -Parent=Opera 11.50 -Platform="SunOS" -Win32=false - -[Opera/11.5*(*Win 9x 4.90*)*] -Parent=Opera 11.50 -Platform="WinME" - -[Opera/11.5*(*Windows 2000*)*] -Parent=Opera 11.50 -Platform="Win2000" - -[Opera/11.5*(*Windows 95*)*] -Parent=Opera 11.50 -Platform="Win95" -Platform_Version=95 - -[Opera/11.5*(*Windows 98*)*] -Parent=Opera 11.50 -Platform="Win98" -Platform_Version=98 - -[Opera/11.5*(*Windows ME*)*] -Parent=Opera 11.50 -Platform="WinME" - -[Opera/11.5*(*Windows NT 4.0*)*] -Parent=Opera 11.50 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/11.5*(*Windows NT 5.0*)*] -Parent=Opera 11.50 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/11.5*(*Windows NT 5.1*)*] -Parent=Opera 11.50 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/11.5*(*Windows NT 5.2*)*] -Parent=Opera 11.50 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/11.5*(*Windows NT 6.0*)*] -Parent=Opera 11.50 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/11.5*(*Windows NT 6.1*)*] -Parent=Opera 11.50 -Platform="Win7" -Platform_Version=6.1 - -[Opera/9.80*(*FreeBSD*)*Version/11.5*] -Parent=Opera 11.50 -Platform="FreeBSD" -Win32=false - -[Opera/9.80*(*Linux*)*Version/11.5*] -Parent=Opera 11.50 -Platform="Linux" -Win32=false - -[Opera/9.80*(*Mac OS X*)*Version/11.5*] -Parent=Opera 11.50 -Platform="MacOSX" -Win32=false - -[Opera/9.80*(*SunOS*)*Version/11.5*] -Parent=Opera 11.50 -Platform="SunOS" - -[Opera/9.80*(*Win 9x 4.90*)*Version/11.5*] -Parent=Opera 11.50 -Platform="WinME" - -[Opera/9.80*(*Windows 2000*)*Version/11.5*] -Parent=Opera 11.50 -Platform="Win2000" - -[Opera/9.80*(*Windows 95*)*Version/11.5*] -Parent=Opera 11.50 -Platform="Win95" -Platform_Version=95 - -[Opera/9.80*(*Windows 98*)*Version/11.5*] -Parent=Opera 11.50 -Platform="Win98" -Platform_Version=98 - -[Opera/9.80*(*Windows ME*)*Version/11.5*] -Parent=Opera 11.50 -Platform="WinME" - -[Opera/9.80*(*Windows NT 4.0*)*Version/11.5*] -Parent=Opera 11.50 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/9.80*(*Windows NT 5.0*)*Version/11.5*] -Parent=Opera 11.50 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/9.80*(*Windows NT 5.1*)*Version/11.5*] -Parent=Opera 11.50 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/9.80*(*Windows NT 5.2*)*Version/11.5*] -Parent=Opera 11.50 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/9.80*(*Windows NT 6.0*)*Version/11.5*] -Parent=Opera 11.50 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/9.80*(*Windows NT 6.1*)*Version/11.5*] -Parent=Opera 11.50 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.60 - -[Opera 11.60] -Parent=DefaultProperties -Comment="Opera 11.60" -Browser="Opera" -Version=11.60 -MajorVer=11 -MinorVer=60 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/?.*(*FreeBSD*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/11.6*FreeBSD*)*] -Parent=Opera 11.60 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/11.6*Linux*)*] -Parent=Opera 11.60 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/11.6*Mac OS X*)*] -Parent=Opera 11.60 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/11.6*SunOS*)*] -Parent=Opera 11.60 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/11.6*Win 9x 4.90*)*] -Parent=Opera 11.60 -Platform="WinME" - -[Mozilla/?.*(*Opera/11.6*Windows 2000*)*] -Parent=Opera 11.60 -Platform="Win2000" - -[Mozilla/?.*(*Opera/11.6*Windows 95*)*] -Parent=Opera 11.60 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/11.6*Windows 98*)*] -Parent=Opera 11.60 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/11.6*Windows ME*)*] -Parent=Opera 11.60 - -[Mozilla/?.*(*Opera/11.6*Windows NT 4.0*)*] -Parent=Opera 11.60 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/11.6*Windows NT 5.0*)*] -Parent=Opera 11.60 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/11.6*Windows NT 5.1*)*] -Parent=Opera 11.60 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/11.6*Windows NT 5.2*)*] -Parent=Opera 11.60 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/11.6*Windows NT 6.0*)*] -Parent=Opera 11.60 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/11.6*Windows NT 6.1*)*] -Parent=Opera 11.60 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.6*] -Parent=Opera 11.60 -Platform="Win7" -Platform_Version=6.1 - -[Opera/11.6*(*FreeBSD*)*] -Parent=Opera 11.60 -Platform="FreeBSD" -Win32=false - -[Opera/11.6*(*Linux*)*] -Parent=Opera 11.60 -Platform="Linux" -Win32=false - -[Opera/11.6*(*Mac OS X*)*] -Parent=Opera 11.60 -Platform="MacOSX" -Win32=false - -[Opera/11.6*(*SunOS*)*] -Parent=Opera 11.60 -Platform="SunOS" -Win32=false - -[Opera/11.6*(*Win 9x 4.90*)*] -Parent=Opera 11.60 -Platform="WinME" - -[Opera/11.6*(*Windows 2000*)*] -Parent=Opera 11.60 -Platform="Win2000" - -[Opera/11.6*(*Windows 95*)*] -Parent=Opera 11.60 -Platform="Win95" -Platform_Version=95 - -[Opera/11.6*(*Windows 98*)*] -Parent=Opera 11.60 -Platform="Win98" -Platform_Version=98 - -[Opera/11.6*(*Windows ME*)*] -Parent=Opera 11.60 -Platform="WinME" - -[Opera/11.6*(*Windows NT 4.0*)*] -Parent=Opera 11.60 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/11.6*(*Windows NT 5.0*)*] -Parent=Opera 11.60 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/11.6*(*Windows NT 5.1*)*] -Parent=Opera 11.60 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/11.6*(*Windows NT 5.2*)*] -Parent=Opera 11.60 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/11.6*(*Windows NT 6.0*)*] -Parent=Opera 11.60 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/11.6*(*Windows NT 6.1*)*] -Parent=Opera 11.60 -Platform="Win7" -Platform_Version=6.1 - -[Opera/9.80*(*FreeBSD*)*Version/11.6*] -Parent=Opera 11.60 -Platform="FreeBSD" -Win32=false - -[Opera/9.80*(*Linux*)*Version/11.6*] -Parent=Opera 11.60 -Platform="Linux" -Win32=false - -[Opera/9.80*(*Mac OS X*)*Version/11.6*] -Parent=Opera 11.60 -Platform="MacOSX" -Win32=false - -[Opera/9.80*(*SunOS*)*Version/11.6*] -Parent=Opera 11.60 -Platform="SunOS" - -[Opera/9.80*(*Win 9x 4.90*)*Version/11.6*] -Parent=Opera 11.60 -Platform="WinME" - -[Opera/9.80*(*Windows 2000*)*Version/11.6*] -Parent=Opera 11.60 -Platform="Win2000" - -[Opera/9.80*(*Windows 95*)*Version/11.6*] -Parent=Opera 11.60 -Platform="Win95" -Platform_Version=95 - -[Opera/9.80*(*Windows 98*)*Version/11.6*] -Parent=Opera 11.60 -Platform="Win98" -Platform_Version=98 - -[Opera/9.80*(*Windows ME*)*Version/11.6*] -Parent=Opera 11.60 -Platform="WinME" - -[Opera/9.80*(*Windows NT 4.0*)*Version/11.6*] -Parent=Opera 11.60 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/9.80*(*Windows NT 5.0*)*Version/11.6*] -Parent=Opera 11.60 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/9.80*(*Windows NT 5.1*)*Version/11.6*] -Parent=Opera 11.60 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/9.80*(*Windows NT 5.2*)*Version/11.6*] -Parent=Opera 11.60 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/9.80*(*Windows NT 6.0*)*Version/11.6*] -Parent=Opera 11.60 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/9.80*(*Windows NT 6.1*)*Version/11.6*] -Parent=Opera 11.60 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.00 - -[Opera 12.00] -Parent=DefaultProperties -Comment="Opera 12.00" -Browser="Opera" -Version=12.00 -MajorVer=12 -MinorVer=0 -Beta=true -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/?.*(*FreeBSD*)*Opera?12.*] -Parent=Opera 12.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?12.*] -Parent=Opera 12.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?12.*] -Parent=Opera 12.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/12.*FreeBSD*)*] -Parent=Opera 12.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/12.*Linux*)*] -Parent=Opera 12.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/12.*Mac OS X*)*] -Parent=Opera 12.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/12.*SunOS*)*] -Parent=Opera 12.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/12.*Win 9x 4.90*)*] -Parent=Opera 12.00 -Platform="WinME" - -[Mozilla/?.*(*Opera/12.*Windows 2000*)*] -Parent=Opera 12.00 -Platform="Win2000" - -[Mozilla/?.*(*Opera/12.*Windows 95*)*] -Parent=Opera 12.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/12.*Windows 98*)*] -Parent=Opera 12.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/12.*Windows ME*)*] -Parent=Opera 12.00 - -[Mozilla/?.*(*Opera/12.*Windows NT 4.0*)*] -Parent=Opera 12.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/12.*Windows NT 5.0*)*] -Parent=Opera 12.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/12.*Windows NT 5.1*)*] -Parent=Opera 12.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/12.*Windows NT 5.2*)*] -Parent=Opera 12.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/12.*Windows NT 6.0*)*] -Parent=Opera 12.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/12.*Windows NT 6.1*)*] -Parent=Opera 12.00 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?12.*] -Parent=Opera 12.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.*] -Parent=Opera 12.00 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?12.*] -Parent=Opera 12.00 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?12.*] -Parent=Opera 12.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?12.*] -Parent=Opera 12.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?12.*] -Parent=Opera 12.00 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.*] -Parent=Opera 12.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.*] -Parent=Opera 12.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.*] -Parent=Opera 12.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.*] -Parent=Opera 12.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.*] -Parent=Opera 12.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.*] -Parent=Opera 12.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/12.*(*FreeBSD*)*] -Parent=Opera 12.00 -Platform="FreeBSD" -Win32=false - -[Opera/12.*(*Linux*)*] -Parent=Opera 12.00 -Platform="Linux" -Win32=false - -[Opera/12.*(*Mac OS X*)*] -Parent=Opera 12.00 -Platform="MacOSX" -Win32=false - -[Opera/12.*(*SunOS*)*] -Parent=Opera 12.00 -Platform="SunOS" -Win32=false - -[Opera/12.*(*Win 9x 4.90*)*] -Parent=Opera 12.00 -Platform="WinME" - -[Opera/12.*(*Windows 2000*)*] -Parent=Opera 12.00 -Platform="Win2000" - -[Opera/12.*(*Windows 95*)*] -Parent=Opera 12.00 -Platform="Win95" -Platform_Version=95 - -[Opera/12.*(*Windows 98*)*] -Parent=Opera 12.00 -Platform="Win98" -Platform_Version=98 - -[Opera/12.*(*Windows ME*)*] -Parent=Opera 12.00 -Platform="WinME" - -[Opera/12.*(*Windows NT 4.0*)*] -Parent=Opera 12.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/12.*(*Windows NT 5.0*)*] -Parent=Opera 12.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/12.*(*Windows NT 5.1*)*] -Parent=Opera 12.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/12.*(*Windows NT 5.2*)*] -Parent=Opera 12.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/12.*(*Windows NT 6.0*)*] -Parent=Opera 12.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/12.*(*Windows NT 6.1*)*] -Parent=Opera 12.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/9.80*(*FreeBSD*)*Version/12.*] -Parent=Opera 12.00 -Platform="FreeBSD" -Win32=false - -[Opera/9.80*(*Linux*)*Version/12.*] -Parent=Opera 12.00 -Platform="Linux" -Win32=false - -[Opera/9.80*(*Mac OS X*)*Version/12.*] -Parent=Opera 12.00 -Platform="MacOSX" -Win32=false - -[Opera/9.80*(*SunOS*)*Version/12.*] -Parent=Opera 12.00 -Platform="SunOS" - -[Opera/9.80*(*Win 9x 4.90*)*Version/12.*] -Parent=Opera 12.00 -Platform="WinME" - -[Opera/9.80*(*Windows 2000*)*Version/12.*] -Parent=Opera 12.00 -Platform="Win2000" - -[Opera/9.80*(*Windows 95*)*Version/12.*] -Parent=Opera 12.00 -Platform="Win95" -Platform_Version=95 - -[Opera/9.80*(*Windows 98*)*Version/12.*] -Parent=Opera 12.00 -Platform="Win98" -Platform_Version=98 - -[Opera/9.80*(*Windows ME*)*Version/12.*] -Parent=Opera 12.00 -Platform="WinME" - -[Opera/9.80*(*Windows NT 4.0*)*Version/12.*] -Parent=Opera 12.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/9.80*(*Windows NT 5.0*)*Version/12.*] -Parent=Opera 12.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/9.80*(*Windows NT 5.1*)*Version/12.*] -Parent=Opera 12.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/9.80*(*Windows NT 5.2*)*Version/12.*] -Parent=Opera 12.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/9.80*(*Windows NT 6.0*)*Version/12.*] -Parent=Opera 12.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/9.80*(*Windows NT 6.1*)*Version/12.*] -Parent=Opera 12.00 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 2.00 - -[Opera 2.00] -Parent=DefaultProperties -Comment="Opera 2.00" -Browser="Opera" -Version=2.00 -MajorVer=2 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true - -[Mozilla/?.*(*FreeBSD*)*Opera?2.*] -Parent=Opera 2.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?2.*] -Parent=Opera 2.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?2.*] -Parent=Opera 2.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/2.*FreeBSD*)*] -Parent=Opera 2.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/2.*Linux*)*] -Parent=Opera 2.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/2.*Mac OS X*)*] -Parent=Opera 2.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/2.*SunOS*)*] -Parent=Opera 2.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/2.*Win 9x 4.90*)*] -Parent=Opera 2.00 -Platform="WinME" - -[Mozilla/?.*(*Opera/2.*Windows 2000*)*] -Parent=Opera 2.00 -Platform="Win2000" - -[Mozilla/?.*(*Opera/2.*Windows 95*)*] -Parent=Opera 2.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/2.*Windows 98*)*] -Parent=Opera 2.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/2.*Windows ME*)*] -Parent=Opera 2.00 - -[Mozilla/?.*(*Opera/2.*Windows NT 4.0*)*] -Parent=Opera 2.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/2.*Windows NT 5.0*)*] -Parent=Opera 2.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/2.*Windows NT 5.1*)*] -Parent=Opera 2.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/2.*Windows NT 5.2*)*] -Parent=Opera 2.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/2.*Windows NT 6.0*)*] -Parent=Opera 2.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/2.*Windows NT 6.1*)*] -Parent=Opera 2.00 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?2.*] -Parent=Opera 2.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?2.*] -Parent=Opera 2.00 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?2.*] -Parent=Opera 2.00 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?2.*] -Parent=Opera 2.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?2.*] -Parent=Opera 2.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?2.*] -Parent=Opera 2.00 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?2.*] -Parent=Opera 2.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?2.*] -Parent=Opera 2.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?2.*] -Parent=Opera 2.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?2.*] -Parent=Opera 2.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?2.*] -Parent=Opera 2.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?2.*] -Parent=Opera 2.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/2.*(*FreeBSD*)*] -Parent=Opera 2.00 -Platform="FreeBSD" -Win32=false - -[Opera/2.*(*Linux*)*] -Parent=Opera 2.00 -Platform="Linux" -Win32=false - -[Opera/2.*(*Mac OS X*)*] -Parent=Opera 2.00 -Platform="MacOSX" -Win32=false - -[Opera/2.*(*SunOS*)*] -Parent=Opera 2.00 -Platform="SunOS" -Win32=false - -[Opera/2.*(*Win 9x 4.90*)*] -Parent=Opera 2.00 -Platform="WinME" - -[Opera/2.*(*Windows 2000*)*] -Parent=Opera 2.00 -Platform="Win2000" - -[Opera/2.*(*Windows 95*)*] -Parent=Opera 2.00 -Platform="Win95" -Platform_Version=95 - -[Opera/2.*(*Windows 98*)*] -Parent=Opera 2.00 -Platform="Win98" -Platform_Version=98 - -[Opera/2.*(*Windows ME*)*] -Parent=Opera 2.00 -Platform="WinME" - -[Opera/2.*(*Windows NT 4.0*)*] -Parent=Opera 2.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/2.*(*Windows NT 5.0*)*] -Parent=Opera 2.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/2.*(*Windows NT 5.1*)*] -Parent=Opera 2.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/2.*(*Windows NT 5.2*)*] -Parent=Opera 2.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/2.*(*Windows NT 6.0*)*] -Parent=Opera 2.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/2.*(*Windows NT 6.1*)*] -Parent=Opera 2.00 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 3.0 - -[Opera 3.00] -Parent=DefaultProperties -Comment="Opera 3.0" -Browser="Opera" -Version=3.00 -MajorVer=3 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true - -[Mozilla/?.*(*FreeBSD*)*Opera?3.*] -Parent=Opera 3.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?3.*] -Parent=Opera 3.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?3.*] -Parent=Opera 3.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/3.*FreeBSD*)*] -Parent=Opera 3.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/3.*Linux*)*] -Parent=Opera 3.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/3.*Mac OS X*)*] -Parent=Opera 3.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/3.*SunOS*)*] -Parent=Opera 3.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/3.*Win 9x 4.90*)*] -Parent=Opera 3.00 -Platform="WinME" - -[Mozilla/?.*(*Opera/3.*Windows 2000*)*] -Parent=Opera 3.00 -Platform="Win2000" - -[Mozilla/?.*(*Opera/3.*Windows 95*)*] -Parent=Opera 3.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/3.*Windows 98*)*] -Parent=Opera 3.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/3.*Windows ME*)*] -Parent=Opera 3.00 - -[Mozilla/?.*(*Opera/3.*Windows NT 4.0*)*] -Parent=Opera 3.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/3.*Windows NT 5.0*)*] -Parent=Opera 3.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/3.*Windows NT 5.1*)*] -Parent=Opera 3.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/3.*Windows NT 5.2*)*] -Parent=Opera 3.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/3.*Windows NT 6.0*)*] -Parent=Opera 3.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/3.*Windows NT 6.1*)*] -Parent=Opera 3.00 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?3.*] -Parent=Opera 3.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?3.*] -Parent=Opera 3.00 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?3.*] -Parent=Opera 3.00 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?3.*] -Parent=Opera 3.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?3.*] -Parent=Opera 3.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?3.*] -Parent=Opera 3.00 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?3.*] -Parent=Opera 3.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?3.*] -Parent=Opera 3.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?3.*] -Parent=Opera 3.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?3.*] -Parent=Opera 3.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?3.*] -Parent=Opera 3.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?3.*] -Parent=Opera 3.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/3.*(*FreeBSD*)*] -Parent=Opera 3.00 -Platform="FreeBSD" -Win32=false - -[Opera/3.*(*Linux*)*] -Parent=Opera 3.00 -Platform="Linux" -Win32=false - -[Opera/3.*(*Mac OS X*)*] -Parent=Opera 3.00 -Platform="MacOSX" -Win32=false - -[Opera/3.*(*SunOS*)*] -Parent=Opera 3.00 -Platform="SunOS" -Win32=false - -[Opera/3.*(*Win 9x 4.90*)*] -Parent=Opera 3.00 -Platform="WinME" - -[Opera/3.*(*Windows 2000*)*] -Parent=Opera 3.00 -Platform="Win2000" - -[Opera/3.*(*Windows 95*)*] -Parent=Opera 3.00 -Platform="Win95" -Platform_Version=95 - -[Opera/3.*(*Windows 98*)*] -Parent=Opera 3.00 -Platform="Win98" -Platform_Version=98 - -[Opera/3.*(*Windows ME*)*] -Parent=Opera 3.00 -Platform="WinME" - -[Opera/3.*(*Windows NT 4.0*)*] -Parent=Opera 3.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/3.*(*Windows NT 5.0*)*] -Parent=Opera 3.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/3.*(*Windows NT 5.1*)*] -Parent=Opera 3.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/3.*(*Windows NT 5.2*)*] -Parent=Opera 3.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/3.*(*Windows NT 6.0*)*] -Parent=Opera 3.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/3.*(*Windows NT 6.1*)*] -Parent=Opera 3.00 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 4.00 - -[Opera 4.00] -Parent=DefaultProperties -Comment="Opera 4.00" -Browser="Opera" -Version=4.00 -MajorVer=4 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/?.*(*FreeBSD*)*Opera?4.*] -Parent=Opera 4.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?4.*] -Parent=Opera 4.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?4.*] -Parent=Opera 4.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/4.*FreeBSD*)*] -Parent=Opera 4.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/4.*Linux*)*] -Parent=Opera 4.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/4.*Mac OS X*)*] -Parent=Opera 4.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/4.*SunOS*)*] -Parent=Opera 4.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/4.*Win 9x 4.90*)*] -Parent=Opera 4.00 -Platform="WinME" - -[Mozilla/?.*(*Opera/4.*Windows 2000*)*] -Parent=Opera 4.00 -Platform="Win2000" - -[Mozilla/?.*(*Opera/4.*Windows 95*)*] -Parent=Opera 4.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/4.*Windows 98*)*] -Parent=Opera 4.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/4.*Windows ME*)*] -Parent=Opera 4.00 - -[Mozilla/?.*(*Opera/4.*Windows NT 4.0*)*] -Parent=Opera 4.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/4.*Windows NT 5.0*)*] -Parent=Opera 4.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/4.*Windows NT 5.1*)*] -Parent=Opera 4.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/4.*Windows NT 5.2*)*] -Parent=Opera 4.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/4.*Windows NT 6.0*)*] -Parent=Opera 4.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/4.*Windows NT 6.1*)*] -Parent=Opera 4.00 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?4.*] -Parent=Opera 4.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?4.*] -Parent=Opera 4.00 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?4.*] -Parent=Opera 4.00 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?4.*] -Parent=Opera 4.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?4.*] -Parent=Opera 4.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?4.*] -Parent=Opera 4.00 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?4.*] -Parent=Opera 4.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?4.*] -Parent=Opera 4.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?4.*] -Parent=Opera 4.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?4.*] -Parent=Opera 4.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?4.*] -Parent=Opera 4.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?4.*] -Parent=Opera 4.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/4.*(*FreeBSD*)*] -Parent=Opera 4.00 -Platform="FreeBSD" -Win32=false - -[Opera/4.*(*Linux*)*] -Parent=Opera 4.00 -Platform="Linux" -Win32=false - -[Opera/4.*(*Mac OS X*)*] -Parent=Opera 4.00 -Platform="MacOSX" -Win32=false - -[Opera/4.*(*SunOS*)*] -Parent=Opera 4.00 -Platform="SunOS" -Win32=false - -[Opera/4.*(*Win 9x 4.90*)*] -Parent=Opera 4.00 -Platform="WinME" - -[Opera/4.*(*Windows 2000*)*] -Parent=Opera 4.00 -Platform="Win2000" - -[Opera/4.*(*Windows 95*)*] -Parent=Opera 4.00 -Platform="Win95" -Platform_Version=95 - -[Opera/4.*(*Windows 98*)*] -Parent=Opera 4.00 -Platform="Win98" -Platform_Version=98 - -[Opera/4.*(*Windows ME*)*] -Parent=Opera 4.00 -Platform="WinME" - -[Opera/4.*(*Windows NT 4.0*)*] -Parent=Opera 4.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/4.*(*Windows NT 5.0*)*] -Parent=Opera 4.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/4.*(*Windows NT 5.1*)*] -Parent=Opera 4.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/4.*(*Windows NT 5.2*)*] -Parent=Opera 4.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/4.*(*Windows NT 6.0*)*] -Parent=Opera 4.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/4.*(*Windows NT 6.1*)*] -Parent=Opera 4.00 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 5.00 - -[Opera 5.00] -Parent=DefaultProperties -Comment="Opera 5.00" -Browser="Opera" -Version=5.00 -MajorVer=5 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/?.*(*FreeBSD*)*Opera?5.*] -Parent=Opera 5.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?5.*] -Parent=Opera 5.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?5.*] -Parent=Opera 5.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/5.*FreeBSD*)*] -Parent=Opera 5.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/5.*Linux*)*] -Parent=Opera 5.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/5.*Mac OS X*)*] -Parent=Opera 5.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/5.*SunOS*)*] -Parent=Opera 5.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/5.*Win 9x 4.90*)*] -Parent=Opera 5.00 -Platform="WinME" - -[Mozilla/?.*(*Opera/5.*Windows 2000*)*] -Parent=Opera 5.00 -Platform="Win2000" - -[Mozilla/?.*(*Opera/5.*Windows 95*)*] -Parent=Opera 5.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/5.*Windows 98*)*] -Parent=Opera 5.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/5.*Windows ME*)*] -Parent=Opera 5.00 - -[Mozilla/?.*(*Opera/5.*Windows NT 4.0*)*] -Parent=Opera 5.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/5.*Windows NT 5.0*)*] -Parent=Opera 5.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/5.*Windows NT 5.1*)*] -Parent=Opera 5.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/5.*Windows NT 5.2*)*] -Parent=Opera 5.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/5.*Windows NT 6.0*)*] -Parent=Opera 5.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/5.*Windows NT 6.1*)*] -Parent=Opera 5.00 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?5.*] -Parent=Opera 5.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?5.*] -Parent=Opera 5.00 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?5.*] -Parent=Opera 5.00 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?5.*] -Parent=Opera 5.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?5.*] -Parent=Opera 5.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?5.*] -Parent=Opera 5.00 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?5.*] -Parent=Opera 5.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?5.*] -Parent=Opera 5.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?5.*] -Parent=Opera 5.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?5.*] -Parent=Opera 5.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?5.*] -Parent=Opera 5.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?5.*] -Parent=Opera 5.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/5.*(*FreeBSD*)*] -Parent=Opera 5.00 -Platform="FreeBSD" -Win32=false - -[Opera/5.*(*Linux*)*] -Parent=Opera 5.00 -Platform="Linux" -Win32=false - -[Opera/5.*(*Mac OS X*)*] -Parent=Opera 5.00 -Platform="MacOSX" -Win32=false - -[Opera/5.*(*SunOS*)*] -Parent=Opera 5.00 -Platform="SunOS" -Win32=false - -[Opera/5.*(*Win 9x 4.90*)*] -Parent=Opera 5.00 -Platform="WinME" - -[Opera/5.*(*Windows 2000*)*] -Parent=Opera 5.00 -Platform="Win2000" - -[Opera/5.*(*Windows 95*)*] -Parent=Opera 5.00 -Platform="Win95" -Platform_Version=95 - -[Opera/5.*(*Windows 98*)*] -Parent=Opera 5.00 -Platform="Win98" -Platform_Version=98 - -[Opera/5.*(*Windows ME*)*] -Parent=Opera 5.00 -Platform="WinME" - -[Opera/5.*(*Windows NT 4.0*)*] -Parent=Opera 5.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/5.*(*Windows NT 5.0*)*] -Parent=Opera 5.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/5.*(*Windows NT 5.1*)*] -Parent=Opera 5.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/5.*(*Windows NT 5.2*)*] -Parent=Opera 5.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/5.*(*Windows NT 6.0*)*] -Parent=Opera 5.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/5.*(*Windows NT 6.1*)*] -Parent=Opera 5.00 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 6.00 - -[Opera 6.00] -Parent=DefaultProperties -Comment="Opera 6.00" -Browser="Opera" -Version=6.00 -MajorVer=6 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/?.*(*FreeBSD*)*Opera?6.*] -Parent=Opera 6.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?6.*] -Parent=Opera 6.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?6.*] -Parent=Opera 6.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/6.*FreeBSD*)*] -Parent=Opera 6.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/6.*Linux*)*] -Parent=Opera 6.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/6.*Mac OS X*)*] -Parent=Opera 6.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/6.*SunOS*)*] -Parent=Opera 6.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/6.*Win 9x 4.90*)*] -Parent=Opera 6.00 -Platform="WinME" - -[Mozilla/?.*(*Opera/6.*Windows 2000*)*] -Parent=Opera 6.00 -Platform="Win2000" - -[Mozilla/?.*(*Opera/6.*Windows 95*)*] -Parent=Opera 6.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/6.*Windows 98*)*] -Parent=Opera 6.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/6.*Windows ME*)*] -Parent=Opera 6.00 - -[Mozilla/?.*(*Opera/6.*Windows NT 4.0*)*] -Parent=Opera 6.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/6.*Windows NT 5.0*)*] -Parent=Opera 6.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/6.*Windows NT 5.1*)*] -Parent=Opera 6.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/6.*Windows NT 5.2*)*] -Parent=Opera 6.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/6.*Windows NT 6.0*)*] -Parent=Opera 6.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/6.*Windows NT 6.1*)*] -Parent=Opera 6.00 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?6.*] -Parent=Opera 6.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Symbian*)*Opera?6.*] -Parent=Opera 6.00 -Platform="SymbianOS" -Win32=false -isMobileDevice=true - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?6.*] -Parent=Opera 6.00 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?6.*] -Parent=Opera 6.00 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?6.*] -Parent=Opera 6.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?6.*] -Parent=Opera 6.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?6.*] -Parent=Opera 6.00 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?6.*] -Parent=Opera 6.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?6.*] -Parent=Opera 6.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?6.*] -Parent=Opera 6.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?6.*] -Parent=Opera 6.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?6.*] -Parent=Opera 6.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?6.*] -Parent=Opera 6.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/6.*(*FreeBSD*)*] -Parent=Opera 6.00 -Platform="FreeBSD" -Win32=false - -[Opera/6.*(*Linux*)*] -Parent=Opera 6.00 -Platform="Linux" -Win32=false - -[Opera/6.*(*Mac OS X*)*] -Parent=Opera 6.00 -Platform="MacOSX" -Win32=false - -[Opera/6.*(*SunOS*)*] -Parent=Opera 6.00 -Platform="SunOS" -Win32=false - -[Opera/6.*(*Win 9x 4.90*)*] -Parent=Opera 6.00 -Platform="WinME" - -[Opera/6.*(*Windows 2000*)*] -Parent=Opera 6.00 -Platform="Win2000" - -[Opera/6.*(*Windows 95*)*] -Parent=Opera 6.00 -Platform="Win95" -Platform_Version=95 - -[Opera/6.*(*Windows 98*)*] -Parent=Opera 6.00 -Platform="Win98" -Platform_Version=98 - -[Opera/6.*(*Windows ME*)*] -Parent=Opera 6.00 -Platform="WinME" - -[Opera/6.*(*Windows NT 4.0*)*] -Parent=Opera 6.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/6.*(*Windows NT 5.0*)*] -Parent=Opera 6.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/6.*(*Windows NT 5.1*)*] -Parent=Opera 6.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/6.*(*Windows NT 5.2*)*] -Parent=Opera 6.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/6.*(*Windows NT 6.0*)*] -Parent=Opera 6.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/6.*(*Windows NT 6.1*)*] -Parent=Opera 6.00 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.00 - -[Opera 7.00] -Parent=DefaultProperties -Comment="Opera 7.00" -Browser="Opera" -Version=7.00 -MajorVer=7 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/?.*(*FreeBSD*)*Opera?7.*] -Parent=Opera 7.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?7.*] -Parent=Opera 7.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?7.*] -Parent=Opera 7.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/7.*FreeBSD*)*] -Parent=Opera 7.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/7.*Linux*)*] -Parent=Opera 7.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/7.*Mac OS X*)*] -Parent=Opera 7.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/7.*SunOS*)*] -Parent=Opera 7.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/7.*Win 9x 4.90*)*] -Parent=Opera 7.00 -Platform="WinME" - -[Mozilla/?.*(*Opera/7.*Windows 2000*)*] -Parent=Opera 7.00 -Platform="Win2000" - -[Mozilla/?.*(*Opera/7.*Windows 95*)*] -Parent=Opera 7.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/7.*Windows 98*)*] -Parent=Opera 7.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/7.*Windows ME*)*] -Parent=Opera 7.00 - -[Mozilla/?.*(*Opera/7.*Windows NT 4.0*)*] -Parent=Opera 7.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/7.*Windows NT 5.0*)*] -Parent=Opera 7.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/7.*Windows NT 5.1*)*] -Parent=Opera 7.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/7.*Windows NT 5.2*)*] -Parent=Opera 7.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/7.*Windows NT 6.0*)*] -Parent=Opera 7.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/7.*Windows NT 6.1*)*] -Parent=Opera 7.00 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?7.*] -Parent=Opera 7.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.*] -Parent=Opera 7.00 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?7.*] -Parent=Opera 7.00 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?7.*] -Parent=Opera 7.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?7.*] -Parent=Opera 7.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?7.*] -Parent=Opera 7.00 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.*] -Parent=Opera 7.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.*] -Parent=Opera 7.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.*] -Parent=Opera 7.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.*] -Parent=Opera 7.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.*] -Parent=Opera 7.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.*] -Parent=Opera 7.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/7.*(*FreeBSD*)*] -Parent=Opera 7.00 -Platform="FreeBSD" -Win32=false - -[Opera/7.*(*Linux*)*] -Parent=Opera 7.00 -Platform="Linux" -Win32=false - -[Opera/7.*(*Mac OS X*)*] -Parent=Opera 7.00 -Platform="MacOSX" -Win32=false - -[Opera/7.*(*SunOS*)*] -Parent=Opera 7.00 -Platform="SunOS" -Win32=false - -[Opera/7.*(*Win 9x 4.90*)*] -Parent=Opera 7.00 -Platform="WinME" - -[Opera/7.*(*Windows 2000*)*] -Parent=Opera 7.00 -Platform="Win2000" - -[Opera/7.*(*Windows 95*)*] -Parent=Opera 7.00 -Platform="Win95" -Platform_Version=95 - -[Opera/7.*(*Windows 98*)*] -Parent=Opera 7.00 -Platform="Win98" -Platform_Version=98 - -[Opera/7.*(*Windows ME*)*] -Parent=Opera 7.00 -Platform="WinME" - -[Opera/7.*(*Windows NT 4.0*)*] -Parent=Opera 7.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/7.*(*Windows NT 5.0*)*] -Parent=Opera 7.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/7.*(*Windows NT 5.1*)*] -Parent=Opera 7.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/7.*(*Windows NT 5.2*)*] -Parent=Opera 7.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/7.*(*Windows NT 6.0*)*] -Parent=Opera 7.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/7.*(*Windows NT 6.1*)*] -Parent=Opera 7.00 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.00 - -[Opera 8.00] -Parent=DefaultProperties -Comment="Opera 8.00" -Browser="Opera" -Version=8.00 -MajorVer=8 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/?.*(*FreeBSD*)*Opera?8.*] -Parent=Opera 8.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?8.*] -Parent=Opera 8.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?8.*] -Parent=Opera 8.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/8.*FreeBSD*)*] -Parent=Opera 8.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/8.*Linux*)*] -Parent=Opera 8.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/8.*Mac OS X*)*] -Parent=Opera 8.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/8.*SunOS*)*] -Parent=Opera 8.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/8.*Win 9x 4.90*)*] -Parent=Opera 8.00 -Platform="WinME" - -[Mozilla/?.*(*Opera/8.*Windows 2000*)*] -Parent=Opera 8.00 -Platform="Win2000" - -[Mozilla/?.*(*Opera/8.*Windows 95*)*] -Parent=Opera 8.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/8.*Windows 98*)*] -Parent=Opera 8.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/8.*Windows ME*)*] -Parent=Opera 8.00 - -[Mozilla/?.*(*Opera/8.*Windows NT 4.0*)*] -Parent=Opera 8.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/8.*Windows NT 5.0*)*] -Parent=Opera 8.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/8.*Windows NT 5.1*)*] -Parent=Opera 8.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/8.*Windows NT 5.2*)*] -Parent=Opera 8.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/8.*Windows NT 6.0*)*] -Parent=Opera 8.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/8.*Windows NT 6.1*)*] -Parent=Opera 8.00 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?8.*] -Parent=Opera 8.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?8.*] -Parent=Opera 8.00 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?8.*] -Parent=Opera 8.00 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?8.*] -Parent=Opera 8.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?8.*] -Parent=Opera 8.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?8.*] -Parent=Opera 8.00 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?8.*] -Parent=Opera 8.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?8.*] -Parent=Opera 8.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?8.*] -Parent=Opera 8.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?8.*] -Parent=Opera 8.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?8.*] -Parent=Opera 8.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?8.*] -Parent=Opera 8.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/8.*(*FreeBSD*)*] -Parent=Opera 8.00 -Platform="FreeBSD" -Win32=false - -[Opera/8.*(*Linux*)*] -Parent=Opera 8.00 -Platform="Linux" -Win32=false - -[Opera/8.*(*Mac OS X*)*] -Parent=Opera 8.00 -Platform="MacOSX" -Win32=false - -[Opera/8.*(*SunOS*)*] -Parent=Opera 8.00 -Platform="SunOS" -Win32=false - -[Opera/8.*(*Win 9x 4.90*)*] -Parent=Opera 8.00 -Platform="WinME" - -[Opera/8.*(*Windows 2000*)*] -Parent=Opera 8.00 -Platform="Win2000" - -[Opera/8.*(*Windows 95*)*] -Parent=Opera 8.00 -Platform="Win95" -Platform_Version=95 - -[Opera/8.*(*Windows 98*)*] -Parent=Opera 8.00 -Platform="Win98" -Platform_Version=98 - -[Opera/8.*(*Windows ME*)*] -Parent=Opera 8.00 -Platform="WinME" - -[Opera/8.*(*Windows NT 4.0*)*] -Parent=Opera 8.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/8.*(*Windows NT 5.0*)*] -Parent=Opera 8.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/8.*(*Windows NT 5.1*)*] -Parent=Opera 8.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/8.*(*Windows NT 5.2*)*] -Parent=Opera 8.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/8.*(*Windows NT 6.0*)*] -Parent=Opera 8.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/8.*(*Windows NT 6.1*)*] -Parent=Opera 8.00 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.00 - -[Opera 9.00] -Parent=DefaultProperties -Comment="Opera 9.00" -Browser="Opera" -Version=9.00 -MajorVer=9 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/?.*(*FreeBSD*)*Opera?9.*] -Parent=Opera 9.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Linux*)*Opera?9.*] -Parent=Opera 9.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Mac OS X*)*Opera?9.*] -Parent=Opera 9.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.*] -Parent=Opera 9.00 -Platform="MacPPC" -Win32=false - -[Mozilla/?.*(*Opera/9.*FreeBSD*)*] -Parent=Opera 9.00 -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera/9.*Linux*)*] -Parent=Opera 9.00 -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera/9.*Mac OS X*)*] -Parent=Opera 9.00 -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera/9.*SunOS*)*] -Parent=Opera 9.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera/9.*Win 9x 4.90*)*] -Parent=Opera 9.00 -Platform="WinME" - -[Mozilla/?.*(*Opera/9.*Windows 2000*)*] -Parent=Opera 9.00 -Platform="Win2000" - -[Mozilla/?.*(*Opera/9.*Windows 95*)*] -Parent=Opera 9.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera/9.*Windows 98*)*] -Parent=Opera 9.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera/9.*Windows ME*)*] -Parent=Opera 9.00 - -[Mozilla/?.*(*Opera/9.*Windows NT 4.0*)*] -Parent=Opera 9.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera/9.*Windows NT 5.0*)*] -Parent=Opera 9.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera/9.*Windows NT 5.1*)*] -Parent=Opera 9.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera/9.*Windows NT 5.2*)*] -Parent=Opera 9.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera/9.*Windows NT 6.0*)*] -Parent=Opera 9.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera/9.*Windows NT 6.1*)*] -Parent=Opera 9.00 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*SunOS*)*Opera?9.*] -Parent=Opera 9.00 -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.*] -Parent=Opera 9.00 -Platform="WinME" - -[Mozilla/?.*(*Windows 2000*)*Opera?9.*] -Parent=Opera 9.00 -Platform="Win2000" - -[Mozilla/?.*(*Windows 95*)*Opera?9.*] -Parent=Opera 9.00 -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Windows 98*)*Opera?9.*] -Parent=Opera 9.00 -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Windows ME*)*Opera?9.*] -Parent=Opera 9.00 -Platform="WinME" - -[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.*] -Parent=Opera 9.00 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.*] -Parent=Opera 9.00 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.*] -Parent=Opera 9.00 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.*] -Parent=Opera 9.00 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.*] -Parent=Opera 9.00 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.*] -Parent=Opera 9.00 -Platform="Win7" -Platform_Version=6.1 - -[Opera/9.*(*FreeBSD*)*] -Parent=Opera 9.00 -Platform="FreeBSD" -Win32=false - -[Opera/9.*(*Linux*)*] -Parent=Opera 9.00 -Platform="Linux" -Win32=false - -[Opera/9.*(*Mac OS X*)*] -Parent=Opera 9.00 -Platform="MacOSX" -Win32=false - -[Opera/9.*(*SunOS*)*] -Parent=Opera 9.00 -Platform="SunOS" -Win32=false - -[Opera/9.*(*Win 9x 4.90*)*] -Parent=Opera 9.00 -Platform="WinME" - -[Opera/9.*(*Windows 2000*)*] -Parent=Opera 9.00 -Platform="Win2000" - -[Opera/9.*(*Windows 95*)*] -Parent=Opera 9.00 -Platform="Win95" -Platform_Version=95 - -[Opera/9.*(*Windows 98*)*] -Parent=Opera 9.00 -Platform="Win98" -Platform_Version=98 - -[Opera/9.*(*Windows ME*)*] -Parent=Opera 9.00 -Platform="WinME" - -[Opera/9.*(*Windows NT 4.0*)*] -Parent=Opera 9.00 -Platform="WinNT" -Platform_Version=4.0 - -[Opera/9.*(*Windows NT 5.0*)*] -Parent=Opera 9.00 -Platform="Win2000" -Platform_Version=5.0 - -[Opera/9.*(*Windows NT 5.1*)*] -Parent=Opera 9.00 -Platform="WinXP" -Platform_Version=5.1 - -[Opera/9.*(*Windows NT 5.2*)*] -Parent=Opera 9.00 -Platform="WinXP" -Platform_Version=5.2 - -[Opera/9.*(*Windows NT 6.0*)*] -Parent=Opera 9.00 -Platform="WinVista" -Platform_Version=6.0 - -[Opera/9.*(*Windows NT 6.1*)*] -Parent=Opera 9.00 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Generic - -[Opera Generic] -Parent=DefaultProperties -Comment="Opera Generic" -Browser="Opera" -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -CssVersion=1 - -[Mozilla/?.*(*Opera?*FreeBSD*)*] -Parent=Opera Generic -Platform="FreeBSD" -Win32=false - -[Mozilla/?.*(*Opera?*Linux*)*] -Parent=Opera Generic -Platform="Linux" -Win32=false - -[Mozilla/?.*(*Opera?*Mac OS X*)*] -Parent=Opera Generic -Platform="MacOSX" -Win32=false - -[Mozilla/?.*(*Opera?*Macintosh*)*] -Parent=Opera Generic -Platform="MacPPC" -Win32=false - -[Mozilla/?.*(*Opera?*SunOS*)*] -Parent=Opera Generic -Platform="SunOS" -Win32=false - -[Mozilla/?.*(*Opera?*UNIX*)*] -Parent=Opera Generic -Platform="Unix" -Win32=false - -[Mozilla/?.*(*Opera?*Win 9x 4.90*)*] -Parent=Opera Generic -Platform="WinME" - -[Mozilla/?.*(*Opera?*Windows 2000*)*] -Parent=Opera Generic -Platform="Win2000" - -[Mozilla/?.*(*Opera?*Windows 95*)*] -Parent=Opera Generic -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.*(*Opera?*Windows 98*)*] -Parent=Opera Generic -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.*(*Opera?*Windows CE*)*] -Parent=Opera Generic -Platform="WinCE" - -[Mozilla/?.*(*Opera?*Windows ME*)*] -Parent=Opera Generic -Platform="WinME" - -[Mozilla/?.*(*Opera?*Windows NT 4.0*)*] -Parent=Opera Generic -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.*(*Opera?*Windows NT 5.0*)*] -Parent=Opera Generic -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.*(*Opera?*Windows NT 5.1*)*] -Parent=Opera Generic -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.*(*Opera?*Windows NT 5.2*)*] -Parent=Opera Generic -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.*(*Opera?*Windows NT 6.0*)*] -Parent=Opera Generic -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.*(*Opera?*Windows NT 6.1*)*] -Parent=Opera Generic -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.*(*Opera?*Windows XP*)*] -Parent=Opera Generic -Platform="WinXP" - -[Mozilla/?.*(*Windows CE*Opera*] -Parent=Opera Generic -Platform="WinCE" - -[Mozilla/?.**(*FreeBSD*)*Opera*] -Parent=Opera Generic -Platform="FreeBSD" -Win32=false - -[Mozilla/?.**(*Linux*)*Opera*] -Parent=Opera Generic -Platform="Linux" -Win32=false - -[Mozilla/?.**(*Mac OS X*)*Opera*] -Parent=Opera Generic -Platform="MacOSX" -Win32=false - -[Mozilla/?.**(*Macintosh*)*Opera*] -Parent=Opera Generic -Platform="MacPPC" -Win32=false - -[Mozilla/?.**(*SunOS*)*Opera*] -Parent=Opera Generic -Platform="SunOS" -Win32=false - -[Mozilla/?.**(*UNIX*)*Opera*] -Parent=Opera Generic -Platform="Unix" -Win32=false - -[Mozilla/?.**(*Win 9x 4.90*)*Opera*] -Parent=Opera Generic -Platform="WinME" - -[Mozilla/?.**(*Windows 2000*)*Opera*] -Parent=Opera Generic -Platform="Win2000" - -[Mozilla/?.**(*Windows 95*)*Opera*] -Parent=Opera Generic -Platform="Win95" -Platform_Version=95 - -[Mozilla/?.**(*Windows 98*)*Opera*] -Parent=Opera Generic -Platform="Win98" -Platform_Version=98 - -[Mozilla/?.**(*Windows ME*Opera*)*] -Parent=Opera Generic - -[Mozilla/?.**(*Windows NT 4.0*)*Opera*] -Parent=Opera Generic -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/?.**(*Windows NT 5.0*)*Opera*] -Parent=Opera Generic -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/?.**(*Windows NT 5.1*)*Opera*] -Parent=Opera Generic -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/?.**(*Windows NT 5.2*)*Opera*] -Parent=Opera Generic -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/?.**(*Windows NT 6.0*)*Opera*] -Parent=Opera Generic -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/?.**(*Windows NT 6.1*)*Opera*] -Parent=Opera Generic -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/?.**(*Windows XP*)*Opera*] -Parent=Opera Generic -Platform="WinXP" - -[Opera/*(*FreeBSD*)*] -Parent=Opera Generic -Platform="FreeBSD" -Win32=false - -[Opera/*(*Linux*)*] -Parent=Opera Generic -Platform="Linux" -Win32=false - -[Opera/*(*Mac OS X*)*] -Parent=Opera Generic -Platform="MacOSX" -Win32=false - -[Opera/*(*Macintosh*)*] -Parent=Opera Generic -Platform="MacPPC" -Win32=false - -[Opera/*(*SunOS*)*] -Parent=Opera Generic -Platform="SunOS" -Win32=false - -[Opera/*(*UNIX*)*] -Parent=Opera Generic -Platform="Unix" -Win32=false - -[Opera/*(*Win 9x 4.90*)*] -Parent=Opera Generic -Platform="WinME" - -[Opera/*(*Windows 2000*)*] -Parent=Opera Generic -Platform="Win2000" - -[Opera/*(*Windows 95*)*] -Parent=Opera Generic -Platform="Win95" -Platform_Version=95 - -[Opera/*(*Windows 98*)*] -Parent=Opera Generic -Platform="Win98" -Platform_Version=98 - -[Opera/*(*Windows CE*)*] -Parent=Opera Generic -Platform="WinCE" - -[Opera/*(*Windows ME*)*] -Parent=Opera Generic -Platform="WinME" - -[Opera/*(*Windows NT 4.0*)*] -Parent=Opera Generic -Platform="WinNT" -Platform_Version=4.0 - -[Opera/*(*Windows NT 5.0*)*] -Parent=Opera Generic -Platform="Win2000" -Platform_Version=5.0 - -[Opera/*(*Windows NT 5.1*)*] -Parent=Opera Generic -Platform="WinXP" -Platform_Version=5.1 - -[Opera/*(*Windows NT 5.2*)*] -Parent=Opera Generic -Platform="WinXP" -Platform_Version=5.2 - -[Opera/*(*Windows NT 6.0*)*] -Parent=Opera Generic -Platform="WinVista" -Platform_Version=6.0 - -[Opera/*(*Windows NT 6.1*)*] -Parent=Opera Generic -Platform="Win7" -Platform_Version=6.1 - -[Opera/*(*Windows XP*)*] -Parent=Opera Generic -Platform="WinXP" - -[Opera/9.80*(*FreeBSD*)*] -Parent=Opera Generic -Platform="FreeBSD" -Win32=false - -[Opera/9.80*(*Linux*)*] -Parent=Opera Generic -Platform="Linux" -Win32=false - -[Opera/9.80*(*Mac OS X*)*] -Parent=Opera Generic -Platform="MacOSX" -Win32=false - -[Opera/9.80*(*Macintosh*)*] -Parent=Opera Generic -Platform="MacPPC" -Win32=false - -[Opera/9.80*(*SunOS*)*] -Parent=Opera Generic -Platform="SunOS" -Win32=false - -[Opera/9.80*(*UNIX*)*] -Parent=Opera Generic -Platform="Unix" -Win32=false - -[Opera/9.80*(*Win 9x 4.90*)*] -Parent=Opera Generic -Platform="WinME" - -[Opera/9.80*(*Windows 2000*)*] -Parent=Opera Generic -Platform="Win2000" - -[Opera/9.80*(*Windows 95*)*] -Parent=Opera Generic -Platform="Win95" -Platform_Version=95 - -[Opera/9.80*(*Windows 98*)*] -Parent=Opera Generic -Platform="Win98" -Platform_Version=98 - -[Opera/9.80*(*Windows CE*)*] -Parent=Opera Generic -Platform="WinCE" - -[Opera/9.80*(*Windows ME*)*] -Parent=Opera Generic -Platform="WinME" - -[Opera/9.80*(*Windows NT 4.0*)*] -Parent=Opera Generic -Platform="WinNT" -Platform_Version=4.0 - -[Opera/9.80*(*Windows NT 5.0*)*] -Parent=Opera Generic -Platform="Win2000" -Platform_Version=5.0 - -[Opera/9.80*(*Windows NT 5.1*)*] -Parent=Opera Generic -Platform="WinXP" -Platform_Version=5.1 - -[Opera/9.80*(*Windows NT 5.2*)*] -Parent=Opera Generic -Platform="WinXP" -Platform_Version=5.2 - -[Opera/9.80*(*Windows NT 6.0*)*] -Parent=Opera Generic -Platform="WinVista" -Platform_Version=6.0 - -[Opera/9.80*(*Windows NT 6.1*)*] -Parent=Opera Generic -Platform="Win7" -Platform_Version=6.1 - -[Opera/9.80*(*Windows XP*)*] -Parent=Opera Generic -Platform="WinXP" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Navigator 9.0 - -[Navigator 9.0] -Parent=DefaultProperties -Comment="Navigator 9.0" -Browser="Navigator" -Version=9.0 -MajorVer=9 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.8.*) Gecko/* Firefox/2.* Navigator/9.*] -Parent=Navigator 9.0 -Platform="MacOSX" - -[Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.8.*) Gecko/* Firefox/2.* Navigator/9.*] -Parent=Navigator 9.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.8.*) Gecko/* Firefox/2.* Navigator/9.*] -Parent=Navigator 9.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.8.*) Gecko/* Firefox/2.* Navigator/9.*] -Parent=Navigator 9.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.8.*) Gecko/* Firefox/2.* Navigator/9.*] -Parent=Navigator 9.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.8.*) Gecko/* Firefox/2.* Navigator/9.*] -Parent=Navigator 9.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (X11; U; Linux*; *; rv:1.8.*) Gecko/* Firefox/2.* Navigator/9.*] -Parent=Navigator 9.0 -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.0 - -[Netscape 4.0] -Parent=DefaultProperties -Comment="Netscape 4.0" -Browser="Netscape" -Version=4.0 -MajorVer=4 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=1 - -[Mozilla/4.0*(Macintosh*] -Parent=Netscape 4.0 -Version=4.03 -MajorVer=4 -MinorVer=03 -Platform="MacPPC" -Win32=false - -[Mozilla/4.0*(Win95;*] -Parent=Netscape 4.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/4.0*(Win98;*] -Parent=Netscape 4.0 -Version=4.03 -MajorVer=4 -MinorVer=03 -Platform="Win98" -Platform_Version=98 - -[Mozilla/4.0*(WinNT*] -Parent=Netscape 4.0 -Version=4.03 -MajorVer=4 -MinorVer=03 -Platform="WinNT" - -[Mozilla/4.0*(X11;*)] -Parent=Netscape 4.0 -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.0 - -[Netscape 6.0] -Parent=DefaultProperties -Comment="Netscape 6.0" -Browser="Netscape" -Version=6.0 -MajorVer=6 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="MacPPC" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="Win2000" - -[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="WinXP" - -[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="WinXP" - -[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="WinVista" - -[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="Win7" - -[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.*] -Parent=Netscape 6.0 -Platform="Linux" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.0 - -[Netscape 7.0] -Parent=DefaultProperties -Comment="Netscape 7.0" -Browser="Netscape" -Version=7.0 -MajorVer=7 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="MacOSX" - -[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="MacPPC" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win*9x 4.90; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="Win2000" - -[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="WinXP" - -[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="Win2003" - -[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="WinVista" - -[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="Win7" - -[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.*] -Parent=Netscape 7.0 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.0 - -[Netscape 8.0] -Parent=DefaultProperties -Comment="Netscape 8.0" -Browser="Netscape" -Version=8.0 -MajorVer=8 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="MacPPC" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="Win2000" - -[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="WinXP" - -[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="Win2003" - -[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="WinVista" - -[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="Win7" - -[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.*] -Parent=Netscape 8.0 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 9.0 - -[Netscape 9.0] -Parent=DefaultProperties -Comment="Netscape 9.0" -Browser="Netscape" -Version=9.0 -MajorVer=9 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="MacPPC" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="Win2000" - -[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="WinXP" - -[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="Win2003" - -[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="WinVista" - -[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="Win7" - -[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/9.*] -Parent=Netscape 9.0 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PaleMoon 3.6 - -[Palemoon] -Parent=DefaultProperties -Comment="PaleMoon 3.6" -Browser="PaleMoon" -Version=3.6 -MajorVer=3 -MinorVer=6 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.9.*) Gecko/20100403 Firefox/3.6.* (Palemoon/3.6.*)] -Parent=Palemoon -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9.*) Gecko/20100403 Firefox/3.6.* (Palemoon/3.6.*)] -Parent=Palemoon -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.9.*) Gecko/20100403 Firefox/3.6.* (Palemoon/3.6.*)] -Parent=Palemoon -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9.*) Gecko/20100403 Firefox/3.6.* (Palemoon/3.6.*)] -Parent=Palemoon -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9.*) Gecko/20100403 Firefox/3.6.* (Palemoon/3.6.*)] -Parent=Palemoon -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.0 - -[SeaMonkey 1.0] -Parent=DefaultProperties -Comment="SeaMonkey 1.0" -Browser="SeaMonkey" -Version=1.0 -MajorVer=1 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] -Parent=SeaMonkey 1.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] -Parent=SeaMonkey 1.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] -Parent=SeaMonkey 1.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] -Parent=SeaMonkey 1.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] -Parent=SeaMonkey 1.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] -Parent=SeaMonkey 1.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] -Parent=SeaMonkey 1.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] -Parent=SeaMonkey 1.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] -Parent=SeaMonkey 1.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/20060221 SeaMonkey/1.0*] -Parent=SeaMonkey 1.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*] -Parent=SeaMonkey 1.0 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.1 - -[SeaMonkey 1.1] -Parent=DefaultProperties -Comment="SeaMonkey 1.1" -Browser="SeaMonkey" -Version=1.1 -MajorVer=1 -MinorVer=1 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] -Parent=SeaMonkey 1.1 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] -Parent=SeaMonkey 1.1 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] -Parent=SeaMonkey 1.1 -Platform="Win98" -Platform_Version=98 -Win32=false - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] -Parent=SeaMonkey 1.1 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] -Parent=SeaMonkey 1.1 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] -Parent=SeaMonkey 1.1 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] -Parent=SeaMonkey 1.1 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] -Parent=SeaMonkey 1.1 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] -Parent=SeaMonkey 1.1 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] -Parent=SeaMonkey 1.1 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*] -Parent=SeaMonkey 1.1 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 2.0 - -[SeaMonkey 2.0] -Parent=DefaultProperties -Comment="SeaMonkey 2.0" -Browser="SeaMonkey" -Version=2.0 -MajorVer=2 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] -Parent=SeaMonkey 2.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] -Parent=SeaMonkey 2.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] -Parent=SeaMonkey 2.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] -Parent=SeaMonkey 2.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] -Parent=SeaMonkey 2.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] -Parent=SeaMonkey 2.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] -Parent=SeaMonkey 2.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] -Parent=SeaMonkey 2.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] -Parent=SeaMonkey 2.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.9*) Gecko/20060221 SeaMonkey/2.0*] -Parent=SeaMonkey 2.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*] -Parent=SeaMonkey 2.0 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 2.1 - -[SeaMonkey 2.1] -Parent=DefaultProperties -Comment="SeaMonkey 2.1" -Browser="SeaMonkey" -Version=2.1 -MajorVer=2 -MinorVer=1 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (Windows NT 5.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.1*] -Parent=SeaMonkey 2.1 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows NT 6.0; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.1*] -Parent=SeaMonkey 2.1 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows NT 6.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.1*] -Parent=SeaMonkey 2.1 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seamonkey 2.2 - -[Seamonkey 2.2] -Parent=DefaultProperties -Comment="Seamonkey 2.2" -Browser="SeaMonkey" -Version=2.2 -MajorVer=2 -MinorVer=2 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (Windows NT 5.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.2*] -Parent=Seamonkey 2.2 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows NT 6.0; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.2*] -Parent=Seamonkey 2.2 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows NT 6.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.2*] -Parent=Seamonkey 2.2 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seamonkey 2.3 - -[Seamonkey 2.3] -Parent=DefaultProperties -Comment="Seamonkey 2.3" -Browser="SeaMonkey" -Version=2.3 -MajorVer=2 -MinorVer=3 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (Windows NT 5.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.3*] -Parent=Seamonkey 2.3 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows NT 6.0; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.3*] -Parent=Seamonkey 2.3 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows NT 6.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.3*] -Parent=Seamonkey 2.3 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seamonkey 2.4 - -[Seamonkey 2.4] -Parent=DefaultProperties -Comment="Seamonkey 2.4" -Browser="SeaMonkey" -Version=2.4 -MajorVer=2 -MinorVer=4 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (Windows NT 5.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.4*] -Parent=Seamonkey 2.4 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows NT 6.0; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.4*] -Parent=Seamonkey 2.4 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows NT 6.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.4*] -Parent=Seamonkey 2.4 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seamonkey 2.5 - -[Seamonkey 2.5] -Parent=DefaultProperties -Comment="Seamonkey 2.5" -Browser="SeaMonkey" -Version=2.5 -MajorVer=2 -MinorVer=5 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (Windows NT 5.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.5*] -Parent=Seamonkey 2.5 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows NT 6.0; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.5*] -Parent=Seamonkey 2.5 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows NT 6.1; rv:2.*) Gecko/* Firefox/4.* SeaMonkey/2.5*] -Parent=Seamonkey 2.5 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 1.0 - -[Flock 1.0] -Parent=DefaultProperties -Comment="Flock 1.0" -Browser="Flock" -Version=1.0 -MajorVer=1 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] -Parent=Flock 1.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] -Parent=Flock 1.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] -Parent=Flock 1.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] -Parent=Flock 1.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] -Parent=Flock 1.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] -Parent=Flock 1.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*] -Parent=Flock 1.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 2.0 - -[Flock 2.0] -Parent=DefaultProperties -Comment="Flock 2.0" -Browser="Flock" -Version=2.0 -MajorVer=2 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] -Parent=Flock 2.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] -Parent=Flock 2.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] -Parent=Flock 2.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] -Parent=Flock 2.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] -Parent=Flock 2.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] -Parent=Flock 2.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*] -Parent=Flock 2.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 3.0 - -[Flock 3.0] -Parent=DefaultProperties -Comment="Flock 3.0" -Browser="Flock" -Version=3.0 -MajorVer=3 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Flock/3.* Chrome/* Safari/*] -Parent=Flock 3.0 -Version=3.5 -MajorVer=3 -MinorVer=5 -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sleipnir 2.0 - -[Sleipnir] -Parent=DefaultProperties -Comment="Sleipnir 2.0" -Browser="Sleipnir" -Version=2.0 -MajorVer=2 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.0*) Sleipnir/2.*] -Parent=Sleipnir -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.1*) Sleipnir/2.*] -Parent=Sleipnir -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.2*) Sleipnir/2.*] -Parent=Sleipnir -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.0*) Sleipnir/2.*] -Parent=Sleipnir -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.1*) Sleipnir/2.*] -Parent=Sleipnir -Platform="Win7" -Platform_Version=6.1 - -[Sleipnir*] -Parent=Sleipnir -Win32=false - -[Sleipnir/2.*] -Parent=Sleipnir -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.0 - -[Firefox 1.0] -Parent=DefaultProperties -Comment="Firefox 1.0" -Browser="Firefox" -Version=1.0 -MajorVer=1 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="MacPPC" -Win32=false - -[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="OS/2" -Win32=false - -[Mozilla/5.0 (Windows; *; Win 9x 4.90*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; *; Windows NT 5.1; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; *; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *; *Linux*; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *; DragonFly*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Win32=false - -[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.*] -Parent=Firefox 1.0 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 10.0 - -[Firefox 10.0] -Parent=DefaultProperties -Comment="Firefox 10.0" -Browser="Firefox" -Version=10.0 -MajorVer=10 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/10.*] -Parent=Firefox 10.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/10.*] -Parent=Firefox 10.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 11.0 - -[Firefox 11.0] -Parent=DefaultProperties -Comment="Firefox 11.0" -Browser="Firefox" -Version=11.0 -MajorVer=11 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/11.*] -Parent=Firefox 11.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/11.*] -Parent=Firefox 11.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 12.0 - -[Firefox 12.0] -Parent=DefaultProperties -Comment="Firefox 12.0" -Browser="Firefox" -Version=12.0 -MajorVer=12 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/12.*] -Parent=Firefox 12.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/12.*] -Parent=Firefox 12.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 13.0 - -[Firefox 13.0] -Parent=DefaultProperties -Comment="Firefox 13.0" -Browser="Firefox" -Version=13.0 -MajorVer=13 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/13.*] -Parent=Firefox 13.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/13.*] -Parent=Firefox 13.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 14.0 - -[Firefox 14.0] -Parent=DefaultProperties -Comment="Firefox 14.0" -Browser="Firefox" -Version=14.0 -MajorVer=14 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Android; Mobile;*rv:*)*Gecko/14.*Firefox/14.*] -Parent=Firefox 14.0 -Platform="Android" -isMobileDevice=true - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/14.*] -Parent=Firefox 14.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/14.*] -Parent=Firefox 14.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 15.0 - -[Firefox 15.0] -Parent=DefaultProperties -Comment="Firefox 15.0" -Browser="Firefox" -Version=15.0 -MajorVer=15 -MinorVer=0 -Beta=true -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/15.*] -Parent=Firefox 15.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/15.*] -Parent=Firefox 15.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 16.0 - -[Firefox 16.0] -Parent=DefaultProperties -Comment="Firefox 16.0" -Browser="Firefox" -Version=16.0 -MajorVer=16 -MinorVer=0 -Alpha=true -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/16.*] -Parent=Firefox 16.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/16.*] -Parent=Firefox 16.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 17.0 - -[Firefox 17.0] -Parent=DefaultProperties -Comment="Firefox 17.0" -Browser="Firefox" -Version=17.0 -MajorVer=17 -MinorVer=0 -Alpha=true -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/17.*] -Parent=Firefox 17.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/17.*] -Parent=Firefox 17.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.0 - -[Firefox 2.0] -Parent=DefaultProperties -Comment="Firefox 2.0" -Browser="Firefox" -Version=2.0 -MajorVer=2 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="OS/2" -Win32=false - -[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="WinME" - -[Mozilla/5.0 (Windows; *; Win95; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; *; Win98; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.8*) Gecko/* Firefox/2.*] -Parent=Firefox 2.0 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.0 - -[Firefox 3.0] -Parent=DefaultProperties -Comment="Firefox 3.0" -Browser="Firefox" -Version=3.0 -MajorVer=3 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.0*] -Parent=Firefox 3.0 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.1 - -[Firefox 3.1] -Parent=DefaultProperties -Comment="Firefox 3.1" -Browser="Firefox" -Version=3.1 -MajorVer=3 -MinorVer=1 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.1*] -Parent=Firefox 3.1 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.5 - -[Firefox 3.5] -Parent=DefaultProperties -Comment="Firefox 3.5" -Browser="Firefox" -Version=3.5 -MajorVer=3 -MinorVer=5 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9.*) Gecko/* Firefox/3.5*] -Parent=Firefox 3.5 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.6 - -[Firefox 3.6] -Parent=DefaultProperties -Comment="Firefox 3.6" -Browser="Firefox" -Version=3.6 -MajorVer=3 -MinorVer=6 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9.2*) Gecko/* Firefox/3.6*] -Parent=Firefox 3.6 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 4.0 - -[Firefox 4.0] -Parent=DefaultProperties -Comment="Firefox 4.0" -Browser="Firefox" -Version=4.0 -MajorVer=4 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*rv:2.0*) Gecko/*Firefox/4.0*] -Parent=Firefox 4.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1 WOW64*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:2.0*) Gecko/* Firefox/4.0*] -Parent=Firefox 4.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 4.2 - -[Firefox 4.2] -Parent=DefaultProperties -Comment="Firefox 4.2" -Browser="Firefox" -Version=4.2 -MajorVer=4 -MinorVer=2 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Windows NT 5.0*rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1 WOW64*rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Macintosh; *Mac OS X*; rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *; HP-UX*; *; rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (X11; *; IRIX64*; *; rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *; SunOS*; *; rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (X11; *Linux*; rv:2.2a*) Gecko/* Firefox/4.2a*] -Parent=Firefox 4.2 -Platform="Linux" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 5.0 - -[Firefox 5.0] -Parent=DefaultProperties -Comment="Firefox 5.0" -Browser="Firefox" -Version=5.0 -MajorVer=5 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*Windows NT 5.0*rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (Macintosh; *Mac OS X*; rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (X11; *; HP-UX*;*rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (X11; *; IRIX64*; *; rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *; SunOS*; *; rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (X11; *Linux*; rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11;*FreeBSD*;*rv:5.*) Gecko/* Firefox/5.0*] -Parent=Firefox 5.0 -Platform="FreeBSD" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 6.0 - -[Firefox 6.0] -Parent=DefaultProperties -Comment="Firefox 6.0" -Browser="Firefox" -Version=6.0 -MajorVer=6 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/6.*] -Parent=Firefox 6.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/6.*] -Parent=Firefox 6.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 7.0 - -[Firefox 7.0] -Parent=DefaultProperties -Comment="Firefox 7.0" -Browser="Firefox" -Version=7.0 -MajorVer=7 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/7.*] -Parent=Firefox 7.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/7.*] -Parent=Firefox 7.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 8.0 - -[Firefox 8.0] -Parent=DefaultProperties -Comment="Firefox 8.0" -Browser="Firefox" -Version=8.0 -MajorVer=8 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/8.*] -Parent=Firefox 8.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/8.*] -Parent=Firefox 8.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 9.0 - -[Firefox 9.0] -Parent=DefaultProperties -Comment="Firefox 9.0" -Browser="Firefox" -Version=9.0 -MajorVer=9 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=3 - -[Mozilla/5.0 (*FreeBSD*)*Gecko/*Firefox/9.*] -Parent=Firefox 9.0 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (*HP-UX*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="HP-UX" -Win32=false - -[Mozilla/5.0 (*IRIX64*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="IRIX64" -Win32=false - -[Mozilla/5.0 (*Linux*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (*OpenBSD*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (*SunOS*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="SunOS" -Win32=false - -[Mozilla/5.0 (*Windows NT 5.0*rv:*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 5.2*rv:*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.0*rv:*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.1*rv:*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/5.0 (*Windows NT 6.2*rv:*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*) Gecko/* Firefox/9.*] -Parent=Firefox 9.0 -Platform="Win8" -Platform_Version=6.2 -Win64=true - -[Mozilla/5.0 (Macintosh; *Mac OS X; U; *; rv:1.9.*) Gecko/* Thunderbird/1.*] -Parent=Thunderbird 1.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.9.*) Gecko/* Thunderbird/1.*] -Parent=Thunderbird 1.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9.*) Gecko/* Thunderbird/1.*] -Parent=Thunderbird 1.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.9.*) Gecko/* Thunderbird/1.*] -Parent=Thunderbird 1.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9.*) Gecko/* Thunderbird/1.*] -Parent=Thunderbird 1.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9.*) Gecko/* Thunderbird/1.*] -Parent=Thunderbird 1.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (X11; U; Linux i686*; *; rv:1.9.*) Gecko/* Thunderbird/1.*] -Parent=Thunderbird 1.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (Macintosh; *Mac OS X; U; *; rv:1.9.*) Gecko/* Thunderbird/2.*] -Parent=Thunderbird 2.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.9.*) Gecko/* Thunderbird/2.*] -Parent=Thunderbird 2.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9.*) Gecko/* Thunderbird/2.*] -Parent=Thunderbird 2.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.9.*) Gecko/* Thunderbird/2.*] -Parent=Thunderbird 2.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9.*) Gecko/* Thunderbird/2.*] -Parent=Thunderbird 2.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9.*) Gecko/* Thunderbird/2.*] -Parent=Thunderbird 2.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (X11; U; Linux i686*; *; rv:1.9.*) Gecko/* Thunderbird/2.*] -Parent=Thunderbird 2.0 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (Macintosh; *Mac OS X; U; *; rv:1.9.*) Gecko/* Thunderbird/3.*] -Parent=Thunderbird 3.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:1.9.*) Gecko/* Thunderbird/3.*] -Parent=Thunderbird 3.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9.*) Gecko/* Thunderbird/3.*] -Parent=Thunderbird 3.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:1.9.*) Gecko/* Thunderbird/3.*] -Parent=Thunderbird 3.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9.*) Gecko/* Thunderbird/3.*] -Parent=Thunderbird 3.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9.*) Gecko/* Thunderbird/3.*] -Parent=Thunderbird 3.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (X11; U; Linux i686*; *; rv:1.9.*) Gecko/* Thunderbird/3.*] -Parent=Thunderbird 3.0 -Platform="Linux" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 1.0 - -[Fennec 1.0] -Parent=DefaultProperties -Comment="Fennec 1.0" -Browser="Fennec" -Version=1.0 -MajorVer=1 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (*Mac OS X 10.*rv:1.9*)*Gecko/*Fennec/1.*] -Parent=Fennec 1.0 -Platform="MacOSX" -Platform_Version=10.0 - -[Mozilla/5.0 (*Windows NT 5.1*rv:1.9*)*Gecko/*Fennec/1.*] -Parent=Fennec 1.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (*Windows NT 5.2*rv:1.9*)*Gecko/*Fennec/1.*] -Parent=Fennec 1.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (*Windows NT 6.0*rv:1.9*)*Gecko/*Fennec/1.*] -Parent=Fennec 1.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (*Windows NT 6.1*rv:1.9*)*Gecko/*Fennec/1.*] -Parent=Fennec 1.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (*X11*Linux*rv:1.9*)*Gecko/*Fennec/1.*] -Parent=Fennec 1.0 -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 10.0 - -[Fennec 10.0] -Parent=DefaultProperties -Comment="Fennec 10.0" -Browser="Fennec" -Version=10.0 -MajorVer=10 -MinorVer=0 -Platform="Android" -Platform_Version=2.3 -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=default -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (*Android*Linux*arm*Mobile*rv:10.*)*Gecko/10.*Firefox/10.*Fennec/10.*] -Parent=Fennec 10.0 - -[Mozilla/5.0 (*Android*Mobile*rv:10.*)*Gecko/10.*Firefox/10.*Fennec/10.*] -Parent=Fennec 10.0 - -[Mozilla/5.0 (*Android*Tablet*)*Gecko/10.*Firefox/10.*Fennec/10.*] -Parent=Fennec 10.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 4.0 - -[Fennec 4.0] -Parent=DefaultProperties -Comment="Fennec 4.0" -Browser="Fennec" -Version=4.0 -MajorVer=4 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (Android; Linux*; rv:2.*) Gecko/* Firefox/* Fennec/4.*] -Parent=Fennec 4.0 -Platform="Android" -Win32=false - -[Mozilla/5.0 (Macintosh; Intel Mac OS X*; rv:2.*) Gecko/* Firefox/* Fennec/4.*] -Parent=Fennec 4.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; U; Windows NT 5.1;* rv:1.9*) Gecko/* Firefox/* Fennec/4.*] -Parent=Fennec 4.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2;*rv:1.9*) Gecko/* Firefox/* Fennec/4.*] -Parent=Fennec 4.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0;*rv:1.9*) Gecko/* Firefox/* Fennec/4.*] -Parent=Fennec 4.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1;*rv:1.9*) Gecko/* Firefox/* Fennec/4.*] -Parent=Fennec 4.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1;*rv:2.1*) Gecko/* Firefox/* Fennec/4.*] -Parent=Fennec 4.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (X11; U; Linux*) Gecko/* Fennec/4.*] -Parent=Fennec 4.0 -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 5.0 - -[Fennec 5.0] -Parent=DefaultProperties -Comment="Fennec 5.0" -Browser="Fennec" -Version=5.0 -MajorVer=5 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (Android; Linux*rv:2.*) Gecko/* Firefox/* Fennec/5.0*] -Parent=Fennec 5.0 -Platform="Android" -Win32=false - -[Mozilla/5.0 (Macintosh; Intel Mac OS X*rv:2.1*) Gecko/* Firefox/* Fennec/5.*] -Parent=Fennec 5.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; U; Windows NT 5.1;*rv:1.9*) Gecko/* Firefox/* Fennec/5.*] -Parent=Fennec 5.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2;*rv:1.9*) Gecko/* Firefox/* Fennec/5.*] -Parent=Fennec 5.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0;*rv:1.9*) Gecko/* Firefox/* Fennec/5.*] -Parent=Fennec 5.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1;*rv:1.9*) Gecko/* Firefox/* Fennec/5.*] -Parent=Fennec 5.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (X11; U; Linux*) Gecko/* Fennec/5.*] -Parent=Fennec 5.0 -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 6.0 - -[Fennec 6.0] -Parent=DefaultProperties -Comment="Fennec 6.0" -Browser="Fennec" -Version=6.0 -MajorVer=6 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (Android; Linux*; rv:2.*) Gecko/* Firefox/* Fennec/6.0*] -Parent=Fennec 6.0 -Platform="Android" -Win32=false - -[Mozilla/5.0 (Macintosh; Intel Mac OS X*rv:2.1) Gecko/* Firefox/* Fennec/6.*] -Parent=Fennec 6.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; U; Windows NT 5.1;*rv:1.9*) Gecko/* Firefox/* Fennec/6.*] -Parent=Fennec 6.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2;*rv:1.9*) Gecko/* Firefox/* Fennec/6.*] -Parent=Fennec 6.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0;*rv:1.9*) Gecko/* Firefox/* Fennec/6.*] -Parent=Fennec 6.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1;*rv:1.9*) Gecko/* Firefox/* Fennec/6.*] -Parent=Fennec 6.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; U; Windows NT 6.2;*rv:1.9*) Gecko/* Firefox/* Fennec/6.*] -Parent=Fennec 6.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (X11; U; Linux*) Gecko/* Fennec/6.*] -Parent=Fennec 6.0 -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 7.0 - -[Fennec 7.0] -Parent=DefaultProperties -Comment="Fennec 7.0" -Browser="Fennec" -Version=7.0 -MajorVer=7 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -isMobileDevice=true -CssVersion=3 - -[Mozilla/5.0 (Android; Linux*; rv:2.*) Gecko/* Firefox/* Fennec/7.0*] -Parent=Fennec 7.0 -Platform="Android" -Win32=false - -[Mozilla/5.0 (Macintosh; Intel Mac OS X*; rv:2.1*) Gecko/* Firefox/* Fennec/7.*] -Parent=Fennec 7.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; U; Windows NT 5.1;*rv:1.9*) Gecko/* Firefox/* Fennec/7.*] -Parent=Fennec 7.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2;*rv:1.9*) Gecko/* Firefox/* Fennec/7.*] -Parent=Fennec 7.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0;*rv:1.9*) Gecko/* Firefox/* Fennec/7.*] -Parent=Fennec 7.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1;*rv:1.9*) Gecko/* Firefox/* Fennec/7.*] -Parent=Fennec 7.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; U; Windows NT 6.2;*rv:1.9*) Gecko/* Firefox/* Fennec/7.*] -Parent=Fennec 7.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (X11; U; Linux*) Gecko/* Fennec/7.*] -Parent=Fennec 7.0 -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Thunderbird 1.0 - -[Thunderbird 1.0] -Parent=DefaultProperties -Comment="Thunderbird 1.0" -Browser="Thunderbird" -Version=1.0 -MajorVer=1 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Thunderbird 14.0 - -[Thunderbird 14.0] -Parent=DefaultProperties -Comment="Thunderbird 14.0" -Browser="Thunderbird" -Version=14.0 -MajorVer=14 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -[Mozilla/5.0 (Macintosh; *Mac OS X; U; *; rv:*) Gecko/* Thunderbird/14.*] -Parent=Thunderbird 14.0 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; U; Windows NT 5.0; *; rv:*) Gecko/* Thunderbird/14.*] -Parent=Thunderbird 14.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:*) Gecko/* Thunderbird/14.*] -Parent=Thunderbird 14.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; U; Windows NT 5.2; *; rv:*) Gecko/* Thunderbird/14.*] -Parent=Thunderbird 14.0 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:*) Gecko/* Thunderbird/14.*] -Parent=Thunderbird 14.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:*) Gecko/* Thunderbird/14.*] -Parent=Thunderbird 14.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/5.0 (Windows; U; Windows NT 6.2; *; rv:*) Gecko/* Thunderbird/14.*] -Parent=Thunderbird 14.0 -Platform="Win8" -Platform_Version=6.2 - -[Mozilla/5.0 (X11; U; Linux i686*; *; rv:*) Gecko/* Thunderbird/14.*] -Parent=Thunderbird 14.0 -Platform="Linux" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Thunderbird 2.0 - -[Thunderbird 2.0] -Parent=DefaultProperties -Comment="Thunderbird 2.0" -Browser="Thunderbird" -Version=2.0 -MajorVer=2 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Thunderbird 3.0 - -[Thunderbird 3.0] -Parent=DefaultProperties -Comment="Thunderbird 3.0" -Browser="Thunderbird" -Version=3.0 -MajorVer=3 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iceweasel - -[Iceweasel] -Parent=DefaultProperties -Comment="Iceweasel" -Browser="Iceweasel" -Platform="Debian" -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (X11; U; Linux*; *; rv:1.8.*) Gecko/* Iceweasel/2.0* (Debian-*)*] -Parent=Iceweasel -Version=2.0 -MajorVer=2 -MinorVer=0 - -[Mozilla/5.0 (X11; U; Linux*; *; rv:1.9.*) Gecko/* Iceweasel/3.0* (Debian-*)*] -Parent=Iceweasel -Version=3.0 -MajorVer=3 -MinorVer=0 -Platform="Debian" -CssVersion=2 - -[Mozilla/5.0 (X11; U; Linux*; *; rv:1.9.*) Gecko/* Iceweasel/3.5* (Debian-*)] -Parent=Iceweasel -Version=3.5 -MajorVer=3 -MinorVer=5 - -[Mozilla/5.0 (X11; U; Linux; *; rv:1.9.*) Gecko/* Iceweasel/3.6* (like Firefox/3.6)*] -Parent=Iceweasel -Version=3.6 -MajorVer=3 -MinorVer=6 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.0 - -[Mozilla 1.0] -Parent=DefaultProperties -Comment="Mozilla 1.0" -Browser="Mozilla" -Version=1.0 -MajorVer=1 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*rv:1.0.*) Gecko/*] -Parent=Mozilla 1.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.1 - -[Mozilla 1.1] -Parent=DefaultProperties -Comment="Mozilla 1.1" -Browser="Mozilla" -Version=1.1 -MajorVer=1 -MinorVer=1 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*rv:1.1.*) Gecko/*] -Parent=Mozilla 1.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.2 - -[Mozilla 1.2] -Parent=DefaultProperties -Comment="Mozilla 1.2" -Browser="Mozilla" -Version=1.2 -MajorVer=1 -MinorVer=2 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*rv:1.2.*) Gecko/*] -Parent=Mozilla 1.2 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.3 - -[Mozilla 1.3] -Parent=DefaultProperties -Comment="Mozilla 1.3" -Browser="Mozilla" -Version=1.3 -MajorVer=1 -MinorVer=3 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*rv:1.3.*) Gecko/*] -Parent=Mozilla 1.3 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.4 - -[Mozilla 1.4] -Parent=DefaultProperties -Comment="Mozilla 1.4" -Browser="Mozilla" -Version=1.4 -MajorVer=1 -MinorVer=4 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Win32=false - -[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="Win31" -Platform_Version=3.1 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="Win31" -Platform_Version=3.11 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win95; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; ?; Win98; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *Linux*; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *SunOS*; *rv:1.4*) Gecko/*] -Parent=Mozilla 1.4 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.5 - -[Mozilla 1.5] -Parent=DefaultProperties -Comment="Mozilla 1.5" -Browser="Mozilla" -Version=1.5 -MajorVer=1 -MinorVer=5 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Win32=false - -[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="Win31" -Platform_Version=3.1 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="Win31" -Platform_Version=3.11 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win95; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; ?; Win98; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *Linux*; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *SunOS*; *rv:1.5*) Gecko/*] -Parent=Mozilla 1.5 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.6 - -[Mozilla 1.6] -Parent=DefaultProperties -Comment="Mozilla 1.6" -Browser="Mozilla" -Version=1.6 -MajorVer=1 -MinorVer=6 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Win32=false - -[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="Win31" -Platform_Version=3.1 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="Win31" -Platform_Version=3.11 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win95; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; ?; Win98; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *Linux*; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *SunOS*; *rv:1.6*) Gecko/*] -Parent=Mozilla 1.6 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.7 - -[Mozilla 1.7] -Parent=DefaultProperties -Comment="Mozilla 1.7" -Browser="Mozilla" -Version=1.7 -MajorVer=1 -MinorVer=7 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Win32=false - -[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="Win31" -Platform_Version=3.1 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="Win31" -Platform_Version=3.11 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win95; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; ?; Win98; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="Win98" -Platform_Version=98 -Win32=true - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *Linux*; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *SunOS*; *rv:1.7*) Gecko/*] -Parent=Mozilla 1.7 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.8 - -[Mozilla 1.8] -Parent=DefaultProperties -Comment="Mozilla 1.8" -Browser="Mozilla" -Version=1.8 -MajorVer=1 -MinorVer=8 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Win32=false - -[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform_Version=3.1 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="Win31" -Platform_Version=3.11 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win95; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; ?; Win98; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *Linux*; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *SunOS*; *rv:1.8*) Gecko/*] -Parent=Mozilla 1.8 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.9 - -[Mozilla 1.9] -Parent=DefaultProperties -Comment="Mozilla 1.9" -Browser="Mozilla" -Version=1.9 -MajorVer=1 -MinorVer=9 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -JavaApplets=true -CssVersion=2 - -[Mozilla/5.0 (*rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Win32=false - -[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="MacOSX" -Win32=false - -[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="WinME" - -[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform_Version=3.1 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="Win31" -Platform_Version=3.11 -Win16=true -Win32=false - -[Mozilla/5.0 (Windows; ?; Win95; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="Win95" -Platform_Version=95 - -[Mozilla/5.0 (Windows; ?; Win98; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="Win98" -Platform_Version=98 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="Win2003" -Platform_Version=5.2 - -[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="FreeBSD" -Win32=false - -[Mozilla/5.0 (X11; *Linux*; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="Linux" -Win32=false - -[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="OpenBSD" -Win32=false - -[Mozilla/5.0 (X11; *SunOS*; *rv:1.9*) Gecko/*] -Parent=Mozilla 1.9 -Platform="SunOS" -Win32=false - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 5.5 - -[AOL 9.0/IE 5.5] -Parent=DefaultProperties -Comment="AOL 9.0/IE 5.5" -Browser="IE" -Version=5.5 -MajorVer=5 -MinorVer=5 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=2 -AolVersion=9 - -[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Win 9x 4.90*] -Parent=AOL 9.0/IE 5.5 -Platform="WinME" - -[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows 95*] -Parent=AOL 9.0/IE 5.5 -Platform="Win95" -Platform_Version=95 - -[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows 98*] -Parent=AOL 9.0/IE 5.5 -Platform="Win98" -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows 98; Win 9x 4.90*] -Parent=AOL 9.0/IE 5.5 -Platform="WinME" -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows NT 4.0*] -Parent=AOL 9.0/IE 5.5 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows NT 5.0*] -Parent=AOL 9.0/IE 5.5 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows NT 5.1*] -Parent=AOL 9.0/IE 5.5 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0*; *Windows NT 6.0*] -Parent=AOL 9.0/IE 5.5 -Platform="WinVista" -Platform_Version=6.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 6.0 - -[AOL 9.0/IE 6.0] -Parent=DefaultProperties -Comment="AOL 9.0/IE 6.0" -Browser="IE" -Version=6.0 -MajorVer=6 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=2 -AolVersion=9 - -[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Win 9x 4.90*] -Parent=AOL 9.0/IE 6.0 -Platform="WinME" - -[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows 95*] -Parent=AOL 9.0/IE 6.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows 98*] -Parent=AOL 9.0/IE 6.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows 98; Win 9x 4.90*] -Parent=AOL 9.0/IE 6.0 -Platform="WinME" -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows NT 4.0*] -Parent=AOL 9.0/IE 6.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows NT 5.0*] -Parent=AOL 9.0/IE 6.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows NT 5.1*] -Parent=AOL 9.0/IE 6.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows NT 6.0*] -Parent=AOL 9.0/IE 6.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0*; *Windows NT 6.1*] -Parent=AOL 9.0/IE 6.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 7.0 - -[AOL 9.0/IE 7.0] -Parent=DefaultProperties -Comment="AOL 9.0/IE 7.0" -Browser="IE" -Version=7.0 -MajorVer=7 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=2 -AolVersion=9 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Win 9x 4.90*] -Parent=AOL 9.0/IE 7.0 -Platform="WinME" - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows 95*] -Parent=AOL 9.0/IE 7.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows 98*] -Parent=AOL 9.0/IE 7.0 -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows 98; Win 9x 4.90*] -Parent=AOL 9.0/IE 7.0 -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows NT 4.0*] -Parent=AOL 9.0/IE 7.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows NT 5.0*] -Parent=AOL 9.0/IE 7.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows NT 5.1*] -Parent=AOL 9.0/IE 7.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows NT 6.0*] -Parent=AOL 9.0/IE 7.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0*; *Windows NT 6.1*] -Parent=AOL 9.0/IE 7.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 8.0 - -[AOL 9.0/IE 8.0] -Parent=DefaultProperties -Comment="AOL 9.0/IE 8.0" -Browser="IE" -Version=8.0 -MajorVer=8 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=2 -AolVersion=9 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Win 9x 4.90*] -Parent=AOL 9.0/IE 8.0 -Platform="WinME" - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows 95*] -Parent=AOL 9.0/IE 8.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows 98*] -Parent=AOL 9.0/IE 8.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows 98; Win 9x 4.90*] -Parent=AOL 9.0/IE 8.0 -Platform="WinME" -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows NT 4.0*] -Parent=AOL 9.0/IE 8.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows NT 5.0*] -Parent=AOL 9.0/IE 8.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows NT 5.1*] -Parent=AOL 9.0/IE 8.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows NT 6.0*] -Parent=AOL 9.0/IE 8.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.0*; *Windows NT 6.1*] -Parent=AOL 9.0/IE 8.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.1/IE 7.0 - -[AOL 9.1/IE 7.0] -Parent=DefaultProperties -Comment="AOL 9.1/IE 7.0" -Browser="IE" -Version=7.0 -MajorVer=7 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=2 -AolVersion=9 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Win 9x 4.90*] -Parent=AOL 9.1/IE 7.0 -Platform="WinME" - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows 95*] -Parent=AOL 9.1/IE 7.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows 98*] -Parent=AOL 9.1/IE 7.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows 98; Win 9x 4.90*] -Parent=AOL 9.1/IE 7.0 -Platform="WinME" -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 4.0*] -Parent=AOL 9.1/IE 7.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 5.0*] -Parent=AOL 9.1/IE 7.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 5.1*] -Parent=AOL 9.1/IE 7.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 5.2*] -Parent=AOL 9.1/IE 7.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 6.0*] -Parent=AOL 9.1/IE 7.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.1*; *Windows NT 6.1*] -Parent=AOL 9.1/IE 7.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.1/IE 8.0 - -[AOL 9.1/IE 8.0] -Parent=DefaultProperties -Comment="AOL 9.1/IE 8.0" -Browser="IE" -Version=8.0 -MajorVer=8 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=2 -AolVersion=9 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Win 9x 4.90*] -Parent=AOL 9.1/IE 8.0 -Platform="WinME" - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows 95*] -Parent=AOL 9.1/IE 8.0 -Platform="Win95" -Platform_Version=95 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows 98*] -Parent=AOL 9.1/IE 8.0 -Platform="Win98" -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows 98; Win 9x 4.90*] -Parent=AOL 9.1/IE 8.0 -Platform="WinME" -Platform_Version=98 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 4.0*] -Parent=AOL 9.1/IE 8.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 5.0*] -Parent=AOL 9.1/IE 8.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 5.1*] -Parent=AOL 9.1/IE 8.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 5.2*] -Parent=AOL 9.1/IE 8.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 6.0*] -Parent=AOL 9.1/IE 8.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/4.0 (compatible; MSIE 8.0; *AOL 9.1*; *Windows NT 6.1*] -Parent=AOL 9.1/IE 8.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.5 - -[AOL 9.5] -Parent=DefaultProperties -Comment="AOL 9.5" -Browser="IE" -Version=8.0 -MajorVer=8 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=3 -AolVersion=10 - -[Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.5; AOLBuild*; Windows NT 5.1; Trident/4.0*)*] -Parent=AOL 9.5 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.5; AOLBuild*; Windows NT 5.2; Trident/4.0*)*] -Parent=AOL 9.5 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.5; AOLBuild*; Windows NT 6.0; Trident/4.0*)*] -Parent=AOL 9.5 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.5; AOLBuild*; Windows NT 6.1; Trident/4.0*)*] -Parent=AOL 9.5 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.6 - -[AOL 9.6] -Parent=DefaultProperties -Comment="AOL 9.6" -Browser="IE" -Version=8.0 -MajorVer=8 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=3 -AolVersion=10 - -[Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 5.2; Trident/4.0*)*] -Parent=AOL 9.6 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 5.2; WOW64; Trident/4.0*)*] -Parent=AOL 9.6 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 6.0; Trident/4.0*)*] -Parent=AOL 9.6 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 6.0; WOW64; Trident/4.0*)*] -Parent=AOL 9.6 -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 6.1; Trident/4.0*)*] -Parent=AOL 9.6 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild*; Windows NT 6.1; WOW64; Trident/4.0*)*] -Parent=AOL 9.6 -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL Generic - -[AOL Generic] -Parent=DefaultProperties -Comment="AOL Generic" -Browser="IE" -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=1 - -[Mozilla/*(*MSIE*America Online Browser*] -Parent=AOL Generic - -[Mozilla/*(*MSIE*AOL*] -Parent=AOL Generic - -[Mozilla/*(*MSIE*AOL*Mac*] -Parent=AOL Generic -Platform="MacOSX" - -[Mozilla/*(*MSIE*AOL*Win*] -Parent=AOL Generic -Platform="Win" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 1.0 - -[IE 1.0] -Parent=DefaultProperties -Comment="IE 1.0" -Browser="IE" -Version=1.0 -MajorVer=1 -MinorVer=0 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -VBScript=true - -[Mozilla/*(*MSIE 1.0*Windows 3.1*)*] -Parent=IE 1.0 -Platform="WinNT" -Platform_Version=3.1 - -[Mozilla/*(*MSIE 1.0*Windows 3.11*)*] -Parent=IE 1.0 -Platform="WinNT" -Platform_Version=3.11 - -[Mozilla/*(*MSIE 1.0*Windows 95*)*] -Parent=IE 1.0 -Win32=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 1.5 - -[IE 1.5] -Parent=DefaultProperties -Comment="IE 1.5" -Browser="IE" -Version=1.5 -MajorVer=1 -MinorVer=5 -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -VBScript=true - -[Mozilla/*(*MSIE 1.5*Windows 3.1*)*] -Parent=IE 1.5 -Platform="Win31" -Platform_Version=3.1 - -[Mozilla/*(*MSIE 1.5*Windows 3.11*)*] -Parent=IE 1.5 -Platform="Win31" -Platform_Version=3.11 - -[Mozilla/*(*MSIE 1.5*Windows 95*)*] -Parent=IE 1.5 -Platform="Win95" -Win32=true - -[Mozilla/*(*MSIE 1.5*Windows NT 3.1*)*] -Parent=IE 1.5 -Platform="WinNT" -Platform_Version=3.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 10.0 - -[IE 10.0] -Parent=DefaultProperties -Comment="IE 10.0" -Browser="IE" -Version=10.0 -MajorVer=10 -MinorVer=0 -Beta=true -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=3 - -[Mozilla/*(*MSIE 10.*Windows NT 6.1*64*Trident/6.0*)*] -Parent=IE 10.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/*(*MSIE 10.*Windows NT 6.1*Trident/6.0*)*] -Parent=IE 10.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/*(*MSIE 10.*Windows NT 6.2*Trident/6.0*)*] -Parent=IE 10.0 -Platform="Win8" -Platform_Version=6.2 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 2.0 - -[IE 2.0] -Parent=DefaultProperties -Comment="IE 2.0" -Browser="IE" -Version=2.0 -MajorVer=2 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -JavaScript=true -VBScript=true - -[Mozilla/*(*MSIE 2.*Mac_PowerPC*)*] -Parent=IE 2.0 -Platform="MacPPC" - -[Mozilla/*(*MSIE 2.*Windows 3.1*)*] -Parent=IE 2.0 -Platform="Win31" -Platform_Version=3.1 - -[Mozilla/*(*MSIE 2.*Windows 3.11*)*] -Parent=IE 2.0 -Platform="Win31" -Platform_Version=3.11 - -[Mozilla/*(*MSIE 2.*Windows 95*)*] -Parent=IE 2.0 -Platform="Win95" - -[Mozilla/*(*MSIE 2.*Windows NT 3.1*)*] -Parent=IE 2.0 -Platform="WinNT" -Platform_Version=3.1 - -[Mozilla/*(*MSIE 2.*Windows NT 3.5*)*] -Parent=IE 2.0 -Platform="WinNT" -Platform_Version=3.5 - -[Mozilla/*(*MSIE 2.*Windows NT 4.0*)*] -Parent=IE 2.0 -Platform="WinNT" -Platform_Version=4.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 3.0 - -[IE 3.0] -Parent=DefaultProperties -Comment="IE 3.0" -Browser="IE" -Version=3.0 -MajorVer=3 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true - -[Mozilla/*(*MSIE 3.*Mac_PowerPC*)*] -Parent=IE 3.0 -Platform="MacPPC" - -[Mozilla/*(*MSIE 3.*Windows 3.1*)*] -Parent=IE 3.0 -Platform="Win31" -Platform_Version=3.1 - -[Mozilla/*(*MSIE 3.*Windows 3.11*)*] -Parent=IE 3.0 -Platform="Win31" -Platform_Version=3.11 - -[Mozilla/*(*MSIE 3.*Windows 95*)*] -Parent=IE 3.0 -Platform="Win95" - -[Mozilla/*(*MSIE 3.*Windows NT 3.1*)*] -Parent=IE 3.0 -Platform="WinNT" -Platform_Version=3.1 - -[Mozilla/*(*MSIE 3.*Windows NT 3.5*)*] -Parent=IE 3.0 -Platform="WinNT" -Platform_Version=3.5 - -[Mozilla/*(*MSIE 3.*Windows NT 4.0*)*] -Parent=IE 3.0 -Platform="WinNT" -Platform_Version=4.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 4.0 - -[IE 4.0] -Parent=DefaultProperties -Comment="IE 4.0" -Browser="IE" -Version=4.0 -MajorVer=4 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true - -[Mozilla/*(compatible; MSIE 4.*Mac_PowerPC*)*] -Parent=IE 4.0 -Platform="MacPPC" - -[Mozilla/*(compatible; MSIE 4.*Windows 3.1*)*] -Parent=IE 4.0 -Platform="Win31" -Platform_Version=3.1 - -[Mozilla/*(compatible; MSIE 4.*Windows 3.11*)*] -Parent=IE 4.0 -Platform="Win31" -Platform_Version=3.11 - -[Mozilla/*(compatible; MSIE 4.*Windows 95*)*] -Parent=IE 4.0 -Platform="Win95" - -[Mozilla/*(compatible; MSIE 4.*Windows 98*)*] -Parent=IE 4.0 -Platform="Win98" - -[Mozilla/*(compatible; MSIE 4.*Windows 98; Win 9x 4.90*)*] -Parent=IE 4.0 -Platform="WinME" - -[Mozilla/*(compatible; MSIE 4.*Windows NT 3.1*)*] -Parent=IE 4.0 -Platform="WinNT" -Platform_Version=3.1 - -[Mozilla/*(compatible; MSIE 4.*Windows NT 3.5*)*] -Parent=IE 4.0 -Platform="WinNT" -Platform_Version=3.5 - -[Mozilla/*(compatible; MSIE 4.*Windows NT 4.0*)*] -Parent=IE 4.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/*(compatible; MSIE 4.*Windows NT 5.0*)*] -Parent=IE 4.0 -Platform="Win2000" -Platform_Version=5.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.0 - -[IE 5.0] -Parent=DefaultProperties -Comment="IE 5.0" -Browser="IE" -Version=5.0 -MajorVer=5 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true - -[Mozilla/*(compatible; MSIE 5.*Mac_PowerPC*)*] -Parent=IE 5.0 -Platform="MacPPC" - -[Mozilla/*(compatible; MSIE 5.*Windows 3.1*)*] -Parent=IE 5.0 -Platform="Win31" -Platform_Version=3.1 - -[Mozilla/*(compatible; MSIE 5.*Windows 3.11*)*] -Parent=IE 5.0 -Platform="Win31" -Platform_Version=3.11 - -[Mozilla/*(compatible; MSIE 5.*Windows 95*)*] -Parent=IE 5.0 -Platform="Win95" - -[Mozilla/*(compatible; MSIE 5.*Windows 98*)*] -Parent=IE 5.0 -Platform="Win98" - -[Mozilla/*(compatible; MSIE 5.*Windows 98; Win 9x 4.90*)*] -Parent=IE 5.0 -Platform="WinME" - -[Mozilla/*(compatible; MSIE 5.*Windows NT 3.1*)*] -Parent=IE 5.0 -Platform="WinNT" -Platform_Version=3.1 - -[Mozilla/*(compatible; MSIE 5.*Windows NT 3.5*)*] -Parent=IE 5.0 -Platform="WinNT" -Platform_Version=3.5 - -[Mozilla/*(compatible; MSIE 5.*Windows NT 4.0*)*] -Parent=IE 5.0 -Platform="WinNT" -Platform_Version=4.0 - -[Mozilla/*(compatible; MSIE 5.*Windows NT 5.0*)*] -Parent=IE 5.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/*(compatible; MSIE 5.*Windows NT 5.1*)*] -Parent=IE 5.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/*(compatible; MSIE 5.*Windows NT 5.2*)*] -Parent=IE 5.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/*(compatible; MSIE 5.*Windows NT 6.0*)*] -Parent=IE 5.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/*(compatible; MSIE 5.*Windows NT 6.1*)*] -Parent=IE 5.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 6.0 - -[IE 6.0] -Parent=DefaultProperties -Comment="IE 6.0" -Browser="IE" -Version=6.0 -MajorVer=6 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=1 - -[Mozilla/* (*MSIE 6*)*] -Parent=IE 6.0 - -[Mozilla/* (compatible; MSIE 6.*; *Windows NT 5.0*)*] -Parent=IE 6.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/* (compatible; MSIE 6.*; *Windows NT 5.1*)*] -Parent=IE 6.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/* (compatible; MSIE 6.*; *Windows NT 5.2*)*] -Parent=IE 6.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/* (compatible; MSIE 6.*; *Windows NT 5.2; *Win64*)*] -Parent=IE 6.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 6.*; *Windows NT 5.2; *WOW64*)*] -Parent=IE 6.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 6.*; *Windows NT 6.0*)*] -Parent=IE 6.0 -Platform="WinVista" -Platform_Version=6.0 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0 - -[IE 7.0] -Parent=DefaultProperties -Comment="IE 7.0" -Browser="IE" -Version=7.0 -MajorVer=7 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=2 - -[Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.0*)*] -Parent=IE 7.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.01*)*] -Parent=IE 7.0 -Platform="Win2000" -Platform_Version=5.01 - -[Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.1*)*] -Parent=IE 7.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.2*)*] -Parent=IE 7.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.2; *Win64*)*] -Parent=IE 7.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.2; *WOW64*)*] -Parent=IE 7.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.2; *WOW64*; Trident/4.0*)*] -Parent=IE 7.0 -Platform="Win2003" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 7.0*; *Windows NT 5.2; *WOW64*; Trident/5.0*)*] -Parent=IE 7.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/* (compatible; MSIE 7.0*; *Windows NT 6.0*)*] -Parent=IE 7.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/* (compatible; MSIE 7.0*; *Windows NT 6.1*)*] -Parent=IE 7.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/* (compatible; MSIE 7.0*; Windows NT 5.1; Trident/4.0*)*] -Parent=IE 7.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/* (compatible; MSIE 7.0*; Windows NT 5.2; Trident/4.0*)*] -Parent=IE 7.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/* (compatible; MSIE 7.0*; Windows NT 6.0; Trident/4.0*)*] -Parent=IE 7.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/* (compatible; MSIE 7.0*; Windows NT 6.1; *WOW64*; Trident/4.0*)*] -Parent=IE 7.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 7.0*; Windows NT 6.1; Trident/5.0)] -Parent=IE 7.0 -Platform="Win7" -Platform_Version=6.1 - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 8.0 - -[IE 8.0] -Parent=DefaultProperties -Comment="IE 8.0" -Browser="IE" -Version=8.0 -MajorVer=8 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=2 - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.0*)*] -Parent=IE 8.0 -Version=7.0 -MajorVer=7 -MinorVer=0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.0; *Win64; x64*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="Win2000" -Platform_Version=5.0 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.0; *WOW64*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="Win2000" -Platform_Version=5.0 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.0;*Trident/4.0*)*] -Parent=IE 8.0 -Platform="Win2000" -Platform_Version=5.0 - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.1*)*] -Parent=IE 8.0 -Version=7.0 -MajorVer=7 -MinorVer=0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.1*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.1; *Win64; x64*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.1; WOW64*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="WinXP" -Platform_Version=5.1 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.2*)*] -Parent=IE 8.0 -Version=7.0 -MajorVer=7 -MinorVer=0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.2*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.2; *Win64; x64*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 5.2; *WOW64*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="WinXP" -Platform_Version=5.2 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.0*)*] -Parent=IE 8.0 -Version=7.0 -MajorVer=7 -MinorVer=0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.0; *Win64; x64*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.0; *WOW64*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.0;*Trident/4.0*)*] -Parent=IE 8.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.1*)*] -Parent=IE 8.0 -Version=7.0 -MajorVer=7 -MinorVer=0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.1*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.1; *Win64; x64*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 8.0; *Windows NT 6.1; *WOW64*; Trident/4.0*)*] -Parent=IE 8.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 9.0 - -[IE 9.0] -Parent=DefaultProperties -Comment="IE 9.0" -Browser="IE" -Version=9.0 -MajorVer=9 -MinorVer=0 -Win32=true -Frames=true -IFrames=true -Tables=true -Cookies=true -BackgroundSounds=true -JavaScript=true -VBScript=true -JavaApplets=true -ActiveXControls=true -CssVersion=3 - -[Mozilla/* (compatible; MSIE 9.0; *Windows NT 5.1; Trident/5.0*)*] -Parent=IE 9.0 -Platform="WinXP" -Platform_Version=5.1 - -[Mozilla/* (compatible; MSIE 9.0; *Windows NT 5.2; Trident/5.0*)*] -Parent=IE 9.0 -Platform="WinXP" -Platform_Version=5.2 - -[Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.0; Trident/5.0*)*] -Parent=IE 9.0 -Platform="WinVista" -Platform_Version=6.0 - -[Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.0; Win64; x64; Trident/5.0*)*] -Parent=IE 9.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.0; WOW64; Trident/5.0*)*] -Parent=IE 9.0 -Platform="WinVista" -Platform_Version=6.0 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.1; Trident/5.0*)*] -Parent=IE 9.0 -Platform="Win7" -Platform_Version=6.1 - -[Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.1; Win64; x64; Trident/5.0*)*] -Parent=IE 9.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -[Mozilla/* (compatible; MSIE 9.0; *Windows NT 6.1; WOW64; Trident/5.0*)*] -Parent=IE 9.0 -Platform="Win7" -Platform_Version=6.1 -Win32=false -Win64=true - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Default Browser - -[*] -Comment="Default Browser" -Browser="Default Browser" -Version=0.0 -MajorVer=0 -MinorVer=0 -Platform="unknown" -Platform_Version="unknown" -Alpha=false -Beta=false -Win16=false -Win32=false -Win64=false -Frames=false -IFrames=false -Tables=false -Cookies=false -BackgroundSounds=false -JavaScript=false -VBScript=false -JavaApplets=false -ActiveXControls=false -isMobileDevice=false -isSyndicationReader=false -Crawler=false -CssVersion=0 -AolVersion=0 - diff --git a/spl-shared.patch b/spl-shared.patch index 9aea6c4..cf0fc4e 100644 --- a/spl-shared.patch +++ b/spl-shared.patch @@ -50,29 +50,31 @@ extern PHPAPI zend_class_entry *spl_ce_CallbackFilterIterator; extern PHPAPI zend_class_entry *spl_ce_RecursiveCallbackFilterIterator; ---- php-5.3.1/ext/standard/array.c~ 2009-08-14 06:20:21.000000000 +0000 -+++ php-5.3.1/ext/standard/array.c 2009-11-27 16:37:15.029078323 +0000 -@@ -49,6 +49,9 @@ - #ifdef HAVE_SPL +--- php-7.1.0alpha2/ext/standard/array.c~ 2016-07-04 17:52:16.000000000 +0300 ++++ php-7.1.0alpha2/ext/standard/array.c 2016-07-04 18:54:43.937173429 +0300 +@@ -48,6 +48,10 @@ + #include "zend_smart_str.h" #include "ext/spl/spl_array.h" - #endif + +#if COMPILE_DL_SPL +PHPAPI zend_class_entry *spl_ce_Countable_p = NULL; // external one +#endif - ++ /* {{{ defines */ #define EXTR_OVERWRITE 0 ---- php-5.3.1/ext/pdo/pdo.c~ 2009-07-19 22:46:03.000000000 +0000 -+++ php-5.3.1/ext/pdo/pdo.c 2009-11-27 16:37:51.332409104 +0000 -@@ -132,7 +132,7 @@ + #define EXTR_SKIP 1 +--- php-7.1.0alpha1/ext/pdo/pdo.c~ 2016-06-07 23:56:47.000000000 +0300 ++++ php-7.1.0alpha1/ext/pdo/pdo.c 2016-06-13 23:24:51.238259131 +0300 +@@ -117,7 +117,9 @@ + /* {{{ pdo_functions[] */ - #if ZEND_MODULE_API_NO >= 20050922 static const zend_module_dep pdo_deps[] = { --#ifdef HAVE_SPL +#ifdef HAVE_SPL && !COMPILE_DL_SPL ZEND_MOD_REQUIRED("spl") - #endif - {NULL, NULL, NULL} ++#endif + ZEND_MOD_END + }; + /* }}} */ --- php-5.3.1/ext/phar/Makefile.frag~ 2009-07-23 15:48:04.000000000 +0000 +++ php-5.3.1/ext/phar/Makefile.frag 2009-11-30 16:10:29.687175948 +0000 @@ -10,7 +10,7 @@ diff --git a/suhosin.patch b/suhosin.patch index e5c765e..378a4e4 100644 --- a/suhosin.patch +++ b/suhosin.patch @@ -876,7 +876,7 @@ the following modifications have been made: heap->cache[index] = best_fit->prev_free_block; ZEND_MM_CHECK_MAGIC(best_fit, MEM_BLOCK_CACHED); - ZEND_MM_SET_DEBUG_INFO(best_fit, size, 1, 0); -- +- + ZEND_MM_SET_DEBUG_INFO(best_fit, size, 1, 0); +#if SUHOSIN_PATCH + SUHOSIN_MM_SET_CANARIES(best_fit);