Home | History | Annotate | Download | only in webapp

Lines Matching refs:URL

40  * @param {string} url The base URL to GET, excluding parameters.
52 remoting.xhr.get = function(url, onDone, opt_parameters, opt_headers,
54 return remoting.xhr.doMethod('GET', url, onDone, opt_parameters,
61 * @param {string} url The base URL to POST, excluding parameters.
73 remoting.xhr.post = function(url, onDone, opt_parameters, opt_headers,
75 return remoting.xhr.doMethod('POST', url, onDone, opt_parameters,
82 * @param {string} url The base URL to DELETE, excluding parameters.
94 remoting.xhr.remove = function(url, onDone, opt_parameters, opt_headers,
96 return remoting.xhr.doMethod('DELETE', url, onDone, opt_parameters,
103 * @param {string} url The base URL to PUT, excluding parameters.
115 remoting.xhr.put = function(url, onDone, opt_parameters, opt_headers,
117 return remoting.xhr.doMethod('PUT', url, onDone, opt_parameters,
125 * @param {string} url The base URL, excluding parameters.
137 remoting.xhr.doMethod = function(methodName, url, onDone,
163 url = url + '?' + parameterString;
166 xhr.open(methodName, url, true);