Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 5fe270f

Browse files
committed
chore: add some XLTS for AngularJS 1.5.x files
1 parent ee7cc47 commit 5fe270f

File tree

18 files changed

+402
-266
lines changed

18 files changed

+402
-266
lines changed

‎www/lib/angular-animate/CHANGELOG.md‎

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<a name="1.5.12"></a>
2+
# 1.5.12 archaically-looming (2021年08月01日)
3+
4+
This is the first XLTS for AngularJS release for the `1.5.x` packages! 🚀
5+
6+
As such, there have been updates to the License and the Security Policy. New security issues should
7+
be sent to [security@xlts.dev](mailto:security@xlts.dev).
8+
9+
## Bug Fixes
10+
11+
- **sanitizeUri:** sanitize URIs that contain IDEOGRAPHIC SPACE chars
12+
- This is a [Medium Severity Security fix](https://snyk.io/vuln/npm:angular:20171018) for a XSS
13+
vulnerability in Chrome 62 and earlier.
14+
- **jqlite:** nosel error points to an invalid URL
15+
- **$interpolate:** fix docs URL in `noconcat` error
16+
- **$sce:** fix docs URL in `iequirks` error
17+
- **misc:**
18+
- update error reference links to use code.angularjs.xlts.dev
19+
- fix 28 security warnings in build, test, and release tooling
20+
- **browserTrigger:** support CompositionEvent
21+
- **grunt-utils:** insert the core CSS styles without using innerHTML
22+
- **Angular:**
23+
- add workaround for Safari / Webdriver problem
24+
- do not auto bootstrap if the `src` exists but is empty
25+
- do not auto bootstrap if the currentScript has been clobbered
26+
- do not auto bootstrap if the script source is bad and inside SVG
27+
- **minErr:** update url to https
28+
- **docs:**
29+
- linting cleanup of the web worker used for search
30+
- fix `@media` breakpoints for small/extra small devices
31+
- **ngScenario:** completely remove the angular scenario runner
32+
33+
34+
## Breaking Changes
35+
36+
### **ngScenario** due to:
37+
- **ngScenario**: completely remove the angular scenario runner
38+
39+
The angular scenario runner end-to-end test framework has been
40+
removed from the project and will no longer be available on npm
41+
starting with 1.5.12.
42+
43+
It was deprecated and removed from the documentation in 2014. Applications that still use it should
44+
migrate to [Protractor](http://www.protractortest.org) or another e2e testing framework.

‎www/lib/angular-animate/LICENSE.md‎

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
The MIT License (MIT)
1+
# The code in this repository is governed by two licenses
22

3-
Copyright (c) 2016 Angular
3+
Portions of the code found here was obtained from Google and is provided under and subject to the
4+
terms of the MIT License set forth below and all other portions of the code are original works of
5+
XLTS.dev and are provided subject to the terms of an end user license agreement, which may be
6+
obtained from XLTS.dev. Find more details at https://xlts.dev/angularjs.
7+
8+
## For code sourced from https://github.com/angular/angular.js
9+
10+
The MIT License
11+
12+
Copyright (c) 2010-2021 Google LLC. http://angularjs.org
413

514
Permission is hereby granted, free of charge, to any person obtaining a copy
615
of this software and associated documentation files (the "Software"), to deal
@@ -9,13 +18,25 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
918
copies of the Software, and to permit persons to whom the Software is
1019
furnished to do so, subject to the following conditions:
1120

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
21+
The above copyright notice and this permission notice shall be included in
22+
all copies or substantial portions of the Software.
1423

1524
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1625
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1726
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1827
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1928
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
29+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30+
THE SOFTWARE.
31+
32+
## For all other code
33+
34+
The XLTS for AngularJS Software End User License Agreement
35+
36+
Copyright (c) 2021 XLTS.dev All Rights Reserved.
37+
38+
The above copyright notice and this permission notice shall be included in
39+
all copies or substantial portions of the Software.
40+
41+
Use of this source code is governed by a commercial license that must be obtained from XLTS.dev.
42+
Find more details at https://xlts.dev/angularjs.

‎www/lib/angular-animate/README.md‎

Lines changed: 6 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
# packaged angular-animate
1+
# AngularJS Animate
22

3-
This repo is for distribution on `npm` and `bower`. The source for this module is in the
4-
[main AngularJS repo](https://github.com/angular/angular.js/tree/master/src/ngAnimate).
5-
Please file issues and pull requests against that repo.
3+
This repository enables distribution to npm-compatible clients. The original source for this module
4+
is in the [AngularJS repo](https://github.com/angular/angular.js/tree/master/src/ngAnimate).
65

76
## Install
87

9-
You can install this package either with `npm` or with `bower`.
8+
You can install this package with `npm`.
109

1110
### npm
1211

1312
```shell
14-
npm install angular-animate
13+
npm install angular-animate@npm:@xlts.dev/angular-animate-1.5.x@latest
1514
```
1615

1716
Then add `ngAnimate` as a dependency for your app:
@@ -20,49 +19,6 @@ Then add `ngAnimate` as a dependency for your app:
2019
angular.module('myApp', [require('angular-animate')]);
2120
```
2221

23-
### bower
24-
25-
```shell
26-
bower install angular-animate
27-
```
28-
29-
Then add a `<script>` to your `index.html`:
30-
31-
```html
32-
<script src="/bower_components/angular-animate/angular-animate.js"></script>
33-
```
34-
35-
Then add `ngAnimate` as a dependency for your app:
36-
37-
```javascript
38-
angular.module('myApp', ['ngAnimate']);
39-
```
40-
4122
## Documentation
4223

43-
Documentation is available on the
44-
[AngularJS docs site](http://docs.angularjs.org/api/ngAnimate).
45-
46-
## License
47-
48-
The MIT License
49-
50-
Copyright (c) 2010-2015 Google, Inc. http://angularjs.org
51-
52-
Permission is hereby granted, free of charge, to any person obtaining a copy
53-
of this software and associated documentation files (the "Software"), to deal
54-
in the Software without restriction, including without limitation the rights
55-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
56-
copies of the Software, and to permit persons to whom the Software is
57-
furnished to do so, subject to the following conditions:
58-
59-
The above copyright notice and this permission notice shall be included in
60-
all copies or substantial portions of the Software.
61-
62-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
63-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
64-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
65-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
66-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
67-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
68-
THE SOFTWARE.
24+
Documentation is available on the [docs site](http://docs.angularjs.xlts.dev/api/ngAnimate).

‎www/lib/angular-animate/SECURITY.md‎

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
For customers with an active XLTS for AngularJS Support Agreement, the support provided is detailed
6+
in the following table:
7+
8+
| Version | Supported | Status |
9+
| ----------- | ------------------ | ------------------------------------------------------------ |
10+
| 1.8.x | Yes | Extended Long Term Support |
11+
| 1.7.x | No | |
12+
| 1.6.x | No | |
13+
| 1.5.x | Yes | Extended Long Term Support with a separate Support Agreement |
14+
| <1.5.x | No | |
15+
16+
## Reporting a Vulnerability
17+
18+
Email us at [security@xlts.dev](mailto:security@xlts.dev) to report any potential security issues in
19+
XLTS for AngularJS.
20+
21+
Please use the latest XLTS for AngularJS possible and keep in mind the guidance around AngularJS'
22+
[expression language](https://docs.angularjs.xlts.dev/guide/security#angularjs-templates-and-expressions).

‎www/lib/angular-animate/bower.json‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "angular-animate",
3-
"version": "1.5.11",
4-
"license": "MIT",
2+
"name": "@xlts.dev/angular-animate-1.5.x",
3+
"version": "1.5.12",
4+
"license": "UNLICENSED",
55
"main": "./angular-animate.js",
66
"ignore": [],
77
"dependencies": {
8-
"angular": "1.5.11"
8+
"angular": "1.5.12"
99
}
1010
}

‎www/lib/angular-animate/package.json‎

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,63 @@
11
{
2-
"_from": "angular-animate@1.5.11",
3-
"_id": "angular-animate@1.5.11",
2+
"_from": "angular-animate@npm:@xlts.dev/angular-animate-1.5.x@1.5.12",
3+
"_id": "@xlts.dev/angular-animate-1.5.x@1.5.12",
44
"_inBundle": false,
5-
"_integrity": "sha1-G6pDwwPRuTxOaqiUU7ORFLehxmk=",
5+
"_integrity": "sha512-TjSBslTjX0pXlbh2rA6Jt4Uq1kMvUUacJBH1Ho1dyvmOvcAt2rqXa4r7gqMekcTkNVeASJ+AJXQo51e0x5GAgQ==",
66
"_location": "/angular-animate",
77
"_phantomChildren": {},
88
"_requested": {
9-
"type": "version",
9+
"type": "alias",
1010
"registry": true,
11-
"raw": "angular-animate@1.5.11",
11+
"raw": "angular-animate@npm:@xlts.dev/angular-animate-1.5.x@1.5.12",
1212
"name": "angular-animate",
1313
"escapedName": "angular-animate",
14-
"rawSpec": "1.5.11",
14+
"rawSpec": "npm:@xlts.dev/angular-animate-1.5.x@1.5.12",
1515
"saveSpec": null,
16-
"fetchSpec": "1.5.11"
16+
"fetchSpec": null,
17+
"subSpec": {
18+
"type": "version",
19+
"registry": true,
20+
"raw": "@xlts.dev/angular-animate-1.5.x@1.5.12",
21+
"name": "@xlts.dev/angular-animate-1.5.x",
22+
"escapedName": "@xlts.dev%2fangular-animate-1.5.x",
23+
"scope": "@xlts.dev",
24+
"rawSpec": "1.5.12",
25+
"saveSpec": null,
26+
"fetchSpec": "1.5.12"
27+
}
1728
},
1829
"_requiredBy": [
1930
"/"
2031
],
21-
"_resolved": "https://registry.npmjs.org/angular-animate/-/angular-animate-1.5.11.tgz",
22-
"_shasum": "1baa43c303d1b93c4e6aa89453b39114b7a1c669",
23-
"_spec": "angular-animate@1.5.11",
32+
"_resolved": "https://registry.xlts.dev/@xlts.dev%2fangular-animate-1.5.x/-/angular-animate-1.5.x-1.5.12.tgz",
33+
"_shasum": "b7c290bfe63b59b94215440099612874892df92f",
34+
"_spec": "angular-animate@npm:@xlts.dev/angular-animate-1.5.x@1.5.12",
2435
"_where": "/Users/splaktar/Git/xlts/angularjs-ionic-v1",
2536
"author": {
26-
"name": "Angular Core Team",
27-
"email": "angular-core+npm@google.com"
37+
"name": "XLTS.dev",
38+
"email": "support@xlts.dev",
39+
"url": "https://xlts.dev/angularjs"
2840
},
2941
"bugs": {
30-
"url": "https://github.com/angular/angular.js/issues"
42+
"email": "support@xlts.dev"
3143
},
3244
"bundleDependencies": false,
3345
"deprecated": false,
34-
"description": "AngularJS module for animations",
35-
"homepage": "http://angularjs.org",
36-
"jspm": {
37-
"shim": {
38-
"angular-animate": {
39-
"deps": [
40-
"angular"
41-
]
42-
}
43-
}
44-
},
46+
"description": "XLTS for AngularJS module for animations",
47+
"homepage": "https://xlts.dev/angularjs",
4548
"keywords": [
4649
"angular",
4750
"framework",
4851
"browser",
4952
"animation",
5053
"client-side"
5154
],
52-
"license": "MIT",
55+
"license": "UNLICENSED",
5356
"main": "index.js",
54-
"name": "angular-animate",
57+
"name": "@xlts.dev/angular-animate-1.5.x",
5558
"repository": {
5659
"type": "git",
57-
"url": "git+https://github.com/angular/angular.js.git"
58-
},
59-
"scripts": {
60-
"test": "echo \"Error: no test specified\" && exit 1"
60+
"url": "git://github.com/xlts-dev/bower-angular-animate.git"
6161
},
62-
"version": "1.5.11"
62+
"version": "1.5.12"
6363
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<a name="1.5.12"></a>
2+
# 1.5.12 archaically-looming (2021年08月01日)
3+
4+
This is the first XLTS for AngularJS release for the `1.5.x` packages! 🚀
5+
6+
As such, there have been updates to the License and the Security Policy. New security issues should
7+
be sent to [security@xlts.dev](mailto:security@xlts.dev).
8+
9+
## Bug Fixes
10+
11+
- **sanitizeUri:** sanitize URIs that contain IDEOGRAPHIC SPACE chars
12+
- This is a [Medium Severity Security fix](https://snyk.io/vuln/npm:angular:20171018) for a XSS
13+
vulnerability in Chrome 62 and earlier.
14+
- **jqlite:** nosel error points to an invalid URL
15+
- **$interpolate:** fix docs URL in `noconcat` error
16+
- **$sce:** fix docs URL in `iequirks` error
17+
- **misc:**
18+
- update error reference links to use code.angularjs.xlts.dev
19+
- fix 28 security warnings in build, test, and release tooling
20+
- **browserTrigger:** support CompositionEvent
21+
- **grunt-utils:** insert the core CSS styles without using innerHTML
22+
- **Angular:**
23+
- add workaround for Safari / Webdriver problem
24+
- do not auto bootstrap if the `src` exists but is empty
25+
- do not auto bootstrap if the currentScript has been clobbered
26+
- do not auto bootstrap if the script source is bad and inside SVG
27+
- **minErr:** update url to https
28+
- **docs:**
29+
- linting cleanup of the web worker used for search
30+
- fix `@media` breakpoints for small/extra small devices
31+
- **ngScenario:** completely remove the angular scenario runner
32+
33+
34+
## Breaking Changes
35+
36+
### **ngScenario** due to:
37+
- **ngScenario**: completely remove the angular scenario runner
38+
39+
The angular scenario runner end-to-end test framework has been
40+
removed from the project and will no longer be available on npm
41+
starting with 1.5.12.
42+
43+
It was deprecated and removed from the documentation in 2014. Applications that still use it should
44+
migrate to [Protractor](http://www.protractortest.org) or another e2e testing framework.

‎www/lib/angular-sanitize/LICENSE.md‎

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
The MIT License (MIT)
1+
# The code in this repository is governed by two licenses
22

3-
Copyright (c) 2016 Angular
3+
Portions of the code found here was obtained from Google and is provided under and subject to the
4+
terms of the MIT License set forth below and all other portions of the code are original works of
5+
XLTS.dev and are provided subject to the terms of an end user license agreement, which may be
6+
obtained from XLTS.dev. Find more details at https://xlts.dev/angularjs.
7+
8+
## For code sourced from https://github.com/angular/angular.js
9+
10+
The MIT License
11+
12+
Copyright (c) 2010-2021 Google LLC. http://angularjs.org
413

514
Permission is hereby granted, free of charge, to any person obtaining a copy
615
of this software and associated documentation files (the "Software"), to deal
@@ -9,13 +18,25 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
918
copies of the Software, and to permit persons to whom the Software is
1019
furnished to do so, subject to the following conditions:
1120

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
21+
The above copyright notice and this permission notice shall be included in
22+
all copies or substantial portions of the Software.
1423

1524
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1625
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1726
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1827
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1928
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
29+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30+
THE SOFTWARE.
31+
32+
## For all other code
33+
34+
The XLTS for AngularJS Software End User License Agreement
35+
36+
Copyright (c) 2021 XLTS.dev All Rights Reserved.
37+
38+
The above copyright notice and this permission notice shall be included in
39+
all copies or substantial portions of the Software.
40+
41+
Use of this source code is governed by a commercial license that must be obtained from XLTS.dev.
42+
Find more details at https://xlts.dev/angularjs.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /