closure 1.3.1 → 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +142 -9
- data/bin/closure-script +19 -0
- data/closure-compiler/README +18 -4
- data/closure-compiler/compiler.jar +0 -0
- data/closure-templates/SoyToJsSrcCompiler.jar +0 -0
- data/closure-templates/soydata.js +163 -0
- data/closure-templates/soyutils.js +1191 -159
- data/closure-templates/soyutils_usegoog.js +1107 -60
- data/docs/closure/Closure.html +58 -52
- data/docs/closure/Closure/BeanShell.html +6 -3
- data/docs/closure/Closure/Compiler.html +18 -15
- data/docs/closure/Closure/Compiler/Compilation.html +9 -3
- data/docs/closure/Closure/Compiler/Error.html +3 -3
- data/docs/closure/Closure/FileResponse.html +13 -7
- data/docs/closure/Closure/Goog.html +49 -85
- data/docs/closure/Closure/Middleware.html +5 -3
- data/docs/closure/Closure/Script.html +14 -5
- data/docs/closure/Closure/Script/NotFound.html +3 -3
- data/docs/closure/Closure/Script/RenderStackOverflow.html +3 -3
- data/docs/closure/Closure/Server.html +6 -3
- data/docs/closure/Closure/ShowExceptions.html +5 -3
- data/docs/closure/Closure/Sources.html +145 -37
- data/docs/closure/Closure/Templates.html +11 -10
- data/docs/closure/Closure/Templates/Error.html +3 -3
- data/docs/closure/_index.html +4 -4
- data/docs/closure/css/full_list.css +2 -0
- data/docs/closure/css/style.css +2 -0
- data/docs/closure/file.LICENSE.html +3 -3
- data/docs/closure/file.README.html +151 -10
- data/docs/closure/frames.html +1 -1
- data/docs/closure/index.html +151 -10
- data/docs/closure/js/full_list.js +23 -6
- data/docs/closure/method_list.html +91 -83
- data/docs/closure/top-level-namespace.html +3 -3
- data/lib/closure.rb +3 -16
- data/lib/closure/compiler.rb +135 -53
- data/lib/closure/goog.rb +5 -29
- data/lib/closure/sources.rb +22 -9
- data/lib/closure/version.rb +1 -1
- data/scripts/config.ru +0 -1
- data/scripts/hello/compiler_build.js +5 -5
- data/scripts/hello/compiler_build.map +518 -522
- data/scripts/hello/compiler_debug.js +7 -13
- data/scripts/hello/legume.js +2 -2
- data/scripts/index.erb +0 -3
- data/scripts/modules/compiler_build.js +3 -3
- data/scripts/modules/compiler_build.map +11569 -11476
- data/scripts/modules/compiler_build_api.js +1 -1
- data/scripts/modules/compiler_build_app.js +71 -70
- data/scripts/modules/compiler_build_settings.js +2 -2
- data/scripts/modules/compiler_debug.js +3 -3
- data/scripts/modules/compiler_debug_api.js +2 -2
- data/scripts/modules/compiler_debug_app.js +926 -1382
- data/scripts/modules/compiler_debug_settings.js +21 -24
- metadata +8 -18
- data/externs/chrome_extensions.externs +0 -968
- data/externs/jquery-1.3.2.externs +0 -718
- data/externs/jquery-1.4.3.externs +0 -1289
- data/externs/jquery-1.4.4.externs +0 -1302
- data/externs/jquery-1.5.externs +0 -1697
- data/externs/jquery-ui.externs +0 -10
- data/externs/jquery.externs +0 -4
- data/scripts/jquery/compiler.js.erb +0 -7
- data/scripts/jquery/compiler_out.js +0 -1
- data/scripts/jquery/index.erb +0 -25
- data/scripts/jquery/jquery_1.4.4.js +0 -167
- data/scripts/jquery/jquery_test.js +0 -8
@@ -2,20 +2,35 @@ var inSearch = null;
|
|
2
2
|
var searchIndex = 0;
|
3
3
|
var searchCache = [];
|
4
4
|
var searchString = '';
|
5
|
+
var regexSearchString = '';
|
6
|
+
var caseSensitiveMatch = false;
|
7
|
+
|
8
|
+
RegExp.escape = function(text) {
|
9
|
+
return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
|
10
|
+
}
|
5
11
|
|
6
12
|
function fullListSearch() {
|
7
13
|
// generate cache
|
8
14
|
searchCache = [];
|
9
15
|
$('#full_list li').each(function() {
|
10
16
|
var link = $(this).find('.object_link a');
|
11
|
-
|
17
|
+
var fullName = link.attr('title').split(' ')[0];
|
18
|
+
searchCache.push({name:link.text(), fullName:fullName, node:$(this), link:link});
|
12
19
|
});
|
13
20
|
|
14
21
|
$('#search input').keyup(function() {
|
15
|
-
searchString = this.value
|
22
|
+
searchString = this.value;
|
23
|
+
caseSensitiveMatch = searchString.match(/[A-Z]/) != null;
|
24
|
+
regexSearchString = RegExp.escape(searchString);
|
25
|
+
if (caseSensitiveMatch) {
|
26
|
+
regexSearchString += "|" +
|
27
|
+
$.map(searchString.split(''), function(e) { return RegExp.escape(e); }).
|
28
|
+
join('.+?');
|
29
|
+
}
|
16
30
|
if (searchString === "") {
|
17
31
|
clearTimeout(inSearch);
|
18
32
|
inSearch = null;
|
33
|
+
$('ul .search_uncollapsed').removeClass('search_uncollapsed');
|
19
34
|
$('#full_list, #content').removeClass('insearch');
|
20
35
|
$('#full_list li').removeClass('found').each(function() {
|
21
36
|
|
@@ -47,16 +62,18 @@ var lastRowClass = '';
|
|
47
62
|
function searchItem() {
|
48
63
|
for (var i = 0; i < searchCache.length / 50; i++) {
|
49
64
|
var item = searchCache[searchIndex];
|
50
|
-
|
65
|
+
var searchName = (searchString.indexOf('::') != -1 ? item.fullName : item.name);
|
66
|
+
var matchString = regexSearchString;
|
67
|
+
var matchRegexp = new RegExp(matchString, caseSensitiveMatch ? "" : "i");
|
68
|
+
if (searchName.match(matchRegexp) == null) {
|
51
69
|
item.node.removeClass('found');
|
52
70
|
}
|
53
71
|
else {
|
54
72
|
item.node.css('padding-left', '10px').addClass('found');
|
73
|
+
item.node.parents().addClass('search_uncollapsed');
|
55
74
|
item.node.removeClass(lastRowClass).addClass(lastRowClass == 'r1' ? 'r2' : 'r1');
|
56
75
|
lastRowClass = item.node.hasClass('r1') ? 'r1' : 'r2';
|
57
|
-
item.link.html(item.name.replace(
|
58
|
-
searchString.replace(/([\/.*+?|()\[\]{}\\])/g, "\\$1") + ")", "ig"),
|
59
|
-
'<strong>$1</strong>'));
|
76
|
+
item.link.html(item.name.replace(matchRegexp, "<strong>$&</strong>"));
|
60
77
|
}
|
61
78
|
|
62
79
|
if (searchCache.length === searchIndex + 1) {
|
@@ -41,7 +41,7 @@
|
|
41
41
|
|
42
42
|
|
43
43
|
<li class="r1 ">
|
44
|
-
<span class='object_link'><a href="Closure/Compiler/Compilation.html#%3C%3C-instance_method" title="Closure::Compiler::Compilation
|
44
|
+
<span class='object_link'><a href="Closure/Compiler/Compilation.html#%3C%3C-instance_method" title="Closure::Compiler::Compilation#<< (method)">#<<</a></span>
|
45
45
|
|
46
46
|
<small>Closure::Compiler::Compilation</small>
|
47
47
|
|
@@ -49,7 +49,7 @@
|
|
49
49
|
|
50
50
|
|
51
51
|
<li class="r2 ">
|
52
|
-
<span class='object_link'><a href="Closure/Sources.html#add-instance_method" title="Closure::Sources#add (method)">#add</a></span>
|
52
|
+
<span class='object_link'><a href="Closure/Sources.html#add-instance_method" title="Closure::Sources#add (method)">#add</a></span>
|
53
53
|
|
54
54
|
<small>Closure::Sources</small>
|
55
55
|
|
@@ -57,7 +57,7 @@
|
|
57
57
|
|
58
58
|
|
59
59
|
<li class="r1 ">
|
60
|
-
<span class='object_link'><a href="Closure/Goog.html#add_dependency-instance_method" title="Closure::Goog#add_dependency (method)">#add_dependency</a></span>
|
60
|
+
<span class='object_link'><a href="Closure/Goog.html#add_dependency-instance_method" title="Closure::Goog#add_dependency (method)">#add_dependency</a></span>
|
61
61
|
|
62
62
|
<small>Closure::Goog</small>
|
63
63
|
|
@@ -65,7 +65,7 @@
|
|
65
65
|
|
66
66
|
|
67
67
|
<li class="r2 ">
|
68
|
-
<span class='object_link'><a href="Closure.html#add_source-class_method" title="Closure.add_source (method)">add_source</a></span>
|
68
|
+
<span class='object_link'><a href="Closure.html#add_source-class_method" title="Closure.add_source (method)">add_source</a></span>
|
69
69
|
|
70
70
|
<small>Closure</small>
|
71
71
|
|
@@ -73,7 +73,7 @@
|
|
73
73
|
|
74
74
|
|
75
75
|
<li class="r1 ">
|
76
|
-
<span class='object_link'><a href="Closure/Goog.html#base_js-instance_method" title="Closure::Goog#base_js (method)">#base_js</a></span>
|
76
|
+
<span class='object_link'><a href="Closure/Goog.html#base_js-instance_method" title="Closure::Goog#base_js (method)">#base_js</a></span>
|
77
77
|
|
78
78
|
<small>Closure::Goog</small>
|
79
79
|
|
@@ -81,7 +81,7 @@
|
|
81
81
|
|
82
82
|
|
83
83
|
<li class="r2 ">
|
84
|
-
<span class='object_link'><a href="Closure/Sources.html#base_js-instance_method" title="Closure::Sources#base_js (method)">#base_js</a></span>
|
84
|
+
<span class='object_link'><a href="Closure/Sources.html#base_js-instance_method" title="Closure::Sources#base_js (method)">#base_js</a></span>
|
85
85
|
|
86
86
|
<small>Closure::Sources</small>
|
87
87
|
|
@@ -89,7 +89,7 @@
|
|
89
89
|
|
90
90
|
|
91
91
|
<li class="r1 ">
|
92
|
-
<span class='object_link'><a href="Closure.html#base_path-class_method" title="Closure.base_path (method)">base_path</a></span>
|
92
|
+
<span class='object_link'><a href="Closure.html#base_path-class_method" title="Closure.base_path (method)">base_path</a></span>
|
93
93
|
|
94
94
|
<small>Closure</small>
|
95
95
|
|
@@ -97,55 +97,55 @@
|
|
97
97
|
|
98
98
|
|
99
99
|
<li class="r2 ">
|
100
|
-
<span class='object_link'><a href="Closure/
|
100
|
+
<span class='object_link'><a href="Closure/ShowExceptions.html#call-instance_method" title="Closure::ShowExceptions#call (method)">#call</a></span>
|
101
101
|
|
102
|
-
<small>Closure::
|
102
|
+
<small>Closure::ShowExceptions</small>
|
103
103
|
|
104
104
|
</li>
|
105
105
|
|
106
106
|
|
107
107
|
<li class="r1 ">
|
108
|
-
<span class='object_link'><a href="Closure/
|
108
|
+
<span class='object_link'><a href="Closure/Middleware.html#call-instance_method" title="Closure::Middleware#call (method)">#call</a></span>
|
109
109
|
|
110
|
-
<small>Closure::
|
110
|
+
<small>Closure::Middleware</small>
|
111
111
|
|
112
112
|
</li>
|
113
113
|
|
114
114
|
|
115
115
|
<li class="r2 ">
|
116
|
-
<span class='object_link'><a href="Closure/
|
116
|
+
<span class='object_link'><a href="Closure/Server.html#call-instance_method" title="Closure::Server#call (method)">#call</a></span>
|
117
117
|
|
118
|
-
<small>Closure::
|
118
|
+
<small>Closure::Server</small>
|
119
119
|
|
120
120
|
</li>
|
121
121
|
|
122
122
|
|
123
123
|
<li class="r1 ">
|
124
|
-
<span class='object_link'><a href="Closure/
|
124
|
+
<span class='object_link'><a href="Closure/Templates.html#compile-class_method" title="Closure::Templates.compile (method)">compile</a></span>
|
125
125
|
|
126
|
-
<small>Closure::
|
126
|
+
<small>Closure::Templates</small>
|
127
127
|
|
128
128
|
</li>
|
129
129
|
|
130
130
|
|
131
131
|
<li class="r2 ">
|
132
|
-
<span class='object_link'><a href="Closure/
|
132
|
+
<span class='object_link'><a href="Closure/Goog.html#compile-instance_method" title="Closure::Goog#compile (method)">#compile</a></span>
|
133
133
|
|
134
|
-
<small>Closure::
|
134
|
+
<small>Closure::Goog</small>
|
135
135
|
|
136
136
|
</li>
|
137
137
|
|
138
138
|
|
139
139
|
<li class="r1 ">
|
140
|
-
<span class='object_link'><a href="Closure/
|
140
|
+
<span class='object_link'><a href="Closure/Compiler.html#compile-class_method" title="Closure::Compiler.compile (method)">compile</a></span>
|
141
141
|
|
142
|
-
<small>Closure::
|
142
|
+
<small>Closure::Compiler</small>
|
143
143
|
|
144
144
|
</li>
|
145
145
|
|
146
146
|
|
147
147
|
<li class="r2 ">
|
148
|
-
<span class='object_link'><a href="Closure.html#config-class_method" title="Closure.config (method)">config</a></span>
|
148
|
+
<span class='object_link'><a href="Closure.html#config-class_method" title="Closure.config (method)">config</a></span>
|
149
149
|
|
150
150
|
<small>Closure</small>
|
151
151
|
|
@@ -153,7 +153,7 @@
|
|
153
153
|
|
154
154
|
|
155
155
|
<li class="r1 ">
|
156
|
-
<span class='object_link'><a href="Closure/Goog.html#deps_js-instance_method" title="Closure::Goog#deps_js (method)">#deps_js</a></span>
|
156
|
+
<span class='object_link'><a href="Closure/Goog.html#deps_js-instance_method" title="Closure::Goog#deps_js (method)">#deps_js</a></span>
|
157
157
|
|
158
158
|
<small>Closure::Goog</small>
|
159
159
|
|
@@ -161,7 +161,7 @@
|
|
161
161
|
|
162
162
|
|
163
163
|
<li class="r2 ">
|
164
|
-
<span class='object_link'><a href="Closure/Sources.html#deps_js-instance_method" title="Closure::Sources#deps_js (method)">#deps_js</a></span>
|
164
|
+
<span class='object_link'><a href="Closure/Sources.html#deps_js-instance_method" title="Closure::Sources#deps_js (method)">#deps_js</a></span>
|
165
165
|
|
166
166
|
<small>Closure::Sources</small>
|
167
167
|
|
@@ -169,23 +169,23 @@
|
|
169
169
|
|
170
170
|
|
171
171
|
<li class="r1 ">
|
172
|
-
<span class='object_link'><a href="Closure/
|
172
|
+
<span class='object_link'><a href="Closure/Sources.html#deps_response-instance_method" title="Closure::Sources#deps_response (method)">#deps_response</a></span>
|
173
173
|
|
174
|
-
<small>Closure::
|
174
|
+
<small>Closure::Sources</small>
|
175
175
|
|
176
176
|
</li>
|
177
177
|
|
178
178
|
|
179
179
|
<li class="r2 ">
|
180
|
-
<span class='object_link'><a href="Closure/
|
180
|
+
<span class='object_link'><a href="Closure/Goog.html#deps_response-instance_method" title="Closure::Goog#deps_response (method)">#deps_response</a></span>
|
181
181
|
|
182
|
-
<small>Closure::
|
182
|
+
<small>Closure::Goog</small>
|
183
183
|
|
184
184
|
</li>
|
185
185
|
|
186
186
|
|
187
187
|
<li class="r1 ">
|
188
|
-
<span class='object_link'><a href="Closure/Sources.html#dwell-instance_method" title="Closure::Sources#dwell (method)">#dwell</a></span>
|
188
|
+
<span class='object_link'><a href="Closure/Sources.html#dwell-instance_method" title="Closure::Sources#dwell (method)">#dwell</a></span>
|
189
189
|
|
190
190
|
<small>Closure::Sources</small>
|
191
191
|
|
@@ -193,23 +193,23 @@
|
|
193
193
|
|
194
194
|
|
195
195
|
<li class="r2 ">
|
196
|
-
<span class='object_link'><a href="Closure/
|
196
|
+
<span class='object_link'><a href="Closure/FileResponse.html#each-instance_method" title="Closure::FileResponse#each (method)">#each</a></span>
|
197
197
|
|
198
|
-
<small>Closure::
|
198
|
+
<small>Closure::FileResponse</small>
|
199
199
|
|
200
200
|
</li>
|
201
201
|
|
202
202
|
|
203
203
|
<li class="r1 ">
|
204
|
-
<span class='object_link'><a href="Closure/
|
204
|
+
<span class='object_link'><a href="Closure/Goog.html#each-instance_method" title="Closure::Goog#each (method)">#each</a></span>
|
205
205
|
|
206
|
-
<small>Closure::
|
206
|
+
<small>Closure::Goog</small>
|
207
207
|
|
208
208
|
</li>
|
209
209
|
|
210
210
|
|
211
211
|
<li class="r2 ">
|
212
|
-
<span class='object_link'><a href="Closure/Sources.html#each-instance_method" title="Closure::Sources#each (method)">#each</a></span>
|
212
|
+
<span class='object_link'><a href="Closure/Sources.html#each-instance_method" title="Closure::Sources#each (method)">#each</a></span>
|
213
213
|
|
214
214
|
<small>Closure::Sources</small>
|
215
215
|
|
@@ -217,7 +217,7 @@
|
|
217
217
|
|
218
218
|
|
219
219
|
<li class="r1 ">
|
220
|
-
<span class='object_link'><a href="Closure/Script.html#expand_path-instance_method" title="Closure::Script#expand_path (method)">#expand_path</a></span>
|
220
|
+
<span class='object_link'><a href="Closure/Script.html#expand_path-instance_method" title="Closure::Script#expand_path (method)">#expand_path</a></span>
|
221
221
|
|
222
222
|
<small>Closure::Script</small>
|
223
223
|
|
@@ -225,7 +225,7 @@
|
|
225
225
|
|
226
226
|
|
227
227
|
<li class="r2 ">
|
228
|
-
<span class='object_link'><a href="Closure/Script.html#expand_src-instance_method" title="Closure::Script#expand_src (method)">#expand_src</a></span>
|
228
|
+
<span class='object_link'><a href="Closure/Script.html#expand_src-instance_method" title="Closure::Script#expand_src (method)">#expand_src</a></span>
|
229
229
|
|
230
230
|
<small>Closure::Script</small>
|
231
231
|
|
@@ -233,7 +233,7 @@
|
|
233
233
|
|
234
234
|
|
235
235
|
<li class="r1 ">
|
236
|
-
<span class='object_link'><a href="Closure/FileResponse.html#filename-instance_method" title="Closure::FileResponse#filename (method)">#filename</a></span>
|
236
|
+
<span class='object_link'><a href="Closure/FileResponse.html#filename-instance_method" title="Closure::FileResponse#filename (method)">#filename</a></span>
|
237
237
|
|
238
238
|
<small>Closure::FileResponse</small>
|
239
239
|
|
@@ -241,23 +241,23 @@
|
|
241
241
|
|
242
242
|
|
243
243
|
<li class="r2 ">
|
244
|
-
<span class='object_link'><a href="Closure/
|
244
|
+
<span class='object_link'><a href="Closure/Sources.html#files_for-instance_method" title="Closure::Sources#files_for (method)">#files_for</a></span>
|
245
245
|
|
246
|
-
<small>Closure::
|
246
|
+
<small>Closure::Sources</small>
|
247
247
|
|
248
248
|
</li>
|
249
249
|
|
250
250
|
|
251
251
|
<li class="r1 ">
|
252
|
-
<span class='object_link'><a href="Closure/
|
252
|
+
<span class='object_link'><a href="Closure/Goog.html#files_for-instance_method" title="Closure::Goog#files_for (method)">#files_for</a></span>
|
253
253
|
|
254
|
-
<small>Closure::
|
254
|
+
<small>Closure::Goog</small>
|
255
255
|
|
256
256
|
</li>
|
257
257
|
|
258
258
|
|
259
259
|
<li class="r2 ">
|
260
|
-
<span class='object_link'><a href="Closure/FileResponse.html#finish-instance_method" title="Closure::FileResponse#finish (method)">#finish</a></span>
|
260
|
+
<span class='object_link'><a href="Closure/FileResponse.html#finish-instance_method" title="Closure::FileResponse#finish (method)">#finish</a></span>
|
261
261
|
|
262
262
|
<small>Closure::FileResponse</small>
|
263
263
|
|
@@ -265,7 +265,7 @@
|
|
265
265
|
|
266
266
|
|
267
267
|
<li class="r1 ">
|
268
|
-
<span class='object_link'><a href="Closure/FileResponse.html#found%3F-instance_method" title="Closure::FileResponse#found? (method)">#found?</a></span>
|
268
|
+
<span class='object_link'><a href="Closure/FileResponse.html#found%3F-instance_method" title="Closure::FileResponse#found? (method)">#found?</a></span>
|
269
269
|
|
270
270
|
<small>Closure::FileResponse</small>
|
271
271
|
|
@@ -273,7 +273,7 @@
|
|
273
273
|
|
274
274
|
|
275
275
|
<li class="r2 ">
|
276
|
-
<span class='object_link'><a href="Closure/Script.html#goog-instance_method" title="Closure::Script#goog (method)">#goog</a></span>
|
276
|
+
<span class='object_link'><a href="Closure/Script.html#goog-instance_method" title="Closure::Script#goog (method)">#goog</a></span>
|
277
277
|
|
278
278
|
<small>Closure::Script</small>
|
279
279
|
|
@@ -281,39 +281,39 @@
|
|
281
281
|
|
282
282
|
|
283
283
|
<li class="r1 ">
|
284
|
-
<span class='object_link'><a href="Closure/
|
284
|
+
<span class='object_link'><a href="Closure/Server.html#initialize-instance_method" title="Closure::Server#initialize (method)">#initialize</a></span>
|
285
285
|
|
286
|
-
<small>Closure::
|
286
|
+
<small>Closure::Server</small>
|
287
287
|
|
288
288
|
</li>
|
289
289
|
|
290
290
|
|
291
291
|
<li class="r2 ">
|
292
|
-
<span class='object_link'><a href="Closure/
|
292
|
+
<span class='object_link'><a href="Closure/Goog.html#initialize-instance_method" title="Closure::Goog#initialize (method)">#initialize</a></span>
|
293
293
|
|
294
|
-
<small>Closure::
|
294
|
+
<small>Closure::Goog</small>
|
295
295
|
|
296
296
|
</li>
|
297
297
|
|
298
298
|
|
299
299
|
<li class="r1 ">
|
300
|
-
<span class='object_link'><a href="Closure/
|
300
|
+
<span class='object_link'><a href="Closure/Sources.html#initialize-instance_method" title="Closure::Sources#initialize (method)">#initialize</a></span>
|
301
301
|
|
302
|
-
<small>Closure::
|
302
|
+
<small>Closure::Sources</small>
|
303
303
|
|
304
304
|
</li>
|
305
305
|
|
306
306
|
|
307
307
|
<li class="r2 ">
|
308
|
-
<span class='object_link'><a href="Closure/
|
308
|
+
<span class='object_link'><a href="Closure/ShowExceptions.html#initialize-instance_method" title="Closure::ShowExceptions#initialize (method)">#initialize</a></span>
|
309
309
|
|
310
|
-
<small>Closure::
|
310
|
+
<small>Closure::ShowExceptions</small>
|
311
311
|
|
312
312
|
</li>
|
313
313
|
|
314
314
|
|
315
315
|
<li class="r1 ">
|
316
|
-
<span class='object_link'><a href="Closure/FileResponse.html#initialize-instance_method" title="Closure::FileResponse#initialize (method)">#initialize</a></span>
|
316
|
+
<span class='object_link'><a href="Closure/FileResponse.html#initialize-instance_method" title="Closure::FileResponse#initialize (method)">#initialize</a></span>
|
317
317
|
|
318
318
|
<small>Closure::FileResponse</small>
|
319
319
|
|
@@ -321,39 +321,39 @@
|
|
321
321
|
|
322
322
|
|
323
323
|
<li class="r2 ">
|
324
|
-
<span class='object_link'><a href="Closure/
|
324
|
+
<span class='object_link'><a href="Closure/Middleware.html#initialize-instance_method" title="Closure::Middleware#initialize (method)">#initialize</a></span>
|
325
325
|
|
326
|
-
<small>Closure::
|
326
|
+
<small>Closure::Middleware</small>
|
327
327
|
|
328
328
|
</li>
|
329
329
|
|
330
330
|
|
331
331
|
<li class="r1 ">
|
332
|
-
<span class='object_link'><a href="Closure/
|
332
|
+
<span class='object_link'><a href="Closure/Compiler/Compilation.html#initialize-instance_method" title="Closure::Compiler::Compilation#initialize (method)">#initialize</a></span>
|
333
333
|
|
334
|
-
<small>Closure::
|
334
|
+
<small>Closure::Compiler::Compilation</small>
|
335
335
|
|
336
336
|
</li>
|
337
337
|
|
338
338
|
|
339
339
|
<li class="r2 ">
|
340
|
-
<span class='object_link'><a href="Closure/
|
340
|
+
<span class='object_link'><a href="Closure/Script.html#initialize-instance_method" title="Closure::Script#initialize (method)">#initialize</a></span>
|
341
341
|
|
342
|
-
<small>Closure::
|
342
|
+
<small>Closure::Script</small>
|
343
343
|
|
344
344
|
</li>
|
345
345
|
|
346
346
|
|
347
347
|
<li class="r1 ">
|
348
|
-
<span class='object_link'><a href="Closure/
|
348
|
+
<span class='object_link'><a href="Closure/BeanShell.html#initialize-instance_method" title="Closure::BeanShell#initialize (method)">#initialize</a></span>
|
349
349
|
|
350
|
-
<small>Closure::
|
350
|
+
<small>Closure::BeanShell</small>
|
351
351
|
|
352
352
|
</li>
|
353
353
|
|
354
354
|
|
355
355
|
<li class="r2 ">
|
356
|
-
<span class='object_link'><a href="Closure/Sources.html#invalidate-instance_method" title="Closure::Sources#invalidate (method)">#invalidate</a></span>
|
356
|
+
<span class='object_link'><a href="Closure/Sources.html#invalidate-instance_method" title="Closure::Sources#invalidate (method)">#invalidate</a></span>
|
357
357
|
|
358
358
|
<small>Closure::Sources</small>
|
359
359
|
|
@@ -361,7 +361,7 @@
|
|
361
361
|
|
362
362
|
|
363
363
|
<li class="r1 ">
|
364
|
-
<span class='object_link'><a href="Closure/Compiler/Compilation.html#javascript-instance_method" title="Closure::Compiler::Compilation#javascript (method)">#javascript</a></span>
|
364
|
+
<span class='object_link'><a href="Closure/Compiler/Compilation.html#javascript-instance_method" title="Closure::Compiler::Compilation#javascript (method)">#javascript</a></span>
|
365
365
|
|
366
366
|
<small>Closure::Compiler::Compilation</small>
|
367
367
|
|
@@ -369,7 +369,7 @@
|
|
369
369
|
|
370
370
|
|
371
371
|
<li class="r2 ">
|
372
|
-
<span class='object_link'><a href="Closure/Compiler/Compilation.html#js_output_file-instance_method" title="Closure::Compiler::Compilation#js_output_file (method)">#js_output_file</a></span>
|
372
|
+
<span class='object_link'><a href="Closure/Compiler/Compilation.html#js_output_file-instance_method" title="Closure::Compiler::Compilation#js_output_file (method)">#js_output_file</a></span>
|
373
373
|
|
374
374
|
<small>Closure::Compiler::Compilation</small>
|
375
375
|
|
@@ -377,7 +377,7 @@
|
|
377
377
|
|
378
378
|
|
379
379
|
<li class="r1 ">
|
380
|
-
<span class='object_link'><a href="Closure/Compiler/Compilation.html#log-instance_method" title="Closure::Compiler::Compilation#log (method)">#log</a></span>
|
380
|
+
<span class='object_link'><a href="Closure/Compiler/Compilation.html#log-instance_method" title="Closure::Compiler::Compilation#log (method)">#log</a></span>
|
381
381
|
|
382
382
|
<small>Closure::Compiler::Compilation</small>
|
383
383
|
|
@@ -385,23 +385,23 @@
|
|
385
385
|
|
386
386
|
|
387
387
|
<li class="r2 ">
|
388
|
-
<span class='object_link'><a href="Closure/
|
388
|
+
<span class='object_link'><a href="Closure/Sources.html#namespaces_for-instance_method" title="Closure::Sources#namespaces_for (method)">#namespaces_for</a></span>
|
389
389
|
|
390
|
-
<small>Closure::
|
390
|
+
<small>Closure::Sources</small>
|
391
391
|
|
392
392
|
</li>
|
393
393
|
|
394
394
|
|
395
395
|
<li class="r1 ">
|
396
|
-
<span class='object_link'><a href="Closure/
|
396
|
+
<span class='object_link'><a href="Closure/Goog.html#refresh-instance_method" title="Closure::Goog#refresh (method)">#refresh</a></span>
|
397
397
|
|
398
|
-
<small>Closure::
|
398
|
+
<small>Closure::Goog</small>
|
399
399
|
|
400
400
|
</li>
|
401
401
|
|
402
402
|
|
403
403
|
<li class="r2 ">
|
404
|
-
<span class='object_link'><a href="Closure/Script.html#
|
404
|
+
<span class='object_link'><a href="Closure/Script.html#relative_src-instance_method" title="Closure::Script#relative_src (method)">#relative_src</a></span>
|
405
405
|
|
406
406
|
<small>Closure::Script</small>
|
407
407
|
|
@@ -409,7 +409,7 @@
|
|
409
409
|
|
410
410
|
|
411
411
|
<li class="r1 ">
|
412
|
-
<span class='object_link'><a href="Closure/Script.html#
|
412
|
+
<span class='object_link'><a href="Closure/Script.html#render-instance_method" title="Closure::Script#render (method)">#render</a></span>
|
413
413
|
|
414
414
|
<small>Closure::Script</small>
|
415
415
|
|
@@ -417,7 +417,7 @@
|
|
417
417
|
|
418
418
|
|
419
419
|
<li class="r2 ">
|
420
|
-
<span class='object_link'><a href="Closure/Script.html#
|
420
|
+
<span class='object_link'><a href="Closure/Script.html#render_stack-instance_method" title="Closure::Script#render_stack (method)">#render_stack</a></span>
|
421
421
|
|
422
422
|
<small>Closure::Script</small>
|
423
423
|
|
@@ -425,55 +425,63 @@
|
|
425
425
|
|
426
426
|
|
427
427
|
<li class="r1 ">
|
428
|
-
<span class='object_link'><a href="Closure/
|
428
|
+
<span class='object_link'><a href="Closure/Script.html#response-instance_method" title="Closure::Script#response (method)">#response</a></span>
|
429
429
|
|
430
|
-
<small>Closure::
|
430
|
+
<small>Closure::Script</small>
|
431
431
|
|
432
432
|
</li>
|
433
433
|
|
434
434
|
|
435
435
|
<li class="r2 ">
|
436
|
-
<span class='object_link'><a href="Closure.html#
|
436
|
+
<span class='object_link'><a href="Closure/BeanShell.html#run-instance_method" title="Closure::BeanShell#run (method)">#run</a></span>
|
437
437
|
|
438
|
-
<small>Closure</small>
|
438
|
+
<small>Closure::BeanShell</small>
|
439
439
|
|
440
440
|
</li>
|
441
441
|
|
442
442
|
|
443
443
|
<li class="r1 ">
|
444
|
-
<span class='object_link'><a href="Closure
|
444
|
+
<span class='object_link'><a href="Closure.html#sources-class_method" title="Closure.sources (method)">sources</a></span>
|
445
445
|
|
446
|
-
<small>Closure
|
446
|
+
<small>Closure</small>
|
447
447
|
|
448
448
|
</li>
|
449
449
|
|
450
450
|
|
451
451
|
<li class="r2 ">
|
452
|
-
<span class='object_link'><a href="Closure/
|
452
|
+
<span class='object_link'><a href="Closure/Goog.html#soy_to_js-instance_method" title="Closure::Goog#soy_to_js (method)">#soy_to_js</a></span>
|
453
453
|
|
454
|
-
<small>Closure::
|
454
|
+
<small>Closure::Goog</small>
|
455
455
|
|
456
456
|
</li>
|
457
457
|
|
458
458
|
|
459
459
|
<li class="r1 ">
|
460
|
-
<span class='object_link'><a href="Closure/
|
460
|
+
<span class='object_link'><a href="Closure/Sources.html#src_for-instance_method" title="Closure::Sources#src_for (method)">#src_for</a></span>
|
461
461
|
|
462
|
-
<small>Closure::
|
462
|
+
<small>Closure::Sources</small>
|
463
463
|
|
464
464
|
</li>
|
465
465
|
|
466
466
|
|
467
467
|
<li class="r2 ">
|
468
|
-
<span class='object_link'><a href="Closure/
|
468
|
+
<span class='object_link'><a href="Closure/Goog.html#src_for-instance_method" title="Closure::Goog#src_for (method)">#src_for</a></span>
|
469
469
|
|
470
|
-
<small>Closure::
|
470
|
+
<small>Closure::Goog</small>
|
471
471
|
|
472
472
|
</li>
|
473
473
|
|
474
474
|
|
475
475
|
<li class="r1 ">
|
476
|
-
<span class='object_link'><a href="Closure.html#
|
476
|
+
<span class='object_link'><a href="Closure/Compiler/Compilation.html#to_response-instance_method" title="Closure::Compiler::Compilation#to_response (method)">#to_response</a></span>
|
477
|
+
|
478
|
+
<small>Closure::Compiler::Compilation</small>
|
479
|
+
|
480
|
+
</li>
|
481
|
+
|
482
|
+
|
483
|
+
<li class="r2 ">
|
484
|
+
<span class='object_link'><a href="Closure.html#welcome-class_method" title="Closure.welcome (method)">welcome</a></span>
|
477
485
|
|
478
486
|
<small>Closure</small>
|
479
487
|
|