Merge branch 'master' of ssh://git.indexdata.com:222/home/git/private/mkws
authorWolfram Schneider <wosch@indexdata.dk>
Thu, 19 Dec 2013 09:46:42 +0000 (09:46 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Thu, 19 Dec 2013 09:46:42 +0000 (09:46 +0000)
1  2 
tools/htdocs/mkws.js

diff --combined tools/htdocs/mkws.js
@@@ -1,5 -1,4 +1,4 @@@
- /* A very simple client that shows a basic usage of the pz2.js
- */
+ /* MKWS, the MasterKey Widget Set. Copyright (C) 2013, Index Data */
  
  "use strict"; // HTML5: disable for debug_level >= 2
  
@@@ -422,8 -421,6 +421,8 @@@ function onFormSubmitEventHandler(
  
  function newSearch(query, sort, targets)
  {
 +    debug("newSearch: " + query);
 +   
      if (mkws_config.use_service_proxy && !mkws.authenticated) {
        alert("searching before authentication");
        return;
@@@ -906,14 -903,10 +905,14 @@@ function mkws_html_all() 
  
      mkws_html_switch();
  
 -    if (mkws_config.use_service_proxy)
 +    if (mkws_config.use_service_proxy) {
          mkws_service_proxy_auth(mkws_config.service_proxy_auth,
                                  mkws_config.service_proxy_auth_domain,
                                  mkws_config.pazpar2_url);
 +    } else {
 +      // raw pp2
 +      run_auto_searches();
 +    }
  
      if (mkws_config.responsive_design_width) {
        // Responsive web design - change layout on the fly based on
  
  
  function run_auto_searches() {
 +    debug("run auto searches");
 +
      var node = $('#mkwsRecords');
      if (node.attr('autosearch')) {
        var query = node.attr('autosearch');