1
|
Copyright (c) 2015 Tim Caswell (https://github.com/creationix) and other
|
2
|
contributors. All rights reserved.
|
3
|
|
4
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
|
of this software and associated documentation files (the "Software"), to deal
|
6
|
in the Software without restriction, including without limitation the rights
|
7
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
|
copies of the Software, and to permit persons to whom the Software is
|
9
|
furnished to do so, subject to the following conditions:
|
10
|
|
11
|
The above copyright notice and this permission notice shall be included in
|
12
|
all copies or substantial portions of the Software.
|
13
|
|
14
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
20
|
THE SOFTWARE.
|
21
|
|
22
|
|
23
|
Some files from the tests folder are from joyent/node and mscedex/io.js, a fork
|
24
|
of nodejs/io.js:
|
25
|
|
26
|
- tests/iojs/test-http-parser-durability.js
|
27
|
|
28
|
This file is from https://github.com/mscdex/io.js/blob/js-http-parser/test/pummel/test-http-parser-durability.js
|
29
|
with modifications by Jan Schär (jscissr).
|
30
|
|
31
|
"""
|
32
|
Copyright io.js contributors. All rights reserved.
|
33
|
|
34
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
35
|
of this software and associated documentation files (the "Software"), to
|
36
|
deal in the Software without restriction, including without limitation the
|
37
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
38
|
sell copies of the Software, and to permit persons to whom the Software is
|
39
|
furnished to do so, subject to the following conditions:
|
40
|
|
41
|
The above copyright notice and this permission notice shall be included in
|
42
|
all copies or substantial portions of the Software.
|
43
|
|
44
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
45
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
46
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
47
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
48
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
49
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
50
|
IN THE SOFTWARE.
|
51
|
"""
|
52
|
|
53
|
- tests/fixtures/*
|
54
|
tests/parallel/*
|
55
|
tests/testpy/*
|
56
|
tests/common.js
|
57
|
tests/test.py
|
58
|
tests/utils.py
|
59
|
|
60
|
These files are from https://github.com/nodejs/node with changes by
|
61
|
Jan Schär (jscissr).
|
62
|
|
63
|
Node.js is licensed for use as follows:
|
64
|
|
65
|
"""
|
66
|
Copyright Node.js contributors. All rights reserved.
|
67
|
|
68
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
69
|
of this software and associated documentation files (the "Software"), to
|
70
|
deal in the Software without restriction, including without limitation the
|
71
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
72
|
sell copies of the Software, and to permit persons to whom the Software is
|
73
|
furnished to do so, subject to the following conditions:
|
74
|
|
75
|
The above copyright notice and this permission notice shall be included in
|
76
|
all copies or substantial portions of the Software.
|
77
|
|
78
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
79
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
80
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
81
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
82
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
83
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
84
|
IN THE SOFTWARE.
|
85
|
"""
|
86
|
|
87
|
This license applies to parts of Node.js originating from the
|
88
|
https://github.com/joyent/node repository:
|
89
|
|
90
|
"""
|
91
|
Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
92
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
93
|
of this software and associated documentation files (the "Software"), to
|
94
|
deal in the Software without restriction, including without limitation the
|
95
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
96
|
sell copies of the Software, and to permit persons to whom the Software is
|
97
|
furnished to do so, subject to the following conditions:
|
98
|
|
99
|
The above copyright notice and this permission notice shall be included in
|
100
|
all copies or substantial portions of the Software.
|
101
|
|
102
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
103
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
104
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
105
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
106
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
107
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
108
|
IN THE SOFTWARE.
|
109
|
"""
|
110
|
|