Skip to content

Commit 0762c5b

Browse files
committed
Updates license to use "LGPLv2.1 (or later) _or_ MIT"
1 parent 9fdc5c9 commit 0762c5b

10 files changed

+557
-198
lines changed

LICENSE

+502-21
Large diffs are not rendered by default.

LICENSE-LGPLv3

-165
This file was deleted.

LICENSE-MIT

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 jquery-form
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
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.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,10 @@ See [CONTRIBUTORS](CONTRIBUTORS.md) for details.
231231

232232
## License
233233

234-
This project is dual licensed under the MIT and LGPLv3 licenses:
234+
This project is dual licensed under the LGPLv2.1 (or later) or MIT licenses:
235235

236-
* [MIT](LICENSE)
237-
* [GNU Lesser General Public License v3.0](LICENSE-LGPLv3)
236+
* [GNU Lesser General Public License v2.1](LICENSE)
237+
* [MIT](LICENSE-MIT)
238238

239239
---
240240

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "The jQuery Form Plugin allows you to easily and unobtrusively upgrade HTML forms to use AJAX.",
44
"main": "src/jquery.form.js",
55
"moduleType": [ "globals", "amd", "node" ],
6-
"license": "(MIT OR LGPL-3.0)",
6+
"license": "(LGPL-2.1+ OR MIT)",
77
"ignore": [
88
"README.md",
99
"composer.json",

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "The jQuery Form Plugin allows you to easily and unobtrusively upgrade HTML forms to use AJAX.",
44
"keywords": [ "jquery", "ajax", "jquery-plugin", "json", "json-form", "html-form", "form", "jquery-form" ],
55
"homepage": "https://github.com/jquery-form/form",
6-
"license": "(MIT OR LGPL-3.0)",
6+
"license": "(LGPL-2.1+ OR MIT)",
77
"authors": [
88
{ "name": "Kevin Morris" },
99
{ "name": "Mike Alsup" }

dist/jquery.form.min.js

+14-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.form.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"keywords": [ "jquery", "ajax", "jquery-plugin", "json", "json-form", "html-form", "form", "jquery-form", "ecosystem:jquery" ],
66
"homepage": "https://github.com/jquery-form/form",
77
"bugs": "https://github.com/jquery-form/form/issues",
8-
"license": "(MIT OR LGPL-3.0)",
8+
"license": "(LGPL-2.1+ OR MIT)",
99
"contributors": [
1010
"Mike Alsup",
1111
"Kevin Morris"

src/jquery.form.js

+13-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,22 @@
22
* jQuery Form Plugin
33
* version: 4.2.1
44
* Requires jQuery v1.7.2 or later
5+
* Project repository: https://github.com/jquery-form/form
6+
57
* Copyright 2017 Kevin Morris
68
* Copyright 2006 M. Alsup
7-
* Project repository: https://github.com/jquery-form/form
8-
* Dual licensed under the MIT and LGPLv3 licenses.
9+
10+
* Dual licensed under the LGPL-2.1+ or MIT licenses
911
* https://github.com/jquery-form/form#license
12+
13+
* This library is free software; you can redistribute it and/or
14+
* modify it under the terms of the GNU Lesser General Public
15+
* License as published by the Free Software Foundation; either
16+
* version 2.1 of the License, or (at your option) any later version.
17+
* This library is distributed in the hope that it will be useful,
18+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
19+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20+
* Lesser General Public License for more details.
1021
*/
1122
/* global ActiveXObject */
1223

0 commit comments

Comments
 (0)