Skip to content

Commit cdd69ab

Browse files
committed
added license info
1 parent 1941138 commit cdd69ab

File tree

6 files changed

+29
-2
lines changed

6 files changed

+29
-2
lines changed

LICENSE.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Software License Agreement (BSD License)
2+
========================================
3+
4+
Copyright (c) 2009, Yahoo! Inc. and Chad Etzel
5+
----------------------------------------------
6+
All rights reserved.
7+
--------------------
8+
9+
Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
10+
11+
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
12+
13+
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
14+
15+
* Neither the name of Yahoo! Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission of Yahoo! Inc.
16+
17+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

querystring-parse.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* Based on YUI "querystring-parse.js" module
88
* http://github.com/isaacs/yui3/tree/master/src/querystring/js
99
*
10+
* Copyright (c) 2009, Yahoo! Inc. and Chad Etzel
11+
* BSD License (see LISENCE.md for info)
1012
*/
1113

1214

querystring-stringify.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
* Based on YUI "querystring-stringify.js" module
88
* http://github.com/isaacs/yui3/tree/master/src/querystring/js
99
*
10+
* Copyright (c) 2009, Yahoo! Inc. and Chad Etzel
11+
* BSD License (see LISENCE.md for info)
12+
*
1013
*/
1114

1215
var util = require("./util");
@@ -24,7 +27,6 @@ var stack = [];
2427
* @param sep {String} (optional) Character that should join param k=v pairs together. Default: "&"
2528
* @param eq {String} (optional) Character that should join keys to their values. Default: "="
2629
* @param name {String} (optional) Name of the current key, for handling children recursively.
27-
* @static
2830
*/
2931
var stringify = function (obj, sep, eq, name) {
3032
sep = sep || "&";

querystring.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
* Based on YUI "querystring-parse.js" module
1515
* http://github.com/isaacs/yui3/tree/master/src/querystring/js
1616
*
17+
* Copyright (c) 2009, Yahoo! Inc. and Chad Etzel
18+
* BSD License (see LISENCE.md for info)
19+
*
1720
*/
1821

1922

test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,4 @@ foo = qs.parse("foo[]=1&foo[]=2&foo[]=4");
5757

5858
sys.puts("obj: " + JSON.stringify(foo));
5959
sys.puts("qs: " + qs.stringify(foo));
60+

util.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
*
55
* Chad Etzel
66
*
7-
* MIT License
7+
* Copyright (c) 2009, Yahoo! Inc. and Chad Etzel
8+
* BSD License (see LISENCE.md for info)
9+
*
810
*/
911

1012

0 commit comments

Comments
 (0)