From cce6ae5fdd82362b274f7576eb96702f441c33c5 Mon Sep 17 00:00:00 2001 From: jaubourg Date: Wed, 24 Oct 2012 00:56:31 +0200 Subject: [PATCH 1/5] adds licensing information. Fixes #17 --- MIT-LICENSE.txt | 20 ++++++++++++++++++++ README.md | 4 ++++ 2 files changed, 24 insertions(+) create mode 100644 MIT-LICENSE.txt diff --git a/MIT-LICENSE.txt b/MIT-LICENSE.txt new file mode 100644 index 0000000..b4943b0 --- /dev/null +++ b/MIT-LICENSE.txt @@ -0,0 +1,20 @@ +Copyright 2012 Julian Aubourg + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md index 3b769fb..aebaac6 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ jQuery-JSONP is a compact (1.8kB minified), yet feature-packed, alternative solution to jQuery's implementation of JSONP. +## Licensing + +jQuery-JSONP is released under the [MIT license](/jaubourg/jquery-jsonp/blob/master/MIT-LICENSE.txt). + ## Download You can download jQuery-JSONP [here](/jaubourg/jquery-jsonp/downloads) (full text and minified versions available). From 830397ee5495f52134d46a531c70550a695cfdf0 Mon Sep 17 00:00:00 2001 From: Julian Aubourg Date: Tue, 19 Feb 2013 16:44:48 +0100 Subject: [PATCH 2/5] Fix doc links Seems like github no longer handles urls with a leading slash properly. Fixes #26. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aebaac6..be70ad9 100644 --- a/README.md +++ b/README.md @@ -37,5 +37,5 @@ jQuery-JSONP has also been tested with jQuery 1.3.x up to 1.7.x ## Documentation -* [API Documentation](/jaubourg/jquery-jsonp/blob/master/doc/API.md) -* [Tips & Tricks](/jaubourg/jquery-jsonp/blob/master/doc/TipsAndTricks.md) +* [API Documentation](https://github.com/jaubourg/jquery-jsonp/blob/master/doc/API.md) +* [Tips & Tricks](https://github.com/jaubourg/jquery-jsonp/blob/master/doc/TipsAndTricks.md) From c62ffea9f6dab7a9ec0f9934867bdafa6795bc1e Mon Sep 17 00:00:00 2001 From: chandranshu12 Date: Thu, 28 Feb 2013 14:32:26 +0530 Subject: [PATCH 3/5] Update README.md Fixes the links to the License and Download pages in the README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index be70ad9..6fddaa8 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,11 @@ jQuery-JSONP is a compact (1.8kB minified), yet feature-packed, alternative solu ## Licensing -jQuery-JSONP is released under the [MIT license](/jaubourg/jquery-jsonp/blob/master/MIT-LICENSE.txt). +jQuery-JSONP is released under the [MIT license](https://github.com/jaubourg/jquery-jsonp/blob/master/MIT-LICENSE.txt). ## Download -You can download jQuery-JSONP [here](/jaubourg/jquery-jsonp/downloads) (full text and minified versions available). +You can download jQuery-JSONP [here](https://github.com/jaubourg/jquery-jsonp/downloads) (full text and minified versions available). ## Features From 65dec63177f16b8bd7f09b2e065380b1588b3b2f Mon Sep 17 00:00:00 2001 From: LboAnn Date: Mon, 23 Jan 2017 21:56:23 +0100 Subject: [PATCH 4/5] add CDNJS version badge in README.md This badge will show the library version on CDNJS! --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6fddaa8..4ce22fc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # jQuery-JSONP +[![CDNJS](https://img.shields.io/cdnjs/v/jQuery-JSONP.svg)](https://cdnjs.com/libraries/jQuery-JSONP) + jQuery-JSONP is a compact (1.8kB minified), yet feature-packed, alternative solution to jQuery's implementation of JSONP. ## Licensing From 9175d2cdd12fcf4b6567eab63448b3578cecefbe Mon Sep 17 00:00:00 2001 From: Eugene Fidelin Date: Thu, 28 Jan 2016 15:40:31 +0100 Subject: [PATCH 5/5] Add package.json --- package.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..d59c727 --- /dev/null +++ b/package.json @@ -0,0 +1,27 @@ +{ + "name": "jquery-jsonp", + "version": "2.4.0", + "description": "Alternative solution to jQuery's implementation of JSONP", + "main": "src/jquery.jsonp.js", + "directories": { + "doc": "doc", + "test": "test" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://github.com/jaubourg/jquery-jsonp.git" + }, + "keywords": [ + "JSONP", + "jQuery" + ], + "author": "Julian Aubourg", + "license": "MIT", + "bugs": { + "url": "https://github.com/jaubourg/jquery-jsonp/issues" + }, + "homepage": "https://github.com/jaubourg/jquery-jsonp" +}