1 // ========================================================================== 2 // Project: CoreTools.Target Fixtures 3 // Copyright: ©2011 Apple Inc. 4 // ========================================================================== 5 /*globals CoreTools */ 6 7 sc_require('models/target'); 8 9 CoreTools.Target.FIXTURES = [ 10 11 // SAMPLE APPS 12 { "name": "/sample_controls", 13 "kind": "app", 14 "link_docs": "/static/sample_controls/en/current/docs/-index.json", 15 "link_root": "/static/sample_controls", 16 "link_tests": "/static/sample_controls/en/current/tests/-index.json", 17 "parent": "" 18 }, 19 20 { "name": "/twitter", 21 "kind": "app", 22 "link_docs": "/static/twitter/en/current/docs/-index.json", 23 "link_root": "/static/twitter", 24 "link_tests": "/static/twitter/en/current/tests/-index.json", 25 "parent": "" 26 }, 27 28 // TOP LEVEL FRAMEWORK 29 { "name": "/sproutcore", 30 "kind": "framework", 31 "link_docs": "/static/sproutcore/en/current/docs/-index.json", 32 "link_root": "/static/sproutcore", 33 "link_tests": "/static/sproutcore/en/current/tests/-index.json", 34 "parent": "" 35 }, 36 37 // NESTED FRAMEWORKS 38 { "name": "/sproutcore/foundation", 39 "kind": "framework", 40 "link_docs": "/static/sproutcore/foundation/en/current/docs/-index.json", 41 "link_root": "/static/sproutcore/foundation", 42 "link_tests": "/static/sproutcore/foundation/en/current/tests/-index.json", 43 "parent": "/sproutcore" 44 }, 45 46 { "name": "/sproutcore/datastore", 47 "kind": "framework", 48 "link_docs": "/static/sproutcore/datastore/en/current/docs/-index.json", 49 "link_root": "/static/sproutcore/datastore", 50 "link_tests": "/static/sproutcore/datastore/en/current/tests/-index.json", 51 "parent": "/sproutcore" 52 }, 53 54 { "name": "/sproutcore/desktop", 55 "kind": "framework", 56 "link_docs": "/static/sproutcore/desktop/en/current/docs/-index.json", 57 "link_root": "/static/sproutcore/desktop", 58 "link_tests": "/static/sproutcore/desktop/en/current/tests/-index.json", 59 "parent": "/sproutcore" 60 }, 61 62 { "name": "/sproutcore/runtime", 63 "kind": "framework", 64 "link_docs": "/static/sproutcore/runtime/en/current/docs/-index.json", 65 "link_root": "/static/sproutcore/runtime", 66 "link_tests": "/static/sproutcore/runtime/en/current/tests/-index.json", 67 "parent": "/sproutcore" 68 }, 69 70 // NESTED APPS 71 { "name": "/sproutcore/welcome", 72 "kind": "app", 73 "link_docs": "/static/sproutcore/welcome/en/current/docs/-index.json", 74 "link_root": "/static/sproutcore/welcome", 75 "link_tests": "/static/sproutcore/welcome/en/current/tests/-index.json", 76 "parent": "/sproutcore" 77 }, 78 79 { "name": "/sproutcore/tests", 80 "kind": "app", 81 "link_docs": "/static/sproutcore/tests/en/current/docs/-index.json", 82 "link_root": "/static/sproutcore/tests", 83 "link_tests": "/static/sproutcore/tests/en/current/tests/-index.json", 84 "parent": "/sproutcore" 85 } 86 87 ]; 88