/yui3/ |
H A D | index.js | 1 exports.path = function() {
|
/yui3/src/charts/js/ |
H A D | Gridlines.js | 28 var path = this._path; 29 if(path) 31 path.destroy(); 57 var path, 92 path = graph.get("gridlines"); 93 path.set("width", w); 94 path.set("height", h); 95 path.set("stroke", { 102 lineFunction(path, points[i], w, h); 104 path [all...] |
H A D | Fills.js | 30 * Returns a path shape used for drawing fills. 38 var path = this._path; 39 if(!path) 41 path = this.get("graph").get("graphic").addShape({type:"path"}); 42 this._path = path; 44 return path; 85 path = this._getPath(), 87 path.clear(); 88 path [all...] |
H A D | Lines.js | 30 this._lineGraphic = graphic.addShape({type: "path"}); 86 path = this._getGraphic(); 87 path.set("stroke", { 105 path.moveTo(nextX, nextY); 111 path.lineTo(nextX, nextY); 115 this.drawDashedLine(path, lastValidX, lastValidY, nextX, nextY, 122 path.moveTo(nextX, nextY); 128 this.drawDashedLine(path, lastValidX, lastValidY, nextX, nextY, 134 path.lineTo(nextX, nextY); 141 path [all...] |
/yui3/src/get/tests/node/ |
H A D | test.js | 3 var path = require('path'); 5 var YUI = require(path.join('../../../../', 'build-npm')).YUI;
|
/yui3/build/dataschema-json/ |
H A D | dataschema-json-debug.js | 41 * @return {String[]} Walkable path to data value. 45 var path = null, 62 // commented out because the path isn't sent to eval, so it 65 path = locator.split('.'); 66 for (i=path.length-1; i >= 0; --i) { 67 if (path[i].charAt(0) === '@') { 68 path[i] = keys[parseInt(path[i].substr(1),10)]; 77 return path; 81 * Utility function to walk a path an [all...] |
/yui3/src/dataschema/js/ |
H A D | dataschema-json.js | 39 * @return {String[]} Walkable path to data value. 43 var path = null, 60 // commented out because the path isn't sent to eval, so it 63 path = locator.split('.'); 64 for (i=path.length-1; i >= 0; --i) { 65 if (path[i].charAt(0) === '@') { 66 path[i] = keys[parseInt(path[i].substr(1),10)]; 75 return path; 79 * Utility function to walk a path an [all...] |
/yui3/src/simpleyui/scripts/ |
H A D | concat.js | 3 var path = require('path'), 5 outFile = path.join(__dirname, '../js/concat.js'), 6 base = path.join(__dirname, '../../../', 'build/'), 7 YUI = require(path.join(base, 'yui/yui.js')).YUI;
|
/yui3/src/pjax/js/ |
H A D | pjax-base.js | 81 Regex used to break up a URL string around the URL's path. 85 1. Origin, everything before the URL's path-part. 86 2. The URL's path-part. 87 3. Suffix, everything after the URL's path-part. 162 Returns the current path root after popping off the last path segment, 165 The path root will always begin and end with a '/'. 168 @return {String} The URL's path root. 174 path = Y.getLocation().pathname, 177 if (path [all...] |
/yui3/build/pjax-base/ |
H A D | pjax-base-debug.js | 83 Regex used to break up a URL string around the URL's path. 87 1. Origin, everything before the URL's path-part. 88 2. The URL's path-part. 89 3. Suffix, everything after the URL's path-part. 164 Returns the current path root after popping off the last path segment, 167 The path root will always begin and end with a '/'. 170 @return {String} The URL's path root. 176 path = Y.getLocation().pathname, 179 if (path [all...] |
/yui3/build/attribute-complex/ |
H A D | attribute-complex-debug.js | 34 path, 42 path = k.split(DOT); 43 attr = path.shift(); 46 path : path, 83 path, 109 path = subvals[i].path; 111 O.setValue(val, path, subval);
|
/yui3/src/loader/scripts/ |
H A D | flatten.js | 4 path = require('path'); 6 var root = path.join(__dirname, '../../'); 11 var stat = fs.statSync(path.join(root, d)); 13 var files = fs.readdirSync(path.join(root, d)); 18 var str = fs.readFileSync(path.join(root, d, f), 'utf8').split('\n'); 27 console.log('Writing: ', path.join(root, d, f)); 28 fs.writeFileSync(path.join(root, d, f), str.join('\n'), 'utf8');
|
H A D | requires.js | 3 var path = require('path'), 5 root = path.join(__dirname, '../../'), 17 var p = path.join(root, d); 28 var o = fs.readdirSync(path.join(p, 'meta')); 30 if (path.extname(i) === '.json') { 32 var d = JSON.parse(fs.readFileSync(path.join(p, 'meta', i))); 34 console.error('Failed to parse JSON from: ', path.join(p, 'meta', i)); 41 console.log(color('[No Requires]'), path.join(p, 'meta', i), color(' [' + name + ']')); 47 console.log(color('[No Requires]'), path [all...] |
H A D | fetch_gallery_version.js | 6 path = require('path'), 11 path: '/gallery/api/oncdn' 29 var prop = path.join(__dirname, '../', 'loader.meta.properties');
|
H A D | meta_join.py | 16 pathname = os.path.dirname(sys.argv[0]) 44 src_path = os.path.abspath(SRC_DIR) 46 template_path = os.path.abspath(TEMPLATE_DIR) 47 dest_path = os.path.abspath(DEST_DIR) 48 tests_dest_path = os.path.abspath(TESTS_DEST_DIR) 50 if not os.path.exists(dest_path): 53 if not os.path.exists(tests_dest_path): 56 def readFile(path, file): 57 return codecs.open(os.path.join(path, fil [all...] |
/yui3/src/attribute/js/ |
H A D | ComplexAttribute.js | 32 path, 40 path = k.split(DOT); 41 attr = path.shift(); 44 path : path, 81 path, 107 path = subvals[i].path; 109 O.setValue(val, path, subval);
|
/yui3/src/yui/scripts/ |
H A D | npm_package.js | 4 path = require('path'), 5 YUI = require(path.join(__dirname, '../../../build/yui-nodejs/yui-nodejs')).YUI, 21 start = path.resolve(start); 23 if (!path.existsSync(start)) { 54 var p = path.join(start, mod, 'index.js'); 55 var d = path.join(start, mod, 'debug.js'); 56 var stat = fs.statSync(path.join(start, mod)) 65 var index = 'exports.path = function() {' + 72 var p = path [all...] |
H A D | build.js | 4 path = require('path'), 5 p = path.join(__dirname, '../../loader/js/yui3.json') 6 out = path.join(__dirname, '../', 'js', 'alias.js');
|
H A D | build_doc_modules.js | 3 var path = require('path'), 5 base = path.join(__dirname, '../../../api-js/data.json'), 6 alias_json = path.join(__dirname, '../../loader/js/yui3.json'), 7 out = path.join(__dirname, '../docs/partials/modules.mustache'); 9 if (!path.existsSync(base)) {
|
/yui3/src/yui/docs/partials/ |
H A D | loader-resolve-node.mustache | 3 var path = require('path'), 10 //Setup the base path that your YUI files live in 11 base: path.join(__dirname, './node_modules/yui/'),
|
/yui3/build/router/ |
H A D | router-debug.js | 48 @param {String} [config.root=''] Root path from which all routes should be 104 should only match a single level of a path, or `*` for splat parameters 105 that should match any number of path levels. 126 Regex that matches everything before the path portion of a URL (the origin). 128 only want the path. 210 Gets the current route path, relative to the `root` (if any). 213 @return {String} Current route path. 241 Returns an array of route objects that match the specified URL path. 244 path whenever the URL changes. You may override it if you want to customize 252 the route's path specificatio [all...] |
/yui3/src/app/js/ |
H A D | router.js | 46 @param {String} [config.root=''] Root path from which all routes should be 102 should only match a single level of a path, or `*` for splat parameters 103 that should match any number of path levels. 124 Regex that matches everything before the path portion of a URL (the origin). 126 only want the path. 208 Gets the current route path, relative to the `root` (if any). 211 @return {String} Current route path. 239 Returns an array of route objects that match the specified URL path. 242 path whenever the URL changes. You may override it if you want to customize 250 the route's path specificatio [all...] |
/yui3/src/io/tests/cli/ |
H A D | run.js | 4 path = require('path'), 7 dir = path.join(process.cwd(), '../../../build-npm/'), 11 var modules = require(path.join(__dirname, '../modules')); 14 modules[name].fullpath = path.join(__dirname, '../', modules[name].fullpath);
|
/yui3/src/yui/tests/ |
H A D | core-tests.js | 5 'http://localhost/build/yui/yui.js': { path: 'http://localhost/build/', filter: undefined }, 6 'http://localhost/build/yui/yui-debug.js': { path: 'http://localhost/build/', filter: 'debug' }, 7 'http://localhost/build/yui-base/yui-base.js': { path: 'http://localhost/build/', filter: undefined }, 8 'http://localhost/build/yui-base/yui-base-debug.js': { path: 'http://localhost/build/', filter: 'debug' }, 9 'http://combohost.com/combo?foo/foo.js&bar-bar.js&/build/yui-base/yui-base.js': { path: 'http://combohost.com/combo?/build/', filter: undefined }, 10 'http://combohost.com/combo?foo/foo.js&bar-bar.js&/build/yui-base/yui-base-debug.js': { path: 'http://combohost.com/combo?/build/', filter: 'debug' }, 11 'http://combohost.com/combo?foo/foo.js&bar-bar.js&/build/yui-base/yui-base.js&build/loader/loader.js': { path: 'http://combohost.com/combo?/build/', filter: undefined }, 12 'http://combohost.com/combo?foo/foo.js&bar-bar.js&/build/yui-base/yui-base-debug.js&buid/loader/loader.js': { path: 'http://combohost.com/combo?/build/', filter: 'debug' }, 13 'https://localhost/build/yui/yui.js': { path: 'https://localhost/build/', filter: undefined }, 14 'https://localhost/build/yui/yui-debug.js': { path [all...] |
/yui3/src/loader/js/ |
H A D | meta.js | 25 path: 'skin.css', 80 me.path = me.path.replace(/\.js/, '.css'); 83 me.path = me.path.replace(/\/yui2-skin/,
|