X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2Fmkws.js;h=2332894333a12d01929f4c2022abbd6c14714dd7;hb=1aed2ff77ffa4a4fb02f01156e723f3b6a6b763c;hp=4eb2f203fa15cfacfa97e847966c2f32ab94e2af;hpb=c200e1da760e7e0bde6442a17383cda1659c2479;p=mkws-moved-to-github.git diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 4eb2f20..2332894 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('
'); } @@ -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('?', ''); @@ -902,8 +904,7 @@ jQuery.extend({
\
\
\ -
\ - '; + ' if (config && config.layout == 'div') { this.debug2("jquery plugin layout: div"); @@ -911,6 +912,7 @@ jQuery.extend({ } else if (config && config.layout == 'popup') { this.debug2("jquery plugin layout: popup"); document.write(popup); + $(document).ready( function() { init_popup(config); } ); } else { this.debug2("jquery plugin layout: table"); document.write(table); @@ -918,12 +920,21 @@ jQuery.extend({ } }); -function init_popup(config) { - $("#mkwsPopup").dialog({ +function init_popup(obj) { + var config = obj ? obj : {}; + + var height = config.height || 760; + var width = config.width || 880; + var id_button = config.button || "input#mkwsButton"; + var id_popup = config.popup || "#mkwsPopup"; + + debug("popup height: " + height + ", width: " + width); + + $(id_popup).dialog({ closeOnEscape: true, autoOpen: false, - height: 760, - width: 880, + height: height, + width: width, modal: true, resizable: true, buttons: { @@ -931,15 +942,13 @@ function init_popup(config) { $(this).dialog("close"); } }, - close: function() { - // allFields.val( "" ).removeClass( "ui-state-error" ); - } + close: function() { } }); - $("input#mkwsButton") + $(id_button) .button() .click(function() { - $("#mkwsPopup").dialog("open"); + $(id_popup).dialog("open"); }); };