X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2Fmkws.js;h=d5eb26712860bae8117dec3762bc989b788ea3c0;hb=3163c06206f9ae752e4af34a981d511189bfd60a;hp=2332894333a12d01929f4c2022abbd6c14714dd7;hpb=1aed2ff77ffa4a4fb02f01156e723f3b6a6b763c;p=mkws-moved-to-github.git diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 2332894..d5eb267 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(); } @@ -727,7 +727,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 +845,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 +904,7 @@ $.extend({ var popup = '\
\ -
\ +
\
\
\
\ @@ -910,7 +916,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 +931,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 +984,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); + } +});