Enabling useproxy as search parameter. Disabling application mode if search parameter...
authorDennis Schafroth <dennis@indexdata.com>
Wed, 9 Jun 2010 13:02:41 +0000 (15:02 +0200)
committerDennis Schafroth <dennis@indexdata.com>
Wed, 9 Jun 2010 13:02:41 +0000 (15:02 +0200)
www/iphone/example_client.js

index f3dbc0e..a131b8a 100644 (file)
@@ -9,10 +9,10 @@ var pazpar2path = '/pazpar2/search.pz2';
 var showResponseType = '';
 var querys = {'su': '', 'au': '', 'xt': ''};
 
-if (document.location.hash == '#useproxy') {
+if (document.location.hash == '#useproxy' || document.location.search.match("useproxy=true")) {
     usesessions = false;
     pazpar2path = '/service-proxy/';
-    showResponseType = 'json';
+    showResponseType = 'xml';
 }
 
 my_paz = new pz2( { "onshow": my_onshow,
@@ -282,6 +282,8 @@ function domReady ()
     document.select.perpage.onchange = onSelectDdChange;
     if (document.location.search.match("inApp=true")) 
        applicationMode(true);
+    else
+       applicationMode(false);
 }
  
 function applicationMode(newmode)