Searched refs:url (Results 1 - 25 of 93) sorted by relevance

1234

/yui3/src/common/scripts/
H A Dyetiunit.php8 foreach ($xml->tests->url as $k => $url) {
9 $urls[] = $url;
/yui3/build/get-nodejs/
H A Dget-debug.js41 * @param {String} url The path to the file that was parsed
44 * @param {String} cb.url The URL that was just parsed
47 Y.Get._exec = function(data, url, cb) {
48 var dirName = escapeWinPath(path.dirname(url));
49 var fileName = escapeWinPath(url);
66 var script = vm.createScript(mod, url);
69 cb(null, url);
77 * @param {String} url The URL/File path to fetch the content from
80 Y.Get._include = function(url, cb) {
83 if (url
[all...]
H A Dget-nodejs-debug.js43 urls = A(s), url, i, l = urls.length;
45 url = urls[i];
47 url = url.replace(/'/g, '%27');
48 Y.log('URL: ' + url, 'info', 'get');
50 include(url, function(err) {
56 Y.log('Loaded: ' + url, 'info', 'get');
80 var include = function(url, cb) {
81 var mod = fs.readFileSync(url, 'utf8');
82 var script = vm.createScript(mod, url);
[all...]
/yui3/src/get/js/
H A Dget-nodejs.js39 * @param {String} url The path to the file that was parsed
42 * @param {String} cb.url The URL that was just parsed
45 Y.Get._exec = function(data, url, cb) {
46 var dirName = escapeWinPath(path.dirname(url));
47 var fileName = escapeWinPath(url);
64 var script = vm.createScript(mod, url);
67 cb(null, url);
75 * @param {String} url The URL/File path to fetch the content from
78 Y.Get._include = function(url, cb) {
81 if (url
[all...]
/yui3/src/editor/js/
H A Dcreatelink-base.js45 url = prompt(CreateLinkBase.STRINGS.PROMPT, CreateLinkBase.STRINGS.DEFAULT);
47 if (url) {
49 url = url.replace(/"/g, '').replace(/'/g, ''); //Remove single & double quotes
50 url = inst.config.doc.createTextNode(url);
51 holder.appendChild(url);
52 url = holder.innerHTML;
54 Y.log('Adding link: ' + url, 'info', 'createLinkBase');
56 this.get('host')._execCommand(cmd, url);
[all...]
/yui3/build/router/
H A Drouter-debug.js224 `url`; any URL which is not from the same origin as the current URL will
228 @param {String} url URL to match.
232 hasRoute: function (url) {
233 if (!this._hasSameOrigin(url)) {
237 return !!this.match(this.removeRoot(url)).length;
278 @param {String} url URL.
281 removeRoot: function (url) {
286 url = url.replace(this._regexUrlOrigin, '');
288 if (root && url
[all...]
/yui3/src/pjax/js/
H A Dpjax-base.js29 @param {String} url The URL that the router will dispatch to its route
33 @param {String} [hash] The hash-fragment (including "#") of the `url`. This
34 will be present when the `url` differs from the current URL only by its
40 specified `url` is the same as the current URL.
132 @param {String} url The URL to navigate to. This must be of the same origin
138 to `true` if the specified `url` is the same as the current URL.
144 navigate: function (url, options) {
146 url = this._resolveURL(url);
148 if (this._navigate(url, option
[all...]
H A Dpjax.js38 @param {String} url The absolute URL that failed to load.
55 @param {String} url The absolute URL that was loaded.
125 var url = req.url;
135 url = url.replace(/([^#]*)(#.*)?$/, function (match, path, hash) {
142 this._request = Y.io(url, {
143 arguments: {url: url},
206 url
[all...]
/yui3/build/pjax-base/
H A Dpjax-base-debug.js31 @param {String} url The URL that the router will dispatch to its route
35 @param {String} [hash] The hash-fragment (including "#") of the `url`. This
36 will be present when the `url` differs from the current URL only by its
42 specified `url` is the same as the current URL.
134 @param {String} url The URL to navigate to. This must be of the same origin
140 to `true` if the specified `url` is the same as the current URL.
146 navigate: function (url, options) {
148 url = this._resolveURL(url);
150 if (this._navigate(url, option
[all...]
/yui3/src/app/js/
H A Drouter.js222 `url`; any URL which is not from the same origin as the current URL will
226 @param {String} url URL to match.
230 hasRoute: function (url) {
231 if (!this._hasSameOrigin(url)) {
235 return !!this.match(this.removeRoot(url)).length;
276 @param {String} url URL.
279 removeRoot: function (url) {
284 url = url.replace(this._regexUrlOrigin, '');
286 if (root && url
[all...]
H A Dapp-base.js246 @param {String} url The URL to navigate to. This must be of the same origin
252 to `true` if the specified `url` is the same as the current URL.
538 var url = Y.getLocation().toString();
539 return this._html5 ? url : this._upgradeURL(url);
623 @param {String} url The fully-resolved URL that the app should dispatch to
631 to `true` if the specified `url` is the same as the current URL.
638 _navigate: function (url, options) {
639 url = this._upgradeURL(url);
[all...]
/yui3/build/createlink-base/
H A Dcreatelink-base-debug.js47 url = prompt(CreateLinkBase.STRINGS.PROMPT, CreateLinkBase.STRINGS.DEFAULT);
49 if (url) {
51 url = url.replace(/"/g, '').replace(/'/g, ''); //Remove single & double quotes
52 url = inst.config.doc.createTextNode(url);
53 holder.appendChild(url);
54 url = holder.innerHTML;
56 Y.log('Adding link: ' + url, 'info', 'createLinkBase');
58 this.get('host')._execCommand(cmd, url);
[all...]
/yui3/build/jsonp-url/
H A Djsonp-url-debug.js1 YUI.add('jsonp-url', function(Y) {
8 * Adds support for parsing complex callback identifiers from the jsonp url.
13 * @submodule jsonp-url
20 * name into the JSONP url. Looks for a query param callback=. If a value
32 * name to the url.
42 * <p>Parses the url for a callback named explicitly in the string.
44 * parameter or url format.</p>
50 * @param url {String} the url to search in
54 _defaultCallback: function (url) {
[all...]
/yui3/src/jsonp/js/
H A Djsonp-url.js6 * Adds support for parsing complex callback identifiers from the jsonp url.
11 * @submodule jsonp-url
18 * name into the JSONP url. Looks for a query param callback=. If a value
30 * name to the url.
40 * <p>Parses the url for a callback named explicitly in the string.
42 * parameter or url format.</p>
48 * @param url {String} the url to search in
52 _defaultCallback: function (url) {
53 var match = url
[all...]
H A Djsonp.js5 * method Y.jsonp(url, callback) to instantiate and send a JSONP request.</p>
8 * parameters: a url string and a callback.</p>
10 * <p>The url provided must include the placeholder string
13 * An example url might look like
26 * <li>format - override function for inserting the proxy name in the url</li>
36 * @param url {String} the url of the JSONP service
47 * to insert the temporary callback name in the url.
50 * @param url {String} the url o
[all...]
/yui3/build/jsonp/
H A Djsonp-debug.js7 * method Y.jsonp(url, callback) to instantiate and send a JSONP request.</p>
10 * parameters: a url string and a callback.</p>
12 * <p>The url provided must include the placeholder string
15 * An example url might look like
28 * <li>format - override function for inserting the proxy name in the url</li>
38 * @param url {String} the url of the JSONP service
49 * to insert the temporary callback name in the url.
52 * @param url {String} the url o
[all...]
/yui3/src/io/tests/cli/
H A Dserver.js5 var url = req.url.split('?');
7 switch (url[0]) {
9 var qs = url[1].replace('a=', ''),
46 body = url[1];
79 res.end(url[1]);
/yui3/build/pjax/
H A Dpjax-debug.js40 @param {String} url The absolute URL that failed to load.
57 @param {String} url The absolute URL that was loaded.
127 var url = req.url;
137 url = url.replace(/([^#]*)(#.*)?$/, function (match, path, hash) {
144 this._request = Y.io(url, {
145 arguments: {url: url},
208 url
[all...]
/yui3/build/yql/
H A Dyql-debug.js14 * @param {Object} opts An object literal of configuration options (optional): proto (http|https), base (url)
68 var qs = [], url = ((this._opts && this._opts.proto) ? this._opts.proto : Y.YQLRequest.PROTO);
76 url += ((this._opts && this._opts.base) ? this._opts.base : Y.YQLRequest.BASE_URL) + qs;
82 Y.log('URL: ' + url, 'info', 'yql');
85 this._jsonp = Y.jsonp(url, o);
87 this._jsonp.url = url;
131 * @param {Object} opts An object literal of configuration options (optional): proto (http|https), base (url)
139 }, '@VERSION@' ,{requires:['jsonp', 'jsonp-url']});
/yui3/src/yql/js/
H A Dyql.js12 * @param {Object} opts An object literal of configuration options (optional): proto (http|https), base (url)
66 var qs = [], url = ((this._opts && this._opts.proto) ? this._opts.proto : Y.YQLRequest.PROTO);
74 url += ((this._opts && this._opts.base) ? this._opts.base : Y.YQLRequest.BASE_URL) + qs;
80 Y.log('URL: ' + url, 'info', 'yql');
83 this._jsonp = Y.jsonp(url, o);
85 this._jsonp.url = url;
129 * @param {Object} opts An object literal of configuration options (optional): proto (http|https), base (url)
/yui3/src/node-focusmanager/docs/assets/
H A Dnews.php6 "q" => ('select title,link from rss where url="http://rss.news.yahoo.com/rss/'.$sFeed.'"'),
16 $url = "http://query.yahooapis.com/v1/public/yql?".implode("&", $encoded_params); variable
19 curl_setopt($ch, CURLOPT_URL, $url);
/yui3/build/app-base/
H A Dapp-base-debug.js248 @param {String} url The URL to navigate to. This must be of the same origin
254 to `true` if the specified `url` is the same as the current URL.
540 var url = Y.getLocation().toString();
541 return this._html5 ? url : this._upgradeURL(url);
625 @param {String} url The fully-resolved URL that the app should dispatch to
633 to `true` if the specified `url` is the same as the current URL.
640 _navigate: function (url, options) {
641 url = this._upgradeURL(url);
[all...]
/yui3/src/node/js/
H A Dnode-load.js37 * Loads content from the given url and replaces the Node's
40 * @param {String} url The URL to load via XMLHttpRequest.
45 Y.Node.prototype.load = function(url, selector, callback) {
58 Y.io(url, config);
/yui3/build/node-load/
H A Dnode-load-debug.js39 * Loads content from the given url and replaces the Node's
42 * @param {String} url The URL to load via XMLHttpRequest.
47 Y.Node.prototype.load = function(url, selector, callback) {
60 Y.io(url, config);
/yui3/src/test/js/
H A DReporter.js4 * @param {String} url The URL to submit the results to.
11 YUITest.Reporter = function(url, format) {
16 * @property url
18 this.url = url;
130 this._form.action = this.url;

Completed in 113 milliseconds

1234