Skip to content
Sign up
Sign in
This repository
Explore
Features
Enterprise
Blog
Watch
3,347
Star
35,204
Fork
14,258
angular
/
angular.js
Code
Issues
Pull Requests
Wiki
Pulse
Graphs
HTTPS
clone URL
Subversion
checkout URL
You can clone with
HTTPS
or
Subversion
.
Download ZIP
Permalink
angular.js
/
angularFiles.js
Newer
Older
100755
237 lines (217 sloc)
5.861 kb
Raw
Normal view
History
36831ec
refactor(jshint): reduce duplication & test all JS files
mzgol
authored
Jun 23, 2014
1
'
use strict
'
;
2
3
var
angularFiles
=
{
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
4
'
angularSrc
'
:
[
003861d
chore(minErr): replace ngError with minErr
ksheedlo
authored
Jun 7, 2013
5
'
src/minErr.js
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
6
'
src/Angular.js
'
,
5143e7b
feat(module): new module loader
mhevery
authored
Jan 6, 2012
7
'
src/loader.js
'
,
cf43ccd
fix(minErr): stringify non-JSON compatible objects in error messages
petebacondarwin
authored
Nov 17, 2014
8
'
src/stringify.js
'
,
9555511
style(angularPublic): move public export definition to AnuglarPublic.js
mhevery
authored
Nov 14, 2011
9
'
src/AngularPublic.js
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
10
'
src/jqLite.js
'
,
11
'
src/apis.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
12
13
'
src/auto/injector.js
'
,
14
15
'
src/ng/anchorScroll.js
'
,
81923f1
feat(ngAnimate): complete rewrite of animations
matsko
authored
Jun 18, 2013
16
'
src/ng/animate.js
'
,
6276142
chore(core): create a wrapper to manage async callbacks
matsko
authored
Feb 24, 2014
17
'
src/ng/asyncCallback.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
18
'
src/ng/browser.js
'
,
19
'
src/ng/cacheFactory.js
'
,
beea3a4
style($compile): rename compiler.js to compile.js
IgorMinar
authored
May 2, 2012
20
'
src/ng/compile.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
21
'
src/ng/controller.js
'
,
22
'
src/ng/document.js
'
,
23
'
src/ng/exceptionHandler.js
'
,
bea9422
feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk
authored
May 14, 2013
24
'
src/ng/http.js
'
,
25
'
src/ng/httpBackend.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
26
'
src/ng/interpolate.js
'
,
2b5ce84
feat($interval): add a service wrapping setInterval
juliemr
authored
Sep 13, 2013
27
'
src/ng/interval.js
'
,
bea9422
feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk
authored
May 14, 2013
28
'
src/ng/locale.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
29
'
src/ng/location.js
'
,
30
'
src/ng/log.js
'
,
31
'
src/ng/parse.js
'
,
32
'
src/ng/q.js
'
,
04d7317
chore(core): introduce a wrapper for requestAnimationFrame
matsko
authored
Feb 24, 2014
33
'
src/ng/raf.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
34
'
src/ng/rootScope.js
'
,
3335234
fix($sanitize): Use same whitelist mechanism as $compile does.
tbosch
authored
Nov 25, 2013
35
'
src/ng/sanitizeUri.js
'
,
bea9422
feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk
authored
May 14, 2013
36
'
src/ng/sce.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
37
'
src/ng/sniffer.js
'
,
a70e283
feat($templateRequest): introduce the $templateRequest service
matsko
authored
Aug 12, 2014
38
'
src/ng/templateRequest.js
'
,
85880a6
feat(testability): add $$testability service
juliemr
authored
Jun 9, 2014
39
'
src/ng/testability.js
'
,
4511d39
feat($timeout): add $timeout service that supersedes $defer
IgorMinar
authored
May 22, 2012
40
'
src/ng/timeout.js
'
,
b99d064
fix(core): parse URLs using the browser's DOM API
chirayuk
authored
Jul 15, 2013
41
'
src/ng/urlUtils.js
'
,
bea9422
feat($sce): new $sce service for Strict Contextual Escaping.
chirayuk
authored
May 14, 2013
42
'
src/ng/window.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
43
44
'
src/ng/filter.js
'
,
45
'
src/ng/filter/filter.js
'
,
46
'
src/ng/filter/filters.js
'
,
47
'
src/ng/filter/limitTo.js
'
,
48
'
src/ng/filter/orderBy.js
'
,
49
50
'
src/ng/directive/directives.js
'
,
51
'
src/ng/directive/a.js
'
,
d9b90d7
feat(attrs): trigger observers for specific ng-attributes
matsko
authored
Jun 9, 2014
52
'
src/ng/directive/attrs.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
53
'
src/ng/directive/form.js
'
,
54
'
src/ng/directive/input.js
'
,
55
'
src/ng/directive/ngBind.js
'
,
56
'
src/ng/directive/ngClass.js
'
,
57
'
src/ng/directive/ngCloak.js
'
,
58
'
src/ng/directive/ngController.js
'
,
2b87c81
feat($parse): CSP compatibility
IgorMinar
authored
Apr 27, 2012
59
'
src/ng/directive/ngCsp.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
60
'
src/ng/directive/ngEventDirs.js
'
,
2f96fbd
feat(ngIf): add directive to remove and recreate DOM elements
OrenAvissar
authored
Apr 4, 2013
61
'
src/ng/directive/ngIf.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
62
'
src/ng/directive/ngInclude.js
'
,
63
'
src/ng/directive/ngInit.js
'
,
64
'
src/ng/directive/ngNonBindable.js
'
,
65
'
src/ng/directive/ngPluralize.js
'
,
66
'
src/ng/directive/ngRepeat.js
'
,
67
'
src/ng/directive/ngShowHide.js
'
,
68
'
src/ng/directive/ngStyle.js
'
,
69
'
src/ng/directive/ngSwitch.js
'
,
70
'
src/ng/directive/ngTransclude.js
'
,
71
'
src/ng/directive/script.js
'
,
72
'
src/ng/directive/select.js
'
,
aa02534
bug(ie8 docs): docs now work on ie8
mhevery
authored
May 7, 2012
73
'
src/ng/directive/style.js
'
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
74
],
75
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
76
'
angularLoader
'
:
[
cf43ccd
fix(minErr): stringify non-JSON compatible objects in error messages
petebacondarwin
authored
Nov 17, 2014
77
'
stringify.js
'
,
8425e9f
fix(loader): don't rely on internal APIs
vojtajina
authored
Nov 14, 2013
78
'
src/minErr.js
'
,
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
79
'
src/loader.js
'
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 26, 2012
80
],
81
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
82
'
angularModules
'
:
{
83
'
ngAnimate
'
:
[
84
'
src/ngAnimate/animate.js
'
85
],
86
'
ngCookies
'
:
[
87
'
src/ngCookies/cookies.js
'
88
],
0f4016c
feat(NgMessages): introduce the NgMessages module and directives
matsko
authored
Apr 22, 2014
89
'
ngMessages
'
:
[
90
'
src/ngMessages/messages.js
'
91
],
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
92
'
ngResource
'
:
[
93
'
src/ngResource/resource.js
'
94
],
95
'
ngRoute
'
:
[
96
'
src/ngRoute/route.js
'
,
97
'
src/ngRoute/routeParams.js
'
,
98
'
src/ngRoute/directive/ngView.js
'
99
],
100
'
ngSanitize
'
:
[
101
'
src/ngSanitize/sanitize.js
'
,
102
'
src/ngSanitize/filter/linky.js
'
103
],
104
'
ngMock
'
:
[
105
'
src/ngMock/angular-mocks.js
'
106
],
107
'
ngTouch
'
:
[
108
'
src/ngTouch/touch.js
'
,
109
'
src/ngTouch/swipe.js
'
,
110
'
src/ngTouch/directive/ngClick.js
'
,
111
'
src/ngTouch/directive/ngSwipe.js
'
112
],
d1434c9
feat(ngAria): add an ngAria module to make a11y easier
arbus
authored
Jul 26, 2014
113
'
ngAria
'
:
[
114
'
src/ngAria/aria.js
'
115
]
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
116
},
117
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
118
'
angularScenario
'
:
[
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
119
'
src/ngScenario/Scenario.js
'
,
5da6b12
test(modules): fix module tests which got disabled by ngMobile
IgorMinar
authored
Apr 18, 2013
120
'
src/ngScenario/browserTrigger.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
121
'
src/ngScenario/Application.js
'
,
122
'
src/ngScenario/Describe.js
'
,
123
'
src/ngScenario/Future.js
'
,
124
'
src/ngScenario/ObjectModel.js
'
,
125
'
src/ngScenario/Runner.js
'
,
126
'
src/ngScenario/SpecRunner.js
'
,
127
'
src/ngScenario/dsl.js
'
,
128
'
src/ngScenario/matchers.js
'
,
129
'
src/ngScenario/output/Html.js
'
,
130
'
src/ngScenario/output/Json.js
'
,
131
'
src/ngScenario/output/Xml.js
'
,
132
'
src/ngScenario/output/Object.js
'
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
133
],
134
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
135
'
angularTest
'
:
[
1d06a94
chore: reorganize test helper files under test/helpers
IgorMinar
authored
Aug 23, 2013
136
'
test/helpers/*.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
137
'
test/ngScenario/*.js
'
,
138
'
test/ngScenario/output/*.js
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
139
'
test/*.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
140
'
test/auto/*.js
'
,
5599b55
refactor($route): pull $route and friends into angular-route.js
IgorMinar
authored
Jun 5, 2013
141
'
test/ng/**/*.js
'
,
81923f1
feat(ngAnimate): complete rewrite of animations
matsko
authored
Jun 18, 2013
142
'
test/ngAnimate/*.js
'
,
0f4016c
feat(NgMessages): introduce the NgMessages module and directives
matsko
authored
Apr 22, 2014
143
'
test/ngMessages/*.js
'
,
7b22d59
chore(ngCookies): moved to module
mhevery
authored
Mar 26, 2012
144
'
test/ngCookies/*.js
'
,
798bca6
chore(resource): moved to module
mhevery
authored
Mar 26, 2012
145
'
test/ngResource/*.js
'
,
5599b55
refactor($route): pull $route and friends into angular-route.js
IgorMinar
authored
Jun 5, 2013
146
'
test/ngRoute/**/*.js
'
,
147
'
test/ngSanitize/**/*.js
'
,
707c65d
feat(ngMobile): add ngMobile module with mobile-specific ngClick
Braden Shepherdson
authored
Feb 8, 2013
148
'
test/ngMock/*.js
'
,
d1434c9
feat(ngAria): add an ngAria module to make a11y easier
arbus
authored
Jul 25, 2014
149
'
test/ngTouch/**/*.js
'
,
150
'
test/ngAria/*.js
'
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
151
],
152
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
153
'
karma
'
:
[
9e7cb3c
feat(jQuery): upgrade to jQuery to 2.1.1
mzgol
authored
Apr 30, 2014
154
'
bower_components/jquery/dist/jquery.js
'
,
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
155
'
test/jquery_remove.js
'
,
156
'
@angularSrc
'
,
157
'
src/publishExternalApis.js
'
,
158
'
@angularSrcModules
'
,
159
'
@angularScenario
'
,
160
'
@angularTest
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
161
],
162
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
163
'
karmaExclude
'
:
[
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
164
'
test/jquery_alias.js
'
,
165
'
src/angular-bootstrap.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
166
'
src/ngScenario/angular-bootstrap.js
'
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
167
],
168
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
169
'
karmaScenario
'
:
[
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
170
'
build/angular-scenario.js
'
,
171
'
build/docs/docs-scenario.js
'
172
],
173
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
174
"
karmaModules
"
:
[
ddf6f11
test(mocks): test mocks with compiled angular
vojtajina
authored
Oct 31, 2011
175
'
build/angular.js
'
,
5599b55
refactor($route): pull $route and friends into angular-route.js
IgorMinar
authored
Jun 5, 2013
176
'
@angularSrcModules
'
,
5da6b12
test(modules): fix module tests which got disabled by ngMobile
IgorMinar
authored
Apr 18, 2013
177
'
src/ngScenario/browserTrigger.js
'
,
1d06a94
chore: reorganize test helper files under test/helpers
IgorMinar
authored
Aug 23, 2013
178
'
test/helpers/*.js
'
,
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
179
'
test/ngMock/*.js
'
,
7b22d59
chore(ngCookies): moved to module
mhevery
authored
Mar 26, 2012
180
'
test/ngCookies/*.js
'
,
5599b55
refactor($route): pull $route and friends into angular-route.js
IgorMinar
authored
Jun 5, 2013
181
'
test/ngRoute/**/*.js
'
,
5bcd719
chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a mod...
vojtajina
authored
Apr 10, 2012
182
'
test/ngResource/*.js
'
,
5599b55
refactor($route): pull $route and friends into angular-route.js
IgorMinar
authored
Jun 5, 2013
183
'
test/ngSanitize/**/*.js
'
,
d1434c9
feat(ngAria): add an ngAria module to make a11y easier
arbus
authored
Jul 25, 2014
184
'
test/ngTouch/**/*.js
'
,
185
'
test/ngAria/*.js
'
ddf6f11
test(mocks): test mocks with compiled angular
vojtajina
authored
Nov 1, 2011
186
],
187
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
188
'
karmaJquery
'
:
[
9e7cb3c
feat(jQuery): upgrade to jQuery to 2.1.1
mzgol
authored
Apr 30, 2014
189
'
bower_components/jquery/dist/jquery.js
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
190
'
test/jquery_alias.js
'
,
191
'
@angularSrc
'
,
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
192
'
src/publishExternalApis.js
'
,
193
'
@angularSrcModules
'
,
194
'
@angularScenario
'
,
195
'
@angularTest
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
196
],
197
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
198
'
karmaJqueryExclude
'
:
[
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
199
'
src/angular-bootstrap.js
'
,
2430f52
chore(module): move files around in preparation for more modules
mhevery
authored
Mar 23, 2012
200
'
src/ngScenario/angular-bootstrap.js
'
,
a13653c
refactor(angular): externalize script load order into JSON
Di Peng
authored
Aug 15, 2011
201
'
test/jquery_remove.js
'
202
]
1d966f8
style(angularFiles): just missing semi-colon and extra comma
vojtajina
authored
Oct 31, 2011
203
};
292a5da
chore(slim-jim) add configuration
mhevery
authored
Feb 9, 2012
204
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
205
angularFiles[
'
angularSrcModules
'
]
=
[].
concat
(
206
angularFiles[
'
angularModules
'
][
'
ngAnimate
'
],
0f4016c
feat(NgMessages): introduce the NgMessages module and directives
matsko
authored
Apr 22, 2014
207
angularFiles[
'
angularModules
'
][
'
ngMessages
'
],
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
208
angularFiles[
'
angularModules
'
][
'
ngCookies
'
],
209
angularFiles[
'
angularModules
'
][
'
ngResource
'
],
210
angularFiles[
'
angularModules
'
][
'
ngRoute
'
],
211
angularFiles[
'
angularModules
'
][
'
ngSanitize
'
],
212
angularFiles[
'
angularModules
'
][
'
ngMock
'
],
d1434c9
feat(ngAria): add an ngAria module to make a11y easier
arbus
authored
Jul 25, 2014
213
angularFiles[
'
angularModules
'
][
'
ngTouch
'
],
214
angularFiles[
'
angularModules
'
][
'
ngAria
'
]
934a95d
chore(grunt): add jshint tasks
petebacondarwin
authored
Oct 21, 2013
215
);
216
9d168f0
chore(testing): Testacular config files + rake tasks
IgorMinar
authored
Aug 30, 2012
217
if
(
exports
) {
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
218
exports
.files
=
angularFiles;
219
exports
.
mergeFilesFor
=
function
() {
9d168f0
chore(testing): Testacular config files + rake tasks
IgorMinar
authored
Aug 30, 2012
220
var
files
=
[];
221
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
222
Array
.
prototype
.slice.
call
(arguments,
0
).forEach(
function
(
filegroup
) {
223
angularFiles[filegroup].forEach(
function
(
file
) {
224
// replace @ref
225
var
match
=
file.
match
(
/
^
\@
(
.
*
)
/
);
226
if
(match) {
227
files
=
files.
concat
(angularFiles[match[
1
]]);
228
}
else
{
229
files.
push
(file);
230
}
231
});
9d168f0
chore(testing): Testacular config files + rake tasks
IgorMinar
authored
Aug 30, 2012
232
});
8218c4b
chore(Rakefile): get ready for modules
mhevery
authored
Mar 27, 2012
233
9d168f0
chore(testing): Testacular config files + rake tasks
IgorMinar
authored
Aug 30, 2012
234
return
files;
976edc1
chore: clean up angularFiles.js
vojtajina
authored
Jun 28, 2013
235
};
292a5da
chore(slim-jim) add configuration
mhevery
authored
Feb 9, 2012
236
}
Something went wrong with that request. Please try again.