1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
// This file is part of Zoph.
//
// Zoph is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// Zoph is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Zoph; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
var zJSON=function() {
var retry;
var resp;
function getData(object, search, response) {
var http=new XMLHttpRequest();
resp = response;
if (object=='locationLookup') {
var url="service/locationLookup?search=" + escape(search);
} else if (object=='photoData') {
var url="service/photoData?photoId=" + escape(search);
} else if (object=='search') {
var url="service/search?" + search;
} else if (object=='photoPeople') {
var url="service/photoPeople?" + search;
} else if (object=='translation') {
var url="service/translation?" + search;
} else {
return;
}
if (http) {
http.open("GET", basePath + url, true);
http.onreadystatechange=function() {
httpResponse(http, object);
};
http.send();
} else {
// try again in 500 ms
clearTimeout(retry);
retry=setTimeout("JSON.getData('" + object + "','" + search + "')", 500);
}
}
function httpResponse(http, object) {
if (http.readyState == 4) {
if(http.status == 200) {
resp.httpResponse(object, http.response);
}
}
}
return {
getData:getData,
httpResponse:httpResponse
};
}();
|