keepalive fix for buggy browsers

This commit is contained in:
SJ 2014-09-17 15:51:35 +02:00
parent 836a15663f
commit 70d4db53b7
3 changed files with 11 additions and 25 deletions

View File

@ -236,7 +236,7 @@ $memcached_servers = array(
array('127.0.0.1', 11211) array('127.0.0.1', 11211)
); );
$partitions_to_monitor = array('/', '/home', '/var', '/tmp'); $partitions_to_monitor = array('/', '/home', '/var', '/var/piler', '/tmp');
$config['DATA_PARTITION'] = '/var'; $config['DATA_PARTITION'] = '/var';
$config['DELIMITER'] = "\t"; $config['DELIMITER'] = "\t";

View File

@ -7,25 +7,6 @@ $language = new Language();
$javascript = DIR_BASE . '/view/javascript/piler-in.js'; $javascript = DIR_BASE . '/view/javascript/piler-in.js';
/*
* some funky User-Agent scripts:
*
*
* - chrome: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36
*
* - firefox: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0
*
* - IE 11: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko
*
*/
if(OUTLOOK == 1 || strstr($_SERVER['HTTP_USER_AGENT'], " MSIE") || strstr($_SERVER['HTTP_USER_AGENT'], "Trident")) {
define('BROWSER_WITH_NTLM_BUG', 1);
} else {
define('BROWSER_WITH_NTLM_BUG', 0);
}
Header("Content-Type: text/javascript"); Header("Content-Type: text/javascript");
require_once($javascript); require_once($javascript);

View File

@ -1176,13 +1176,18 @@ var Piler =
poor_mans_keepalive_for_dummy_browsers: function() poor_mans_keepalive_for_dummy_browsers: function()
{ {
<?php if(BROWSER_WITH_NTLM_BUG == 1 && ENABLE_SSO_LOGIN == 1) { ?> <?php if(ENABLE_SSO_LOGIN == 1) { ?>
Piler.log("[poor_mans_keepalive_for_dummy_browsers]"); // MSIE 11 and Outlook 2013 match this condition
jQuery.ajax('/ok.txt', { async: false }) if(Object.hasOwnProperty.call(window, "ActiveXObject") && !window.ActiveXObject) {
.done( function(a) { } )
.fail(function(a, b) { alert("Problem retrieving XML data:" + b) }); Piler.log("[poor_mans_keepalive_for_dummy_browsers]");
jQuery.ajax('/ok.txt', { async: false })
.done( function(a) { } )
.fail(function(a, b) { alert("Problem retrieving XML data:" + b) });
}
<?php } ?> <?php } ?>