Function.prototype.bindAsEventListener = function(object2) {
var __method = this;
var args=arguments;
if(args.length==1){
return function(event) {
__method.call(object2, event || window.event);
}
}else{
var argsT=[];
for(var i=1;i]+>/gi, '');
},
escapeHTML: function() {
var div = document.createElement('div');
var text = document.createTextNode(this);
div.appendChild(text);
return div.innerHTML;
},
unescapeHTML: function() {
var div = document.createElement('div');
div.innerHTML = this.stripTags();
return div.childNodes[0].nodeValue;
}
});
var Ajax = {
getTransport: function() {
return Try.these(
function() {return new ActiveXObject('Msxml2.XMLHTTP')},
function() {return new ActiveXObject('Microsoft.XMLHTTP')},
function() {return new XMLHttpRequest()}
) || false;
}
}
Ajax.Base = function() {};
Ajax.Base.prototype = {
setOptions: function(options) {
this.options = {
method: 'post',
asynchronous: true,
parameters: ''
}.extend(options || {});
},
responseIsSuccess: function() {
return this.transport.status == undefined
|| this.transport.status == 0
|| (this.transport.status >= 200 && this.transport.status < 300);
},
responseIsFailure: function() {
return !this.responseIsSuccess();
}
}
Ajax.Request = Class.create();
Ajax.Request.Events =
['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete'];
Ajax.Request.prototype = (new Ajax.Base()).extend({
initialize: function(url, options) {
this.transport = Ajax.getTransport();
this.setOptions(options);
this.isurl=url;
this.request(url);
},
request: function(url) {
var parameters = this.options.parameters || '';
if (parameters.length > 0) parameters += '&_=';
if (this.options.method == 'get')
if(url.indexOf('?')==-1){
url += '?' + parameters;
}else{
url += '&' + parameters;
}
if(url.indexOf('?')==-1){
url += '?';
}
var temporise='randNumberCache='+Math.random();
if(url.indexOf('&')==-1){
url += temporise;
}else{
url += '&'+temporise;
}
this.isurl=url;
this.transport.open(this.options.method, url,
this.options.asynchronous);
if (this.options.asynchronous) {
this.transport.onreadystatechange = this.onStateChange.bind(this);
setTimeout((function() {this.respondToReadyState(1)}).bind(this), 10);
}
this.setRequestHeaders();
var body = this.options.postBody ? this.options.postBody : parameters;
this.transport.send(this.options.method == 'post' ? body : null);
},
setRequestHeaders: function() {
var requestHeaders =
['X-Requested-With', 'XMLHttpRequest',
'X-Prototype-Version', Prototype.Version];
if (this.options.method == 'post') {
requestHeaders.push('Content-type',
'application/x-www-form-urlencoded');
/* Force "Connection: close" for Mozilla browsers to work around
* a bug where XMLHttpReqeuest sends an incorrect Content-length
* header. See Mozilla Bugzilla #246651.
*/
if (this.transport.overrideMimeType)
requestHeaders.push('Connection', 'close');
}
if (this.options.requestHeaders)
requestHeaders.push.apply(requestHeaders, this.options.requestHeaders);
for (var i = 0; i < requestHeaders.length; i += 2)
this.transport.setRequestHeader(requestHeaders[i], requestHeaders[i+1]);
},
onStateChange: function() {
var readyState = this.transport.readyState;
if (readyState != 1)
this.respondToReadyState(this.transport.readyState);
},
respondToReadyState: function(readyState) {
var event = Ajax.Request.Events[readyState];
if (event == 'Complete'){
if(this.options.objetLie){
var MyOBj=this.options.objetLie;
var parametres= new Array(this.transport);
if(this.options['on' + this.transport.status]){
if('on' + this.transport.status=='onComplete'){
this.options.onComplete.apply(MyOBj,parametres);
}else{
//alert ('on' + this.transport.status);
this.options['on' + this.transport.status].apply(MyOBj,parametres);
}
}else if(this.options['on' + (this.responseIsSuccess() ? 'Success' : 'Failure')]){
//alert('3');
this.options['on' + (this.responseIsSuccess() ? 'Success' : 'Failure')].apply(MyOBj,parametres);
}else{
//alert('4');
//Prototype.emptyFunction.apply(MyOBj,parametres);
//alert('trer');
}
}else{
(this.options['on' + this.transport.status]
|| this.options['on' + (this.responseIsSuccess() ? 'Success' : 'Failure')]
|| Prototype.emptyFunction)(this.transport);
}
}
if(this.options.objetLie){
var MyOBj=this.options.objetLie;
var parametres= new Array(this.transport);
(this.options['on' + event] || Prototype.emptyFunction).apply(MyOBj,parametres);
}else{
(this.options['on' + event] || Prototype.emptyFunction)(this.transport);
}
/* Avoid memory leak in MSIE: clean up the oncomplete event handler */
if (event == 'Complete'){
this.transport.onreadystatechange = Prototype.emptyFunction;
}
}
});
Ajax.Updater = Class.create();
Ajax.Updater.ScriptFragment = '