X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2Fmkws.js;h=484773e33c7fb98c2261a39d6160c9a7f8c44379;hb=c1d090e6e656183cdea3dbd88ae851fb1d00374b;hp=2332894333a12d01929f4c2022abbd6c14714dd7;hpb=1aed2ff77ffa4a4fb02f01156e723f3b6a6b763c;p=mkws-moved-to-github.git diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 2332894..484773e 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -310,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(); } @@ -524,7 +524,6 @@ function mkws_html_all(config) { sort_default: "relevance", perpage_default: 20, query_width: 50, - switch_menu: false, /* show/hide Records|Targets menu */ lang_menu: true, /* show/hide language menu */ sort_menu: true, /* show/hide sort menu */ perpage_menu: true, /* show/hide perpage menu */ @@ -672,11 +671,6 @@ function mkws_html_switch(config) { No information available yet.\ '); $("#mkwsTargets").css("display", "none"); - - if (!config.switch_menu) { - debug("disable switch menu"); - $("#mkwsSwitch").css("display", "none"); - } } function mkws_html_sort(config) { @@ -727,7 +721,10 @@ function mkws_service_proxy_auth(auth_url) { debug("Run service proxy auth URL: " + auth_url); - var request = new pzHttpRequest(auth_url); + var request = new pzHttpRequest(auth_url, function(err) { + alert("HTTP call for authentication failed: " + err) + return; + }); request.get(null, function(data) { if (!$.isXMLDoc(data)) { alert("service proxy auth response document is not valid XML document, give up!"); @@ -842,6 +839,9 @@ $.extend({ // service-proxy or pazpar2 pazpar2: function(config) { + var id_popup = config.id_popup || "#mkwsPopup"; + id_popup = id_popup.replace(/^#/, ""); + // simple layout var div = '
\
\ @@ -898,7 +898,7 @@ $.extend({ var popup = '\
\ -
\ +
\
\
\
\ @@ -910,7 +910,7 @@ $.extend({ this.debug2("jquery plugin layout: div"); document.write(div); } else if (config && config.layout == 'popup') { - this.debug2("jquery plugin layout: popup"); + this.debug2("jquery plugin layout: popup with id: " + id_popup); document.write(popup); $(document).ready( function() { init_popup(config); } ); } else { @@ -925,11 +925,18 @@ function init_popup(obj) { var height = config.height || 760; var width = config.width || 880; - var id_button = config.button || "input#mkwsButton"; - var id_popup = config.popup || "#mkwsPopup"; + var id_button = config.id_button || "input#mkwsButton"; + var id_popup = config.id_popup || "#mkwsPopup"; debug("popup height: " + height + ", width: " + width); + // make sure that jquery-ui was loaded afte jQuery core lib, e.g.: + // + if (!$.ui) { + debug("Error: jquery-ui.js is missing, did you included it after jquery core in the HTML file?"); + return; + } + $(id_popup).dialog({ closeOnEscape: true, autoOpen: false, @@ -971,4 +978,13 @@ function debug(string) { /* magic */ -$(document).ready(function() { mkws_html_all(mkws_config) }); +$(document).ready(function() { + try { + mkws_html_all(mkws_config) + } + + catch (e) { + mkws_config.error = e.message; + // alert(e.message); + } +});