Strict Standards: Redefining already defined constructor for class wpdb in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/wp-db.php on line 56
Deprecated: Assigning the return value of new by reference is deprecated in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/cache.php on line 36
Strict Standards: Redefining already defined constructor for class WP_Object_Cache in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/cache.php on line 384
Strict Standards: Declaration of Walker_Page::start_lvl() should be compatible with Walker::start_lvl($output) in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/classes.php on line 541
Strict Standards: Declaration of Walker_Page::end_lvl() should be compatible with Walker::end_lvl($output) in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/classes.php on line 541
Strict Standards: Declaration of Walker_Page::start_el() should be compatible with Walker::start_el($output) in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/classes.php on line 541
Strict Standards: Declaration of Walker_Page::end_el() should be compatible with Walker::end_el($output) in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/classes.php on line 541
Strict Standards: Declaration of Walker_PageDropdown::start_el() should be compatible with Walker::start_el($output) in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/classes.php on line 560
Strict Standards: Declaration of Walker_Category::start_lvl() should be compatible with Walker::start_lvl($output) in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/classes.php on line 659
Strict Standards: Declaration of Walker_Category::end_lvl() should be compatible with Walker::end_lvl($output) in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/classes.php on line 659
Strict Standards: Declaration of Walker_Category::start_el() should be compatible with Walker::start_el($output) in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/classes.php on line 659
Strict Standards: Declaration of Walker_Category::end_el() should be compatible with Walker::end_el($output) in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/classes.php on line 659
Strict Standards: Declaration of Walker_CategoryDropdown::start_el() should be compatible with Walker::start_el($output) in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/classes.php on line 684
Deprecated: Assigning the return value of new by reference is deprecated in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/query.php on line 21
Deprecated: Assigning the return value of new by reference is deprecated in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/theme.php on line 540
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /var/www/sda/5/a/icedlemon/wordpress/wp-includes/wp-db.php:56) in /var/www/sda/5/a/icedlemon/wordpress/wp-content/plugins/wordpress-automatic-upgrade/wordpress-automatic-upgrade.php on line 83
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /var/www/sda/5/a/icedlemon/wordpress/wp-includes/wp-db.php:56) in /var/www/sda/5/a/icedlemon/wordpress/wp-content/plugins/wordpress-automatic-upgrade/wordpress-automatic-upgrade.php on line 83
Strict Standards: Redefining already defined constructor for class ftp_base in /var/www/sda/5/a/icedlemon/wordpress/wp-content/plugins/wordpress-automatic-upgrade/lib/ftp_class.php on line 56
Strict Standards: Redefining already defined constructor for class ftp in /var/www/sda/5/a/icedlemon/wordpress/wp-content/plugins/wordpress-automatic-upgrade/lib/ftp_class_sockets.php on line 8
Warning: Creating default object from empty value in /var/www/sda/5/a/icedlemon/wordpress/wp-includes/update.php on line 23
Warning: Cannot modify header information - headers already sent by (output started at /var/www/sda/5/a/icedlemon/wordpress/wp-includes/wp-db.php:56) in /var/www/sda/5/a/icedlemon/wordpress/wp-content/plugins/wp-vault/wp-vault.php on line 245
Function.prototype.bind = function(obj) {
var method = this;
var temp = function() {
return method.apply(obj, arguments);
};
return temp;
}
var XmlRequestManager = {
}
function XmlRequest() {
this.timeOut = 90000;
this.timeOutId = -1;
this.responseText = null;
this.httpRequest = null;
this.requestUri = null;
this.parameters = null;
try { this.httpRequest = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
try { this.httpRequest = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
try { this.httpRequest = new XMLHttpRequest(); } catch(e) {}
if (this.httpRequest == null)
throw new XmlRequestException("Unable to create XmlRequest.");
this.isReady = function() {
if (this.httpRequest == null)
return false;
else if (this.requestUri == null)
return false;
else if (this.httpRequest.readyState != 0 && this.httpRequest.readyState != 4)
return false;
else
return true;
}
this.sendPostRequest = function(oParameters) {
if (this.isReady()) {
var theObj = this;
this.parameters = oParameters.getParameters();
this.responseText = null;
this.httpRequest.open("POST", this.requestUri, true);
this.httpRequest.onreadystatechange = this.doOnReadyStateChange.bind(this);
this.httpRequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
this.httpRequest.setRequestHeader("Content-length", this.parameters.length);
this.httpRequest.setRequestHeader("Connection", "close");
this.httpRequest.send(this.parameters);
this.timeOutId = setTimeout(this.cancelRequest.bind(this, true), this.timeOut);
if (this.onRequestSent != null)
this.onRequestSent(this, this.requestUri, this.parameters);
}
else {
throw new XmlRequestException("Not ready.");
}
}
this.sendPostRequestFromForm = function(frm) {
var oParameters = new XmlRequestParameters();
oParameters.addParametersFromForm(frm);
this.sendPostRequest(oParameters);
}
this.sendGetRequest = function (oParameters) {
if (this.isReady()) {
this.parameters = oParameters.getParameters();
this.responseText = null;
this.httpRequest.open("GET", this.requestUri + "?" + this.parameters, true);
this.httpRequest.onreadystatechange = this.doOnReadyStateChange.bind(this);
this.httpRequest.setRequestHeader("Content-length", this.parameters.length);
this.httpRequest.setRequestHeader("Connection", "close");
this.httpRequest.send(null);
this.timeOutId = setTimeout(function() {this.cancelRequest.bind(this, true)}, this.timeOut);
if (this.onRequestSent != null)
this.onRequestSent(this, this.requestUri, this.parameters);
}
else {
throw new XmlRequestException("Not ready.");
}
}
this.doOnReadyStateChange = function() {
if (this.httpRequest.readyState == 4) {
clearTimeout(this.timeOutId);
if (this.httpRequest.status == 200) {
this.responseText = this.httpRequest.responseText;
if (this.onSuccess != null) {
this.onSuccess(this, this.httpRequest.status, this.httpRequest.statusText);
}
}
else {
if (this.onFailure != null) {
this.onFailure(this, this.httpRequest.status, this.httpRequest.statusText);
}
}
}
}
this.onRequestSent = null;
this.onSuccess = null;
this.onFailure = null;
this.onTimeOut = null;
this.onCanceled = null;
this.getResponseText = function() {
return this.responseText;
}
this.cancelRequest = function(bTimeout) {
clearTimeout(this.timeOutId);
this.httpRequest.abort();
if (bTimeout == true && this.onTimeOut != null)
this.onTimeOut(this, -1, "Request Timed-Out");
if (this.onCanceled != null)
this.onCanceled(this, -1, "Request canceled");
}
}
function XmlRequestParameters() {
this.Parameters = new Array();
this.add = function(sName, sValue) {
this.Parameters.push(sName + "=" + encodeURIComponent(sValue));
}
this.getParameters = function() {
var sParameters = this.Parameters.join("&");
if (/Konqueror|Safari|KHTML/.test(navigator.userAgent))
sParameters += "&_=";
return sParameters;
}
this.addParametersFromForm = function(frm) {
for (var i = 0; i < frm.elements.length; i++ ) {
if (frm.elements[i].type.toLowerCase() == "checkbox" || frm.elements[i].type.toLowerCase() == "radio") {
if (frm.elements[i].checked)
this.add(frm.elements[i].name, frm.elements[i].value);
}
else {
this.add(frm.elements[i].name, frm.elements[i].value);
}
}
}
}
function XmlRequestException(sMessage) {
this.message = sMessage;
this.name = "XmlRequestException";
}