SP usage is configurable.
authorJakub Skoczen <jakub@indexdata.dk>
Fri, 9 Apr 2010 13:41:59 +0000 (15:41 +0200)
committerJakub Skoczen <jakub@indexdata.dk>
Fri, 9 Apr 2010 13:41:59 +0000 (15:41 +0200)
If jsdemo is to be used in the in SP mode, append
'#useproxy' to the URL

SP mode requires no polling and supports JSON response types

www/jsdemo/example_client.js

index 9ce4740..6c93157 100644 (file)
@@ -7,9 +7,11 @@
 // autoInit is set to true on default
 var usesessions = true;
 var pazpar2path = '/pazpar2/search.pz2';
-if (true || document.location.hash == '#nosessions') {
+var showResponseType = '';
+if (document.location.hash == '#useproxy') {
     usesessions = false;
     pazpar2path = '/service-proxy/';
+    showResponseType = 'json';
 }
 
 my_paz = new pz2( { "onshow": my_onshow,
@@ -21,7 +23,7 @@ my_paz = new pz2( { "onshow": my_onshow,
                     "termlist": "xtargets,subject,author",
                     "onbytarget": my_onbytarget,
                    "usesessions" : usesessions,
-                    "showResponseType": "json",
+                    "showResponseType": showResponseType,
                     "onrecord": my_onrecord } );
 // some state vars
 var curPage = 1;