X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2Fmkws.js;h=e4d339a2ca6ca5b7837c309dec9ef9944f078c59;hb=65baba212bfb2f2090909d823ba1c78bcc15ab4f;hp=bac4ccb06972b5551643b686e5b31387a1f0e14e;hpb=e1bd8185385821522368729747c57505aca98451;p=mkws-moved-to-github.git diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index bac4ccb..e4d339a 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -3,6 +3,7 @@ "use strict"; // HTML5: disable for debug >= 2 + /* * global config object: mkws_config * @@ -26,6 +27,7 @@ var pazpar2path = mkws_config.use_service_proxy ? service_proxy_url : pazpar2_ur var usesessions = mkws_config.use_service_proxy ? false : true; +(function ($) { var mkws_locale_lang = { "de": { "Authors": "Autoren", @@ -201,9 +203,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 +642,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 +731,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 +825,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('?', ''); @@ -846,10 +850,7 @@ jQuery.extend({
\
\
\ -
\ -
\ - Powered by MKWS © 2013 Index Data\ -
'; +
'; // new table layout var table = '\ @@ -897,9 +898,23 @@ jQuery.extend({ \ '; + var popup = '\ +
\ +
\ +
\ +
\ +
\ +
\ +
\ +
' + if (config && config.layout == 'div') { this.debug2("jquery plugin layout: div"); document.write(div); + } 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); @@ -907,6 +922,38 @@ jQuery.extend({ } }); +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: height, + width: width, + modal: true, + resizable: true, + buttons: { + Cancel: function() { + $(this).dialog("close"); + } + }, + close: function() { } + }); + + $(id_button) + .button() + .click(function() { + $(id_popup).dialog("open"); + }); +}; + function debug(string) { if (!mkws_debug) return; @@ -927,3 +974,5 @@ function debug(string) { /* magic */ $(document).ready(function() { mkws_html_all(mkws_config) }); + +})(jQuery);