/plugin/formatplus2/ |
H A D | script.js | 15 browser: match[ 1 ] || "", 19 if ( !jQuery.browser ) { 22 browser = {}; 23 if ( matched.browser ) { 24 browser[ matched.browser ] = true; 28 if ( browser.chrome ) { 29 browser.webkit = true; 30 } else if ( browser.webkit ) { 31 browser.safari = true; 33 jQuery.browser = browser; [all …]
|
H A D | README.md | 4 This fork only tries to fix the deprecated `jQuery.browser` type error (at the moment). I have e-ma… 6 …browser` type is deprecated since jQuery 1.9, so I have inserted a snippet found [here](https://st…
|
/plugin/xhtmlruby/ |
H A D | script.js | 58 var opera="opera"; var ie="ie"; var gecko="gecko"; var chrome = "chrome"; var browser="unknown"; 59 if (window.opera) { browser = opera; } 60 else if (Array.every) { browser = gecko; } 61 else if (document.all) { browser = ie; } 62 else if (window.chrome) { browser = chrome; } 63 return browser; 73 var browser = getBrowser(); 77 if(browser=="ie") { rubyrule.style.verticalAlign = "baseline"; } 79 else if(browser=="opera") { rubyrule.style.verticalAlign = "1.3em"; } 82 else if(browser=="chrome") {
|
/plugin/quickstats/ |
H A D | action.php | 424 $browser = $this->get_browser(); 462 if(!isset($this->ua['counts'][$browser])) { 463 $this->ua['counts'][$browser]=1; 465 else $this->ua['counts'][$browser]++; 470 if(isset($browser) && !in_array($browser, $this->ua[$ip])) { 471 $this->ua[$ip][]=$browser; 512 $browser=get_browser_local(null,true,$db); 513 if(!isset($browser['browser'])) retur [all...] |
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/ |
H A D | AutoprefixerFilter.php | 50 * @param string $browser 52 public function addBrowser($browser) argument 54 $this->browsers[] = $browser;
|
/plugin/noiewarning/recommend/ |
H A D | midori.txt | 1 browser Midori 2 url http://midori-browser.org/
|
H A D | elinks.txt | 1 browser Elinks: Text Mode Browser
|
H A D | firefox.txt | 1 browser Mozilla Firefox
|
H A D | opera.txt | 1 browser Opera Web Browser
|
/plugin/statistics/inc/ |
H A D | Browscap.php | 250 * Gets the information about the browser by User Agent 316 $browser = array(); 342 $browser = array( 348 $browser = $value = $browser + unserialize($this->_browsers[$key]); 352 $browser += $value; 355 if (!empty($browser[3])) { 356 $browser[3] = $this->_userAgents[$browser[3]]; 365 foreach ($browser a [all...] |
/plugin/advanced/lang/en/config/ |
H A D | mime.txt | 3 …type with an exclamation mark (!) will force the browser to present a download dialog, even if a b… 8 # this would play in the browser (if supported):
|
/plugin/newpagetemplate/ |
H A D | cli.php | 17 $browser = $this->colors->wrap('browser', 'cyan'); 19 $browser = $this->colors->wrap('browser', 'cyan'); 24 "[[-p|--page] page_id] | [[-i|--ini] path-to-ini|config] | [[-t|--tpl] template_id] | [[-u|usrrepl] <macros>]\n|[[-s|--screen][cmdLine|browser]]|[[--nosave|-n]true]\n" . 40 "if the screen option is set to $browser.", 'n'); 42 $options->registerOption('screen', "Output results to screen; this option takes one of two parameters: either '$browser' or '$cmdLine'." 43 . " The command line output consists of the command line options in raw and parsed format. The browser output" .
|
/plugin/sentry/ |
H A D | Event.php | 266 $browser = new Browser(); 269 'name' => $browser->getBrowser(), 270 'version' => $browser->getVersion(), 279 $browser = new Browser(); 281 'name' => $browser->getPlatform(),
|
/plugin/nodisp/ |
H A D | README.md | 6 browser by means of view source because it is not sent from the server 7 to the browser.
|
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/ |
H A D | DesiredCapabilities.php | 46 * @return string The name of the browser. 65 * @return string The version of the browser. 161 $browser = $this->getBrowserName(); 162 if ($browser && $browser !== WebDriverBrowserType::HTMLUNIT) {
|
/plugin/multiselect/ |
H A D | style.css | 34 min-width :16px; /*fix problem with chrome browser*/ 35 min-height :16px; /*fix problem with chrome browser*/
|
/plugin/davcal/ |
H A D | calendarserver.php | 90 $browser = new Sabre\DAV\Browser\Plugin(); variable 91 $server->addPlugin($browser);
|
/plugin/nobadbrowser/ |
H A D | README | 6 using a bad browser, such as browsers made by GAFAM companies that invade privacy, or discontinued browsers such as Internet Explorer. If that is the case, the plugin will suggest the user they can use instead a browser such as Mozilla Firefox.
|
H A D | action.php | 23 // detected browser info
89 You seem to be using a bad browser. \\\\
121 if (preg_match('/\bIE/', $this->binfo['browser']) && intval($this->binfo['version'])< 10 ) {
124 'reason' => $this->binfo['browser'] . " " . $this->binfo['version'] ,
139 if (preg_match('/^Opera/', $this->binfo['browser']) && intval($this->binfo['version'])>12 ) {
141 'reason' => $this->binfo['browser'] . " " . $this->binfo['version'],
148 if (preg_match('/\bChrome/', $this->binfo['browser'])) {
150 'reason' => $this->binfo['browser'] ,
184 if (preg_match('/^Safari/', $this->binfo['browser'])
216 * It does some parsing of the user agent string to provide acceptable, not necessarily accurate results, focused on returning five primary keys about the browser whic [all...] |
/plugin/noiewarning/ |
H A D | ChangeLog | 28 * action.php: now can read a file DOKU_CONF/recommended-browser.txt 29 * recommend/: added folder with browser recommendations.
|
/plugin/shell/lang/en/ |
H A D | help.txt | 5 …* ''download <file>'' - Download a file from the server. The file will be sent to your browser, so… 6 …* ''upload <file>'' - Upload a file to the server. Your browser will ask you for a file to upload …
|
/plugin/combo/vendor/php-webdriver/webdriver/ |
H A D | README.md | 52 To control a browser, you need to start a *remote end* (server), which will listen to the commands sent 53 from this library and will execute them in the respective browser. 55 This could be Selenium standalone server, but for local development, you can send them directly to so-called "browser driver" like Chromedriver or Geckodriver. 102 When creating a browser session, be sure to pass the url of your running server. 117 Now you can start browser of your choice: 132 Desired capabilities define properties of the browser you are about to start. 153 Capabilities can also be used to [? configure a proxy server](https://github.com/php-webdriver/php-webdriver/wiki/HowTo-Work-with-proxy) which the browser should use. 155 To configure browser-specific capabilities, you may use [? ChromeOptions](https://github.com/php-webdriver/php-webdriver/wiki/Chrome#chromeoptions) 160 ### 4. Control your browser 181 // Make sure to always call quit() at the end to terminate the browser sessio [all...] |
/plugin/formatplus/ |
H A D | script.js | 7 if(jQuery.browser.msie && 8 > parseFloat(jQuery.browser.version)){
|
/plugin/combo/ |
H A D | browser-sync-start.bat | 1 browser-sync start -p http://localhost:81/ --files "*.js, *.css, *.php, *.html"
|
/plugin/jmol2/jmol/ |
H A D | Jmol.js | 587 browser: "unknown", property in _jmol 623 _jmol.browser = candidate; 649 isNetscape47Win = (os == "win" && browser == "mozilla" && 655 if (browser == "mozilla" && browserVersion >= 5) { 663 } else if (browser == "opera" && browserVersion <= 7.54) { 667 !((browser == "msie") || 668 (browser == "safari" && browserVersion < 125.12)); 671 if (browser == "konqueror" && browserVersion <= 3.3) 839 "browser: " + browser + 1252 if (node && _jmol.browser!="msie"){ [all …]
|