Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit 0599224

Browse files
authored
Update license files for JSXTransformer.js (#3437)
1 parent 7927299 commit 0599224

4 files changed

+132
-1
lines changed

LICENSE

+10-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ The following components are provided under the MIT License. See project link fo
258258
-> heron/tools/ui/resources/static/js/bootstrap.min.js
259259
-> heron/tools/ui/resources/static/css/bootstrap.min.css
260260
-> heron/tools/ui/resources/static/fonts/glyphicons-halflings-regular.{eot, svg, ttf, woff}
261-
JSXTransformer(v0.10.0, https://github.com/cronn-de/jsxtransformer/blob/master/LICENSE)
261+
JSXTransformer(v0.10.0)
262262
-> heron/tools/ui/resources/static/js/JSXTransformer.0.10.0.js
263263
Underscore.js(v1.6.0, https://github.com/jashkenas/underscore/blob/master/LICENSE)
264264
-> heron/tools/ui/resources/static/js/underscore-min.1.6.0.js
@@ -291,6 +291,15 @@ The following components are provided under the MIT License. See project link fo
291291
Modernizr(http://www.modernizr.com)
292292
-> heron/tools/ui/resources/static/js/bootstrap.js
293293

294+
========================================================================
295+
Third party BSD 2-Clause licenses
296+
========================================================================
297+
The following components are provided under the BSD 2-Clause license.
298+
See project link for details.
299+
300+
JSXTransformer(v0.10.0)
301+
-> heron/tools/ui/resources/static/js/JSXTransformer.0.10.0.js
302+
294303
========================================================================
295304
Third party BSD 3-Clause licenses
296305
========================================================================
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/**
2+
* Copyright 2013-2014 Facebook, Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
/*
2+
Copyright (C) 2013 Ariya Hidayat <[email protected]>
3+
Copyright (C) 2013 Thaddee Tyl <[email protected]>
4+
Copyright (C) 2012 Ariya Hidayat <[email protected]>
5+
Copyright (C) 2012 Mathias Bynens <[email protected]>
6+
Copyright (C) 2012 Joost-Wim Boekesteijn <[email protected]>
7+
Copyright (C) 2012 Kris Kowal <[email protected]>
8+
Copyright (C) 2012 Yusuke Suzuki <[email protected]>
9+
Copyright (C) 2012 Arpad Borsos <[email protected]>
10+
Copyright (C) 2011 Ariya Hidayat <[email protected]>
11+
12+
Redistribution and use in source and binary forms, with or without
13+
modification, are permitted provided that the following conditions are met:
14+
15+
* Redistributions of source code must retain the above copyright
16+
notice, this list of conditions and the following disclaimer.
17+
* Redistributions in binary form must reproduce the above copyright
18+
notice, this list of conditions and the following disclaimer in the
19+
documentation and/or other materials provided with the distribution.
20+
21+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24+
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
25+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
28+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30+
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31+
*/
32+
33+
/*
34+
* Copyright 2009-2011 Mozilla Foundation and contributors
35+
* Licensed under the New BSD license. See LICENSE or:
36+
* http://opensource.org/licenses/BSD-3-Clause
37+
*/
38+
39+
/*
40+
* Copyright 2011 Mozilla Foundation and contributors
41+
* Licensed under the New BSD license. See LICENSE or:
42+
* http://opensource.org/licenses/BSD-3-Clause
43+
*
44+
* Based on the Base 64 VLQ implementation in Closure Compiler:
45+
* https://code.google.com/p/closure-compiler/source/browse/trunk/src/com/google/debugging/sourcemap/Base64VLQ.java
46+
*
47+
* Copyright 2011 The Closure Compiler Authors. All rights reserved.
48+
* Redistribution and use in source and binary forms, with or without
49+
* modification, are permitted provided that the following conditions are
50+
* met:
51+
*
52+
* * Redistributions of source code must retain the above copyright
53+
* notice, this list of conditions and the following disclaimer.
54+
* * Redistributions in binary form must reproduce the above
55+
* copyright notice, this list of conditions and the following
56+
* disclaimer in the documentation and/or other materials provided
57+
* with the distribution.
58+
* * Neither the name of Google Inc. nor the names of its
59+
* contributors may be used to endorse or promote products derived
60+
* from this software without specific prior written permission.
61+
*
62+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
63+
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
64+
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
65+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
66+
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
67+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
68+
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
69+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
70+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
71+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
72+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
73+
*/
74+
75+
76+
/** vim: et:ts=4:sw=4:sts=4
77+
* @license amdefine 0.1.0 Copyright (c) 2011, The Dojo Foundation All Rights Reserved.
78+
* Available via the MIT or new BSD license.
79+
* see: http://github.com/jrburke/amdefine for details
80+
*/
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Copyright Joyent, Inc. and other Node contributors.
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a
4+
// copy of this software and associated documentation files (the
5+
// "Software"), to deal in the Software without restriction, including
6+
// without limitation the rights to use, copy, modify, merge, publish,
7+
// distribute, sublicense, and/or sell copies of the Software, and to permit
8+
// persons to whom the Software is furnished to do so, subject to the
9+
// following conditions:
10+
//
11+
// The above copyright notice and this permission notice shall be included
12+
// in all copies or substantial portions of the Software.
13+
//
14+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15+
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17+
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18+
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19+
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20+
// USE OR OTHER DEALINGS IN THE SOFTWARE.
21+
22+
/**
23+
* The buffer module from node.js, for the browser.
24+
*
25+
* Author: Feross Aboukhadijeh <[email protected]> <http://feross.org>
26+
* License: MIT
27+
*/

0 commit comments

Comments
 (0)