Skip to content

Commit e230be0

Browse files
committed
add missing entities in ember 1.0.0
1 parent b81ce1f commit e230be0

File tree

62 files changed

+67875
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+67875
-10
lines changed

json-docs/ember/1.0.0/classes/ember-1.0.0-Container-263758dfb7.json

+391
Large diffs are not rendered by default.

json-docs/ember/1.0.0/classes/ember-1.0.0-Ember.Application-9b5f816a7e.json

+1,106
Large diffs are not rendered by default.

json-docs/ember/1.0.0/classes/ember-1.0.0-Ember.Array-92e8b5778d.json

+1,375
Large diffs are not rendered by default.

json-docs/ember/1.0.0/classes/ember-1.0.0-Ember.ArrayController-2600eb3030.json

+4,978
Large diffs are not rendered by default.

json-docs/ember/1.0.0/classes/ember-1.0.0-Ember.ArrayProxy-68ed95cb79.json

+3,628
Large diffs are not rendered by default.

json-docs/ember/1.0.0/classes/ember-1.0.0-Ember.Binding-e3abdbdb97.json

+197
Large diffs are not rendered by default.

json-docs/ember/1.0.0/classes/ember-1.0.0-Ember.Checkbox-95db2c7bc8.json

+1,957
Large diffs are not rendered by default.

json-docs/ember/1.0.0/classes/ember-1.0.0-Ember.CollectionView-d2d9048286.json

+2,257
Large diffs are not rendered by default.

json-docs/ember/1.0.0/classes/ember-1.0.0-Ember.Component-a9324d9ec0.json

+1,995
Large diffs are not rendered by default.

json-docs/ember/1.0.0/classes/ember-1.0.0-Ember.ComputedProperty-e4c6b73133.json

+199
Large diffs are not rendered by default.

json-docs/ember/1.0.0/classes/ember-1.0.0-Ember.ContainerView-12c5bf0a4e.json

+2,044
Large diffs are not rendered by default.

json-docs/ember/1.0.0/classes/ember-1.0.0-Ember.Controller-e7155b0b97.json

+894
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
{
2+
"data": {
3+
"id": "ember-1.0.0-Ember.ControllerMixin",
4+
"type": "class",
5+
"attributes": {
6+
"name": "Ember.ControllerMixin",
7+
"shortname": "Ember.ControllerMixin",
8+
"classitems": [],
9+
"plugins": [],
10+
"extensions": [],
11+
"plugin_for": [],
12+
"extension_for": [
13+
"Ember.ArrayController",
14+
"Ember.Controller",
15+
"Ember.ObjectController"
16+
],
17+
"module": "ember",
18+
"submodule": "ember-views",
19+
"namespace": "Ember",
20+
"file": "packages/ember-views/lib/system/controller.js",
21+
"line": 11,
22+
"description": "<html><head></head><body><p>Additional methods for the ControllerMixin</p>\n</body></html>",
23+
"methods": [
24+
{
25+
"file": "packages/ember-routing/lib/ext/controller.js",
26+
"line": 9,
27+
"description": "<html><head></head><body><p>Transition the application into another route. The route may\nbe either a single route or route path:</p>\n<div class=\"highlight javascript\">\n <div class=\"ribbon\"></div>\n <div class=\"scroller\">\n <table class=\"CodeRay\">\n <tbody>\n <tr>\n <td class=\"line-numbers\"><pre>1\n2\n</pre></td>\n <td class=\"code\"><pre> aController.transition<span class=\"constructor\">ToRoute(&apos;<span class=\"params\">blogPosts</span>&apos;)</span>;\n aController.transition<span class=\"constructor\">ToRoute(&apos;<span class=\"params\">blogPosts</span>.<span class=\"params\">recentEntries</span>&apos;)</span>;</pre></td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n \n<p>Optionally supply a model for the route in question. The model\nwill be serialized into the URL using the <code>serialize</code> hook of\nthe route:</p>\n<div class=\"highlight javascript\">\n <div class=\"ribbon\"></div>\n <div class=\"scroller\">\n <table class=\"CodeRay\">\n <tbody>\n <tr>\n <td class=\"line-numbers\"><pre>1\n</pre></td>\n <td class=\"code\"><pre> aController.transition<span class=\"constructor\">ToRoute(&apos;<span class=\"params\">blogPost</span>&apos;, <span class=\"params\">aPost</span>)</span>;</pre></td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n \n</body></html>",
28+
"params": [
29+
{
30+
"name": "name",
31+
"description": "the name of the route",
32+
"type": "String"
33+
},
34+
{
35+
"name": "models",
36+
"description": "the",
37+
"type": "...Object"
38+
}
39+
],
40+
"itemtype": "method",
41+
"name": "transitionToRoute",
42+
"class": "Ember.ControllerMixin",
43+
"module": "ember",
44+
"submodule": "ember-routing",
45+
"namespace": "Ember"
46+
},
47+
{
48+
"file": "packages/ember-routing/lib/ext/controller.js",
49+
"line": 38,
50+
"deprecated": true,
51+
"itemtype": "method",
52+
"name": "transitionTo",
53+
"class": "Ember.ControllerMixin",
54+
"module": "ember",
55+
"submodule": "ember-routing",
56+
"namespace": "Ember"
57+
},
58+
{
59+
"file": "packages/ember-routing/lib/ext/controller.js",
60+
"line": 48,
61+
"description": "<html><head></head><body><p>Alernative to <code>transitionToRoute</code>. Transition the application into another route. The route may\nbe either a single route or route path:</p>\n<div class=\"highlight javascript\">\n <div class=\"ribbon\"></div>\n <div class=\"scroller\">\n <table class=\"CodeRay\">\n <tbody>\n <tr>\n <td class=\"line-numbers\"><pre>1\n2\n</pre></td>\n <td class=\"code\"><pre> aController.replace<span class=\"constructor\">Route(&apos;<span class=\"params\">blogPosts</span>&apos;)</span>;\n aController.replace<span class=\"constructor\">Route(&apos;<span class=\"params\">blogPosts</span>.<span class=\"params\">recentEntries</span>&apos;)</span>;</pre></td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n \n<p>Optionally supply a model for the route in question. The model\nwill be serialized into the URL using the <code>serialize</code> hook of\nthe route:</p>\n<div class=\"highlight javascript\">\n <div class=\"ribbon\"></div>\n <div class=\"scroller\">\n <table class=\"CodeRay\">\n <tbody>\n <tr>\n <td class=\"line-numbers\"><pre>1\n</pre></td>\n <td class=\"code\"><pre> aController.replace<span class=\"constructor\">Route(&apos;<span class=\"params\">blogPost</span>&apos;, <span class=\"params\">aPost</span>)</span>;</pre></td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n \n</body></html>",
62+
"params": [
63+
{
64+
"name": "name",
65+
"description": "the name of the route",
66+
"type": "String"
67+
},
68+
{
69+
"name": "models",
70+
"description": "the",
71+
"type": "...Object"
72+
}
73+
],
74+
"itemtype": "method",
75+
"name": "replaceRoute",
76+
"class": "Ember.ControllerMixin",
77+
"module": "ember",
78+
"submodule": "ember-routing",
79+
"namespace": "Ember"
80+
},
81+
{
82+
"file": "packages/ember-routing/lib/ext/controller.js",
83+
"line": 77,
84+
"deprecated": true,
85+
"itemtype": "method",
86+
"name": "replaceWith",
87+
"class": "Ember.ControllerMixin",
88+
"module": "ember",
89+
"submodule": "ember-routing",
90+
"namespace": "Ember"
91+
}
92+
],
93+
"events": [],
94+
"properties": [
95+
{
96+
"file": "packages/ember-application/lib/ext/controller.js",
97+
"line": 31,
98+
"description": "<html><head></head><body><p>An array of other controller objects available inside\ninstances of this controller via the <code>controllers</code>\nproperty:</p>\n<p>For example, when you define a controller:</p>\n<div class=\"highlight javascript\">\n <div class=\"ribbon\"></div>\n <div class=\"scroller\">\n <table class=\"CodeRay\">\n <tbody>\n <tr>\n <td class=\"line-numbers\"><pre>1\n2\n3\n</pre></td>\n <td class=\"code\"><pre><span class=\"title class_\">App</span>.<span class=\"title class_\">CommentsController</span> = <span class=\"title class_\">Ember</span>.<span class=\"title class_\">ArrayController</span>.<span class=\"keyword\">extend</span>({\n <span class=\"symbol\">needs:</span> [<span class=\"string\">&apos;post&apos;</span>]\n});</pre></td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n \n<p>The application&apos;s single instance of these other\ncontrollers are accessible by name through the\n<code>controllers</code> property:</p>\n<div class=\"highlight javascript\">\n <div class=\"ribbon\"></div>\n <div class=\"scroller\">\n <table class=\"CodeRay\">\n <tbody>\n <tr>\n <td class=\"line-numbers\"><pre>1\n</pre></td>\n <td class=\"code\"><pre>this.get(&apos;controllers.post&apos;); //<span class=\"built_in\"> instance </span>of App.PostController</pre></td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n \n<p>This is only available for singleton controllers.</p>\n</body></html>",
99+
"itemtype": "property",
100+
"name": "needs",
101+
"type": "Array",
102+
"default": "[]",
103+
"class": "Ember.ControllerMixin",
104+
"module": "ember",
105+
"submodule": "ember-application",
106+
"namespace": "Ember"
107+
},
108+
{
109+
"file": "packages/ember-application/lib/ext/controller.js",
110+
"line": 78,
111+
"description": "<html><head></head><body><p>Stores the instances of other controllers available from within\nthis controller. Any controller listed by name in the <code>needs</code>\nproperty will be accessible by name through this property.</p>\n<div class=\"highlight javascript\">\n <div class=\"ribbon\"></div>\n <div class=\"scroller\">\n <table class=\"CodeRay\">\n <tbody>\n <tr>\n <td class=\"line-numbers\"><pre>1\n2\n3\n4\n5\n6\n7\n</pre></td>\n <td class=\"code\"><pre>App.CommentsController = Ember.ArrayController.extend({\n needs: [<span class=\"string\">&apos;post&apos;</span>],\n postTitle: function(){\n <span class=\"keyword\">var</span> currentPost = <span class=\"keyword\">this</span>.<span class=\"keyword\">get</span>(<span class=\"string\">&apos;controllers.post&apos;</span>); <span class=\"comment\">// instance of App.PostController</span>\n <span class=\"keyword\">return</span> currentPost.<span class=\"keyword\">get</span>(<span class=\"string\">&apos;title&apos;</span>);\n }.property(<span class=\"string\">&apos;controllers.post.title&apos;</span>)\n});</pre></td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n \n</body></html>",
112+
"see": [
113+
"{Ember.ControllerMixin#needs}"
114+
],
115+
"itemtype": "property",
116+
"name": "controllers",
117+
"type": "Object",
118+
"default": "null",
119+
"class": "Ember.ControllerMixin",
120+
"module": "ember",
121+
"submodule": "ember-application",
122+
"namespace": "Ember"
123+
},
124+
{
125+
"file": "packages/ember-runtime/lib/controllers/controller.js",
126+
"line": 23,
127+
"description": "<html><head></head><body><p>The object to which actions from the view should be sent.</p>\n<p>For example, when a Handlebars template uses the <code>{{action}}</code> helper,\nit will attempt to send the action to the view&apos;s controller&apos;s <code>target</code>.</p>\n<p>By default, a controller&apos;s <code>target</code> is set to the router after it is\ninstantiated by <code>Ember.Application#initialize</code>.</p>\n</body></html>",
128+
"itemtype": "property",
129+
"name": "target",
130+
"default": "null",
131+
"class": "Ember.ControllerMixin",
132+
"module": "ember",
133+
"submodule": "ember-runtime",
134+
"namespace": "Ember"
135+
}
136+
]
137+
},
138+
"relationships": {
139+
"parent-class": {
140+
"data": null
141+
},
142+
"descendants": {
143+
"data": []
144+
},
145+
"module": {
146+
"data": {
147+
"id": "ember-1.0.0-ember",
148+
"type": "module"
149+
}
150+
},
151+
"project-version": {
152+
"data": {
153+
"id": "ember-1.0.0",
154+
"type": "project-version"
155+
}
156+
}
157+
}
158+
}
159+
}

0 commit comments

Comments
 (0)