X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=www%2Fjsdemo%2Fexample_client.js;h=fd9c37ee8eded2de4dadbbff82324efe729656ad;hb=311cf61ceacaa95dd68019f8345faf17b652a218;hp=9ce47408fd228b87354936f081a64360e4a99cfa;hpb=b40bdb2f4a3793471b478da5a691261d197cfcd4;p=pazpar2-moved-to-github.git diff --git a/www/jsdemo/example_client.js b/www/jsdemo/example_client.js index 9ce4740..fd9c37e 100644 --- a/www/jsdemo/example_client.js +++ b/www/jsdemo/example_client.js @@ -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;