X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2Fmkws.js;h=e90ff29b2f8e9d3ee08eed394902b61234adc701;hb=d3b9f1529768e96c18dc8ce2e092c46e55495826;hp=4004ce201e382d8e7f612c4c32ea811f4f0c02fe;hpb=4ebbfcd799553848d2a2503c1b28ab0a961a2caa;p=mkws-moved-to-github.git diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 4004ce2..e90ff29 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -201,9 +201,10 @@ function my_onterm(data) { } function add_single_facet(acc, caption, data, max, cclIndex) { - acc.push('
'); + acc.push('
'); acc.push('
' + M(caption) + '
'); for (var i = 0; i < data.length && i < max; i++ ) { + acc.push('
'); acc.push('' + data[i].name + '' - + ' (' + data[i].freq + ')
'); + + ' ' + data[i].freq + ''); + acc.push('
'); } acc.push('
'); } @@ -308,7 +310,7 @@ function loadSelect () // limit the query after clicking the facet function limitQuery (field, value) { - document.mkwsSearchForm.query.value += ' and ' + field + '="' + value + '"'; + document.mkwsSearchForm.mkwsQuery.value += ' and ' + field + '="' + value + '"'; onFormSubmitEventHandler(); } @@ -638,7 +640,7 @@ function mkws_html_all(config) { } function mkws_set_lang(mkws_config) { - var lang = jQuery.parseQuerystring().lang || mkws_config.lang || ""; + var lang = $.parseQuerystring().lang || mkws_config.lang || ""; if (!lang || !mkws_locale_lang[lang]) { mkws_config.lang = "" } else { @@ -727,7 +729,7 @@ function mkws_service_proxy_auth(auth_url) { var request = new pzHttpRequest(auth_url); request.get(null, function(data) { - if (!jQuery.isXMLDoc(data)) { + if (!$.isXMLDoc(data)) { alert("service proxy auth response document is not valid XML document, give up!"); return; } @@ -821,8 +823,8 @@ function M(word) { /* * implement jQuery plugins */ -jQuery.extend({ - // implement jQuery.parseQuerystring() for parsing URL parameters +$.extend({ + // implement $.parseQuerystring() for parsing URL parameters parseQuerystring: function() { var nvpair = {}; var qs = window.location.search.replace('?', '');