Revert "Eliminate superfluous temporary assignments."
authorWolfram Schneider <wosch@indexdata.dk>
Thu, 12 Dec 2013 15:00:37 +0000 (15:00 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Thu, 12 Dec 2013 15:00:37 +0000 (15:00 +0000)
This reverts commit bba27d39caf95d9f0c4684f1f4d49ac8747ca03c.

Actually, these are not superfluous. The variables are used in
the jasmine framework to check if the config values make sense
before calling new pz2( {}) with an json object.

tools/htdocs/mkws.js

index 281f5b2..892acef 100644 (file)
@@ -22,6 +22,11 @@ if (!mkws_config)
 // Wrapper for jQuery
 (function ($) {
 
+var pazpar2_url = mkws_config.pazpar2_url || "http://mkws.indexdata.com/service-proxy/";
+
+mkws.pazpar2path = pazpar2_url;
+mkws.usesessions = mkws_config.use_service_proxy ? false : true;
+
 mkws.locale_lang = {
     "de": {
        "Authors": "Autoren",
@@ -218,13 +223,13 @@ for (var key in mkws_config) {
 // autoInit is set to true on default
 var my_paz = new pz2( { "onshow": my_onshow,
                     "showtime": 500,            //each timer (show, stat, term, bytarget) can be specified this way
-                    "pazpar2path": mkws_config.pazpar2_url || "http://mkws.indexdata.com/service-proxy/",
+                    "pazpar2path": mkws.pazpar2path,
                     "oninit": my_oninit,
                     "onstat": my_onstat,
                     "onterm": my_onterm,
                     "termlist": "xtargets,subject,author",
                     "onbytarget": my_onbytarget,
-                   "usesessions" : mkws_config.use_service_proxy ? false : true,
+                   "usesessions" : mkws.usesessions,
                     "showResponseType": '', // or "json" (for debugging?)
                     "onrecord": my_onrecord } );