From: Dennis Schafroth Date: Fri, 4 Jun 2010 10:39:28 +0000 (+0200) Subject: Add All to termlists X-Git-Tag: v1.4.2~7^2~30 X-Git-Url: http://jsfdemo.indexdata.com/?a=commitdiff_plain;h=c923026d3a5939ab4b6b6ac7adb1c99eab304f03;p=pazpar2-moved-to-github.git Add All to termlists --- diff --git a/www/iphone/example_client.js b/www/iphone/example_client.js index cfae8ed..64843f0 100644 --- a/www/iphone/example_client.js +++ b/www/iphone/example_client.js @@ -199,20 +199,21 @@ function serialize(array) { var termlist = {}; function my_onterm_iphone(data) { my_onterm(data); - var targets = ""; + var targets = "-|All|\n"; + for (var i = 0; i < data.xtargets.length; i++ ) { targets = targets + data.xtargets[i].id + "|" + data.xtargets[i].name + "|" + data.xtargets[i].freq + "\n"; } termlist["xtargets"] = targets; - var subjects = ""; + var subjects = "-|All|\n"; for (var i = 0; i < data.subject.length; i++ ) { - subjects = subjects + "-" + "|" + data.subject[i].name + "|" + data.subject[i].freq + "\n"; + subjects = subjects + "su" + "|" + data.subject[i].name + "|" + data.subject[i].freq + "\n"; } termlist["subjects"] = subjects; - var authors = ""; + var authors = "-|All|\n"; for (var i = 0; i < data.author.length; i++ ) { - authors = authors + "-" + "|" + data.author[i].name + "|" + data.author[i].freq + "\n"; + authors = authors + "au" + "|" + data.author[i].name + "|" + data.author[i].freq + "\n"; } termlist["authors"] = authors; //document.getElementById("log").innerHTML = targets + "\n" + subjects + "\n" + authors; @@ -276,7 +277,8 @@ function domReady () document.search.query.value = ''; document.select.sort.onchange = onSelectDdChange; document.select.perpage.onchange = onSelectDdChange; - applicationMode(true); + if (document.location.search.match("inApp=true")) + applicationMode(true); } function applicationMode(newmode)