Lines Matching refs:url
248 @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);
652 return PjaxBase.prototype._navigate.call(this, url, options);
670 @param {String} [url] URL for the history entry.
677 _save: function (url, replace) {
682 if (!this._hasSameOrigin(url)) {
688 url = this._joinURL(url || '');
691 // while navigating to the `url`.
693 win && win.location.replace(url);
695 win && (win.location = url);
756 The specified `url` will be upgraded if its of the same origin as the
764 @param {String} url The URL to upgrade from hash-based to full-path.
769 _upgradeURL: function (url) {
771 if (!this._hasSameOrigin(url)) {
772 return url;
777 var hash = (url.match(/#(.*)$/) || [])[1] || '',
788 url = this._resolveURL(this._joinURL(hash));
791 return url;