mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-05 14:08:42 +00:00
96d4a3ecf7
Due to historical reasons, the code is in subfolder "1". With SVN removal, we place the code back and remove the annoying "1" folder.
18 lines
1.4 KiB
JavaScript
18 lines
1.4 KiB
JavaScript
/*
|
|
jQuery AJAX Cross Origin v1.3 (http://www.ajax-cross-origin.com)
|
|
jQuery plugin to bypass Same-origin_policy using Google Apps Script.
|
|
|
|
references:
|
|
http://en.wikipedia.org/wiki/Same-origin_policy
|
|
http://www.google.com/script/start/
|
|
|
|
(c) 2014, Writen by Erez Ninio. site: www.dealhotelbook.com
|
|
|
|
Licensed under the Creative Commons Attribution 3.0 Unported License.
|
|
For details, see http://creativecommons.org/licenses/by/3.0/.
|
|
*/
|
|
|
|
var proxyJsonp="/tsinsen_list/proxy.php";
|
|
jQuery.ajaxOrig=jQuery.ajax;jQuery.ajax=function(a,b){function d(a){a=encodeURI(a).replace(/&/g,"%26");return proxyJsonp+"?url="+a+"&callback=?"}var c="object"===typeof a?a:b||{};c.url=c.url||("string"===typeof a?a:"");var c=jQuery.ajaxSetup({},c),e=function(a,c){var b=document.createElement("a");b.href=a;return c.crossOrigin&&"http"==a.substr(0,4).toLowerCase()&&"localhost"!=b.hostname&&"127.0.0.1"!=b.hostname&&b.hostname!=window.location.hostname}(c.url,c);c.proxy&&0<c.proxy.length&&(proxyJsonp=c.proxy,"object"===typeof a?
|
|
a.crossDomain=!0:"object"===typeof b&&(b.crossDomain=!0));e&&("object"===typeof a?a.url&&(a.url=d(a.url),a.charset&&(a.url+="&charset="+a.charset),a.dataType="json"):"string"===typeof a&&"object"===typeof b&&(a=d(a),b.charset&&(a+="&charset="+b.charset),b.dataType="json"));return jQuery.ajaxOrig.apply(this,arguments)};jQuery.ajax.prototype=new jQuery.ajaxOrig;jQuery.ajax.prototype.constructor=jQuery.ajax;
|