X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=js%2Fpz2.js;h=75fd309422c7edf49fcad33a7d87f48444d09912;hb=cebba0475a4522630dcbcfd4fa792ba31c085457;hp=31d2c338d75c66078edc76705802a960aff47e1d;hpb=c7949a6cf267d6be3e3cbaf3fb2a0815adddcd73;p=pazpar2-moved-to-github.git diff --git a/js/pz2.js b/js/pz2.js index 31d2c33..75fd309 100644 --- a/js/pz2.js +++ b/js/pz2.js @@ -91,6 +91,7 @@ var pz2 = function ( paramArray ) this.currRecOffset = null; //timers + this.pingTimer = null; this.statTime = paramArray.stattime || 1000; this.statTimer = null; this.termTime = paramArray.termtime || 1000; @@ -158,6 +159,7 @@ pz2.prototype = this.sessionID = null; this.initStatusOK = false; this.pingStatusOK = false; + clearTimeout(this.pingTimer); } this.searchStatusOK = false; this.stop(); @@ -196,12 +198,13 @@ pz2.prototype = context.sessionID = data.getElementsByTagName("session")[0] .childNodes[0].nodeValue; - setTimeout( - function () { - context.ping(); - }, - context.keepAlive - ); + context.pingTimer = + setTimeout( + function () { + context.ping(); + }, + context.keepAlive + ); if ( context.initCallback ) context.initCallback(); } @@ -224,19 +227,23 @@ pz2.prototype = 'Pz2.js: Ping not allowed (proxy mode) or session not initialized.' ); var context = this; + + clearTimeout(context.pingTimer); + var request = new pzHttpRequest(this.pz2String, this.errorHandler); request.safeGet( - { "command": "ping", "session": this.sessionID, "windowId" : self.window.name }, + { "command": "ping", "session": this.sessionID, "windowid" : window.name }, function(data) { if ( data.getElementsByTagName("status")[0] .childNodes[0].nodeValue == "OK" ) { context.pingStatusOK = true; - setTimeout( - function () { - context.ping(); - }, - context.keepAlive - ); + context.pingTimer = + setTimeout( + function () { + context.ping(); + }, + context.keepAlive + ); } else context.throwError('Ping failed. Malformed WS resonse.', @@ -275,7 +282,7 @@ pz2.prototype = "command": "search", "query": this.currQuery, "session": this.sessionID, - "windowId" : self.window.name + "windowid" : window.name }; if (filter !== undefined) @@ -323,7 +330,7 @@ pz2.prototype = var context = this; var request = new pzHttpRequest(this.pz2String, this.errorHandler); request.safeGet( - { "command": "stat", "session": this.sessionID, "windowId" : self.window.name }, + { "command": "stat", "session": this.sessionID, "windowid" : window.name }, function(data) { if ( data.getElementsByTagName("stat") ) { var activeClients = @@ -381,7 +388,7 @@ pz2.prototype = "sort": this.currentSort, "block": 1, "type": this.showResponseType, - "windowId" : self.window.name + "windowid" : window.name }, function(data, type) { var show = null; @@ -456,7 +463,7 @@ pz2.prototype = "command": "record", "session": this.sessionID, "id": this.currRecID, - "windowId" : self.window.name + "windowid" : window.name }; this.currRecOffset = null; @@ -545,7 +552,7 @@ pz2.prototype = "command": "termlist", "session": this.sessionID, "name": this.termKeys, - "windowId" : self.window.name + "windowid" : window.name }, function(data) { if ( data.getElementsByTagName("termlist") ) { @@ -622,7 +629,7 @@ pz2.prototype = var context = this; var request = new pzHttpRequest(this.pz2String, this.errorHandler); request.safeGet( - { "command": "bytarget", "session": this.sessionID, "windowId" : self.window.name}, + { "command": "bytarget", "session": this.sessionID, "windowid" : window.name}, function(data) { if ( data.getElementsByTagName("status")[0] .childNodes[0].nodeValue == "OK" ) { @@ -653,6 +660,11 @@ pz2.prototype = } else if (bytarget[i].diagnostic == "2") { bytarget[i].diagnostic = "Temporary system error"; } + var targetsSuggestions = targetNodes[i].getElementsByTagName("suggestions"); + if (targetsSuggestions != undefined && targetsSuggestions.length>0) { + var suggestions = targetsSuggestions[0]; + bytarget[i]["suggestions"] = Element_parseChildNodes(suggestions); + } } context.bytargetCounter++;