Lines Matching +full:d +full:- +full:link

35         'Safari.[\d\.]*',
36 'Firefox.[\d\.]*',
37 'Chrome.[\d\.]*',
38 'Chromium.[\d\.]*',
39 'MSIE.[\d\.]',
40 'Opera\/[\d\.]*',
41 'Mozilla.[\d\.]*',
42 'AppleWebKit.[\d\.]*',
43 'Trident.[\d\.]*',
44 'Windows NT.[\d\.]*',
45 'Android.[\d\.]*',
51 'Gecko.[\d\.]*',
53 'CriOS.[\d\.]*',
54 'CPU iPhone OS ([0-9_])* like Mac OS X',
55 'CPU OS ([0-9_])* like Mac OS X',
63 'rv:[\d\.]*',
64 'Version.[\d\.]*',
67 'Dalvik.[\d\.]*',
68 '\.NET CLR [\d\.]*',
69 'Presto.[\d\.]*',
80 'A6-Indexer',
82 'Accoona-AI-Agent',
90 'archive-com',
91 'B-l-i-t-z-B-O-T',
96 'boitho\.com-dc',
105 'CloudFlare-AlwaysOnline',
107 'Commons-HttpClient',
110 'Covario-IDS',
125 'eZ Publish Link Validator',
127 'Feedfetcher-Google',
137 'grub-client',
139 'Go-http-client',
140 'Google-HTTP-Java-Client',
151 'InfoWizards Reciprocal Link System PRO',
155 'ips-agent',
160 'Link Valet',
164 'Lipperhey Link Explorer',
168 'lwp-trivial',
172 'Mediapartners-Google',
182 'NG-Search',
189 'online link validator',
190 'Online Website Link Checker',
206 'Python-httplib2',
207 'python-requests',
208 'Python-urllib',
213 'REL Link Checker',
226 'Seznam screenshot-generator',
251 'Vivante Link Checker',
255 'W3C-checklink',
257 'W3C_I18n-Checker',
258 'W3C-mobileOK',
270 'Xenu Link Sleuth',
272 'Y!J-ASR',
274 'Yahoo Link Preview',
278 'YahooSeeker-Testing',
287 '[a-z0-9\\-_]*((?<!cu)bot|crawler|archiver|transcoder|spider)',
292 * User-Agent string.
297 // The default User-Agent string.
301 … Vodafone specific header: http://www.seoprinciple.com/mobile-web-community-still-angry-at-vodafon…
315 $this->setHttpHeaders($headers);
316 $this->setUserAgent($userAgent);
331 $this->httpHeaders = array();
336 $this->httpHeaders[$key] = $value;
359 return $this->userAgent = $userAgent;
361 $this->userAgent = null;
362 foreach ($this->getUaHttpHeaders() as $altHeader) {
363 …if (false === empty($this->httpHeaders[$altHeader])) { // @todo: should use getHttpHeader(), but i…
364 $this->userAgent .= $this->httpHeaders[$altHeader].' ';
368 return $this->userAgent = (!empty($this->userAgent) ? trim($this->userAgent) : null);
401 $agent = is_null($userAgent) ? $this->userAgent : $userAgent;
403 $agent = preg_replace('/'.$this->getIgnored().'/i', '', $agent);
405 $result = preg_match('/'.$this->getRegex().'/i', $agent, $matches);
408 $this->matches = $matches;
421 return $this->matches[0];