remove stale $Id$ tag
[pazpar2-moved-to-github.git] / www / jsdemo / example_client.js
index 9ce4740..fd9c37e 100644 (file)
@@ -1,5 +1,4 @@
 /* A very simple client that shows a basic usage of the pz2.js
-** $Id: example_client.js,v 1.6 2008-01-15 13:59:18 jakub Exp $
 */
 
 // create a parameters array and pass it to the pz2's constructor
@@ -7,9 +6,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 +22,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;