X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=js%2Fpz2.js;h=e2c4cba51bb09485c5c68a93ed53236b84157902;hb=3fdae2167ba2d9bb2f1be79bf19d1d03a67aca88;hp=7edf35da44510377580711870ef1248772cd72be;hpb=9d1f467a2e9c2b8d9b85822c538fc6474c0aa46e;p=pazpar2-moved-to-github.git diff --git a/js/pz2.js b/js/pz2.js index 7edf35d..e2c4cba 100644 --- a/js/pz2.js +++ b/js/pz2.js @@ -126,6 +126,8 @@ var pz2 = function ( paramArray ) if (this.useSessions && paramArray.autoInit !== false) { this.init(this.sessionId, this.serviceId); } + // Version parameter + this.version = paramArray.version || null; }; pz2.prototype = @@ -382,17 +384,19 @@ pz2.prototype = var request = new pzHttpRequest(this.pz2String, this.errorHandler); var requestParameters = { - "command": "show", - "session": this.sessionID, - "start": this.currentStart, - "num": this.currentNum, - "sort": this.currentSort, - "block": 1, - "type": this.showResponseType, - "windowid" : window.name + "command": "show", + "session": this.sessionID, + "start": this.currentStart, + "num": this.currentNum, + "sort": this.currentSort, + "block": 1, + "type": this.showResponseType, + "windowid" : window.name, }; if (query_state) requestParameters["query-state"] = query_state; + if (this.version && this.version > 0) + requestParameters["version"] = this.version; request.safeGet( requestParameters, function(data, type) { @@ -437,7 +441,15 @@ pz2.prototype = } else { context.throwError('Show failed. Malformed WS resonse.', 114); - } + }; + + var approxNode = data.getElementsByTagName("approximation"); + if (approxNode && approxNode[0] && approxNode[0].childNodes[0] && approxNode[0].childNodes[0].nodeValue) + show['approximation'] = + Number( approxNode[0].childNodes[0].nodeValue); + + + data.getElementsByTagName("") context.activeClients = activeClients; context.showCounter++; var delay = context.showTime; @@ -557,7 +569,9 @@ pz2.prototype = "command": "termlist", "session": this.sessionID, "name": this.termKeys, - "windowid" : window.name + "windowid" : window.name, + "version" : this.version + }, function(data) { if ( data.getElementsByTagName("termlist") ) { @@ -587,12 +601,22 @@ pz2.prototype = .childNodes[0].nodeValue || 'ERROR' }; + // Only for xtargets: id, records, filtered var termIdNode = terms[j].getElementsByTagName("id"); if(terms[j].getElementsByTagName("id").length) term["id"] = termIdNode[0].childNodes[0].nodeValue; termList[listName][j] = term; + + var recordsNode = terms[j].getElementsByTagName("records"); + if (recordsNode && recordsNode.length) + term["records"] = recordsNode[0].childNodes[0].nodeValue; + + var filteredNode = terms[j].getElementsByTagName("filtered"); + if (filteredNode && filteredNode.length) + term["filtered"] = filteredNode[0].childNodes[0].nodeValue; + } } @@ -638,7 +662,8 @@ pz2.prototype = "command": "bytarget", "session": this.sessionID, "block": 1, - "windowid" : window.name + "windowid" : window.name, + "version" : this.version }, function(data) { if ( data.getElementsByTagName("status")[0]