From 056fce508d99e5bc96984ba5b5b3c810e57c9fae Mon Sep 17 00:00:00 2001 From: hwillson Date: Sun, 1 Mar 2015 11:20:16 -0500 Subject: [PATCH 01/56] Removed broken stylus and showdown links from full-api docs packages menu. --- docs/client/full-api/tableOfContents.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/client/full-api/tableOfContents.js b/docs/client/full-api/tableOfContents.js index 46748dc1af..f44392e061 100644 --- a/docs/client/full-api/tableOfContents.js +++ b/docs/client/full-api/tableOfContents.js @@ -315,9 +315,7 @@ var toc = [ "markdown", "oauth-encryption", "random", - "showdown", {name: "spiderable", link: "https://atmospherejs.com/meteor/spiderable"}, - "stylus", "underscore", "webapp" ] ], From ab7527cfbd4939743f79567ed312994ebc53decc Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 5 Mar 2015 22:26:25 -0800 Subject: [PATCH 02/56] Update release json file --- scripts/admin/meteor-release-experimental.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/admin/meteor-release-experimental.json b/scripts/admin/meteor-release-experimental.json index 1080b25e5d..b5753e8e41 100644 --- a/scripts/admin/meteor-release-experimental.json +++ b/scripts/admin/meteor-release-experimental.json @@ -1,7 +1,7 @@ { - "track": "WINDOWS-PREVIEW", - "version": "0.1.8", + "track": "METEOR", + "version": "1.0.4-rc.0", "recommended": false, "official": false, - "description": "Preview of Meteor on Windows." + "description": "The Official Meteor Distribution" } From 873018df44335f9b3536ac67c7412ea24405d293 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 5 Mar 2015 22:30:22 -0800 Subject: [PATCH 03/56] Minor version bumps to packages with new features * accounts-base: client-side login hooks * accounts-password: emailTemplates features * autoupdate: reload via Node IPC messages (and SIGHUP) * blaze: template-level subscriptions and onRendered/etc hooks * ddp: client-side onStop callback, permessage-deflate, subscriptionId on subscription handles * http: npmRequestOptions, HTTPInternals.NpmModules * mongo: validated against 2.6, oplog-backlog, rawCollection/rawDatabase, MongoInternals.NpmModules * reactive-dict/session: Session.set({k1: v1, k2: v2}) * templating: attributes on * webapp: WebAppInternals.NpmModules --- packages/accounts-base/package.js | 2 +- packages/accounts-password/package.js | 2 +- packages/autoupdate/package.js | 2 +- packages/blaze/package.js | 2 +- packages/ddp/package.js | 2 +- packages/http/package.js | 2 +- packages/mongo/package.js | 2 +- packages/reactive-dict/package.js | 2 +- packages/session/package.js | 2 +- packages/templating/package.js | 2 +- packages/webapp/package.js | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/packages/accounts-base/package.js b/packages/accounts-base/package.js index 139d945466..af7d2e3b01 100644 --- a/packages/accounts-base/package.js +++ b/packages/accounts-base/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "A user account system", - version: "1.1.4-winr.3" + version: "1.2.0-rc.0" }); Package.onUse(function (api) { diff --git a/packages/accounts-password/package.js b/packages/accounts-password/package.js index 97d1b0c10c..6b0d33b975 100644 --- a/packages/accounts-password/package.js +++ b/packages/accounts-password/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Password support for accounts", - version: "1.0.7-winr.6" + version: "1.1.0-rc.0" }); Package.onUse(function(api) { diff --git a/packages/autoupdate/package.js b/packages/autoupdate/package.js index cc22436606..6a461f6f2e 100644 --- a/packages/autoupdate/package.js +++ b/packages/autoupdate/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Update the client when new client code is available", - version: '1.1.6-winr.4' + version: '1.2.0-rc.0' }); Cordova.depends({ diff --git a/packages/blaze/package.js b/packages/blaze/package.js index 45e3608ca4..ca08b8a2dc 100644 --- a/packages/blaze/package.js +++ b/packages/blaze/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor Reactive Templating library", - version: '2.0.5-winr.4' + version: '2.1.0-rc.0' }); Package.onUse(function (api) { diff --git a/packages/ddp/package.js b/packages/ddp/package.js index 06c14f963a..62425ea462 100644 --- a/packages/ddp/package.js +++ b/packages/ddp/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor's latency-compensated distributed data framework", - version: '1.0.15-winr.5' + version: '1.1.0-rc.0' }); // We use 'faye-websocket' for connections in server-to-server DDP, mostly diff --git a/packages/http/package.js b/packages/http/package.js index 74228aff30..e9a7e16e51 100644 --- a/packages/http/package.js +++ b/packages/http/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Make HTTP calls to remote servers", - version: '1.0.11-winr.5' + version: '1.1.0-rc.0' }); Npm.depends({request: "2.53.0"}); diff --git a/packages/mongo/package.js b/packages/mongo/package.js index 773a61c1a2..2b0e40c7b5 100644 --- a/packages/mongo/package.js +++ b/packages/mongo/package.js @@ -9,7 +9,7 @@ Package.describe({ summary: "Adaptor for using MongoDB and Minimongo over DDP", - version: '1.0.12-winr.5' + version: '1.1.0-rc.0' }); Npm.depends({ diff --git a/packages/reactive-dict/package.js b/packages/reactive-dict/package.js index 58b15fab70..46331c1bb3 100644 --- a/packages/reactive-dict/package.js +++ b/packages/reactive-dict/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Reactive dictionary", - version: '1.0.6-winr.3' + version: '1.1.0-rc.0' }); Package.onUse(function (api) { diff --git a/packages/session/package.js b/packages/session/package.js index edd4bf6d93..ee5099da1d 100644 --- a/packages/session/package.js +++ b/packages/session/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Session variable", - version: '1.0.6-winr.3' + version: '1.1.0-rc.0' }); Package.onUse(function (api) { diff --git a/packages/templating/package.js b/packages/templating/package.js index 7fe25a7e5d..282e641ce0 100644 --- a/packages/templating/package.js +++ b/packages/templating/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Allows templates to be defined in .html files", - version: '1.0.12-winr.6' + version: '1.1.0-rc.0' }); // Today, this package is closely intertwined with Handlebars, meaning diff --git a/packages/webapp/package.js b/packages/webapp/package.js index 1fc8c9203f..3446f6dc1d 100644 --- a/packages/webapp/package.js +++ b/packages/webapp/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Serves a Meteor app over HTTP", - version: '1.1.7-winr.6' + version: '1.2.0-rc.0' }); Npm.depends({connect: "2.9.0", From 4f3bdd29ae60baeffe496f9ebd8b37e8b4184e00 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 5 Mar 2015 22:46:36 -0800 Subject: [PATCH 04/56] Publish non-prerelease npm-bcrypt/npm-node-aes-gcm I am publishing this with Meteor 1.0.3.2. (Maybe this will need to be bumped to _2 for Windows.) --- packages/non-core/npm-bcrypt/.versions | 6 +++--- packages/non-core/npm-bcrypt/package.js | 3 ++- packages/non-core/npm-node-aes-gcm/.versions | 6 +++--- packages/non-core/npm-node-aes-gcm/package.js | 3 ++- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/packages/non-core/npm-bcrypt/.versions b/packages/non-core/npm-bcrypt/.versions index 7ffde2f3bd..8c7356c499 100644 --- a/packages/non-core/npm-bcrypt/.versions +++ b/packages/non-core/npm-bcrypt/.versions @@ -1,3 +1,3 @@ -meteor@1.1.5-winr.1 -npm-bcrypt@0.7.8-winr.3 -underscore@1.0.3-winr.1 +meteor@1.1.4 +npm-bcrypt@0.7.8_1 +underscore@1.0.2 diff --git a/packages/non-core/npm-bcrypt/package.js b/packages/non-core/npm-bcrypt/package.js index 1f1c325a8f..6c28c65bec 100644 --- a/packages/non-core/npm-bcrypt/package.js +++ b/packages/non-core/npm-bcrypt/package.js @@ -1,6 +1,7 @@ Package.describe({ summary: "Wrapper around the bcrypt npm package", - version: '0.7.8-winr.3' + version: '0.7.8_1', + documentation: null }); Npm.depends({ diff --git a/packages/non-core/npm-node-aes-gcm/.versions b/packages/non-core/npm-node-aes-gcm/.versions index a411b2df67..6c58648c67 100644 --- a/packages/non-core/npm-node-aes-gcm/.versions +++ b/packages/non-core/npm-node-aes-gcm/.versions @@ -1,3 +1,3 @@ -meteor@1.1.5-winr.1 -npm-node-aes-gcm@0.1.4-winr.1 -underscore@1.0.3-winr.1 +meteor@1.1.4 +npm-node-aes-gcm@0.1.3_1 +underscore@1.0.2 diff --git a/packages/non-core/npm-node-aes-gcm/package.js b/packages/non-core/npm-node-aes-gcm/package.js index 4757911286..8a5fa204ab 100644 --- a/packages/non-core/npm-node-aes-gcm/package.js +++ b/packages/non-core/npm-node-aes-gcm/package.js @@ -1,6 +1,7 @@ Package.describe({ summary: "Wrapper around the node-aes-gcm npm package", - version: '0.1.4-winr.1' + version: '0.1.3_1', + documentation: null }); Npm.depends({ From af0469da3553fa4d53f4798dff52ae1c9777f69f Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 5 Mar 2015 22:36:19 -0800 Subject: [PATCH 05/56] Bump other packages to -rc.0 --- packages/accounts-facebook/package.js | 2 +- packages/accounts-github/package.js | 2 +- packages/accounts-google/package.js | 2 +- packages/accounts-meetup/package.js | 2 +- packages/accounts-meteor-developer/package.js | 2 +- packages/accounts-oauth/package.js | 2 +- packages/accounts-twitter/package.js | 2 +- packages/accounts-ui-unstyled/package.js | 2 +- packages/accounts-ui/package.js | 2 +- packages/accounts-weibo/package.js | 2 +- packages/appcache/package.js | 2 +- packages/audit-argument-checks/package.js | 2 +- packages/autopublish/package.js | 2 +- packages/base64/package.js | 2 +- packages/binary-heap/package.js | 2 +- packages/blaze-tools/package.js | 2 +- packages/boilerplate-generator/package.js | 2 +- packages/browser-policy-common/package.js | 2 +- packages/browser-policy-content/package.js | 2 +- packages/browser-policy-framing/package.js | 2 +- packages/browser-policy/package.js | 2 +- packages/callback-hook/package.js | 2 +- packages/check/package.js | 2 +- packages/code-prettify/package.js | 2 +- packages/coffeescript-test-helper/package.js | 2 +- packages/coffeescript/package.js | 2 +- packages/constraint-solver/package.js | 2 +- packages/deps/package.js | 2 +- packages/disable-oplog/package.js | 2 +- packages/ejson/package.js | 2 +- packages/email/package.js | 2 +- packages/facebook/package.js | 2 +- packages/facts/package.js | 2 +- packages/fastclick/package.js | 2 +- packages/force-ssl/package.js | 2 +- packages/geojson-utils/package.js | 2 +- packages/github/package.js | 2 +- packages/google/package.js | 2 +- packages/handlebars/package.js | 2 +- packages/html-tools/package.js | 2 +- packages/htmljs/package.js | 2 +- packages/id-map/package.js | 2 +- packages/insecure/package.js | 2 +- packages/jquery-waypoints/package.js | 2 +- packages/jquery/package.js | 2 +- packages/js-analyze-tests/package.js | 2 +- packages/js-analyze/package.js | 2 +- packages/json/package.js | 2 +- packages/jsparse/package.js | 2 +- packages/launch-screen/package.js | 2 +- packages/less/package.js | 2 +- packages/livedata/package.js | 2 +- packages/localstorage/package.js | 2 +- packages/logging/package.js | 2 +- packages/markdown/package.js | 2 +- packages/meetup/package.js | 2 +- packages/meteor-developer/package.js | 2 +- packages/meteor-platform/package.js | 2 +- packages/meteor-tool/package.js | 2 +- packages/meteor/package.js | 2 +- packages/meyerweb-reset/package.js | 2 +- packages/minifiers/package.js | 2 +- packages/minimongo/package.js | 2 +- packages/mobile-status-bar/package.js | 2 +- packages/mongo-livedata/package.js | 2 +- packages/oauth-encryption/package.js | 2 +- packages/oauth/package.js | 2 +- packages/oauth1/package.js | 2 +- packages/oauth2/package.js | 2 +- packages/observe-sequence/package.js | 2 +- packages/ordered-dict/package.js | 2 +- packages/package-stats-opt-out/package.js | 2 +- packages/package-version-parser/package.js | 2 +- packages/preserve-inputs/package.js | 2 +- packages/random/package.js | 2 +- packages/reactive-var/package.js | 2 +- packages/reload-safetybelt/package.js | 2 +- packages/reload/package.js | 2 +- packages/retry/package.js | 2 +- packages/routepolicy/package.js | 2 +- packages/service-configuration/package.js | 2 +- packages/sha/package.js | 2 +- packages/showdown/package.js | 2 +- packages/spacebars-compiler/package.js | 2 +- packages/spacebars-tests/package.js | 2 +- packages/spacebars/package.js | 2 +- packages/spiderable/package.js | 2 +- packages/srp/package.js | 2 +- packages/standard-app-packages/package.js | 2 +- packages/startup/package.js | 2 +- packages/stylus/package.js | 2 +- packages/test-helpers/package.js | 2 +- packages/test-in-browser/package.js | 2 +- packages/test-in-console/package.js | 2 +- packages/test-server-tests-in-console-once/package.js | 2 +- packages/tinytest/package.js | 2 +- packages/tracker/package.js | 2 +- packages/twitter/package.js | 2 +- packages/ui/package.js | 2 +- packages/underscore-tests/package.js | 2 +- packages/underscore/package.js | 2 +- packages/url/package.js | 2 +- packages/webapp-hashing/package.js | 2 +- packages/weibo/package.js | 2 +- packages/xmlbuilder/package.js | 2 +- 105 files changed, 105 insertions(+), 105 deletions(-) diff --git a/packages/accounts-facebook/package.js b/packages/accounts-facebook/package.js index 2198e50d45..26443cb246 100644 --- a/packages/accounts-facebook/package.js +++ b/packages/accounts-facebook/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Facebook accounts", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function(api) { diff --git a/packages/accounts-github/package.js b/packages/accounts-github/package.js index a26812186d..65b05c6c16 100644 --- a/packages/accounts-github/package.js +++ b/packages/accounts-github/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Github accounts", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function(api) { diff --git a/packages/accounts-google/package.js b/packages/accounts-google/package.js index c9d68c603d..f623eb7892 100644 --- a/packages/accounts-google/package.js +++ b/packages/accounts-google/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Google accounts", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function(api) { diff --git a/packages/accounts-meetup/package.js b/packages/accounts-meetup/package.js index e1a8ec0fc3..dd6c77e48e 100644 --- a/packages/accounts-meetup/package.js +++ b/packages/accounts-meetup/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Meetup accounts", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function(api) { diff --git a/packages/accounts-meteor-developer/package.js b/packages/accounts-meteor-developer/package.js index eac3368e9f..df563b9500 100644 --- a/packages/accounts-meteor-developer/package.js +++ b/packages/accounts-meteor-developer/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Meteor developer accounts", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function (api) { diff --git a/packages/accounts-oauth/package.js b/packages/accounts-oauth/package.js index 0ab6a43b61..f51084cd64 100644 --- a/packages/accounts-oauth/package.js +++ b/packages/accounts-oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth-based login services", - version: "1.1.4-winr.2" + version: "1.1.4-rc.0" }); Package.onUse(function (api) { diff --git a/packages/accounts-twitter/package.js b/packages/accounts-twitter/package.js index e346178d1e..86d234f7b4 100644 --- a/packages/accounts-twitter/package.js +++ b/packages/accounts-twitter/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Twitter accounts", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function(api) { diff --git a/packages/accounts-ui-unstyled/package.js b/packages/accounts-ui-unstyled/package.js index 5c2fc67967..bcbe999743 100644 --- a/packages/accounts-ui-unstyled/package.js +++ b/packages/accounts-ui-unstyled/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Unstyled version of login widgets", - version: "1.1.7-winr.4" + version: "1.1.7-rc.0" }); Package.onUse(function (api) { diff --git a/packages/accounts-ui/package.js b/packages/accounts-ui/package.js index 654568aec4..6cf6263db3 100644 --- a/packages/accounts-ui/package.js +++ b/packages/accounts-ui/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Simple templates to add login widgets to an app", - version: "1.1.5-winr.2" + version: "1.1.5-rc.0" }); Package.onUse(function (api) { diff --git a/packages/accounts-weibo/package.js b/packages/accounts-weibo/package.js index acb74bf3cd..d6ee1f8e57 100644 --- a/packages/accounts-weibo/package.js +++ b/packages/accounts-weibo/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Sina Weibo accounts", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function(api) { diff --git a/packages/appcache/package.js b/packages/appcache/package.js index 8f4748d19e..e4c6db93fe 100644 --- a/packages/appcache/package.js +++ b/packages/appcache/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Enable the application cache in the browser", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function (api) { diff --git a/packages/audit-argument-checks/package.js b/packages/audit-argument-checks/package.js index 47dcf111ed..21ed8d30f1 100644 --- a/packages/audit-argument-checks/package.js +++ b/packages/audit-argument-checks/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Try to detect inadequate input sanitization", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); // This package is empty; its presence is detected by livedata. diff --git a/packages/autopublish/package.js b/packages/autopublish/package.js index 2aa69dccb8..ee177feeba 100644 --- a/packages/autopublish/package.js +++ b/packages/autopublish/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Publish the entire database to all clients", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); // This package is empty; its presence is detected by livedata and diff --git a/packages/base64/package.js b/packages/base64/package.js index bb7c144561..9e4342f013 100644 --- a/packages/base64/package.js +++ b/packages/base64/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Base64 encoding and decoding", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/binary-heap/package.js b/packages/binary-heap/package.js index a6bf733120..72bbd06247 100644 --- a/packages/binary-heap/package.js +++ b/packages/binary-heap/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Binary Heap datastructure implementation", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/blaze-tools/package.js b/packages/blaze-tools/package.js index 9c83a2596d..4858ffc485 100644 --- a/packages/blaze-tools/package.js +++ b/packages/blaze-tools/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Compile-time tools for Blaze", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/boilerplate-generator/package.js b/packages/boilerplate-generator/package.js index aa2980f488..8ded72be24 100644 --- a/packages/boilerplate-generator/package.js +++ b/packages/boilerplate-generator/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Generates the boilerplate html from program's manifest", - version: '1.0.3-winr.3' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/browser-policy-common/package.js b/packages/browser-policy-common/package.js index c7488afffb..8982ef7d47 100644 --- a/packages/browser-policy-common/package.js +++ b/packages/browser-policy-common/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for browser-policy packages", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/browser-policy-content/package.js b/packages/browser-policy-content/package.js index 55276da8a3..311b400b41 100644 --- a/packages/browser-policy-content/package.js +++ b/packages/browser-policy-content/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Configure content security policies", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function (api) { diff --git a/packages/browser-policy-framing/package.js b/packages/browser-policy-framing/package.js index 34f0ef48dd..55646fb2f6 100644 --- a/packages/browser-policy-framing/package.js +++ b/packages/browser-policy-framing/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Restrict which websites can frame your app", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function (api) { diff --git a/packages/browser-policy/package.js b/packages/browser-policy/package.js index f14dbd22b5..257d3fdfa3 100644 --- a/packages/browser-policy/package.js +++ b/packages/browser-policy/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Configure security policies enforced by the browser", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function (api) { diff --git a/packages/callback-hook/package.js b/packages/callback-hook/package.js index ed8d5e8818..18b5a2bd37 100644 --- a/packages/callback-hook/package.js +++ b/packages/callback-hook/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Register callbacks on a hook", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/check/package.js b/packages/check/package.js index 013ce6eb9b..382631fa91 100644 --- a/packages/check/package.js +++ b/packages/check/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Check whether a value matches a pattern", - version: '1.0.5-win.0' + version: '1.0.5-rc.0' }); Package.onUse(function (api) { diff --git a/packages/code-prettify/package.js b/packages/code-prettify/package.js index 6614973742..37c139a3b1 100644 --- a/packages/code-prettify/package.js +++ b/packages/code-prettify/package.js @@ -8,7 +8,7 @@ var path = Npm.require('path'); Package.describe({ summary: "Syntax highlighting of code, from Google", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); // XXX this code dumps symbols into the global namespace (directly diff --git a/packages/coffeescript-test-helper/package.js b/packages/coffeescript-test-helper/package.js index e743e7578b..c9769a82d6 100644 --- a/packages/coffeescript-test-helper/package.js +++ b/packages/coffeescript-test-helper/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Used by the coffeescript package's tests", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/coffeescript/package.js b/packages/coffeescript/package.js index 8cc1420ba5..541e23b80d 100644 --- a/packages/coffeescript/package.js +++ b/packages/coffeescript/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Javascript dialect with fewer braces and semicolons", - version: "1.0.6-winr.2" + version: "1.0.6-rc.0" }); Package.registerBuildPlugin({ diff --git a/packages/constraint-solver/package.js b/packages/constraint-solver/package.js index adee24be7d..48e8786ed8 100644 --- a/packages/constraint-solver/package.js +++ b/packages/constraint-solver/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Given the set of the constraints, picks a satisfying configuration", - version: "1.0.18-winr.5" + version: "1.0.18-rc.0" }); Npm.depends({ diff --git a/packages/deps/package.js b/packages/deps/package.js index 396581f5ca..5289997579 100644 --- a/packages/deps/package.js +++ b/packages/deps/package.js @@ -2,7 +2,7 @@ Package.describe({ summary: "Deprecated: Use the 'tracker' package instead.", - version: '1.0.7-winr.2' + version: '1.0.7-rc.0' }); Package.onUse(function (api) { diff --git a/packages/disable-oplog/package.js b/packages/disable-oplog/package.js index 30b3b8597b..44a3028c5a 100644 --- a/packages/disable-oplog/package.js +++ b/packages/disable-oplog/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Disables oplog tailing", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); // This package is empty; its presence is detected by mongo-livedata. diff --git a/packages/ejson/package.js b/packages/ejson/package.js index 2af23f8d68..abe16f1209 100644 --- a/packages/ejson/package.js +++ b/packages/ejson/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Extended and Extensible JSON library", - version: '1.0.6-winr.2' + version: '1.0.6-rc.0' }); Package.onUse(function (api) { diff --git a/packages/email/package.js b/packages/email/package.js index 6d249510fa..cf696d40e7 100644 --- a/packages/email/package.js +++ b/packages/email/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Send email messages", - version: "1.0.6-winr.4" + version: "1.0.6-rc.0" }); Npm.depends({ diff --git a/packages/facebook/package.js b/packages/facebook/package.js index 2c2fdb511a..3dba619ebb 100644 --- a/packages/facebook/package.js +++ b/packages/facebook/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Facebook OAuth flow", - version: "1.1.4-winr.2" + version: "1.1.4-rc.0" }); Package.onUse(function(api) { diff --git a/packages/facts/package.js b/packages/facts/package.js index 7b353e49a5..af16870127 100644 --- a/packages/facts/package.js +++ b/packages/facts/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Publish internal app statistics", - version: '1.0.4-winr.3' + version: '1.0.4-rc.0' }); Package.onUse(function (api) { diff --git a/packages/fastclick/package.js b/packages/fastclick/package.js index 0073edf555..9148dd3e0c 100644 --- a/packages/fastclick/package.js +++ b/packages/fastclick/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Faster touch events on mobile", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/force-ssl/package.js b/packages/force-ssl/package.js index 456449e8c7..6ce3c070b2 100644 --- a/packages/force-ssl/package.js +++ b/packages/force-ssl/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Require this application to use HTTPS", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function (api) { diff --git a/packages/geojson-utils/package.js b/packages/geojson-utils/package.js index 1af0719591..a0ea0b2766 100644 --- a/packages/geojson-utils/package.js +++ b/packages/geojson-utils/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'GeoJSON utility functions (from https://github.com/maxogden/geojson-js-utils)', - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/github/package.js b/packages/github/package.js index 257d8a8b82..3b12fe95e7 100644 --- a/packages/github/package.js +++ b/packages/github/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Github OAuth flow", - version: "1.1.3-winr.2" + version: "1.1.3-rc.0" }); Package.onUse(function(api) { diff --git a/packages/google/package.js b/packages/google/package.js index 9deffd1cec..bf1cfddb5d 100644 --- a/packages/google/package.js +++ b/packages/google/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Google OAuth flow", - version: "1.1.5-winr.4" + version: "1.1.5-rc.0" }); Package.onUse(function(api) { diff --git a/packages/handlebars/package.js b/packages/handlebars/package.js index b0159bad75..baa6ffa092 100644 --- a/packages/handlebars/package.js +++ b/packages/handlebars/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Deprecated", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/html-tools/package.js b/packages/html-tools/package.js index 19916547e5..b74cd23865 100644 --- a/packages/html-tools/package.js +++ b/packages/html-tools/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Standards-compliant HTML tools", - version: '1.0.4-winr.3' + version: '1.0.4-rc.0' }); Package.onUse(function (api) { diff --git a/packages/htmljs/package.js b/packages/htmljs/package.js index 975c523243..2e5c06f692 100644 --- a/packages/htmljs/package.js +++ b/packages/htmljs/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Small library for expressing HTML trees", - version: '1.0.4-winr.2' + version: '1.0.4-rc.0' }); Package.onUse(function (api) { diff --git a/packages/id-map/package.js b/packages/id-map/package.js index fc278eecb7..3759be40c4 100644 --- a/packages/id-map/package.js +++ b/packages/id-map/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Dictionary data structure allowing non-string keys", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/insecure/package.js b/packages/insecure/package.js index 9cddc309d2..c7ef020ab8 100644 --- a/packages/insecure/package.js +++ b/packages/insecure/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Allow all database writes by default", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); // This package is empty; its presence is detected by mongo-livedata. diff --git a/packages/jquery-waypoints/package.js b/packages/jquery-waypoints/package.js index 36a9910fb3..e4d714b264 100644 --- a/packages/jquery-waypoints/package.js +++ b/packages/jquery-waypoints/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run a function when the user scrolls past an element", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/jquery/package.js b/packages/jquery/package.js index 3d550e12d9..ac4ccb0d24 100644 --- a/packages/jquery/package.js +++ b/packages/jquery/package.js @@ -5,7 +5,7 @@ Package.describe({ // naively thought that "call the version '1.11.2', add a comment saying that // the next version should be '1.11.2_1'" would be sufficient to not be // missed during the semi-automated version number bumping step. Next time, use `_0` from the start so it's obvious that something weird is happening! - version: '1.11.3-winr.2_1' // XXX see above!!!! + version: '1.11.3-rc.0_2' // XXX see above!!!! }); Package.onUse(function (api) { diff --git a/packages/js-analyze-tests/package.js b/packages/js-analyze-tests/package.js index aac9a66820..9699942a4b 100644 --- a/packages/js-analyze-tests/package.js +++ b/packages/js-analyze-tests/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Tests for JavaScript code analysis for Meteor", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); // The tests are in a separate package so that it is possible to compile diff --git a/packages/js-analyze/package.js b/packages/js-analyze/package.js index f625be5d11..19f3f2c716 100644 --- a/packages/js-analyze/package.js +++ b/packages/js-analyze/package.js @@ -4,7 +4,7 @@ Package.describe({ summary: "JavaScript code analysis for Meteor", - version: '1.0.5-winr.2' + version: '1.0.5-rc.0' }); // Use some packages from the Esprima project. If it turns out we need these on diff --git a/packages/json/package.js b/packages/json/package.js index 3650470564..262ab3638c 100644 --- a/packages/json/package.js +++ b/packages/json/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Provides JSON.stringify and JSON.parse for older browsers", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); // We need to figure out how to serve this file only to browsers that don't have diff --git a/packages/jsparse/package.js b/packages/jsparse/package.js index 0b24e8b7e1..f15ecfd697 100644 --- a/packages/jsparse/package.js +++ b/packages/jsparse/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Full-featured JavaScript parser", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/launch-screen/package.js b/packages/launch-screen/package.js index b07afdbd54..f9e889007c 100644 --- a/packages/launch-screen/package.js +++ b/packages/launch-screen/package.js @@ -6,7 +6,7 @@ Package.describe({ // between such packages and the build tool. name: 'launch-screen', summary: 'Default and customizable launch screen on mobile.', - version: '1.0.2-winr.4' + version: '1.0.2-rc.0' }); Cordova.depends({ diff --git a/packages/less/package.js b/packages/less/package.js index 3e180b37c1..6d561e27dd 100644 --- a/packages/less/package.js +++ b/packages/less/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "The dynamic stylesheet language", - version: "1.0.13-winr.3" + version: "1.0.13-rc.0" }); Package.registerBuildPlugin({ diff --git a/packages/livedata/package.js b/packages/livedata/package.js index f1eb621336..9ea7f871cc 100644 --- a/packages/livedata/package.js +++ b/packages/livedata/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Moved to the 'ddp' package", - version: '1.0.13-winr.2' + version: '1.0.13-rc.0' }); Package.onUse(function (api) { diff --git a/packages/localstorage/package.js b/packages/localstorage/package.js index 1dd8ffb293..c04deb65d2 100644 --- a/packages/localstorage/package.js +++ b/packages/localstorage/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Simulates local storage on IE 6,7 using userData", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/logging/package.js b/packages/logging/package.js index 0580900b63..b1cf92673f 100644 --- a/packages/logging/package.js +++ b/packages/logging/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Logging facility.", - version: '1.0.7-winr.3' + version: '1.0.7-rc.0' }); Npm.depends({ diff --git a/packages/markdown/package.js b/packages/markdown/package.js index 7d6fad5069..f4f2a3de01 100644 --- a/packages/markdown/package.js +++ b/packages/markdown/package.js @@ -2,7 +2,7 @@ Package.describe({ summary: "Markdown-to-HTML processor", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function (api) { diff --git a/packages/meetup/package.js b/packages/meetup/package.js index 143015e94f..f3a20fa418 100644 --- a/packages/meetup/package.js +++ b/packages/meetup/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meetup OAuth flow", - version: "1.1.3-winr.2" + version: "1.1.3-rc.0" }); Package.onUse(function(api) { diff --git a/packages/meteor-developer/package.js b/packages/meteor-developer/package.js index fc8137484d..0a8d442da6 100644 --- a/packages/meteor-developer/package.js +++ b/packages/meteor-developer/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor developer accounts OAuth flow", - version: "1.1.3-winr.2" + version: "1.1.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/meteor-platform/package.js b/packages/meteor-platform/package.js index d55c122db9..25663b9919 100644 --- a/packages/meteor-platform/package.js +++ b/packages/meteor-platform/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Include a standard set of Meteor packages in your app", - version: '1.2.2-winr.3' + version: '1.2.2-rc.0' }); Package.onUse(function(api) { diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index 7c2f177a28..122fa1ed3f 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "The Meteor command-line tool", - version: '1.0.41' + version: '1.0.42-rc.0' }); Package.includeTool(); diff --git a/packages/meteor/package.js b/packages/meteor/package.js index 7b053ddcb4..5986226a79 100644 --- a/packages/meteor/package.js +++ b/packages/meteor/package.js @@ -2,7 +2,7 @@ Package.describe({ summary: "Core Meteor environment", - version: '1.1.5-winr.6' + version: '1.1.5-rc.0' }); Package.registerBuildPlugin({ diff --git a/packages/meyerweb-reset/package.js b/packages/meyerweb-reset/package.js index 85be5d4ecd..a0769a98ab 100644 --- a/packages/meyerweb-reset/package.js +++ b/packages/meyerweb-reset/package.js @@ -3,7 +3,7 @@ // encourage this pattern. Maybe another solution would be better. Package.describe({ summary: "reset.css v2.0 from http://meyerweb.com/eric/tools/css/reset/", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/minifiers/package.js b/packages/minifiers/package.js index 7feea7aea2..cd0c876c64 100644 --- a/packages/minifiers/package.js +++ b/packages/minifiers/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "JavaScript and CSS minifiers", - version: "1.1.4-winr.4" + version: "1.1.4-rc.0" }); Npm.depends({ diff --git a/packages/minimongo/package.js b/packages/minimongo/package.js index 568acae0fc..a13a3248ee 100644 --- a/packages/minimongo/package.js +++ b/packages/minimongo/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor's client-side datastore: a port of MongoDB to Javascript", - version: '1.0.7-winr.3' + version: '1.0.7-rc.0' }); Package.onUse(function (api) { diff --git a/packages/mobile-status-bar/package.js b/packages/mobile-status-bar/package.js index a68125f9fd..fc15e6e59b 100644 --- a/packages/mobile-status-bar/package.js +++ b/packages/mobile-status-bar/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Good defaults for the mobile status bar", - version: "1.0.3-winr.3" + version: "1.0.3-rc.0" }); Package.onUse(function(api) { diff --git a/packages/mongo-livedata/package.js b/packages/mongo-livedata/package.js index e9e28dde5b..5ae8830151 100644 --- a/packages/mongo-livedata/package.js +++ b/packages/mongo-livedata/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Moved to the 'mongo' package", - version: '1.0.8-winr.2' + version: '1.0.8-rc.0' }); Package.onUse(function (api) { diff --git a/packages/oauth-encryption/package.js b/packages/oauth-encryption/package.js index cd7ffe5f5e..94d2fd14ff 100644 --- a/packages/oauth-encryption/package.js +++ b/packages/oauth-encryption/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Encrypt account secrets stored in the database", - version: '1.0.3-winr.4' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/oauth/package.js b/packages/oauth/package.js index 4a8eba2836..41a5c0d765 100644 --- a/packages/oauth/package.js +++ b/packages/oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth-based services", - version: "1.1.4-winr.3" + version: "1.1.4-rc.0" }); Package.onUse(function (api) { diff --git a/packages/oauth1/package.js b/packages/oauth1/package.js index 1d6a2e5b20..aa0d248b03 100644 --- a/packages/oauth1/package.js +++ b/packages/oauth1/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth1-based login services", - version: "1.1.4-winr.2" + version: "1.1.4-rc.0" }); Package.onUse(function (api) { diff --git a/packages/oauth2/package.js b/packages/oauth2/package.js index 589fc642a0..f7a55bca97 100644 --- a/packages/oauth2/package.js +++ b/packages/oauth2/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth2-based login services", - version: "1.1.3-winr.2" + version: "1.1.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/observe-sequence/package.js b/packages/observe-sequence/package.js index 77426878ed..0ddd59b1a9 100644 --- a/packages/observe-sequence/package.js +++ b/packages/observe-sequence/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Observe changes to various sequence types such as arrays, cursors and objects", - version: "1.0.5-winr.2" + version: "1.0.5-rc.0" }); Package.onUse(function (api) { diff --git a/packages/ordered-dict/package.js b/packages/ordered-dict/package.js index 0a369dcbb9..a9d5663d5b 100644 --- a/packages/ordered-dict/package.js +++ b/packages/ordered-dict/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Ordered traversable dictionary with a mutable ordering", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/package-stats-opt-out/package.js b/packages/package-stats-opt-out/package.js index 3bebc3b789..0c65d3f1e8 100644 --- a/packages/package-stats-opt-out/package.js +++ b/packages/package-stats-opt-out/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Opt out of sending package stats", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/package-version-parser/package.js b/packages/package-version-parser/package.js index 344a8c56f1..6e09be01e1 100644 --- a/packages/package-version-parser/package.js +++ b/packages/package-version-parser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Parses Meteor Smart Package version strings", - version: "3.0.2-winr.4" + version: "3.0.2-rc.0" }); Package.onUse(function (api) { diff --git a/packages/preserve-inputs/package.js b/packages/preserve-inputs/package.js index 78a99f4c3e..d4aceea3a8 100644 --- a/packages/preserve-inputs/package.js +++ b/packages/preserve-inputs/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Deprecated package (now empty)", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/random/package.js b/packages/random/package.js index c9e434575c..ccaf2a2f36 100644 --- a/packages/random/package.js +++ b/packages/random/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Random number generator and utilities", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/reactive-var/package.js b/packages/reactive-var/package.js index 80164b4d24..1843cdc63a 100644 --- a/packages/reactive-var/package.js +++ b/packages/reactive-var/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Reactive variable", - version: '1.0.5-winr.2' + version: '1.0.5-rc.0' }); Package.onUse(function (api) { diff --git a/packages/reload-safetybelt/package.js b/packages/reload-safetybelt/package.js index cd9b35602d..5f3f9b5fe5 100644 --- a/packages/reload-safetybelt/package.js +++ b/packages/reload-safetybelt/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Reload safety belt for multi-server deployments", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/reload/package.js b/packages/reload/package.js index dc6c166dee..7603f3cfb1 100644 --- a/packages/reload/package.js +++ b/packages/reload/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Reload the page while preserving application state.", - version: '1.1.3-winr.3' + version: '1.1.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/retry/package.js b/packages/retry/package.js index bbb26c9710..537871fee4 100644 --- a/packages/retry/package.js +++ b/packages/retry/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Retry logic with exponential backoff", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/routepolicy/package.js b/packages/routepolicy/package.js index be51d9f16f..8dca18d663 100644 --- a/packages/routepolicy/package.js +++ b/packages/routepolicy/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "route policy declarations", - version: '1.0.5-winr.4' + version: '1.0.5-rc.0' }); Package.onUse(function (api) { diff --git a/packages/service-configuration/package.js b/packages/service-configuration/package.js index b3252316a1..35f3dd04a6 100644 --- a/packages/service-configuration/package.js +++ b/packages/service-configuration/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Manage the configuration for third-party services", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function(api) { diff --git a/packages/sha/package.js b/packages/sha/package.js index 34119348ce..51baf46ca7 100644 --- a/packages/sha/package.js +++ b/packages/sha/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "SHA256 implementation", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/showdown/package.js b/packages/showdown/package.js index 11db9cd79e..aca08df67b 100644 --- a/packages/showdown/package.js +++ b/packages/showdown/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Moved to the 'markdown' package", - version: '1.0.4-winr.2' + version: '1.0.4-rc.0' }); Package.onUse(function (api) { diff --git a/packages/spacebars-compiler/package.js b/packages/spacebars-compiler/package.js index 4dac9cb016..2d4d414860 100644 --- a/packages/spacebars-compiler/package.js +++ b/packages/spacebars-compiler/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Compiler for Spacebars template language", - version: '1.0.5-winr.3' + version: '1.0.5-rc.0' }); Package.onUse(function (api) { diff --git a/packages/spacebars-tests/package.js b/packages/spacebars-tests/package.js index f8a510ad1d..8ab791fd24 100644 --- a/packages/spacebars-tests/package.js +++ b/packages/spacebars-tests/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Additional tests for Spacebars", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); // These tests are in a separate package to avoid a circular dependency diff --git a/packages/spacebars/package.js b/packages/spacebars/package.js index 0ba21cff48..53d1dba82f 100644 --- a/packages/spacebars/package.js +++ b/packages/spacebars/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Handlebars-like template language for Meteor", - version: '1.0.6-winr.5' + version: '1.0.6-rc.0' }); // For more, see package `spacebars-compiler`, which is used by diff --git a/packages/spiderable/package.js b/packages/spiderable/package.js index c502758e30..3e07d4bba1 100644 --- a/packages/spiderable/package.js +++ b/packages/spiderable/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Makes the application crawlable to web spiders", - version: "1.0.7-winr.3" + version: "1.0.7-rc.0" }); Package.onUse(function (api) { diff --git a/packages/srp/package.js b/packages/srp/package.js index a284683ea4..d9677c9189 100644 --- a/packages/srp/package.js +++ b/packages/srp/package.js @@ -5,7 +5,7 @@ Package.describe({ summary: "Library for Secure Remote Password (SRP) exchanges", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/standard-app-packages/package.js b/packages/standard-app-packages/package.js index 0b0af40de6..f55bcd31f9 100644 --- a/packages/standard-app-packages/package.js +++ b/packages/standard-app-packages/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Moved to meteor-platform", - version: '1.0.5-winr.2' + version: '1.0.5-rc.0' }); Package.onUse(function (api) { diff --git a/packages/startup/package.js b/packages/startup/package.js index 2ac3daf258..21fa5541d1 100644 --- a/packages/startup/package.js +++ b/packages/startup/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Deprecated package (now empty)", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); Package.onUse(function (api) { diff --git a/packages/stylus/package.js b/packages/stylus/package.js index 208767951d..73b27d7524 100644 --- a/packages/stylus/package.js +++ b/packages/stylus/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Expressive, dynamic, robust CSS', - version: "1.0.7-winr.3" + version: "1.0.7-rc.0" }); Package.registerBuildPlugin({ diff --git a/packages/test-helpers/package.js b/packages/test-helpers/package.js index c980636d2f..2d7c081f52 100644 --- a/packages/test-helpers/package.js +++ b/packages/test-helpers/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Utility functions for tests", - version: '1.0.4-winr.3' + version: '1.0.4-rc.0' }); Package.onUse(function (api) { diff --git a/packages/test-in-browser/package.js b/packages/test-in-browser/package.js index 95b0a5e793..308a100398 100644 --- a/packages/test-in-browser/package.js +++ b/packages/test-in-browser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run tests interactively in the browser", - version: '1.0.7-winr.3', + version: '1.0.7-rc.0', documentation: null }); diff --git a/packages/test-in-console/package.js b/packages/test-in-console/package.js index 2a4ae20c20..e661a44cea 100644 --- a/packages/test-in-console/package.js +++ b/packages/test-in-console/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run tests noninteractively, with results going to the console.", - version: '1.0.5-winr.2' + version: '1.0.5-rc.0' }); Package.onUse(function (api) { diff --git a/packages/test-server-tests-in-console-once/package.js b/packages/test-server-tests-in-console-once/package.js index 4516eb7367..7479d24d52 100644 --- a/packages/test-server-tests-in-console-once/package.js +++ b/packages/test-server-tests-in-console-once/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run server tests noninteractively, with results going to the console.", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/tinytest/package.js b/packages/tinytest/package.js index 20b442d80c..c7727f814c 100644 --- a/packages/tinytest/package.js +++ b/packages/tinytest/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Tiny testing framework", - version: '1.0.5-winr.2' + version: '1.0.5-rc.0' }); Package.onUse(function (api) { diff --git a/packages/tracker/package.js b/packages/tracker/package.js index 2e7f3a74cb..a8ad063cd8 100644 --- a/packages/tracker/package.js +++ b/packages/tracker/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Dependency tracker to allow reactive callbacks", - version: '1.0.6-winr.4' + version: '1.0.6-rc.0' }); Package.onUse(function (api) { diff --git a/packages/twitter/package.js b/packages/twitter/package.js index 6e4fe85c3c..846450517d 100644 --- a/packages/twitter/package.js +++ b/packages/twitter/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Twitter OAuth flow", - version: '1.1.4-winr.2' + version: '1.1.4-rc.0' }); Package.onUse(function(api) { diff --git a/packages/ui/package.js b/packages/ui/package.js index 2006040fe3..64ec963d65 100644 --- a/packages/ui/package.js +++ b/packages/ui/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Deprecated: Use the 'blaze' package", - version: '1.0.6-winr.2' + version: '1.0.6-rc.0' }); Package.onUse(function (api) { diff --git a/packages/underscore-tests/package.js b/packages/underscore-tests/package.js index f5fcf18329..eb4e7330ab 100644 --- a/packages/underscore-tests/package.js +++ b/packages/underscore-tests/package.js @@ -2,7 +2,7 @@ Package.describe({ // These tests can't be directly in the underscore packages since // Tinytest depends on underscore summary: "Tests for the underscore package", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onTest(function (api) { diff --git a/packages/underscore/package.js b/packages/underscore/package.js index 9cd5e57334..d0a4fce24b 100644 --- a/packages/underscore/package.js +++ b/packages/underscore/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Collection of small helpers: _.map, _.each, ...", - version: '1.0.3-winr.2' + version: '1.0.3-rc.0' }); Package.onUse(function (api) { diff --git a/packages/url/package.js b/packages/url/package.js index 4b9b52a553..b796db1993 100644 --- a/packages/url/package.js +++ b/packages/url/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Utility code for constructing URLs", - version: "1.0.4-winr.2" + version: "1.0.4-rc.0" }); Package.onUse(function(api) { diff --git a/packages/webapp-hashing/package.js b/packages/webapp-hashing/package.js index 841d9ffd0e..2cc6fc97d8 100644 --- a/packages/webapp-hashing/package.js +++ b/packages/webapp-hashing/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Used internally by WebApp. Knows how to hash programs from manifests.", - version: "1.0.3-winr.2" + version: "1.0.3-rc.0" }); Package.onUse(function(api) { diff --git a/packages/weibo/package.js b/packages/weibo/package.js index 3bb26779ad..f6dc6f5bc4 100644 --- a/packages/weibo/package.js +++ b/packages/weibo/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Weibo OAuth flow", - version: '1.1.3-winr.2' + version: '1.1.3-rc.0' }); Package.onUse(function(api) { diff --git a/packages/xmlbuilder/package.js b/packages/xmlbuilder/package.js index ef1f69a5f7..709c0ea202 100644 --- a/packages/xmlbuilder/package.js +++ b/packages/xmlbuilder/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "An XML builder for node.js similar to java-xmlbuilder.", - version: '2.4.6-winr.2' + version: '2.4.6-rc.0' }); Npm.depends({ From 10ee6aeb10e7dde3e2fcb595ad1d368d3a89aeba Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 5 Mar 2015 22:55:19 -0800 Subject: [PATCH 06/56] use real versions of non-core modules --- packages/accounts-password/package.js | 2 +- packages/oauth-encryption/package.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/accounts-password/package.js b/packages/accounts-password/package.js index 6b0d33b975..aa91d73a45 100644 --- a/packages/accounts-password/package.js +++ b/packages/accounts-password/package.js @@ -4,7 +4,7 @@ Package.describe({ }); Package.onUse(function(api) { - api.use('npm-bcrypt@0.7.8-winr.3'); + api.use('npm-bcrypt@=0.7.8_1'); api.use('accounts-base', ['client', 'server']); // Export Accounts (etc) to packages using this one. diff --git a/packages/oauth-encryption/package.js b/packages/oauth-encryption/package.js index 94d2fd14ff..969702b361 100644 --- a/packages/oauth-encryption/package.js +++ b/packages/oauth-encryption/package.js @@ -4,7 +4,7 @@ Package.describe({ }); Package.onUse(function (api) { - api.use("npm-node-aes-gcm@0.1.4-winr.1"); + api.use("npm-node-aes-gcm@=0.1.3_1"); api.export("OAuthEncryption", ["server"]); api.use("underscore"); From 2a88b4fcf03561dd4e090b856002b9f630f6441d Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 5 Mar 2015 23:01:21 -0800 Subject: [PATCH 07/56] add some documentation: null --- packages/meteor-tool/package.js | 2 +- packages/ordered-dict/package.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index 122fa1ed3f..479158389b 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "The Meteor command-line tool", - version: '1.0.42-rc.0' + version: '1.0.42-rc.1' }); Package.includeTool(); diff --git a/packages/ordered-dict/package.js b/packages/ordered-dict/package.js index a9d5663d5b..c0cb5d9deb 100644 --- a/packages/ordered-dict/package.js +++ b/packages/ordered-dict/package.js @@ -1,6 +1,7 @@ Package.describe({ summary: "Ordered traversable dictionary with a mutable ordering", - version: '1.0.3-rc.0' + version: '1.0.3-rc.0', + documentation: null }); Package.onUse(function (api) { From 0fc2261cfe9c5c1053df9b63bd618e709d3a9dc8 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 5 Mar 2015 23:23:21 -0800 Subject: [PATCH 08/56] Update docs and examples to 1.0.4-rc.0 --- docs/.meteor/release | 2 +- docs/.meteor/versions | 114 ++++++++++++------------- examples/clock/.meteor/release | 2 +- examples/clock/.meteor/versions | 98 +++++++++++---------- examples/leaderboard/.meteor/release | 2 +- examples/leaderboard/.meteor/versions | 98 +++++++++++---------- examples/localmarket/.meteor/release | 2 +- examples/localmarket/.meteor/versions | 118 +++++++++++++------------- examples/todos/.meteor/release | 2 +- examples/todos/.meteor/versions | 114 ++++++++++++------------- 10 files changed, 271 insertions(+), 281 deletions(-) diff --git a/docs/.meteor/release b/docs/.meteor/release index 74a74cb1ba..1dd4eaaa23 100644 --- a/docs/.meteor/release +++ b/docs/.meteor/release @@ -1 +1 @@ -METEOR@1.0.3.2 +METEOR@1.0.4-rc.0 diff --git a/docs/.meteor/versions b/docs/.meteor/versions index fd6e66b7b8..80ca1dc6e1 100644 --- a/docs/.meteor/versions +++ b/docs/.meteor/versions @@ -1,60 +1,58 @@ -appcache@1.0.3 -application-configuration@1.0.4 -autoupdate@1.1.5 -base64@1.0.2 -binary-heap@1.0.2 -blaze@2.0.4 -blaze-tools@1.0.2 -boilerplate-generator@1.0.2 -callback-hook@1.0.2 -check@1.0.4 -coffeescript@1.0.5 -ddp@1.0.14 -deps@1.0.6 -ejson@1.0.5 -fastclick@1.0.2 -follower-livedata@1.0.3 -force-ssl@1.0.3 -geojson-utils@1.0.2 -html-tools@1.0.3 -htmljs@1.0.3 -http@1.0.10 -id-map@1.0.2 -jquery@1.11.3 -jquery-waypoints@1.0.2 -json@1.0.2 -launch-screen@1.0.1 -less@1.0.12 -livedata@1.0.12 -logging@1.0.6 -markdown@1.0.3 -meteor@1.1.4 -meteor-platform@1.2.1 -minifiers@1.1.3 -minimongo@1.0.6 -mobile-status-bar@1.0.2 -mongo@1.0.11 -observe-sequence@1.0.4 -ordered-dict@1.0.2 -random@1.0.2 -reactive-dict@1.0.5 -reactive-var@1.0.4 -reload@1.1.2 -reload-safetybelt@1.0.2 -retry@1.0.2 -routepolicy@1.0.4 -session@1.0.5 -showdown@1.0.3 +appcache@1.0.4-rc.0 +autoupdate@1.2.0-rc.0 +base64@1.0.3-rc.0 +binary-heap@1.0.3-rc.0 +blaze@2.1.0-rc.0 +blaze-tools@1.0.3-rc.0 +boilerplate-generator@1.0.3-rc.0 +callback-hook@1.0.3-rc.0 +check@1.0.5-rc.0 +coffeescript@1.0.6-rc.0 +ddp@1.1.0-rc.0 +deps@1.0.7-rc.0 +ejson@1.0.6-rc.0 +fastclick@1.0.3-rc.0 +force-ssl@1.0.4-rc.0 +geojson-utils@1.0.3-rc.0 +html-tools@1.0.4-rc.0 +htmljs@1.0.4-rc.0 +http@1.1.0-rc.0 +id-map@1.0.3-rc.0 +jquery@1.11.3-rc.0_2 +jquery-waypoints@1.0.3-rc.0 +json@1.0.3-rc.0 +launch-screen@1.0.2-rc.0 +less@1.0.13-rc.0 +livedata@1.0.13-rc.0 +logging@1.0.7-rc.0 +markdown@1.0.4-rc.0 +meteor@1.1.5-rc.0 +meteor-platform@1.2.2-rc.0 +minifiers@1.1.4-rc.0 +minimongo@1.0.7-rc.0 +mobile-status-bar@1.0.3-rc.0 +mongo@1.1.0-rc.0 +observe-sequence@1.0.5-rc.0 +ordered-dict@1.0.3-rc.0 +random@1.0.3-rc.0 +reactive-dict@1.1.0-rc.0 +reactive-var@1.0.5-rc.0 +reload@1.1.3-rc.0 +reload-safetybelt@1.0.3-rc.0 +retry@1.0.3-rc.0 +routepolicy@1.0.5-rc.0 +session@1.1.0-rc.0 +showdown@1.0.4-rc.0 simple:highlight.js@1.0.9 simple:markdown-templating@1.2.6 -spacebars@1.0.5 -spacebars-compiler@1.0.4 -spiderable@1.0.6 -standard-app-packages@1.0.4 -templating@1.0.11 -tracker@1.0.5 -ui@1.0.5 -underscore@1.0.2 -url@1.0.3 -webapp@1.1.6 -webapp-hashing@1.0.2 +spacebars@1.0.6-rc.0 +spacebars-compiler@1.0.5-rc.0 +spiderable@1.0.7-rc.0 +standard-app-packages@1.0.5-rc.0 +templating@1.1.0-rc.0 +tracker@1.0.6-rc.0 +ui@1.0.6-rc.0 +underscore@1.0.3-rc.0 +url@1.0.4-rc.0 +webapp@1.2.0-rc.0 +webapp-hashing@1.0.3-rc.0 diff --git a/examples/clock/.meteor/release b/examples/clock/.meteor/release index 74a74cb1ba..1dd4eaaa23 100644 --- a/examples/clock/.meteor/release +++ b/examples/clock/.meteor/release @@ -1 +1 @@ -METEOR@1.0.3.2 +METEOR@1.0.4-rc.0 diff --git a/examples/clock/.meteor/versions b/examples/clock/.meteor/versions index ba4125b659..d8b4cf1359 100644 --- a/examples/clock/.meteor/versions +++ b/examples/clock/.meteor/versions @@ -1,50 +1,48 @@ -application-configuration@1.0.4 -autopublish@1.0.2 -autoupdate@1.1.5 -base64@1.0.2 -binary-heap@1.0.2 -blaze@2.0.4 -blaze-tools@1.0.2 -boilerplate-generator@1.0.2 -callback-hook@1.0.2 -check@1.0.4 -ddp@1.0.14 -deps@1.0.6 -ejson@1.0.5 -fastclick@1.0.2 -follower-livedata@1.0.3 -geojson-utils@1.0.2 -html-tools@1.0.3 -htmljs@1.0.3 -http@1.0.10 -id-map@1.0.2 -insecure@1.0.2 -jquery@1.11.3 -json@1.0.2 -launch-screen@1.0.1 -livedata@1.0.12 -logging@1.0.6 -meteor@1.1.4 -meteor-platform@1.2.1 -minifiers@1.1.3 -minimongo@1.0.6 -mobile-status-bar@1.0.2 -mongo@1.0.11 -observe-sequence@1.0.4 -ordered-dict@1.0.2 -random@1.0.2 -reactive-dict@1.0.5 -reactive-var@1.0.4 -reload@1.1.2 -retry@1.0.2 -routepolicy@1.0.4 -session@1.0.5 -spacebars@1.0.5 -spacebars-compiler@1.0.4 -templating@1.0.11 -tracker@1.0.5 -ui@1.0.5 -underscore@1.0.2 -url@1.0.3 -webapp@1.1.6 -webapp-hashing@1.0.2 +autopublish@1.0.3-rc.0 +autoupdate@1.2.0-rc.0 +base64@1.0.3-rc.0 +binary-heap@1.0.3-rc.0 +blaze@2.1.0-rc.0 +blaze-tools@1.0.3-rc.0 +boilerplate-generator@1.0.3-rc.0 +callback-hook@1.0.3-rc.0 +check@1.0.5-rc.0 +ddp@1.1.0-rc.0 +deps@1.0.7-rc.0 +ejson@1.0.6-rc.0 +fastclick@1.0.3-rc.0 +geojson-utils@1.0.3-rc.0 +html-tools@1.0.4-rc.0 +htmljs@1.0.4-rc.0 +http@1.1.0-rc.0 +id-map@1.0.3-rc.0 +insecure@1.0.3-rc.0 +jquery@1.11.3-rc.0_2 +json@1.0.3-rc.0 +launch-screen@1.0.2-rc.0 +livedata@1.0.13-rc.0 +logging@1.0.7-rc.0 +meteor@1.1.5-rc.0 +meteor-platform@1.2.2-rc.0 +minifiers@1.1.4-rc.0 +minimongo@1.0.7-rc.0 +mobile-status-bar@1.0.3-rc.0 +mongo@1.1.0-rc.0 +observe-sequence@1.0.5-rc.0 +ordered-dict@1.0.3-rc.0 +random@1.0.3-rc.0 +reactive-dict@1.1.0-rc.0 +reactive-var@1.0.5-rc.0 +reload@1.1.3-rc.0 +retry@1.0.3-rc.0 +routepolicy@1.0.5-rc.0 +session@1.1.0-rc.0 +spacebars@1.0.6-rc.0 +spacebars-compiler@1.0.5-rc.0 +templating@1.1.0-rc.0 +tracker@1.0.6-rc.0 +ui@1.0.6-rc.0 +underscore@1.0.3-rc.0 +url@1.0.4-rc.0 +webapp@1.2.0-rc.0 +webapp-hashing@1.0.3-rc.0 diff --git a/examples/leaderboard/.meteor/release b/examples/leaderboard/.meteor/release index 74a74cb1ba..1dd4eaaa23 100644 --- a/examples/leaderboard/.meteor/release +++ b/examples/leaderboard/.meteor/release @@ -1 +1 @@ -METEOR@1.0.3.2 +METEOR@1.0.4-rc.0 diff --git a/examples/leaderboard/.meteor/versions b/examples/leaderboard/.meteor/versions index ba4125b659..d8b4cf1359 100644 --- a/examples/leaderboard/.meteor/versions +++ b/examples/leaderboard/.meteor/versions @@ -1,50 +1,48 @@ -application-configuration@1.0.4 -autopublish@1.0.2 -autoupdate@1.1.5 -base64@1.0.2 -binary-heap@1.0.2 -blaze@2.0.4 -blaze-tools@1.0.2 -boilerplate-generator@1.0.2 -callback-hook@1.0.2 -check@1.0.4 -ddp@1.0.14 -deps@1.0.6 -ejson@1.0.5 -fastclick@1.0.2 -follower-livedata@1.0.3 -geojson-utils@1.0.2 -html-tools@1.0.3 -htmljs@1.0.3 -http@1.0.10 -id-map@1.0.2 -insecure@1.0.2 -jquery@1.11.3 -json@1.0.2 -launch-screen@1.0.1 -livedata@1.0.12 -logging@1.0.6 -meteor@1.1.4 -meteor-platform@1.2.1 -minifiers@1.1.3 -minimongo@1.0.6 -mobile-status-bar@1.0.2 -mongo@1.0.11 -observe-sequence@1.0.4 -ordered-dict@1.0.2 -random@1.0.2 -reactive-dict@1.0.5 -reactive-var@1.0.4 -reload@1.1.2 -retry@1.0.2 -routepolicy@1.0.4 -session@1.0.5 -spacebars@1.0.5 -spacebars-compiler@1.0.4 -templating@1.0.11 -tracker@1.0.5 -ui@1.0.5 -underscore@1.0.2 -url@1.0.3 -webapp@1.1.6 -webapp-hashing@1.0.2 +autopublish@1.0.3-rc.0 +autoupdate@1.2.0-rc.0 +base64@1.0.3-rc.0 +binary-heap@1.0.3-rc.0 +blaze@2.1.0-rc.0 +blaze-tools@1.0.3-rc.0 +boilerplate-generator@1.0.3-rc.0 +callback-hook@1.0.3-rc.0 +check@1.0.5-rc.0 +ddp@1.1.0-rc.0 +deps@1.0.7-rc.0 +ejson@1.0.6-rc.0 +fastclick@1.0.3-rc.0 +geojson-utils@1.0.3-rc.0 +html-tools@1.0.4-rc.0 +htmljs@1.0.4-rc.0 +http@1.1.0-rc.0 +id-map@1.0.3-rc.0 +insecure@1.0.3-rc.0 +jquery@1.11.3-rc.0_2 +json@1.0.3-rc.0 +launch-screen@1.0.2-rc.0 +livedata@1.0.13-rc.0 +logging@1.0.7-rc.0 +meteor@1.1.5-rc.0 +meteor-platform@1.2.2-rc.0 +minifiers@1.1.4-rc.0 +minimongo@1.0.7-rc.0 +mobile-status-bar@1.0.3-rc.0 +mongo@1.1.0-rc.0 +observe-sequence@1.0.5-rc.0 +ordered-dict@1.0.3-rc.0 +random@1.0.3-rc.0 +reactive-dict@1.1.0-rc.0 +reactive-var@1.0.5-rc.0 +reload@1.1.3-rc.0 +retry@1.0.3-rc.0 +routepolicy@1.0.5-rc.0 +session@1.1.0-rc.0 +spacebars@1.0.6-rc.0 +spacebars-compiler@1.0.5-rc.0 +templating@1.1.0-rc.0 +tracker@1.0.6-rc.0 +ui@1.0.6-rc.0 +underscore@1.0.3-rc.0 +url@1.0.4-rc.0 +webapp@1.2.0-rc.0 +webapp-hashing@1.0.3-rc.0 diff --git a/examples/localmarket/.meteor/release b/examples/localmarket/.meteor/release index 74a74cb1ba..1dd4eaaa23 100644 --- a/examples/localmarket/.meteor/release +++ b/examples/localmarket/.meteor/release @@ -1 +1 @@ -METEOR@1.0.3.2 +METEOR@1.0.4-rc.0 diff --git a/examples/localmarket/.meteor/versions b/examples/localmarket/.meteor/versions index 0a013c0194..e996eaab94 100644 --- a/examples/localmarket/.meteor/versions +++ b/examples/localmarket/.meteor/versions @@ -1,69 +1,67 @@ -accounts-base@1.1.3 -accounts-oauth@1.1.3 -accounts-twitter@1.0.3 -application-configuration@1.0.4 -autoupdate@1.1.5 -base64@1.0.2 -binary-heap@1.0.2 -blaze@2.0.4 -blaze-tools@1.0.2 -boilerplate-generator@1.0.2 -callback-hook@1.0.2 -check@1.0.4 -coffeescript@1.0.5 -ddp@1.0.14 -deps@1.0.6 -ejson@1.0.5 -email@1.0.5 -fastclick@1.0.2 -follower-livedata@1.0.3 -geojson-utils@1.0.2 -html-tools@1.0.3 -htmljs@1.0.3 -http@1.0.10 -id-map@1.0.2 +accounts-base@1.2.0-rc.0 +accounts-oauth@1.1.4-rc.0 +accounts-twitter@1.0.4-rc.0 +autoupdate@1.2.0-rc.0 +base64@1.0.3-rc.0 +binary-heap@1.0.3-rc.0 +blaze@2.1.0-rc.0 +blaze-tools@1.0.3-rc.0 +boilerplate-generator@1.0.3-rc.0 +callback-hook@1.0.3-rc.0 +check@1.0.5-rc.0 +coffeescript@1.0.6-rc.0 +ddp@1.1.0-rc.0 +deps@1.0.7-rc.0 +ejson@1.0.6-rc.0 +email@1.0.6-rc.0 +fastclick@1.0.3-rc.0 +geojson-utils@1.0.3-rc.0 +html-tools@1.0.4-rc.0 +htmljs@1.0.4-rc.0 +http@1.1.0-rc.0 +id-map@1.0.3-rc.0 iron:core@0.3.4 iron:dynamic-template@0.4.1 iron:layout@0.4.1 iron:router@0.9.4 -jquery@1.11.3 -jquery-waypoints@1.0.2 -json@1.0.2 -launch-screen@1.0.1 -less@1.0.12 -livedata@1.0.12 -localstorage@1.0.2 -logging@1.0.6 +jquery@1.11.3-rc.0_2 +jquery-waypoints@1.0.3-rc.0 +json@1.0.3-rc.0 +launch-screen@1.0.2-rc.0 +less@1.0.13-rc.0 +livedata@1.0.13-rc.0 +localstorage@1.0.3-rc.0 +logging@1.0.7-rc.0 mdg:camera@1.1.3 mdg:geolocation@1.0.2 -meteor@1.1.4 -meteor-platform@1.2.1 -minifiers@1.1.3 -minimongo@1.0.6 -mobile-status-bar@1.0.2 -mongo@1.0.11 -oauth@1.1.3 -oauth1@1.1.3 -observe-sequence@1.0.4 -ordered-dict@1.0.2 +meteor@1.1.5-rc.0 +meteor-platform@1.2.2-rc.0 +minifiers@1.1.4-rc.0 +minimongo@1.0.7-rc.0 +mobile-status-bar@1.0.3-rc.0 +mongo@1.1.0-rc.0 +oauth@1.1.4-rc.0 +oauth1@1.1.4-rc.0 +observe-sequence@1.0.5-rc.0 +ordered-dict@1.0.3-rc.0 percolate:velocityjs@1.1.0 percolate:wireframing@0.2.0 -random@1.0.2 -reactive-dict@1.0.5 -reactive-var@1.0.4 -reload@1.1.2 -retry@1.0.2 -routepolicy@1.0.4 -service-configuration@1.0.3 -session@1.0.5 -spacebars@1.0.5 -spacebars-compiler@1.0.4 -templating@1.0.11 +random@1.0.3-rc.0 +reactive-dict@1.1.0-rc.0 +reactive-var@1.0.5-rc.0 +reload@1.1.3-rc.0 +retry@1.0.3-rc.0 +routepolicy@1.0.5-rc.0 +service-configuration@1.0.4-rc.0 +session@1.1.0-rc.0 +spacebars@1.0.6-rc.0 +spacebars-compiler@1.0.5-rc.0 +templating@1.1.0-rc.0 tmeasday:publish-counts@0.3.4 -tracker@1.0.5 -twitter@1.1.3 -ui@1.0.5 -underscore@1.0.2 -url@1.0.3 -webapp@1.1.6 -webapp-hashing@1.0.2 +tracker@1.0.6-rc.0 +twitter@1.1.4-rc.0 +ui@1.0.6-rc.0 +underscore@1.0.3-rc.0 +url@1.0.4-rc.0 +webapp@1.2.0-rc.0 +webapp-hashing@1.0.3-rc.0 diff --git a/examples/todos/.meteor/release b/examples/todos/.meteor/release index 74a74cb1ba..1dd4eaaa23 100644 --- a/examples/todos/.meteor/release +++ b/examples/todos/.meteor/release @@ -1 +1 @@ -METEOR@1.0.3.2 +METEOR@1.0.4-rc.0 diff --git a/examples/todos/.meteor/versions b/examples/todos/.meteor/versions index 2f1253ab90..ba6a37e69d 100644 --- a/examples/todos/.meteor/versions +++ b/examples/todos/.meteor/versions @@ -1,62 +1,60 @@ -accounts-base@1.1.3 -accounts-password@1.0.6 -application-configuration@1.0.4 -autoupdate@1.1.5 -base64@1.0.2 -binary-heap@1.0.2 -blaze@2.0.4 -blaze-tools@1.0.2 -boilerplate-generator@1.0.2 -callback-hook@1.0.2 -check@1.0.4 -ddp@1.0.14 -deps@1.0.6 -ejson@1.0.5 -email@1.0.5 -fastclick@1.0.2 -follower-livedata@1.0.3 -geojson-utils@1.0.2 -html-tools@1.0.3 -htmljs@1.0.3 -http@1.0.10 -id-map@1.0.2 -insecure@1.0.2 +accounts-base@1.2.0-rc.0 +accounts-password@1.1.0-rc.0 +autoupdate@1.2.0-rc.0 +base64@1.0.3-rc.0 +binary-heap@1.0.3-rc.0 +blaze@2.1.0-rc.0 +blaze-tools@1.0.3-rc.0 +boilerplate-generator@1.0.3-rc.0 +callback-hook@1.0.3-rc.0 +check@1.0.5-rc.0 +ddp@1.1.0-rc.0 +deps@1.0.7-rc.0 +ejson@1.0.6-rc.0 +email@1.0.6-rc.0 +fastclick@1.0.3-rc.0 +geojson-utils@1.0.3-rc.0 +html-tools@1.0.4-rc.0 +htmljs@1.0.4-rc.0 +http@1.1.0-rc.0 +id-map@1.0.3-rc.0 +insecure@1.0.3-rc.0 iron:core@0.3.4 iron:dynamic-template@0.4.1 iron:layout@0.4.1 iron:router@0.9.4 -jquery@1.11.3 -json@1.0.2 -launch-screen@1.0.1 -less@1.0.12 -livedata@1.0.12 -localstorage@1.0.2 -logging@1.0.6 -meteor@1.1.4 -meteor-platform@1.2.1 -minifiers@1.1.3 -minimongo@1.0.6 -mobile-status-bar@1.0.2 -mongo@1.0.11 -npm-bcrypt@0.7.7 -observe-sequence@1.0.4 -ordered-dict@1.0.2 -random@1.0.2 -reactive-dict@1.0.5 -reactive-var@1.0.4 -reload@1.1.2 -retry@1.0.2 -routepolicy@1.0.4 -service-configuration@1.0.3 -session@1.0.5 -sha@1.0.2 -spacebars@1.0.5 -spacebars-compiler@1.0.4 -srp@1.0.2 -templating@1.0.11 -tracker@1.0.5 -ui@1.0.5 -underscore@1.0.2 -url@1.0.3 -webapp@1.1.6 -webapp-hashing@1.0.2 +jquery@1.11.3-rc.0_2 +json@1.0.3-rc.0 +launch-screen@1.0.2-rc.0 +less@1.0.13-rc.0 +livedata@1.0.13-rc.0 +localstorage@1.0.3-rc.0 +logging@1.0.7-rc.0 +meteor@1.1.5-rc.0 +meteor-platform@1.2.2-rc.0 +minifiers@1.1.4-rc.0 +minimongo@1.0.7-rc.0 +mobile-status-bar@1.0.3-rc.0 +mongo@1.1.0-rc.0 +npm-bcrypt@0.7.8_1 +observe-sequence@1.0.5-rc.0 +ordered-dict@1.0.3-rc.0 +random@1.0.3-rc.0 +reactive-dict@1.1.0-rc.0 +reactive-var@1.0.5-rc.0 +reload@1.1.3-rc.0 +retry@1.0.3-rc.0 +routepolicy@1.0.5-rc.0 +service-configuration@1.0.4-rc.0 +session@1.1.0-rc.0 +sha@1.0.3-rc.0 +spacebars@1.0.6-rc.0 +spacebars-compiler@1.0.5-rc.0 +srp@1.0.3-rc.0 +templating@1.1.0-rc.0 +tracker@1.0.6-rc.0 +ui@1.0.6-rc.0 +underscore@1.0.3-rc.0 +url@1.0.4-rc.0 +webapp@1.2.0-rc.0 +webapp-hashing@1.0.3-rc.0 From 90a39ef3bf3a9a446fbf7c6cc42f3940dc172b2e Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 5 Mar 2015 23:25:40 -0800 Subject: [PATCH 09/56] Add 1.0.4 header to History --- History.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/History.md b/History.md index ad1713deb7..db4e586025 100644 --- a/History.md +++ b/History.md @@ -1,5 +1,7 @@ ## v.NEXT +## v1.0.4, 2015-Mar-?? + ### Mongo Driver and Livequery * Meteor is now tested against MongoDB 2.6 (and the bundled version used by From 56c735e3e9acf8dd172d7584f9a8ad99a5f9a486 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Fri, 6 Mar 2015 09:59:51 -0800 Subject: [PATCH 10/56] Add #3793 to History --- History.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/History.md b/History.md index db4e586025..4d3ca27704 100644 --- a/History.md +++ b/History.md @@ -191,7 +191,8 @@ * Fix crashes in `meteor search --show-all` and `meteor search --maintainer`. \#3636 -* Kill PhantomJS processes after `meteor --test`. #3205 +* Kill PhantomJS processes after `meteor --test`, and only run the app + once. #3205 #3793 * Give a better error when Mongo fails to start up due to a full disk. #2378 From 3cf30fbc1744da403c54a9a8d49cabfb79a95ae5 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Mon, 9 Mar 2015 11:36:51 -0700 Subject: [PATCH 11/56] MongoDB 3.0.0 works Namely, test-packages works when MONGO_URL and MONGO_OPLOG_URL point to a 3.0.0 mongod. --- History.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/History.md b/History.md index 4d3ca27704..b6f5de147f 100644 --- a/History.md +++ b/History.md @@ -4,10 +4,10 @@ ### Mongo Driver and Livequery -* Meteor is now tested against MongoDB 2.6 (and the bundled version used by - `meteor run` has been upgraded). It should still work fine with MongoDB 2.4. - Previous versions of Meteor mostly worked with MongoDB 2.6, with a few - caveats: +* Meteor is now tested against MongoDB 2.6 by default (and the bundled version + used by `meteor run` has been upgraded). It should still work fine with + MongoDB 2.4. Previous versions of Meteor mostly worked with MongoDB 2.6, with + a few caveats: - Some upsert invocations did not work with MongoDB in previous versions of Meteor. @@ -20,9 +20,10 @@ driver is slightly different in MongoDB 2.6; see https://github.com/meteor/meteor/wiki/Oplog-Observe-Driver for details. - (We have not tested Meteor against the recently-released MongoDB 3.0, but as - of this release, Meteor uses a version of the Node Mongo driver that is - compatible with MongoDB 3.0 and it is likely that it will work.) + We have also tested Meteor against the recently-released MongoDB 3.0.0. + While we are not shipping MongoDB 3.0 with Meteor in this release (preferring + to wait until its deployment is more widespread), we believe that Meteor + 1.0.4 apps will work fine when used with MongoDB 3.0.0 servers. * Fix 0.8.1 regression where failure to connect to Mongo at startup would log a message but otherwise be ignored. Now it crashes the process, as it did before From 5c7873dfa8d419d150d51c3207313414fa0ed060 Mon Sep 17 00:00:00 2001 From: Sashko Stubailo Date: Mon, 9 Mar 2015 13:36:23 -0700 Subject: [PATCH 12/56] Revert "Make event handlers get called with target's view" This reverts commit 72887bb0ee95d3358846814f80117ec16b0c0eb9. --- packages/blaze/view.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/blaze/view.js b/packages/blaze/view.js index b8d429052f..05a1389d63 100644 --- a/packages/blaze/view.js +++ b/packages/blaze/view.js @@ -817,10 +817,9 @@ Blaze._addEventMap = function (view, eventMap, thisInHandler) { return null; var handlerThis = thisInHandler || this; var handlerArgs = arguments; - return Blaze._withCurrentView(Blaze.getView(evt.currentTarget), - function () { - return handler.apply(handlerThis, handlerArgs); - }); + return Blaze._withCurrentView(view, function () { + return handler.apply(handlerThis, handlerArgs); + }); }, range, function (r) { return r.parentRange; From ed60db429c051bb6a919d1319cbdaa4ab1d84031 Mon Sep 17 00:00:00 2001 From: Sashko Stubailo Date: Mon, 9 Mar 2015 13:37:45 -0700 Subject: [PATCH 13/56] Change documentation for Template.currentData in events --- packages/blaze/template.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/blaze/template.js b/packages/blaze/template.js index fddef8f4ed..a12f9e15ca 100644 --- a/packages/blaze/template.js +++ b/packages/blaze/template.js @@ -490,10 +490,10 @@ Template.instance = function () { * * - Inside an `onCreated`, `onRendered`, or `onDestroyed` callback, returns * the data context of the template. + * - Inside an event handler, returns the data context of the template on which + * this event handler was defined. * - Inside a helper, returns the data context of the DOM node where the helper * was used. - * - Inside an event handler, returns the data context of the element that fired - * the event. * * Establishes a reactive dependency on the result. * @locus Client From 7b8714da6e6cfd878b813518e20b3a4c4eea48b3 Mon Sep 17 00:00:00 2001 From: Sashko Stubailo Date: Mon, 9 Mar 2015 13:39:44 -0700 Subject: [PATCH 14/56] Revert "Tests for `Template.currentData` and `Template.parentData`" This reverts commit f2840103ca23dedd458524ad4e01609069ce28cb. Conflicts: packages/spacebars-tests/template_tests.html packages/spacebars-tests/template_tests.js --- packages/spacebars-tests/template_tests.html | 8 --- packages/spacebars-tests/template_tests.js | 52 -------------------- 2 files changed, 60 deletions(-) diff --git a/packages/spacebars-tests/template_tests.html b/packages/spacebars-tests/template_tests.html index fd1d469eb4..6ff3a5582a 100644 --- a/packages/spacebars-tests/template_tests.html +++ b/packages/spacebars-tests/template_tests.html @@ -1028,14 +1028,6 @@ Hi there! {{> Template.contentBlock}} - - ``` +Another example where the subscription depends on the data context: + +```js +Template.comments.onCreated(function () { + // Use this.subscribe with the data context reactively + this.autorun(function () { + var dataContext = Template.currentData(); + this.subscribe("comments", dataContext.postId); + }) +}); +``` + +```html +{{dstache}}#with post}} + {{dstache}}> comments postId=_id}} +{{dstache}}/with}} +``` + {{> autoApiBox "Blaze.TemplateInstance#view"}} {{> autoApiBox "Template.registerHelper"}} From aca23adb7038db70266fb0a9cde2e16f266e1e51 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Wed, 11 Mar 2015 15:51:49 -0700 Subject: [PATCH 39/56] Update docs for 1.0.4-rc.3 --- docs/.meteor/release | 2 +- docs/.meteor/versions | 10 +++++----- docs/client/data.js | 23 +++++++++++++++++++++-- docs/client/helpers.js | 2 +- 4 files changed, 28 insertions(+), 9 deletions(-) diff --git a/docs/.meteor/release b/docs/.meteor/release index 1dd4eaaa23..91f0d7a00c 100644 --- a/docs/.meteor/release +++ b/docs/.meteor/release @@ -1 +1 @@ -METEOR@1.0.4-rc.0 +METEOR@1.0.4-rc.3 diff --git a/docs/.meteor/versions b/docs/.meteor/versions index 80ca1dc6e1..adc28dfb25 100644 --- a/docs/.meteor/versions +++ b/docs/.meteor/versions @@ -2,13 +2,13 @@ appcache@1.0.4-rc.0 autoupdate@1.2.0-rc.0 base64@1.0.3-rc.0 binary-heap@1.0.3-rc.0 -blaze@2.1.0-rc.0 +blaze@2.1.0-rc.2 blaze-tools@1.0.3-rc.0 boilerplate-generator@1.0.3-rc.0 callback-hook@1.0.3-rc.0 check@1.0.5-rc.0 coffeescript@1.0.6-rc.0 -ddp@1.1.0-rc.0 +ddp@1.1.0-rc.1 deps@1.0.7-rc.0 ejson@1.0.6-rc.0 fastclick@1.0.3-rc.0 @@ -28,7 +28,7 @@ logging@1.0.7-rc.0 markdown@1.0.4-rc.0 meteor@1.1.5-rc.0 meteor-platform@1.2.2-rc.0 -minifiers@1.1.4-rc.0 +minifiers@1.1.4-rc.1 minimongo@1.0.7-rc.0 mobile-status-bar@1.0.3-rc.0 mongo@1.1.0-rc.0 @@ -49,10 +49,10 @@ spacebars@1.0.6-rc.0 spacebars-compiler@1.0.5-rc.0 spiderable@1.0.7-rc.0 standard-app-packages@1.0.5-rc.0 -templating@1.1.0-rc.0 +templating@1.1.0-rc.1 tracker@1.0.6-rc.0 ui@1.0.6-rc.0 underscore@1.0.3-rc.0 url@1.0.4-rc.0 -webapp@1.2.0-rc.0 +webapp@1.2.0-rc.1 webapp-hashing@1.0.3-rc.0 diff --git a/docs/client/data.js b/docs/client/data.js index 3a5071f20e..e4a4dd5f34 100644 --- a/docs/client/data.js +++ b/docs/client/data.js @@ -494,7 +494,17 @@ DocsData = { "longname": "Accounts.setPassword", "memberof": "Accounts", "name": "setPassword", - "options": [], + "options": [ + { + "description": "

Logout all current connections with this userId (default: true)

", + "name": "logout", + "type": { + "names": [ + "Object" + ] + } + } + ], "params": [ { "description": "

The id of the user to update.

", @@ -513,6 +523,15 @@ DocsData = { "String" ] } + }, + { + "name": "options", + "optional": true, + "type": { + "names": [ + "Object" + ] + } } ], "scope": "static", @@ -5355,7 +5374,7 @@ DocsData = { "options": [], "params": [], "scope": "static", - "summary": "- Inside an `onCreated`, `onRendered`, or `onDestroyed` callback, returns\nthe data context of the template.\n- Inside a helper, returns the data context of the DOM node where the helper\nwas used.\n- Inside an event handler, returns the data context of the element that fired\nthe event.\n\nEstablishes a reactive dependency on the result." + "summary": "- Inside an `onCreated`, `onRendered`, or `onDestroyed` callback, returns\nthe data context of the template.\n- Inside an event handler, returns the data context of the template on which\nthis event handler was defined.\n- Inside a helper, returns the data context of the DOM node where the helper\nwas used.\n\nEstablishes a reactive dependency on the result." }, "Template.dynamic": { "istemplate": "true", diff --git a/docs/client/helpers.js b/docs/client/helpers.js index eb0aed864f..25f1e5f25b 100644 --- a/docs/client/helpers.js +++ b/docs/client/helpers.js @@ -1,4 +1,4 @@ -release = Meteor.release ? "1.0.3.2" : "(checkout)"; +release = Meteor.release ? "1.0.4-rc.3" : "(checkout)"; Template.registerHelper("release", release); From b652770229dc3edc8daacef041b9ab9aac5a0238 Mon Sep 17 00:00:00 2001 From: Sashko Stubailo Date: Wed, 11 Mar 2015 16:30:45 -0700 Subject: [PATCH 40/56] Fix the example to use self instead of this --- docs/client/full-api/api/templates.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/client/full-api/api/templates.md b/docs/client/full-api/api/templates.md index a94da9909e..384ed97530 100644 --- a/docs/client/full-api/api/templates.md +++ b/docs/client/full-api/api/templates.md @@ -219,11 +219,13 @@ Another example where the subscription depends on the data context: ```js Template.comments.onCreated(function () { - // Use this.subscribe with the data context reactively - this.autorun(function () { + var self = this; + + // Use self.subscribe with the data context reactively + self.autorun(function () { var dataContext = Template.currentData(); - this.subscribe("comments", dataContext.postId); - }) + self.subscribe("comments", dataContext.postId); + }); }); ``` From c6ea68f9b321a8012c5b9173e8bacfbcfec0ca27 Mon Sep 17 00:00:00 2001 From: Sashko Stubailo Date: Wed, 11 Mar 2015 18:21:19 -0700 Subject: [PATCH 41/56] Make meteor create --package not use prefix It used to create a directory with an underscore instead of a colon Now, it just removes the prefix. In cases where the name of the package has more than one colon or starts or ends witha colon, we report an error. --- History.md | 8 +++++++- .../package-version-parser-tests.js | 3 +++ .../package-version-parser/package-version-parser.js | 8 ++++++++ tools/commands.js | 11 +++++++++-- tools/tests/package-tests.js | 2 +- tools/tests/publish.js | 2 +- 6 files changed, 29 insertions(+), 5 deletions(-) diff --git a/History.md b/History.md index 55486ce510..fbb99a6c2f 100644 --- a/History.md +++ b/History.md @@ -186,9 +186,15 @@ * After killing existing `mongod` servers, also clear the `mongod.lock` file. * Stricter validation for package names: they cannot begin with a hyphen, end - with a dot, or contain two consecutive dots. (No packages on Atmosphere fail + with a dot, contain two consecutive dots, contain more than one colon, or + start or end with a colon. (No packages on Atmosphere fail this validation.) +* `meteor create --package` now no longer creates a directory with the full + name of the package, since Windows file systems cannot have colon characters + in file paths. Instead, the command now creates a directory named the same + as the second part of the package name after the colon (without the username + prefix). ### Meteor Mobile diff --git a/packages/package-version-parser/package-version-parser-tests.js b/packages/package-version-parser/package-version-parser-tests.js index ff54ff2ec2..33cf07d9cb 100644 --- a/packages/package-version-parser/package-version-parser-tests.js +++ b/packages/package-version-parser/package-version-parser-tests.js @@ -29,6 +29,9 @@ Tinytest.add("package-version-parser - validatePackageName", function (test) { badName("-x", /not begin with a hyphen/); badName("--x", /not begin with a hyphen/); badName("0.0", /must contain/); + badName("a:a:a", /more than one colon/); + badName(":a", /start or end with a colon/); + badName("a:", /start or end with a colon/); // these are ok PackageVersion.validatePackageName('x-'); diff --git a/packages/package-version-parser/package-version-parser.js b/packages/package-version-parser/package-version-parser.js index 570c4a267d..063b6fabbc 100644 --- a/packages/package-version-parser/package-version-parser.js +++ b/packages/package-version-parser/package-version-parser.js @@ -393,6 +393,14 @@ PV.validatePackageName = function (packageName, options) { } // (There is already a package ending with a `-` and one with two consecutive `-` // in troposphere, though they both look like typos.) + + if (packageName.split(":").length > 2) { + throwVersionParserError("Package names may not have more than one colon."); + } + + if (packageName[0] === ":" || __.last(packageName) === ":") { + throwVersionParserError("Package names may not start or end with a colon."); + } }; var throwVersionParserError = function (message) { diff --git a/tools/commands.js b/tools/commands.js index 3ca11edf3e..1ec52189ee 100644 --- a/tools/commands.js +++ b/tools/commands.js @@ -486,7 +486,14 @@ main.registerCommand({ utils.validatePackageNameOrExit( packageName, {detailedColonExplanation: true}); - var fsName = colonConverter.convert(packageName); + // When we create a package, avoid introducing a colon into the file system + // by naming the directory after the package name without the prefix. + var fsName = packageName; + if (packageName.indexOf(":") !== -1) { + var split = packageName.split(":"); + fsName = split[1]; + } + var packageDir; if (options.appDir) { packageDir = files.pathResolve(options.appDir, 'packages', fsName); @@ -549,7 +556,7 @@ main.registerCommand({ // match the name of the package exactly, therefore we should tell people // where it was created. Console.info( - packageName + ": created in ", + packageName + ": created in", Console.path(displayPackageDir) ); diff --git a/tools/tests/package-tests.js b/tools/tests/package-tests.js index 7ca89ac993..aba75cdd7d 100644 --- a/tools/tests/package-tests.js +++ b/tools/tests/package-tests.js @@ -742,7 +742,7 @@ selftest.define("package skeleton creates correct versionsFrom", function () { var s = new Sandbox({ warehouse: { v1: { recommended: true } } }); var token = utils.randomToken(); var fullPackageName = "test:" + token; - var fsPackageName = "test_" + token; + var fsPackageName = token; var run = s.run("create", "--package", fullPackageName); run.waitSecs(15); diff --git a/tools/tests/publish.js b/tools/tests/publish.js index a9d63bbbbe..73c81b774e 100644 --- a/tools/tests/publish.js +++ b/tools/tests/publish.js @@ -16,7 +16,7 @@ selftest.define("create-publish-and-search", testUtils.login(s, username, password); var packageName = utils.randomToken(); var fullPackageName = username + ":" + packageName; - var fsPackageName = username + "_" + packageName; + var fsPackageName = packageName; var githubUrl = "http://github.com/foo/bar"; var summary = "Package for test"; From d770d813997cdc179daed74e28e422c2dc737298 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 12 Mar 2015 17:59:44 -0700 Subject: [PATCH 42/56] 1.0.4-rc.4 --- packages/accounts-password/package.js | 2 +- packages/meteor-tool/package.js | 2 +- packages/minifiers/package.js | 2 +- packages/package-version-parser/package.js | 2 +- packages/templating/package.js | 2 +- scripts/admin/meteor-release-experimental.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/accounts-password/package.js b/packages/accounts-password/package.js index 27aafcbe6f..5578b994a3 100644 --- a/packages/accounts-password/package.js +++ b/packages/accounts-password/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Password support for accounts", - version: "1.1.0-rc.1" + version: "1.1.0-rc.2" }); Package.onUse(function(api) { diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index 997fa75e26..b129224a75 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "The Meteor command-line tool", - version: '1.0.42-rc.4' + version: '1.0.42-rc.5' }); Package.includeTool(); diff --git a/packages/minifiers/package.js b/packages/minifiers/package.js index 0961ad05f5..eb381e65a8 100644 --- a/packages/minifiers/package.js +++ b/packages/minifiers/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "JavaScript and CSS minifiers", - version: "1.1.4-rc.1" + version: "1.1.4-rc.2" }); Npm.depends({ diff --git a/packages/package-version-parser/package.js b/packages/package-version-parser/package.js index a055052b28..0f38c09023 100644 --- a/packages/package-version-parser/package.js +++ b/packages/package-version-parser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Parses Meteor Smart Package version strings", - version: "3.0.2-rc.1" + version: "3.0.2-rc.2" }); Package.onUse(function (api) { diff --git a/packages/templating/package.js b/packages/templating/package.js index 47e9afdbfe..07d95129b9 100644 --- a/packages/templating/package.js +++ b/packages/templating/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Allows templates to be defined in .html files", - version: '1.1.0-rc.1' + version: '1.1.0-rc.2' }); // Today, this package is closely intertwined with Handlebars, meaning diff --git a/scripts/admin/meteor-release-experimental.json b/scripts/admin/meteor-release-experimental.json index d6eb6f4904..3bda57d16e 100644 --- a/scripts/admin/meteor-release-experimental.json +++ b/scripts/admin/meteor-release-experimental.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "1.0.4-rc.3", + "version": "1.0.4-rc.4", "recommended": false, "official": false, "description": "The Official Meteor Distribution" From d591a288e188747a7bcbb36af41619ce27eede5b Mon Sep 17 00:00:00 2001 From: David Glasser Date: Fri, 13 Mar 2015 18:49:30 -0700 Subject: [PATCH 43/56] Fix Android emulator access Also fix odd use of `false` where everything else used `true`. --- tools/commands-cordova.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/commands-cordova.js b/tools/commands-cordova.js index 9ca64531ed..767aaf421c 100644 --- a/tools/commands-cordova.js +++ b/tools/commands-cordova.js @@ -1485,7 +1485,13 @@ var consumeControlFile = function ( // If the remote server domain is known, allow access to it for xhr and DDP // connections. if (serverDomain) { - accessRules['*://' + serverDomain + '/*'] = false; + accessRules['*://' + serverDomain + '/*'] = true; + // Android talks to localhost over 10.0.2.2. This config file is used for + // multiple platforms, so any time that we say the server is on localhost we + // should also say it is on 10.0.2.2. + if (serverDomain === 'localhost') { + accessRules['*://10.0.2.2/*'] = true; + } } var setIcon = function (size, name) { From 1d8e5f7a4ec5b8b51333eccfc58e36d1bad3a241 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Mon, 16 Mar 2015 12:31:50 -0700 Subject: [PATCH 44/56] 1.0.4-rc.5 --- packages/meteor-tool/package.js | 2 +- scripts/admin/meteor-release-experimental.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index b129224a75..9246af9597 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "The Meteor command-line tool", - version: '1.0.42-rc.5' + version: '1.0.42-rc.6' }); Package.includeTool(); diff --git a/scripts/admin/meteor-release-experimental.json b/scripts/admin/meteor-release-experimental.json index 3bda57d16e..324bcca689 100644 --- a/scripts/admin/meteor-release-experimental.json +++ b/scripts/admin/meteor-release-experimental.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "1.0.4-rc.4", + "version": "1.0.4-rc.5", "recommended": false, "official": false, "description": "The Official Meteor Distribution" From 04228e06c0fd510f6d959dd512a478a20eef228f Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 17 Mar 2015 10:28:32 -0700 Subject: [PATCH 45/56] Update contributors list --- .mailmap | 19 +++++++++++++++++-- History.md | 6 ++++++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/.mailmap b/.mailmap index 9e627631bf..0a2902a157 100644 --- a/.mailmap +++ b/.mailmap @@ -14,6 +14,7 @@ # (Note that this script always outputs GITHUB so you should manually # check to see if they are an MDG employee!) +GITHUB: 0a- GITHUB: adnissen GITHUB: aldeed GITHUB: AlexeyMK @@ -21,21 +22,26 @@ GITHUB: andylash GITHUB: ansman GITHUB: anstarovoyt GITHUB: apendua +GITHUB: awatson1978 GITHUB: awwx GITHUB: babenzele GITHUB: benweissmann +GITHUB: bwhitty GITHUB: Cangit GITHUB: chrisbridgett +GITHUB: christianbundy GITHUB: cmather GITHUB: codeinthehole GITHUB: colllin GITHUB: cryptoquick +GITHUB: d4nyll GITHUB: dandv +GITHUB: DanielDent GITHUB: DanielDent GITHUB: DanielDornhardt GITHUB: davegonzalez -GITHUB: DenisGorbachev GITHUB: DenisGorbachev +GITHUB: DenisGorbachev GITHUB: ducdigital GITHUB: duckspeaker GITHUB: ecwyne @@ -47,9 +53,12 @@ GITHUB: FooBarWidget GITHUB: FredericoC GITHUB: Gaelan GITHUB: graemian +GITHUB: gsuess +GITHUB: hwillson GITHUB: icellan GITHUB: ImtiazMajeed GITHUB: jacott +GITHUB: jakozaur GITHUB: JamesLefrere GITHUB: jbruni GITHUB: jfhamlin @@ -74,8 +83,9 @@ GITHUB: mquandalle GITHUB: musically-ut GITHUB: nathan-muir GITHUB: Neftedollar -GITHUB: ograycode +GITHUB: netanelgilad GITHUB: ogourment +GITHUB: ograycode GITHUB: OyoKooN GITHUB: paulswartz GITHUB: pcjpcj2 @@ -87,6 +97,7 @@ GITHUB: prapicault GITHUB: Primigenus GITHUB: pscanf GITHUB: queso +GITHUB: rbabayoff GITHUB: rcy GITHUB: rdickert GITHUB: restebanez @@ -97,10 +108,12 @@ GITHUB: richguan GITHUB: rick-golden-healthagen GITHUB: rissem GITHUB: RobertLowe +GITHUB: romanzolotarev GITHUB: rosh93 GITHUB: ryw GITHUB: rzymek GITHUB: sdarnell +GITHUB: Siilwyn GITHUB: smallhelm GITHUB: subhog GITHUB: svda @@ -140,5 +153,7 @@ METEOR: sixolet METEOR: Slava METEOR: Slava METEOR: stubailo +METEOR: stubailo METEOR: stubailo +METEOR: stubailo METEOR: yyx990803 diff --git a/History.md b/History.md index fbb99a6c2f..deaebc0076 100644 --- a/History.md +++ b/History.md @@ -260,6 +260,12 @@ - request: 2.53.0 (from 2.47.0) +Patches contributed by GitHub users 0a-, awatson1978, awwx, bwhitty, +christianbundy, d4nyll, dandv, DanielDent, DenisGorbachev, fay-jai, gsuess, +hwillson, jakozaur, meonkeys, mitar, netanelgilad, queso, rbabayoff, RobertLowe, +romanzolotarev, Siilwyn, and tmeasday. + + ## v.1.0.3.2, 2015-Feb-25 * Fix regression in 1.0.3 where the `meteor` tool could crash when downloading From efdfe62331b8d83490820f2a9b2a9aa91fb47f70 Mon Sep 17 00:00:00 2001 From: Sashko Stubailo Date: Tue, 17 Mar 2015 10:55:02 -0700 Subject: [PATCH 46/56] Validate number of colons in package name on create Instead of in the general package version parser --- .../package-version-parser-tests.js | 1 - .../package-version-parser/package-version-parser.js | 4 ---- tools/commands.js | 12 ++++++++++++ 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/packages/package-version-parser/package-version-parser-tests.js b/packages/package-version-parser/package-version-parser-tests.js index 33cf07d9cb..c045317602 100644 --- a/packages/package-version-parser/package-version-parser-tests.js +++ b/packages/package-version-parser/package-version-parser-tests.js @@ -29,7 +29,6 @@ Tinytest.add("package-version-parser - validatePackageName", function (test) { badName("-x", /not begin with a hyphen/); badName("--x", /not begin with a hyphen/); badName("0.0", /must contain/); - badName("a:a:a", /more than one colon/); badName(":a", /start or end with a colon/); badName("a:", /start or end with a colon/); diff --git a/packages/package-version-parser/package-version-parser.js b/packages/package-version-parser/package-version-parser.js index 063b6fabbc..495f8c05dd 100644 --- a/packages/package-version-parser/package-version-parser.js +++ b/packages/package-version-parser/package-version-parser.js @@ -394,10 +394,6 @@ PV.validatePackageName = function (packageName, options) { // (There is already a package ending with a `-` and one with two consecutive `-` // in troposphere, though they both look like typos.) - if (packageName.split(":").length > 2) { - throwVersionParserError("Package names may not have more than one colon."); - } - if (packageName[0] === ":" || __.last(packageName) === ":") { throwVersionParserError("Package names may not start or end with a colon."); } diff --git a/tools/commands.js b/tools/commands.js index 1ec52189ee..0671018256 100644 --- a/tools/commands.js +++ b/tools/commands.js @@ -491,6 +491,18 @@ main.registerCommand({ var fsName = packageName; if (packageName.indexOf(":") !== -1) { var split = packageName.split(":"); + + if (split.length > 2) { + // It may seem like this check should be inside package version parser's + // validatePackageName, but we decided to name test packages like this: + // local-test:prefix:name, so we have to support building packages + // with at least two colons. Therefore we will at least try to + // discourage people from putting a ton of colons in their package names + // here. + Console.error(packageName + + ": Package names may not have more than one colon."); + } + fsName = split[1]; } From cfb21f43e50796316b39ce5433e3aab3c02712e8 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 17 Mar 2015 10:56:08 -0700 Subject: [PATCH 47/56] Move third-party licenses into subdirectory This should make them easier to update. --- LICENSE.txt | 4038 +------------------------------------ LICENSES/Apache.txt | 198 ++ LICENSES/Artistic.txt | 16 + LICENSES/BSD.txt | 844 ++++++++ LICENSES/CDDL.txt | 32 + LICENSES/DWTFYWT.txt | 51 + LICENSES/Eclipse.txt | 89 + LICENSES/ISC.txt | 46 + LICENSES/IntelHAXM.txt | 33 + LICENSES/MIT.txt | 1042 ++++++++++ LICENSES/MongoDB.txt | 259 +++ LICENSES/Node.txt | 570 ++++++ LICENSES/PublicDomain.txt | 68 + LICENSES/andris9.txt | 33 + LICENSES/browserify.txt | 77 + LICENSES/heapdump.txt | 26 + LICENSES/ieee754.txt | 69 + LICENSES/jsdoc.txt | 382 ++++ LICENSES/libuv.txt | 55 + LICENSES/nan.txt | 58 + LICENSES/through2.txt | 53 + LICENSES/tough-cookie.txt | 93 + tools/isopack.js | 4 +- 23 files changed, 4097 insertions(+), 4039 deletions(-) create mode 100644 LICENSES/Apache.txt create mode 100644 LICENSES/Artistic.txt create mode 100644 LICENSES/BSD.txt create mode 100644 LICENSES/CDDL.txt create mode 100644 LICENSES/DWTFYWT.txt create mode 100644 LICENSES/Eclipse.txt create mode 100644 LICENSES/ISC.txt create mode 100644 LICENSES/IntelHAXM.txt create mode 100644 LICENSES/MIT.txt create mode 100644 LICENSES/MongoDB.txt create mode 100644 LICENSES/Node.txt create mode 100644 LICENSES/PublicDomain.txt create mode 100644 LICENSES/andris9.txt create mode 100644 LICENSES/browserify.txt create mode 100644 LICENSES/heapdump.txt create mode 100644 LICENSES/ieee754.txt create mode 100644 LICENSES/jsdoc.txt create mode 100644 LICENSES/libuv.txt create mode 100644 LICENSES/nan.txt create mode 100644 LICENSES/through2.txt create mode 100644 LICENSES/tough-cookie.txt diff --git a/LICENSE.txt b/LICENSE.txt index 251f87f762..e97f2441d6 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -14,4041 +14,5 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ==================================================================== This license applies to all code in Meteor that is not an externally maintained library. Externally maintained libraries have their own -licenses, included below: +licenses, included in the LICENSES directory. ==================================================================== - - -====================== -MIT Licensed Libraries -====================== - -The following libraries are licensed under the MIT License: - -""" -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. -""" - -Although they are distributed under the same license as Meteor, they -retain the copyright of the original author. - ----------- -connect: https://github.com/senchalabs/connect ----------- - -Copyright (c) 2010 Sencha Inc. -Copyright (c) 2011 LearnBoost -Copyright (c) 2011 TJ Holowaychuk - ----------- -gzippo: https://github.com/tomgco/gzippo ----------- - -Copyright (c) 2011 Tom Gallacher - - ----------- -coffee-script: https://github.com/jashkenas/coffee-script ----------- - -Copyright (c) 2009-2012 Jeremy Ashkenas - - ----------- -mime: https://github.com/bentomas/node-mime ----------- - -Copyright (c) 2010 Benjamin Thomas, Robert Kieffer - - ----------- -handlebars: https://github.com/wycats/handlebars.js/ ----------- - -Copyright (C) 2011 by Yehuda Katz - - ----------- -clean-css: https://github.com/GoalSmashers/clean-css ----------- - -Copyright (c) 2011 GoalSmashers.com - - ----------- -progress: https://github.com/visionmedia/node-progress -qs: https://github.com/visionmedia/node-querystring -debug: https://github.com/visionmedia/debug -nib: https://github.com/visionmedia/nib -bytes: https://github.com/visionmedia/bytes.js -commander: https://github.com/visionmedia/commander.js -fresh: https://github.com/visionmedia/node-fresh -github-url-from-git: https://github.com/visionmedia/node-github-url-from-git -pause: https://github.com/visionmedia/node-pause -range-parser: https://github.com/visionmedia/node-range-parser -send: https://github.com/visionmedia/send -methods: https://github.com/visionmedia/node-methods -css-parse: https://github.com/reworkcss/css-parse -css-stringify: https://github.com/reworkcss/css-stringify -callsite: https://github.com/visionmedia/callsite -indexof: https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz -escape-html: https://github.com/component/escape-html -express: https://github.com/strongloop/express ----------- - -Copyright (c) 2010 TJ Holowaychuk -Copyright (c) 2011 TJ Holowaychuk -Copyright (c) 2012 TJ Holowaychuk -Copyright (c) 2013 TJ Holowaychuk -Copyright (c) 2011, 2013 TJ Holowaychuk -Copyright (c) 2009-2014 TJ Holowaychuk - - ----------- -fibers: https://github.com/laverdet/node-fibers ----------- - -Copyright 2011 Marcel Laverdet - - ----------- -http-proxy: https://github.com/nodejitsu/node-http-proxy ----------- - -Copyright (c) 2010 Charlie Robbins, Mikeal Rogers, Fedor Indutny, & Marak Squires - - ----------- -sockjs: https://github.com/sockjs/sockjs-client ----------- - -Copyright (C) 2011 VMware, Inc. - - ----------- -alea: http://baagoe.org/en/wiki/Better_random_numbers_for_javascript ----------- - -Copyright (C) 2010 by Johannes Baagøe - - ----------- -jquery: https://github.com/jquery/jquery ----------- - -Copyright (c) 2011 John Resig, http://jquery.com/ - - ----------- -underscore: https://github.com/documentcloud/underscore -backbone: https://github.com/documentcloud/backbone/ -underscore-contrib: https://github.com/documentcloud/underscore-contrib ----------- - -Copyright (c) 2009-2012 Jeremy Ashkenas, DocumentCloud -Copyright (c) 2013 Jeremy Ashkenas, Michael Fogus, DocumentCloud and Investigative Reporters & Editors - - ----------- -amplify: https://github.com/appendto/amplify ----------- - -Copyright 2011 appendTo LLC. (http://appendto.com/team) - - ----------- -connect-gzip: https://github.com/nateps/connect-gzip ----------- - -Copyright (c) 2011 Nate Smith - - ----------- -socket.io: https://github.com/learnboost/socket.io -ms: https://github.com/guille/ms.js ----------- - -Copyright (c) 2011 Guillermo Rauch - - ----------- -stylus: https://github.com/learnboost/stylus ----------- - -Copyright (c) 2010 LearnBoost - - ----------- -jquery-waypoints: https://github.com/imakewebthings/jquery-waypoints ----------- - -Copyright (c) 2011-2012 Caleb Troughton - - ----------- -jquery-layout: http://layout.jquery-dev.net/ ----------- - -Copyright (c) 2008 - Fabrizio Balliano (http://www.fabrizioballiano.net) - Kevin Dalman (http://allpro.net) - - ----------- -rbytes: https://github.com/akdubya/rbytes ----------- - -Copyright (c) 2010 Aleksander Williams - - ----------- -colors: https://github.com/Marak/colors.js ----------- - -Copyright (c) 2010 -Marak Squires -Alexis Sellier (cloudhead) - - ----------- -pkginfo: https://github.com/indexzero/node-pkginfo ----------- - -Copyright (c) 2010 Charlie Robbins. - ----------- -underscore.string: https://github.com/epeli/underscore.string ----------- - -Copyright (c) 2011 Esa-Matti Suuronen esa-matti@suuronen.org - - ----------- -node-gyp: https://github.com/TooTallNate/node-gyp -keypress: https://github.com/TooTallNate/keypress -bindings: https://github.com/TooTallNate/node-bindings -plist-with-patches: https://github.com/agrieve/node-plist ----------- - -Copyright (c) 2010-2011- Nathan Rajlich -Copyright (c) 2012 Nathan Rajlich - - - ----------- -node-uuid: https://github.com/broofa/node-uuid ----------- - -Copyright (c) 2010 Robert Kieffer - - ----------- -ansi: https://github.com/TooTallNate/ansi.js ----------- - -Copyright (c) 2012 Nathan Rajlich - - ----------- -faye-websocket: https://github.com/faye/faye-websocket-node -websocket-driver: https://github.com/faye/websocket-driver-node ----------- - -Copyright (c) 2009-2013 James Coglan -Copyright (c) 2010-2013 James Coglan - - ----------- -cssom: https://github.com/NV/CSSOM ----------- - -Copyright (c) Nikita Vasilyev - - ----------- -yamlparser: https://github.com/h4evr/commonjs-javascript-yaml-parser ----------- - -Copyright (c) 2011 Diogo Costa (costa.h4evr@gmail.com) - - ----------- -semver: https://github.com/isaacs/node-semver -abbrev: https://github.com/isaacs/abbrev-js -graceful-fs: https://github.com/isaacs/node-graceful-fs -lru-cache: https://github.com/isaacs/node-lru-cache -proto-list: https://github.com/isaacs/proto-list -rimraf: https://github.com/isaacs/rimraf -minimatch: https://github.com/isaacs/minimatch -ini: https://github.com/isaacs/ini -nopt: https://github.com/isaacs/nopt -slide: https://github.com/isaacs/slide-flow-control -which: https://github.com/isaacs/node-which -minimatch: https://github.com/isaacs/minimatch -core-util-is: https://github.com/isaacs/core-util-is -rimraf: https://github.com/isaacs/rimraf ----------- - -Copyright 2009, 2010, 2011 Isaac Z. Schlueter. -All rights reserved. - - ----------- -archy: https://github.com/substack/node-archy -astw: https://github.com/substack/astw -binary: https://github.com/substack/node-binary -browser-pack: https://github.com/substack/browser-pack -buffers: https://github.com/substack/node-buffers -chainsaw: https://github.com/substack/node-chainsaw -commondir: https://github.com/substack/node-commondir -deep-equal: https://github.com/substack/node-deep-equal -defined: https://github.com/substack/defined -deps-sort: https://github.com/substack/deps-sort -detective: https://github.com/substack/node-detective -editor: https://github.com/substack/node-editor -http-browserify: https://github.com/substack/http-browserify -https-browserify: https://github.com/substack/https-browserify -insert-module-globals: https://github.com/substack/insert-module-globals -lexical-scope: https://github.com/substack/lexical-scope -minimist: https://github.com/substack/minimist -mkdirp: https://github.com/substack/node-mkdirp -module-deps: https://github.com/substack/module-deps -optimist: https://github.com/substack/node-optimist -parents: https://github.com/substack/node-parents -path-browserify: https://github.com/substack/path-browserify -quotemeta: https://github.com/substack/quotemeta -resolve: https://github.com/substack/node-resolve -shallow-copy: https://github.com/substack/shallow-copy -shell-quote: https://github.com/substack/node-shell-quote -stream-browserify: https://github.com/substack/stream-browserify -subarg: https://github.com/substack/subarg -syntax-error: https://github.com/substack/node-syntax-error -text-table: https://github.com/substack/text-table -traverse: https://github.com/substack/js-traverse -tty-browserify: https://github.com/substack/tty-browserify -typedarray: https://github.com/substack/typedarray -vm-browserify: https://github.com/substack/vm-browserify -wordwrap: https://github.com/substack/node-wordwrap -yargs: https://github.com/chevex/yargs ----------- - -Copyright 2010, 2011, 2012, 2013 James Halliday (mail@substack.net) - - ----------- -config-chain: https://github.com/dominictarr/config-chain -JSONStream: https://github.com/dominictarr/JSONStream/ -crypto-browserify: https://github.com/dominictarr/crypto-browserify -rc: https://github.com/dominictarr/rc -stream-combiner: https://github.com/dominictarr/stream-combiner -through: http://github.com/dominictarr/through ----------- - -Copyright (c) 2011 Dominic Tarr -Copyright (c) 2012 'Dominic Tarr' -Copyright (c) 2013 Dominic Tarr - - - ----------- -async: https://github.com/caolan/async ----------- - -Copyright (c) 2010 Caolan McMahon - - ----------- -combined-stream: https://github.com/felixge/node-combined-stream -delayed-stream: https://github.com/felixge/node-delayed-stream ----------- - -Copyright (c) 2011 Debuggable Limited - - ----------- -retry: https://github.com/felixge/node-retry ----------- - -Copyright (c) 2011: -Tim Koschützki (tim@debuggable.com) -Felix Geisendörfer (felix@debuggable.com) - ----------- -form-data: https://github.com/felixge/node-form-data -multiparty: https://github.com/superjoe30/node-multiparty ----------- - -Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors - - ----------- -kexec: https://github.com/jprichardson/node-kexec ----------- - -Copyright (c) 2011-2012 JP Richardson - - ----------- -setimmediate: https://github.com/NobleJS/setImmediate ----------- - -Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, and Domenic Denicola - - ----------- -asn1: https://github.com/mcavage/node-asn1 -assert-plus: https://github.com/mcavage/node-assert-plus ----------- - -Copyright (c) 2011 Mark Cavage, All rights reserved. - - ----------- -awssum: https://github.com/awssum/awssum ----------- - -Copyright 2011-2013 Apps Attic Ltd. All rights reserved. -Copyright 2013 Andrew Chilton. All rights reserved. - - ----------- -data2xml: https://github.com/chilts/data2xml ----------- - -Copyright 2011-2012 Apps Attic Ltd. All rights reserved. - - ----------- -buffer-crc32: https://github.com/brianloveswords/buffer-crc32 ----------- - -Copyright (c) 2013 Brian J. Brennan - - ----------- -child-process-close: https://github.com/piscisaureus/child-process-close ----------- - -Copyright (C) 2012 Bert Belder - - ----------- -cli-color: https://github.com/medikoo/cli-color -es5-ext: https://github.com/medikoo/es5-ext -event-emitter: https://github.com/medikoo/event-emitter -memoizee: https://github.com/medikoo/memoize -next-tick: https://github.com/medikoo/next-tick ----------- - -Copyright (C) 2011, 2012 Mariusz Nowak (www.medikoo.com) - - ----------- -connect-jsonp: https://github.com/steelThread/connect-jsonp ----------- - -Copyright (c) 2010 Sean McDaniel - - ----------- -cookie: https://github.com/shtylman/node-cookie -process: https://github.com/shtylman/node-process ----------- - -Copyright (C) Roman Shtylman -Copyright (c) 2013 Roman Shtylman - - ----------- -cookie-signature: https://github.com/visionmedia/node-cookie-signature ----------- - -Copyright (c) 2012 LearnBoost - - ----------- -dateformat: https://github.com/felixge/node-dateformat ----------- - -(c) 2007-2009 Steven Levithan - - ----------- -eyes: https://github.com/cloudhead/eyes.js -vows: https://github.com/cloudhead/vows ----------- - -Copyright (c) 2009 cloudhead - - ----------- -fmt: https://github.com/appsattic/fmt ----------- - -Copyright © 2012-2013 AppsAttic Ltd - - ----------- -http-signature: https://github.com/joyent/node-http-signature ----------- - -Copyright Joyent, Inc. All rights reserved. - - ----------- -i: https://github.com/pksunkara/inflect ----------- - -Copyright Pavan Kumar Sunkara (pavan.sss1991@gmail.com) - - ----------- -ncp: https://github.com/AvianFlu/ncp ----------- - -Copyright (C) 2011 by Charlie McConnell - - ----------- -passgen: https://github.com/SDA/passgen ----------- - -Copyright (c) 2011 SDA Software Associates Inc. - - ----------- -sha: https://github.com/ForbesLindesay/sha -type-of: https://github.com/ForbesLindesay/type-of -uglify-to-browserify: https://github.com/ForbesLindesay/uglify-to-browserify -umd: https://github.com/ForbesLindesay/umd -rfile: https://github.com/ForbesLindesay/rfile -ruglify: https://github.com/ForbesLindesay/ruglify ----------- - -Copyright (c) 2013 Forbes Lindesay - - ----------- -source-map-support: https://github.com/evanw/node-source-map-support ----------- - -Copyright Evan Wallace - - ----------- -utile: https://github.com/flatiron/utile ----------- - -Copyright (c) 2010 Nodejitsu Inc. - - ----------- -xml: https://github.com/dylang/node-xml ----------- - -Copyright (c) 2011 Dylan Greene - - ----------- -xml2js: https://github.com/Leonidas-from-XIV/node-xml2js ----------- - -Copyright 2010, 2011, 2012, 2013. All rights reserved. - - ----------- -ctype: https://github.com/rmustacc/node-ctype ----------- - -Copyright 2011, Robert Mustacchi. All rights reserved. -Copyright 2011, Joyent, Inc. All rights reserved. - - ----------- -eachline: https://github.com/williamwicks/node-eachline ----------- - -Copyright (c) 2013 William Wicks - - ----------- -eventemitter2: https://github.com/hij1nx/EventEmitter2 ----------- - -Copyright (c) 2011 hij1nx http://www.twitter.com/hij1nx - - ----------- -stream-counter: https://github.com/superjoe30/node-stream-counter ----------- - -Copyright (c) 2013 Andrew Kelley - ----------- -uid2: https://github.com/coreh/uid2 ----------- - -Copyright (c) 2013 Marco Aurelio - ----------- -geojson-utils: https://github.com/maxogden/geojson-js-utils -concat-stream: https://github.com/maxogden/concat-stream ----------- - -Copyright (c) 2010 Max Ogden -Copyright (c) 2013 Max Ogden - - ----------- -bcrypt: https://github.com/ncb000gt/node.bcrypt.js ----------- - -Copyright (c) 2010 Nicholas Campbell - - ----------- -html5: https://github.com/aredridel/html5 ----------- - -Copyright (c) 2010 Aria Stewart - - ----------- -node-aes-gcm: https://github.com/xorbit/node-aes-gcm ----------- - -Copyright (c) 2013 Patrick Van Oosterwijck - - ----------- -isarray: https://github.com/juliangruber/isarray -builtins: https://github.com/juliangruber/builtins -constants-browserify: https://github.com/juliangruber/constants-browserify ----------- - -Copyright (c) 2013 Julian Gruber - - ----------- -keep-alive-agent: https://github.com/ceejbot/keep-alive-agent ----------- - -Copyright (c) 2012 C J Silverio - - ----------- -match-stream: https://github.com/EvanOxfeld/match-stream -slice-stream: https://github.com/EvanOxfeld/slice-stream ----------- - -Copyright (c) 2013 Evan Oxfeld - - ----------- -unzip: https://github.com/joeferner/node-unzip -over: https://github.com/joeferner/node-over -pullstream: https://github.com/EvanOxfeld/node-pullstream -bplist-parser: https://github.com/joeferner/node-bplist-parser ----------- - -Copyright (c) 2012 Near Infinity Corporation - - ----------- -assert: https://github.com/defunctzombie/commonjs-assert -browser-resolve: https://github.com/defunctzombie/node-browser-resolve -events: https://github.com/Gozala/events -url: https://github.com/defunctzombie/node-url -util: https://github.com/defunctzombie/node-util ----------- - -Copyright Joyent, Inc. and other Node contributors. All rights reserved. - - ----------- -aws-sign: https://github.com/egorFiNE/node-aws-sign ----------- - -Egor Egorov, me@egorfine.com. - - ----------- -base64-js: https://github.com/beatgammit/base64-js ----------- - -Copyright (c) 2014 - - ----------- -beep: https://github.com/mscdex/beepjs ----------- - -Copyright Brian White. All rights reserved. - - ----------- -browserify-zlib: https://github.com/devongovett/browserify-zlib ----------- - -Devon Govett - - ----------- -buffer: https://github.com/feross/buffer/ ----------- - -Copyright (c) Feross Aboukhadijeh, and other contributors. - - ----------- -catharsis: https://github.com/hegemonic/catharsis -requizzle: https://github.com/hegemonic/requizzle ----------- - -Copyright (c) 2014 Google Inc. -Copyright (c) 2012-2014 Jeff Williams -Copyright (c) 2012-2013 Johannes Ewald - - ----------- -console-browserify: https://github.com/Raynos/console-browserify -duplexer: https://github.com/Raynos/duplexer -xtend: https://github.com/Raynos/xtend ----------- - -Copyright (c) 2012 Raynos. -Copyright (c) 2012-2014 Raynos. - ----------- -deep-extend: https://github.com/unclechu/node-deep-extend ----------- - -Copyright (c) 2013 Viacheslav Lotsmanov - - ----------- -dep-graph: http://github.com/TrevorBurnham/dep-graph ----------- - -©2011 Trevor Burnham - - ----------- -derequire: https://github.com/calvinmetcalf/derequire ----------- - -Calvin Metcalf - - ----------- -domain-browser: https://github.com/bevry/domain-browser ----------- - -Copyright © Bevry Pty Ltd us@bevry.me (http://bevry.me) - - ----------- -jsonparse: https://github.com/creationix/jsonparse ----------- - -Copyright (c) 2012 Tim Caswell - - ----------- -marked: https://github.com/chjj/marked ----------- - -Copyright (c) 2011-2014, Christopher Jeffrey (https://github.com/chjj/) - - ----------- -object-keys: https://github.com/ljharb/object-keys ----------- - -Copyright (C) 2013 Jordan Harband - - ----------- -os-browserify: https://github.com/drewyoung1/os-browserify ----------- - -Copyright (c) 2014 Drew Young - - ----------- -pako: https://github.com/nodeca/pako ----------- - -Copyright (C) 2014 by Vitaly Puzrin - - ----------- -q: https://github.com/kriskowal/q ----------- - -Copyright 2009–2014 Kristopher Michael Kowal. All rights reserved. - - ----------- -querystring-es3: https://github.com/mike-spainhower/querystring ----------- - -Copyright 2012 Irakli Gozalishvili. All rights reserved. - - ----------- -ansi-regex: https://github.com/sindresorhus/ansi-regex -ansi-styles: https://github.com/sindresorhus/ansi-styles -escape-string-regexp: https://github.com/sindresorhus/escape-string-regexp -chalk: https://github.com/sindresorhus/chalk -get-stdin: https://github.com/sindresorhus/get-stdin -has-ansi: https://github.com/sindresorhus/has-ansi -strip-ansi: https://github.com/sindresorhus/strip-ansi -strip-json-comments: https://github.com/sindresorhus/strip-json-comments -supports-color: https://github.com/sindresorhus/supports-color ----------- - -Copyright (c) Sindre Sorhus (sindresorhus.com) - ----------- -timers-browserify: https://github.com/jryans/timers-browserify ----------- - -Copyright © 2012 J. Ryan Stinnett - - ----------- -wrench: https://github.com/ryanmcgrath/wrench-js ----------- - -Copyright (c) 2010 Ryan McGrath - - ----------- -xmlbuilder: http://github.com/oozcitak/xmlbuilder-js ----------- - -Copyright (c) 2013 Ozgur Ozcitak - - ----------- -xmldom: https://github.com/jindw/xmldom ----------- - -jindw (http://www.xidea.org) - - ----------- -properties-parser: https://github.com/xavi-/node-properties-parser ----------- - -Xavi Ramirez - ----------- -js2xmlparser: https://github.com/michaelkourlas/node-js2xmlparser/ ----------- - -Copyright © 2012 Michael Kourlas and other contributors - - ----------- -pegjs: https://github.com/dmajda/pegjs ----------- -Copyright (c) 2010-2013 David Majda - ----------- -foo: https://github.com/coolaj86/node-pakman ----------- - -Copyright (c) 2011 AJ ONeal - - ----------- -ios-sim: https://github.com/phonegap/ios-sim ----------- - -Author: Landon Fuller -Copyright (c) 2008-2011 Plausible Labs Cooperative, Inc. -All rights reserved. - -Modifications made by the following entities are licensed as above: -- Jeff Haynie, Appcelerator, Inc. -- https://github.com/hborders -- http://pivotallabs.com/users/scoward/blog -- Eloy Duran, Fingertips - - ----------- -accepts: https://github.com/jshttp/accepts -merge-descriptors: https://github.com/component/merge-descriptors -type-is: https://github.com/jshttp/type-is -mime-types: https://github.com/jshttp/mime-types ----------- - -Copyright (c) 2013 Jonathan Ong me@jongleberry.com -Copyright (c) 2014 Jonathan Ong - - ----------- -parseurl: https://github.com/expressjs/parseurl ----------- - -Copyright (c) 2014 Jonathan Ong -Copyright (c) 2014 Douglas Christopher Wilson - - ----------- -serve-static: https://github.com/expressjs/serve-static ----------- - -Copyright (c) 2010 Sencha Inc. -Copyright (c) 2011 LearnBoost -Copyright (c) 2011 TJ Holowaychuk -Copyright (c) 2014 Douglas Christopher Wilson - - ----------- -negotiator: https://github.com/jshttp/negotiator ----------- - -Original "Negotiator" program Copyright Federico Romero -Port to JavaScript Copyright Isaac Z. Schlueter - - ----------- -options: https://github.com/einaros/options.js -tinycolor: https://github.com/einaros/tinycolor -ws: https://github.com/einaros/ws ----------- - -Copyright (c) 2011 Einar Otto Stangvik -Copyright (c) 2012 Einar Otto Stangvik - - ----------- -path-to-regexp: https://github.com/component/path-to-regexp ----------- - -Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) - - ----------- -truncate: https://github.com/FGRibreau/node-truncate ----------- - -Copyright (c) 2013 Francois-Guillaume Ribreau - - ----------- -utils-merge: https://github.com/jaredhanson/utils-merge ----------- - -Copyright (c) 2013 Jared Hanson - - ----------- -bl: https://github.com/rvagg/bl ----------- - -Copyright (c) 2014 bl contributors -bl contributors listed at https://github.com/rvagg/bl#contributors - - ----------- -lodash-node: https://github.com/lodash/lodash-node ----------- - -Copyright 2012-2014 The Dojo Foundation -Based on Underscore.js 1.6.0, copyright 2009-2014 Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - - ----------- -netroute: https://github.com/indutny/node-netroute ----------- - -Copyright Fedor Indutny, 2012. - - ----------- -stringstream: https://github.com/mhart/StringStream ----------- - -Copyright 2012 Michael Hart (michael.hart.au@gmail.com) - - ----------- -clone: https://github.com/pvorb/node-clone ----------- - -Copyright © 2011-2014 Paul Vorbach - - ----------- -defaults: https://github.com/tmpvar/defaults ----------- - ----------- -throttleit: https://github.com/component/throttle ----------- - - ----------- -emissary: https://github.com/atom/emissary -event-kit: https://github.com/atom/event-kit -fs-plus: https://github.com/atom/fs-plus -grim: https://github.com/atom/grim -mixto: https://github.com/atom/mixto -pathwatcher: https://github.com/atom/node-pathwatcher -property-accessors: https://github.com/atom/property-accessors -runas: https://github.com/atom/node-runas -underscore-plus: https://github.com/atom/underscore-plus ----------- - -Copyright (c) 2013 GitHub Inc. -Copyright (c) 2014 GitHub Inc. - - ----------- -harmony-collections: https://github.com/Benvie/harmony-collections ----------- - -Copyright (c) 2012 Brandon Benvie http://bbenvie.com - - ----------- -iconv-lite: https://github.com/ashtuchkin/iconv-lite ----------- - -Copyright (c) 2011 Alexander Shtuchkin - - ----------- -request-progress: https://github.com/IndigoUnited/node-request-progress ----------- - -Copyright (c) 2012 IndigoUnited - - ----------- -wcwidth: https://github.com/mycoboco/wcwidth.js ----------- - -Copyright (C) 2012-2014 by Jun Woong and Tim Oxley. - - ----------- -adm-zip: https://github.com/cthackers/adm-zip ----------- - -Copyright (c) 2012 Another-D-Mention Software and other contributors, -http://www.another-d-mention.ro/ - - - -============== -Apache License -============== - -The following libraries are licensed under the Apache License, version 2.0: - -""" -Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -""" - ----------- -mongodb: (Node driver) https://github.com/mongodb/node-mongodb-native -kerberos: https://github.com/christkv/kerberos ----------- - -Copyright 2009 - 2010 Christian Amor Kvalheim. - - ----------- -less: https://github.com/cloudhead/less.js ----------- - -Copyright (c) 2009-2010 Alexis Sellier - - ----------- -useragent: https://github.com/fintanf/node-useragent ----------- - -This parser is based on the user agent parser; code.google.com/p/ua-parser/ -which is released under Apache license: - -Copyright 2009 Google Inc. - - ----------- -request: https://github.com/mikeal/request -aws-sign2: https://github.com/mikeal/aws-sign -cookie-jar: https://github.com/mikeal/cookie-jar -forever-agent: https://github.com/mikeal/forever-agent -oauth-sign: https://github.com/mikeal/oauth-sign -tunnel-agent: https://github.com/mikeal/tunnel-agent ----------- - -Copyright (c) 2011, 2012, 2013 Mikeal Rogers - - ----------- -code-prettify: http://code.google.com/p/google-code-prettify/ ----------- - -Copyright 2011 Mike Samuel et al - - ----------- -bootstrap: https://github.com/twitter/bootstrap ----------- - -Copyright 2012 Twitter, Inc. - - ----------- -bson: https://github.com/mongodb/js-bson ----------- - -Copyright (c) 2012 Christian Amor Kvalheim - - ----------- -websocket: https://github.com/Worlize/WebSocket-Node/blob/master/LICENSE ----------- - -Brian McKelvey - - ----------- -amdefine: https://github.com/jrburke/amdefine ----------- - -Copyright (c) 2011, The Dojo Foundation - - ----------- -nlogger: https://github.com/igo/nlogger ----------- - -Copyright (c) 2010 by Igor Urmincek - - ----------- -Diff Match and Patch: http://code.google.com/p/google-diff-match-patch/ ----------- - -Copyright 2006 Google Inc. - - ----------- -ansicolors: https://github.com/thlorenz/ansicolors -ansistyles: https://github.com/thlorenz/ansistyles -combine-source-map: https://github.com/thlorenz/combine-source-map -convert-source-map: https://github.com/thlorenz/convert-source-map -inline-source-map: https://github.com/thlorenz/inline-source-map ----------- - -Copyright 2013 Thorsten Lorenz. All rights reserved. - - ----------- -columnify: https://github.com/timoxley/columnify ----------- - -Copyright Tim Oxley - - ----------- -eventemitter3: https://github.com/3rd-Eden/EventEmitter3 ----------- - -Copyright Arnout Kazemier - - ----------- -punycode: https://github.com/bestiejs/punycode.js ----------- - -Copyright Mathias Bynens - - ----------- -browserstack-webdriver: https://github.com/browserstack/selenium-webdriver-nodejs ----------- - -Copyright 2009-2014 Software Freedom Conservancy - - ----------- -node-inspector: https://github.com/node-inspector/node-inspector ----------- - -Copyright (c) 2011, Danny Coates - - ----------- -phantomjs: https://github.com/Medium/phantomjs (npm installer) ----------- - -Copyright 2012 The Obvious Corporation. - - ----------- -elementtree: https://github.com/racker/node-elementtree ----------- - -Copyright (c) 2011, Rackspace, Inc. -The ElementTree toolkit is Copyright (c) 1999-2007 by Fredrik Lundh - - ----------- -xcode: https://github.com/alunny/node-xcode ----------- - -Copyright 2012 Andrew Lunny, Adobe Systems - - ----------- -cordova: https://git-wip-us.apache.org/repos/asf/cordova-cli.git -cordova-js: https://git-wip-us.apache.org/repos/asf/cordova-js.git -cordova-lib: https://git-wip-us.apache.org/repos/asf/cordova-lib.git ----------- - -Apache Cordova -Copyright 2012 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - - ----------- -ip: https://github.com/indutny/node-ip ----------- - -Copyright Fedor Indutny, 2012 - - ----------- -kew: https://github.com/Medium/kew ----------- - -Copyright 2012 The Obvious Corporation. -http://obvious.com/ - - - -====================== -Eclipse Public License -====================== - -The following libraries are licensed under the Eclipse Public License, version 1.0: - -""" -Eclipse Public License - v 1.0 - -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS - -"Contribution" means: - -a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and -b) in the case of each subsequent Contributor: -i) changes to the Program, and -ii) additions to the Program; -where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. -"Contributor" means any person or entity that distributes the Program. - -"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - -2. GRANT OF RIGHTS - -a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. -b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. -c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. -d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - -a) it complies with the terms and conditions of this Agreement; and -b) its license agreement: -i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; -ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; -iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and -iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. -When the Program is made available in source code form: - -a) it must be made available under this Agreement; and -b) a copy of this Agreement must be included with each copy of the Program. -Contributors may not remove or alter any copyright notices contained within the Program. - -Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. - -4. COMMERCIAL DISTRIBUTION - -Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. - -For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. - -5. NO WARRANTY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. - -6. DISCLAIMER OF LIABILITY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. GENERAL - -If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. - -If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. - -All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. - -Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. - -This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. -""" - ----------- -mori: https://github.com/swannodette/mori ----------- - -Copyright (C) 2013 David Nolen and contributors - - - -============ -BSD Licenses -============ - ----------- -tar-pack: https://github.com/ForbesLindesay/tar-pack ----------- - -Copyright (c) 2014, Forbes Lindesay -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* 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. - -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 HOLDER 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. - - ----------- -sqlite3: https://github.com/mapbox/node-sqlite3 ----------- - -Copyright (c) MapBox -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -- 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. -- Neither the name "MapBox" nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - -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 HOLDER 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. - - ----------- -node-pre-gyp: https://github.com/mapbox/node-pre-gyp ----------- - -Copyright (c), Mapbox - -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * 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. - * Neither the name of node-pre-gyp nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -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. - - ----------- -uglify-js: https://github.com/mishoo/UglifyJS2 ----------- - -Copyright 2012-2013 (c) Mihai Bazon - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - - * 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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “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 HOLDER 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. - - ----------- -openssl: http://www.openssl.org/ ----------- - -/* ==================================================================== - * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. 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. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED 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 OpenSSL PROJECT OR - * ITS 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. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - ---------- -showdown: http://www.attacklab.net/ ---------- - -Copyright (c) 2007, John Fraser - -All rights reserved. - -Original Markdown copyright (c) 2004, John Gruber - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - -* 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. - -* Neither the name "Markdown" nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -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. - - ----------- -history.js: https://github.com/balupton/History.js/ ----------- - -Copyright (c) 2011, Benjamin Arthur Lupton -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of Benjamin Arthur Lupton nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -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 HOLDER 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. - - ----------- -tar: https://github.com/isaacs/node-tar -fstream: https://github.com/isaacs/fstream -fstream-npm: https://github.com/isaacs/fstream-npm -fstream-ignore: https://github.com/isaacs/fstream-ignore -read: https://github.com/isaacs/read -block-stream: https://github.com/isaacs/block-stream -glob: https://github.com/isaacs/node-glob -chownr: https://github.com/isaacs/chownr -uid-number: https://github.com/isaacs/uid-number -sigmund: https://github.com/isaacs/sigmund ----------- - -Copyright (c) Isaac Z. Schlueter -All rights reserved. - -The BSD License - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. 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. - -THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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. - - ----------- -lockfile: https://github.com/isaacs/lockfile -npm-registry-client: https://github.com/isaacs/npm-registry-client -npmlog: https://github.com/isaacs/npmlog -once: https://github.com/isaacs/once -osenv: https://github.com/isaacs/osenv -mute-stream: https://github.com/isaacs/mute-stream -couch-login: https://github.com/isaacs/couch-login -npmconf: https://github.com/isaacs/npmconf -read-installed: https://github.com/isaacs/read-installed -read-package-json: https://github.com/isaacs/read-package-json -promzard: https://github.com/isaacs/promzard -chmodr: https://github.com/isaacs/chmodr -cmd-shim: https://github.com/ForbesLindesay/cmd-shim -json-stringify-safe: https://github.com/isaacs/json-stringify-safe -sax: https://github.com/isaacs/sax-js ----------- - -Copyright (c) Isaac Z. Schlueter ("Author") -All rights reserved. - -The BSD License - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. 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. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. - - ----------- -D3: https://github.com/mbostock/d3 ----------- - -Copyright (c) 2012, Michael Bostock -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* 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. - -* The name Michael Bostock may not be used to endorse or promote products - derived from this software without specific prior written permission. - -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 MICHAEL BOSTOCK 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. - - ----------- -jsbn: http://www-cs-students.stanford.edu/~tjw/jsbn/ ----------- - -Copyright (c) 2003-2005 Tom Wu -All Rights Reserved. - -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" AND WITHOUT WARRANTY OF ANY KIND, -EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, -INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF -THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -In addition, the following condition applies: - -All redistributions must retain an intact copy of this copyright notice -and disclaimer. - - ----------- -jsSHA2: http://anmar.eu.org/projects/jssha2/ -with Unicode support (Utf8Encode function) added by - http://www.webtoolkit.info/javascript-sha256.html ----------- - -Copyright (c) 2003-2004, Angel Marin -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - * 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. - * Neither the name of the nor the names of its contributors may - be used to endorse or promote products derived from this software without - specific prior written permission. - -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. - - ----------- -ycssmin: https://github.com/yui/ycssmin ----------- - -Copyright 2012 Yahoo! Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of the 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. - -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 YAHOO! INC. 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. - - ----------- -source-map: https://github.com/mozilla/source-map ----------- - -Copyright (c) 2009-2011, Mozilla Foundation and contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* 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. - -* Neither the names of the Mozilla Foundation nor the names of project - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -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 HOLDER 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. - - ----------- -boom: https://github.com/spumko/boom ----------- - -Copyright (c) 2012-2013, Walmart. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of Walmart nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -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 WALMART 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. - - ----------- -hoek: https://github.com/spumko/hoek ----------- - -Copyright (c) 2011-2013, Walmart. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of Walmart nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -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 WALMART 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. - - - * * * - - -Portions of this project were initially based on Postmile, Copyright (c) 2011, Yahoo Inc. -Postmile is published at https://github.com/yahoo/postmile and its licensing terms are -published at https://github.com/yahoo/postmile/blob/master/LICENSE. - - ----------- -cryptiles: https://github.com/hueniverse/cryptiles -hawk: https://github.com/hueniverse/hawk -sntp: https://github.com/hueniverse/sntp ----------- - -Copyright (c) 2012-2013, Eran Hammer. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of Eran Hammer nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -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 ERAN HAMMER 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. - - ----------- -diff: https://github.com/kpdecker/jsdiff ----------- - -Software License Agreement (BSD License) - -Copyright (c) 2009-2011, Kevin Decker - -All rights reserved. - -Redistribution and use of this software in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above - copyright notice, this list of conditions and the - following disclaimer. - -* 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. - -* Neither the name of Kevin Decker nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior - written permission. - -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. - - ----------- -escope: https://github.com/Constellation/escope -estraverse: https://github.com/Constellation/estraverse -esutils: https://github.com/Constellation/esutils -escodegen: http://github.com/Constellation/escodegen ----------- - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - -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 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. - - ----------- -esprima: https://github.com/ariya/esprima -esprima-fb: https://github.com/facebook/esprima/tree/fb-harmony -esrefactor: https://github.com/ariya/esrefactor ----------- - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - -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 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. - - ----------- -normalize-package-data: https://github.com/meryn/normalize-package-data ----------- - -This package contains code originally written by Isaac Z. Schlueter. -Used with permission. - -Copyright (c) Meryn Stol ("Author") -All rights reserved. - -The BSD License - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. 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. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. - - ----------- -npm-user-validate: https://github.com/robertkowalski/npm-user-validate -github-url-from-username-repo: https://github.com/robertkowalski/github-url-from-username-repo ----------- - -Copyright (c) Robert Kowalski -All rights reserved. - -The BSD License - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. 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. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. - - ----------- -phantomjs: http://phantomjs.org/ ----------- - -Copyright 2010-2014 Ariya Hidayat - - ----------- -shelljs: http://github.com/arturadib/shelljs ----------- - -Copyright (c) 2012, Artur Adib -All rights reserved. - -You may use this project under the terms of the New BSD license as follows: - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of Artur Adib nor the - names of the contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -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 ARTUR ADIB 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. - - ----------- -taffydb: https://github.com/typicaljoe/taffydb ----------- - -Copyright (c) All rights reserved. - -Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following condition is met: - -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -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. - - - -============= -Public Domain -============= - ----------- -json2: https://github.com/douglascrockford/JSON-js ----------- - -By Douglas Crockford -2011-10-19 - -Public Domain. - -NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. - - ----------- -meyerweb-reset: http://meyerweb.com/eric/tools/css/reset/ ----------- - -By Eric A. Meyer -v2.0 | 20110126 -License: none (public domain) - - ----------- -enable2k word list: http://personal.riverusers.com/~thegrendel/software.html ----------- - -The ENABLE list has been placed in the Public Domain. This means it is free -and freely distributable. No fees, registrations, or "contributions" are -required for its use. - - - - - -===== -Other -===== - ----------- -Intel HAXM ----------- - -Intel® Hardware Accelerated Execution Manager End-User License Agreement - -Last Updated April 15, 2014 - -Copyright© 2013 Intel Corporation. -All rights reserved. - -Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: - -1. Redistributions must reproduce the above copyright notice and the following disclaimer in the documentation and/or other materials provided with the distribution. - -2. Neither the name of Intel Corporation nor the names of its suppliers may be used to endorse or promote products derived from this software without specific prior written permission. - -3. No reverse engineering, de-compilation, or disassembly of this software is permitted. Limited patent license. Intel Corporation grants a world-wide, royalty-free, non-exclusive license under patents it now or hereafter owns or controls to make, have made, use, import, offer to sell and sell ("Utilize") this software, but solely to the extent that any such patent is necessary to Utilize the software alone. The patent license shall not apply to any combinations which include this software. No hardware per se is licensed hereunder. - -DISCLAIMER. -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. - - ----------- -nan: https://github.com/rvagg/nan ----------- - -Copyright 2013, NAN contributors: - - Rod Vagg - - Benjamin Byholm - - Trevor Norris - - Nathan Rajlich - - Brett Lawson - - Ben Noordhuis -(the "Original Author") -All rights reserved. - -MIT +no-false-attribs License - -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. - -Distributions of all or part of the Software intended to be used -by the recipients as they would use the unmodified Software, -containing modifications that substantially alter, remove, or -disable functionality of the Software, outside of the documented -configuration mechanisms provided by the Software, shall be -modified such that the Original Author's bug reporting email -addresses and urls are either replaced with the contact information -of the parties responsible for the changes, or removed entirely. - -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. - - -Except where noted, this license applies to any and all software -programs and associated documentation files created by the -Original Author, when distributed with the Software. - - ----------- -through2: https://github.com/rvagg/through2 ----------- - -Copyright 2013, Rod Vagg (the "Original Author") -All rights reserved. - -MIT +no-false-attribs License - -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. - -Distributions of all or part of the Software intended to be used -by the recipients as they would use the unmodified Software, -containing modifications that substantially alter, remove, or -disable functionality of the Software, outside of the documented -configuration mechanisms provided by the Software, shall be -modified such that the Original Author's bug reporting email -addresses and urls are either replaced with the contact information -of the parties responsible for the changes, or removed entirely. - -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. - - -Except where noted, this license applies to any and all software -programs and associated documentation files created by the -Original Author, when distributed with the Software. - ----------- -strong-data-uri: https://github.com/strongloop/strong-data-uri ----------- - -Redistributed under the terms of the Artistic License, version 2.0. - -http://opensource.org/licenses/Artistic-2.0 - - ----------- -browserify: https://github.com/substack/node-browserify ----------- - -MIT - -Some pieces from builtins/ taken from node core under this license: - ----- - -Copyright Joyent, Inc. and other Node contributors. - -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. - ----- - -buffer_ieee754.js has this license in it: - ----- - -Copyright (c) 2008-2014, Fair Oaks Labs, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * 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. - - * Neither the name of Fair Oaks Labs, Inc. nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -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. - -Modifications to writeIEEE754 to support negative zeroes made by Brian White - ----- - ----------- -ieee754: https://github.com/feross/ieee754 ----------- - -The MIT License (MIT) - -Copyright (c) Feross Aboukhadijeh - -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. - -=========================================== -ieee754 originally contained this license: -=========================================== - -Copyright (c) 2008, Fair Oaks Labs, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * 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. - - * Neither the name of Fair Oaks Labs, Inc. nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -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. - -Modifications to writeIEEE754 to support negative zeroes made by Brian White. - - ----------- -heapdump: https://github.com/bnoordhuis/node-heapdump ----------- - -Copyright (c) 2012, Ben Noordhuis - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ----------- -mimelib-noiconv: https://github.com/andris9/mimelib -mailcomposer: https://github.com/andris9/mailcomposer -simplesmtp: https://github.com/andris9/simplesmtp -rai: https://github.com/andris9/rai -xoauth2: https://github.com/andris9/xoauth2 ----------- - -Copyright (c) 2012 Andris Reinman - -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 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. - - ----------- -inherits: https://github.com/isaacs/inherits ----------- - -By Isaac Z. Schlueter (http://blog.izs.me/) - - - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - Version 2, December 2004 - - Copyright (C) 2004 Sam Hocevar - - Everyone is permitted to copy and distribute verbatim or modified - copies of this license document, and changing it is allowed as long - as the name is changed. - - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. You just DO WHAT THE FUCK YOU WANT TO. - - ----------- -Base64: https://github.com/davidchambers/Base64.js ----------- - - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - Version 2, December 2004 - - Copyright (c) 2011..2012 David Chambers - - Everyone is permitted to copy and distribute verbatim or modified - copies of this license document, and changing it is allowed as long - as the name is changed. - - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. You just DO WHAT THE FUCK YOU WANT TO. - - ----------- -opener: https://github.com/domenic/opener -path-is-inside: https://github.com/domenic/path-is-inside -sorted-object: https://github.com/domenic/sorted-object ----------- - - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - Version 2, December 2004 - - Copyright (C) 2012 Domenic Denicola - - Everyone is permitted to copy and distribute verbatim or modified - copies of this license document, and changing it is allowed as long - as the name is changed. - - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. You just DO WHAT THE FUCK YOU WANT TO. - - - ----------- -stream-buffers: https://github.com/samcday/node-stream-buffer ----------- - -This is free and unencumbered software released into the public domain. - -Anyone is free to copy, modify, publish, use, compile, sell, or -distribute this software, either in source code form or as a compiled -binary, for any purpose, commercial or non-commercial, and by any -means. - -In jurisdictions that recognize copyright laws, the author or authors -of this software dedicate any and all copyright interest in the -software to the public domain. We make this dedication for the benefit -of the public at large and to the detriment of our heirs and -successors. We intend this dedication to be an overt act of -relinquishment in perpetuity of all present and future rights to this -software under copyright law. - -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 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. - -For more information, please refer to - - ----------- -npm-install-checks: https://github.com/npm/npm-install-checks ----------- - -Copyright (c) Robert Kowalski and Isaac Z. Schlueter ("Authors") -All rights reserved. - -The BSD License - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. 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. - -THIS SOFTWARE IS PROVIDED BY THE AUTHORS 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 AUTHORS 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. - - ----------- -tough-cookie: https://github.com/goinstant/tough-cookie ----------- - -Copyright GoInstant, Inc. and other contributors. All rights reserved. -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. - -The following exceptions apply: - -=== - -`pubSufTest()` of generate-pubsuffix.js is in the public domain. - - // Any copyright is dedicated to the Public Domain. - // http://creativecommons.org/publicdomain/zero/1.0/ - -=== - -`public-suffix.txt` was obtained from - -via . - -That file contains the usual Mozilla triple-license, for which this project uses it -under the terms of the MPL 1.1: - - // ***** BEGIN LICENSE BLOCK ***** - // Version: MPL 1.1/GPL 2.0/LGPL 2.1 - // - // The contents of this file are subject to the Mozilla Public License Version - // 1.1 (the "License"); you may not use this file except in compliance with - // the License. You may obtain a copy of the License at - // http://www.mozilla.org/MPL/ - // - // Software distributed under the License is distributed on an "AS IS" basis, - // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - // for the specific language governing rights and limitations under the - // License. - // - // The Original Code is the Public Suffix List. - // - // The Initial Developer of the Original Code is - // Jo Hermans . - // Portions created by the Initial Developer are Copyright (C) 2007 - // the Initial Developer. All Rights Reserved. - // - // Contributor(s): - // Ruben Arakelyan - // Gervase Markham - // Pamela Greene - // David Triendl - // Jothan Frakes - // The kind representatives of many TLD registries - // - // Alternatively, the contents of this file may be used under the terms of - // either the GNU General Public License Version 2 or later (the "GPL"), or - // the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), - // in which case the provisions of the GPL or the LGPL are applicable instead - // of those above. If you wish to allow use of your version of this file only - // under the terms of either the GPL or the LGPL, and not to allow others to - // use your version of this file under the terms of the MPL, indicate your - // decision by deleting the provisions above and replace them with the notice - // and other provisions required by the GPL or the LGPL. If you do not delete - // the provisions above, a recipient may use your version of this file under - // the terms of any one of the MPL, the GPL or the LGPL. - // - // ***** END LICENSE BLOCK ***** - - - ----------- -MongoDB: http://www.mongodb.org/ ----------- - -LICENSE - - Most MongoDB source files are made available under the terms of the - GNU Affero General Public License (AGPL). See individual files for - details. - - As an exception, the files in the client/, debian/, rpm/, - utils/mongoutils, and all subdirectories thereof are made available under - the terms of the Apache License, version 2.0. - -http://www.gnu.org/licenses/agpl-3.0.html -http://www.apache.org/licenses/LICENSE-2.0 - - -MongoDB uses third-party libraries or other resources that may -be distributed under licenses different than the MongoDB software. - -In the event that we accidentally failed to list a required notice, -please bring it to our attention through any of the ways detailed here : - - mongodb-dev@googlegroups.com - -The attached notices are provided for information only. - - -1) License Notice for Boost ---------------------------- - -http://www.boost.org/LICENSE_1_0.txt - -Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -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, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - - -2) License Notice for V8 -------------------------- - -http://code.google.com/p/v8/source/browse/trunk/LICENSE - -This license applies to all parts of V8 that are not externally -maintained libraries. The externally maintained libraries used by V8 -are: - - - Jscre, located under third_party/jscre. This code is copyrighted - by the University of Cambridge and Apple Inc. and released under a - 2-clause BSD license. - - - Dtoa, located under third_party/dtoa. This code is copyrighted by - David M. Gay and released under an MIT license. - - - Strongtalk assembler, the basis of the files assembler-arm-inl.h, - assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h, - assembler-ia32.cc, assembler-ia32.h, assembler.cc and assembler.h. - This code is copyrighted by Sun Microsystems Inc. and released - under a 3-clause BSD license. - -These libraries have their own licenses; we recommend you read them, -as their terms may differ from the terms below. - -Copyright 2006-2008, Google Inc. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -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. - -3) License Notice for PCRE --------------------------- - -http://www.pcre.org/licence.txt - -PCRE LICENCE ------------- - -PCRE is a library of functions to support regular expressions whose syntax -and semantics are as close as possible to those of the Perl 5 language. - -Release 7 of PCRE is distributed under the terms of the "BSD" licence, as -specified below. The documentation for PCRE, supplied in the "doc" -directory, is distributed under the same terms as the software itself. - -The basic library functions are written in C and are freestanding. Also -included in the distribution is a set of C++ wrapper functions. - - -THE BASIC LIBRARY FUNCTIONS ---------------------------- - -Written by: Philip Hazel -Email local part: ph10 -Email domain: cam.ac.uk - -University of Cambridge Computing Service, -Cambridge, England. - -Copyright (c) 1997-2008 University of Cambridge -All rights reserved. - - -THE C++ WRAPPER FUNCTIONS -------------------------- - -Contributed by: Google Inc. - -Copyright (c) 2007-2008, Google Inc. -All rights reserved. - - -THE "BSD" LICENCE ------------------ - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * 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. - - * Neither the name of the University of Cambridge nor the name of Google - Inc. nor the names of their contributors may be used to endorse or - promote products derived from this software without specific prior - written permission. - -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. - - -4) License notice for Aladdin MD5 ---------------------------------- - -Copyright (C) 1999, 2002 Aladdin Enterprises. All rights reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - -L. Peter Deutsch -ghost@aladdin.com - -5) License notice for Snappy - http://code.google.com/p/snappy/ ---------------------------------- - Copyright 2005 and onwards Google Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - 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. - - A light-weight compression algorithm. It is designed for speed of - compression and decompression, rather than for the utmost in space - savings. - - For getting better compression ratios when you are compressing data - with long repeated sequences or compressing data that is similar to - other data, while still compressing fast, you might look at first - using BMDiff and then compressing the output of BMDiff with - Snappy. - - - -End - - - ----------- -libuv: https://github.com/joyent/libuv ----------- - -libuv is part of the Node project: http://nodejs.org/ -libuv may be distributed alone under Node's license: - -==== - -Copyright Joyent, Inc. and other Node contributors. All rights reserved. -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. - -==== - -This license applies to all parts of libuv that are not externally -maintained libraries. - -The externally maintained libraries used by libuv are: - - - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license. - - - ngx_queue.h (from Nginx), copyright Igor Sysoev. Two clause BSD license. - - - c-ares, copyright Daniel Stenberg and others. MIT licensed. - - - libev, located at ev/ is copyright Marc Alexander Lehmann, and - dual-licensed under the MIT license and GPL2. - - - libeio, located at eio/ is copyright Marc Alexander Lehmann, and - dual-licensed under the MIT license and GPL2. - - - ----------- -nodejs: http://nodejs.org/ -readable-stream: https://github.com/isaacs/readable-stream -npm: https://github.com/isaacs/npm -init-package-json: https://github.com/isaacs/init-package-json -string_decoder: https://github.com/rvagg/string_decoder -util-extend: https://github.com/isaacs/util-extend ----------- - - -Node's license follows: - -==== - -Copyright Joyent, Inc. and other Node contributors. All rights reserved. -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. - -==== - -This license applies to all parts of Node that are not externally -maintained libraries. The externally maintained libraries used by Node are: - -- V8, located at deps/v8. V8's license follows: - """ - This license applies to all parts of V8 that are not externally - maintained libraries. The externally maintained libraries used by V8 - are: - - - PCRE test suite, located in - test/mjsunit/third_party/regexp-pcre.js. This is based on the - test suite from PCRE-7.3, which is copyrighted by the University - of Cambridge and Google, Inc. The copyright notice and license - are embedded in regexp-pcre.js. - - - Layout tests, located in test/mjsunit/third_party. These are - based on layout tests from webkit.org which are copyrighted by - Apple Computer, Inc. and released under a 3-clause BSD license. - - - Strongtalk assembler, the basis of the files assembler-arm-inl.h, - assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h, - assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h, - assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h, - assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h. - This code is copyrighted by Sun Microsystems Inc. and released - under a 3-clause BSD license. - - - Valgrind client API header, located at third_party/valgrind/valgrind.h - This is release under the BSD license. - - These libraries have their own licenses; we recommend you read them, - as their terms may differ from the terms below. - - Copyright 2006-2012, the V8 project authors. All rights reserved. - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - 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. - """ - -- libev, located at deps/uv/src/unix/ev. libev's license follows: - """ - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * 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. - - 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. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - """ - -- libeio, located at deps/uv/src/unix/eio. libeio's license follows: - """ - All files in libeio are Copyright (C)2007,2008 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * 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. - - 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. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - """ - -- WAF build system, located at tools/waf*. WAF's license follows: - """ - Copyright Thomas Nagy, 2005-2011 - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. 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. - - 3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. - """ - -- C-Ares, an asynchronous DNS client, located at deps/uv/src/ares. C-Ares license - follows - """ - /* Copyright 1998 by the Massachusetts Institute of Technology. - * - * Permission to use, copy, modify, and distribute this - * software and its documentation for any purpose and without - * fee is hereby granted, provided that the above copyright - * notice appear in all copies and that both that copyright - * notice and this permission notice appear in supporting - * documentation, and that the name of M.I.T. not be used in - * advertising or publicity pertaining to distribution of the - * software without specific, written prior permission. - * M.I.T. makes no representations about the suitability of - * this software for any purpose. It is provided "as is" - * without express or implied warranty. - """ - -- OpenSSL located at deps/openssl. OpenSSL is cryptographic software written - by Eric Young (eay@cryptsoft.com) to provide SSL/TLS encryption. OpenSSL's - license follows - """ - /* ==================================================================== - * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. 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. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED 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 OpenSSL PROJECT OR - * ITS 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. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - """ - -- HTTP Parser, located at deps/http_parser. HTTP Parser's license follows: - """ - http_parser.c is based on src/http/ngx_http_parse.c from NGINX copyright - Igor Sysoev. - - Additional changes are licensed under the same terms as NGINX and - copyright Joyent, Inc. and other Node contributors. All rights reserved. - - 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. - """ - -- Closure Linter is located at tools/closure_linter. Closure's license - follows - """ - # Copyright (c) 2007, Google Inc. - # All rights reserved. - # - # Redistribution and use in source and binary forms, with or without - # modification, are permitted provided that the following conditions are - # met: - # - # * Redistributions of source code must retain the above copyright - # notice, this list of conditions and the following disclaimer. - # * 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. - # * Neither the name of Google Inc. nor the names of its - # contributors may be used to endorse or promote products derived from - # this software without specific prior written permission. - # - # 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. - """ - -- tools/cpplint.py is a C++ linter. Its license follows: - """ - # Copyright (c) 2009 Google Inc. All rights reserved. - # - # Redistribution and use in source and binary forms, with or without - # modification, are permitted provided that the following conditions are - # met: - # - # * Redistributions of source code must retain the above copyright - # notice, this list of conditions and the following disclaimer. - # * 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. - # * Neither the name of Google Inc. nor the names of its - # contributors may be used to endorse or promote products derived from - # this software without specific prior written permission. - # - # 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. - """ - -- lib/buffer_ieee754.js. Its license follows: - """ - // Copyright (c) 2008, Fair Oaks Labs, Inc. - // All rights reserved. - // - // Redistribution and use in source and binary forms, with or without - // modification, are permitted provided that the following conditions are met: - // - // * Redistributions of source code must retain the above copyright notice, - // this list of conditions and the following disclaimer. - // - // * 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. - // - // * Neither the name of Fair Oaks Labs, Inc. nor the names of its contributors - // may be used to endorse or promote products derived from this software - // without specific prior written permission. - // - // 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. - """ - -- lib/punycode.js is copyright 2011 Mathias Bynens - and released under the MIT license. - """ - * Punycode.js - * Copyright 2011 Mathias Bynens - * Available under MIT license - """ - -- tools/gyp GYP is a meta-build system. GYP's license follows: - """ - Copyright (c) 2009 Google Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * 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. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - 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. - """ - -- Zlib at deps/zlib. zlib's license follows - """ - /* zlib.h -- interface of the 'zlib' general purpose compression library - version 1.2.4, March 14th, 2010 - - Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - Jean-loup Gailly - Mark Adler - - */ - """ - -- npm is a package manager program located at deps/npm. - npm's license follows: - """ - Copyright 2009-2012, Isaac Z. Schlueter (the "Original Author") - All rights reserved. - - MIT +no-false-attribs License - - 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. - - Distributions of all or part of the Software intended to be used - by the recipients as they would use the unmodified Software, - containing modifications that substantially alter, remove, or - disable functionality of the Software, outside of the documented - configuration mechanisms provided by the Software, shall be - modified such that the Original Author's bug reporting email - addresses and urls are either replaced with the contact information - of the parties responsible for the changes, or removed entirely. - - 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. - - - Except where noted, this license applies to any and all software - programs and associated documentation files created by the - Original Author, when distributed with the Software. - - "Node.js" and "node" trademark Joyent, Inc. npm is not officially - part of the Node.js project, and is neither owned by nor - officially affiliated with Joyent, Inc. - - Packages published in the npm registry are not part of npm - itself, are the sole property of their respective maintainers, - and are not covered by this license. - - "npm Logo" created by Mathias Pettersson and Brian Hammond, - used with permission. - - This program uses "node-uuid", Copyright (c) 2010 Robert Kieffer, - according to the terms of the MIT license. - - This program uses "request", Copyright (c) 2011 Mikeal Rogers, - according to the terms of the Apache license. - - This program uses "mkdirp", Copyright (c) 2010 James Halliday, - according to the terms of the MIT/X11 license. - """ - -- tools/doc/node_modules/marked Marked is a Markdown parser. Marked's - license follows - """ - Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/) - - 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. - """ - - - ----------- -jsstyle - (Included through the ctype NPM module: lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tools/jsstyle) ----------- - -The contents of this file are subject to the terms of the -Common Development and Distribution License (the "License"). -You may not use this file except in compliance with the License. - -You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE -or http://www.opensolaris.org/os/licensing. -See the License for the specific language governing permissions -and limitations under the License. - -When distributing Covered Code, include this CDDL HEADER in each -file and include the License file at usr/src/OPENSOLARIS.LICENSE. -If applicable, add the following below this CDDL HEADER, with the -fields enclosed by brackets "[]" replaced with your own identifying -information: Portions Copyright [yyyy] [name of copyright owner] - - -Copyright 2008 Sun Microsystems, Inc. All rights reserved. -Use is subject to license terms. - -Copyright 2011 Joyent, Inc. All rights reserved. - - ----------- -OpenStreetMap: http://openstreetmap.org/ - (San Francisco SOMA map in examples/parties/public/soma.jpeg) ----------- - -OpenStreetMap is open data, licensed under the Open Data Commons Open Database -License (ODbL): http://opendatacommons.org/licenses/odbl/1.0/. Any rights in -individual contents of the database are licensed under the Database Contents -License: http://opendatacommons.org/licenses/dbcl/1.0/ The cartography is -licensed under the under the Creative Commons Attribution-ShareAlike 2.0 license -(CC-BY-SA). Full information is available at -http://www.openstreetmap.org/copyright - - - ----------- -char-spinner: https://github.com/isaacs/char-spinner -inflight: https://github.com/isaacs/inflight ----------- - -Copyright (c) Isaac Z. Schlueter - -The ISC License - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ----------- -npm-cache-filename: https://github.com/npm/npm-cache-filename ----------- - -Copyright (c) npm, Inc. and Contributors - -The ISC License - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ----------- -node-exit: https://github.com/cowboy/node-exit ----------- - -Copyright (c) 2013 "Cowboy" Ben Alman -Licensed under the MIT license. - - ----------- -wrappy: https://github.com/npm/wrappy ----------- - -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ----------- -jsdoc: https://github.com/jsdoc3/jsdoc ----------- - -# License # - -JSDoc 3 is free software, licensed under the Apache License, Version 2.0 (the -"License"). Commercial and non-commercial use are permitted in compliance with -the License. - -Copyright (c) 2011-2014 Michael Mathews and the -[contributors to JSDoc](https://github.com/jsdoc3/jsdoc/graphs/contributors). -All rights reserved. - -You may obtain a copy of the License at: -http://www.apache.org/licenses/LICENSE-2.0 - -In addition, a copy of the License is included with this distribution. - -As stated in Section 7, "Disclaimer of Warranty," of the License: - -> Licensor provides the Work (and each Contributor provides its Contributions) -> on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either -> express or implied, including, without limitation, any warranties or -> conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A -> PARTICULAR PURPOSE. You are solely responsible for determining the -> appropriateness of using or redistributing the Work and assume any risks -> associated with Your exercise of permissions under this License. - -The source code for JSDoc 3 is available at: -https://github.com/jsdoc3/jsdoc - -# Third-Party Software # - -JSDoc 3 includes or depends upon the following third-party software, either in -whole or in part. Each third-party software package is provided under its own -license. - -## MIT License ## - -Several of the following software packages are distributed under the MIT -license, which is reproduced below: - -> 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. - -## Acorn ## - -Portions of the Acorn source code are incorporated into the following files: - -- `lib/jsdoc/src/walker.js` - -Acorn is distributed under the MIT license, which is reproduced above. - -Copyright (C) 2012 Marijn Haverbeke . - -The source code for Acorn is available at: -https://github.com/marijnh/acorn - -## Async.js ## - -Async.js is distributed under the MIT license, which is reproduced above. - -Copyright (c) 2010 Caolan McMahon. - -The source code for Async.js is available at: -https://github.com/caolan/async - -## Catharsis ## - -Catharsis is distributed under the MIT license, which is reproduced above. - -Copyright (c) 2012-2014 Jeff Williams. - -The source code for Catharsis is available at: -https://github.com/hegemonic/catharsis - -## crypto-browserify ## - -crypto-browserify is distributed under the MIT license, which is reproduced -above. - -Copyright (c) 2013 Dominic Tarr. - -The source code for crypto-browserify is available at: -https://github.com/dominictarr/crypto-browserify - -## escape-string-regexp ## - -escape-string-regexp is distributed under the MIT License, which is reproduced -above. - -Copyright (c) Sindre Sorhus . - -The source code for escape-string-regexp is available at: -https://github.com/sindresorhus/escape-string-regexp - -## Esprima ## - -Esprima is distributed under the BSD 2-clause license: - -> Redistribution and use in source and binary forms, with or without -> modification, are permitted provided that the following conditions are met: -> -> - Redistributions of source code must retain the above copyright notice, -> this list of conditions and the following disclaimer. -> - 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. -> -> 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 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. - -Copyright (c) 2011-2013 Ariya Hidayat and other Esprima contributors. - -The source code for Esprima is available at: -https://github.com/ariya/esprima - -## events ## - -Portions of the events source code are incorporated into the following files: - -+ `rhino/events.js` - -events is distributed under the MIT license, which is reproduced above. - -Copyright Joyent, Inc. and other Node contributors. All rights reserved. - -The source code for events is available at: -https://github.com/Gozala/events - -## github-flavored-markdown ## - -github-flavored-markdown is distributed under the BSD 3-clause license: - -> Copyright (c) 2007, John Fraser All rights -> reserved. -> -> Original Markdown copyright (c) 2004, John Gruber -> All rights reserved. -> -> Redistribution and use in source and binary forms, with or without -> modification, are permitted provided that the following conditions are met: -> -> - Redistributions of source code must retain the above copyright notice, -> this list of conditions and the following disclaimer. -> -> - 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. - -> - Neither the name "Markdown" nor the names of its contributors may be used -> to endorse or promote products derived from this software without specific -> prior written permission. -> -> 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. - -The source code for github-flavored-markdown is available at: -https://github.com/hegemonic/github-flavored-markdown - -## Google Code Prettify ## - -Google Code Prettify is distributed under the Apache License 2.0, which is -included with this package. - -Copyright (c) 2006 Google Inc. - -The source code for Google Code Prettify is available at: -https://code.google.com/p/google-code-prettify/ - -## Jasmine ## - -Jasmine is distributed under the MIT license, which is reproduced above. - -Copyright (c) 2008-2011 Pivotal Labs. - -The source code for Jasmine is available at: -https://github.com/pivotal/jasmine - -## jasmine-node ## - -jasmine-node is distributed under the MIT license, which is reproduced above. - -Copyright (c) 2010 Adam Abrons and Misko Hevery (http://getangular.com). - -The source code for jasmine-node is available at: -https://github.com/mhevery/jasmine-node - -## js2xmlparser ## - -js2xmlparser is distributed under the MIT license, which is reproduced above. - -Copyright (c) 2012 Michael Kourlas. - -The source code for js2xmlparser is available at: -https://github.com/michaelkourlas/node-js2xmlparser - -## Node.js ## - -Portions of the Node.js source code are incorporated into the following files: - -- `rhino/fs.js` -- `rhino/path.js` -- `rhino/querystring.js` -- `rhino/util.js` - -Node.js is distributed under the MIT license, which is reproduced above. - -Copyright Joyent, Inc. and other Node contributors. All rights reserved. - -The source code for Node.js is available at: -https://github.com/joyent/node - -## node-browser-builtins ## - -Portions of the node-browser-builtins source code are incorporated into the -following files: - -- `rhino/assert.js` -- `rhino/rhino-shim.js` - -node-browser-builtins is distributed under the MIT license, which is reproduced -above. - -The source code for node-browser-builtins is available at: -https://github.com/alexgorbatchev/node-browser-builtins - -## Requizzle ## - -Requizzle is distributed under the MIT license, which is reproduced above. - -Copyright (c) 2014 Google Inc. All rights reserved. -Copyright (c) 2012-2013 Johannes Ewald. - -The source code for Requizzle is available at: -https://github.com/hegemonic/requizzle - -## Rhino ## - -Rhino is distributed under the following licenses: - -### MPL 2.0 License ### -The majority of the source code for Rhino is available under the Mozilla Public -License (MPL) 2.0, which is included in this distribution. - -### License for portions of the Rhino debugger ### -Additionally, some files are available under the BSD 3-clause license: - -> Copyright 1997, 1998 Sun Microsystems, Inc. All Rights Reserved. -> -> Redistribution and use in source and binary forms, with or without -> modification, are permitted provided that the following conditions are met: -> -> - Redistributions of source code must retain the above copyright notice, -> this list of conditions and the following disclaimer. -> - 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. -> - Neither the name of Sun Microsystems nor the names of its contributors -> may be used to endorse or promote products derived from this software -> without specific prior written permission. -> -> 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. - -### Source Code ### -The source code for Rhino is available at: -https://github.com/jsdoc3/rhino - -## TaffyDB ## - -TaffyDB is distributed under a modified BSD license: - -> All rights reserved. -> -> Redistribution and use of this software in source and binary forms, with or -> without modification, are permitted provided that the following condition is -> met: -> -> Redistributions of source code must retain the above copyright notice, this -> list of conditions and the following disclaimer. -> -> 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. - -The source code for TaffyDB is available at: -https://github.com/hegemonic/taffydb - -## Tomorrow Theme for Google Code Prettify ## - -License information for the Tomorrow Theme for Google Code Prettify is not -available. It is assumed that the package is distributed under an open source -license that is compatible with the Apache License 2.0. - -Copyright (c) Yoshihide Jimbo. - -The source code for the Tomorrow Theme is available at: -https://github.com/jmblog/color-themes-for-google-code-prettify - -## tv4 ## - -tv4 is in the public domain. It is also distributed under the MIT license, which -is reproduced above. - -The source code for tv4 is available at: -https://github.com/geraintluff/tv4 - -## Underscore.js ## - -Underscore.js is distributed under the MIT license, which is reproduced above. - -Copyright (c) 2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative -Reporters & Editors. - -The source code for Underscore.js is available at: -https://github.com/jashkenas/underscore - -## wrench-js ## - -wrench-js is distributed under the MIT license, which is reproduced above. - -Copyright (c) 2010 Ryan McGrath. - -The source code for wrench-js is available at: -https://github.com/ryanmcgrath/wrench-js diff --git a/LICENSES/Apache.txt b/LICENSES/Apache.txt new file mode 100644 index 0000000000..1caf90fe2e --- /dev/null +++ b/LICENSES/Apache.txt @@ -0,0 +1,198 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + +The following libraries are licensed under the Apache License, version 2.0: + +""" +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +""" + +---------- +mongodb: (Node driver) https://github.com/mongodb/node-mongodb-native +kerberos: https://github.com/christkv/kerberos +---------- + +Copyright 2009 - 2010 Christian Amor Kvalheim. + + +---------- +less: https://github.com/cloudhead/less.js +---------- + +Copyright (c) 2009-2010 Alexis Sellier + + +---------- +useragent: https://github.com/fintanf/node-useragent +---------- + +This parser is based on the user agent parser; code.google.com/p/ua-parser/ +which is released under Apache license: + +Copyright 2009 Google Inc. + + +---------- +request: https://github.com/mikeal/request +aws-sign2: https://github.com/mikeal/aws-sign +cookie-jar: https://github.com/mikeal/cookie-jar +forever-agent: https://github.com/mikeal/forever-agent +oauth-sign: https://github.com/mikeal/oauth-sign +tunnel-agent: https://github.com/mikeal/tunnel-agent +---------- + +Copyright (c) 2011, 2012, 2013 Mikeal Rogers + + +---------- +code-prettify: http://code.google.com/p/google-code-prettify/ +---------- + +Copyright 2011 Mike Samuel et al + + +---------- +bootstrap: https://github.com/twitter/bootstrap +---------- + +Copyright 2012 Twitter, Inc. + + +---------- +bson: https://github.com/mongodb/js-bson +---------- + +Copyright (c) 2012 Christian Amor Kvalheim + + +---------- +websocket: https://github.com/Worlize/WebSocket-Node/blob/master/LICENSE +---------- + +Brian McKelvey + + +---------- +amdefine: https://github.com/jrburke/amdefine +---------- + +Copyright (c) 2011, The Dojo Foundation + + +---------- +nlogger: https://github.com/igo/nlogger +---------- + +Copyright (c) 2010 by Igor Urmincek + + +---------- +Diff Match and Patch: http://code.google.com/p/google-diff-match-patch/ +---------- + +Copyright 2006 Google Inc. + + +---------- +ansicolors: https://github.com/thlorenz/ansicolors +ansistyles: https://github.com/thlorenz/ansistyles +combine-source-map: https://github.com/thlorenz/combine-source-map +convert-source-map: https://github.com/thlorenz/convert-source-map +inline-source-map: https://github.com/thlorenz/inline-source-map +---------- + +Copyright 2013 Thorsten Lorenz. All rights reserved. + + +---------- +columnify: https://github.com/timoxley/columnify +---------- + +Copyright Tim Oxley + + +---------- +eventemitter3: https://github.com/3rd-Eden/EventEmitter3 +---------- + +Copyright Arnout Kazemier + + +---------- +punycode: https://github.com/bestiejs/punycode.js +---------- + +Copyright Mathias Bynens + + +---------- +browserstack-webdriver: https://github.com/browserstack/selenium-webdriver-nodejs +---------- + +Copyright 2009-2014 Software Freedom Conservancy + + +---------- +node-inspector: https://github.com/node-inspector/node-inspector +---------- + +Copyright (c) 2011, Danny Coates + + +---------- +phantomjs: https://github.com/Medium/phantomjs (npm installer) +---------- + +Copyright 2012 The Obvious Corporation. + + +---------- +elementtree: https://github.com/racker/node-elementtree +---------- + +Copyright (c) 2011, Rackspace, Inc. +The ElementTree toolkit is Copyright (c) 1999-2007 by Fredrik Lundh + + +---------- +xcode: https://github.com/alunny/node-xcode +---------- + +Copyright 2012 Andrew Lunny, Adobe Systems + + +---------- +cordova: https://git-wip-us.apache.org/repos/asf/cordova-cli.git +cordova-js: https://git-wip-us.apache.org/repos/asf/cordova-js.git +cordova-lib: https://git-wip-us.apache.org/repos/asf/cordova-lib.git +---------- + +Apache Cordova +Copyright 2012 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + + +---------- +ip: https://github.com/indutny/node-ip +---------- + +Copyright Fedor Indutny, 2012 + + +---------- +kew: https://github.com/Medium/kew +---------- + +Copyright 2012 The Obvious Corporation. +http://obvious.com/ + diff --git a/LICENSES/Artistic.txt b/LICENSES/Artistic.txt new file mode 100644 index 0000000000..ab4c211214 --- /dev/null +++ b/LICENSES/Artistic.txt @@ -0,0 +1,16 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + + +---------- +strong-data-uri: https://github.com/strongloop/strong-data-uri +---------- + +Redistributed under the terms of the Artistic License, version 2.0. + +http://opensource.org/licenses/Artistic-2.0 diff --git a/LICENSES/BSD.txt b/LICENSES/BSD.txt new file mode 100644 index 0000000000..88df5b168d --- /dev/null +++ b/LICENSES/BSD.txt @@ -0,0 +1,844 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + + +---------- +tar-pack: https://github.com/ForbesLindesay/tar-pack +---------- + +Copyright (c) 2014, Forbes Lindesay +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* 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. + +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 HOLDER 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. + + +---------- +sqlite3: https://github.com/mapbox/node-sqlite3 +---------- + +Copyright (c) MapBox +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +- 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. +- Neither the name "MapBox" nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + +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 HOLDER 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. + + +---------- +node-pre-gyp: https://github.com/mapbox/node-pre-gyp +---------- + +Copyright (c), Mapbox + +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * 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. + * Neither the name of node-pre-gyp nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +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. + + +---------- +uglify-js: https://github.com/mishoo/UglifyJS2 +---------- + +Copyright 2012-2013 (c) Mihai Bazon + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * 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. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “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 HOLDER 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. + + +---------- +openssl: http://www.openssl.org/ +---------- + +/* ==================================================================== + * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. 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. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * openssl-core@openssl.org. + * + * 5. Products derived from this software may not be called "OpenSSL" + * nor may "OpenSSL" appear in their names without prior written + * permission of the OpenSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED 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 OpenSSL PROJECT OR + * ITS 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. + * ==================================================================== + * + * This product includes cryptographic software written by Eric Young + * (eay@cryptsoft.com). This product includes software written by Tim + * Hudson (tjh@cryptsoft.com). + * + */ + +--------- +showdown: http://www.attacklab.net/ +--------- + +Copyright (c) 2007, John Fraser + +All rights reserved. + +Original Markdown copyright (c) 2004, John Gruber + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +* 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. + +* Neither the name "Markdown" nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +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. + + +---------- +history.js: https://github.com/balupton/History.js/ +---------- + +Copyright (c) 2011, Benjamin Arthur Lupton +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of Benjamin Arthur Lupton nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +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 HOLDER 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. + + +---------- +tar: https://github.com/isaacs/node-tar +fstream: https://github.com/isaacs/fstream +fstream-npm: https://github.com/isaacs/fstream-npm +fstream-ignore: https://github.com/isaacs/fstream-ignore +read: https://github.com/isaacs/read +block-stream: https://github.com/isaacs/block-stream +glob: https://github.com/isaacs/node-glob +chownr: https://github.com/isaacs/chownr +uid-number: https://github.com/isaacs/uid-number +sigmund: https://github.com/isaacs/sigmund +---------- + +Copyright (c) Isaac Z. Schlueter +All rights reserved. + +The BSD License + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. 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. + +THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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. + + +---------- +lockfile: https://github.com/isaacs/lockfile +npm-registry-client: https://github.com/isaacs/npm-registry-client +npmlog: https://github.com/isaacs/npmlog +once: https://github.com/isaacs/once +osenv: https://github.com/isaacs/osenv +mute-stream: https://github.com/isaacs/mute-stream +couch-login: https://github.com/isaacs/couch-login +npmconf: https://github.com/isaacs/npmconf +read-installed: https://github.com/isaacs/read-installed +read-package-json: https://github.com/isaacs/read-package-json +promzard: https://github.com/isaacs/promzard +chmodr: https://github.com/isaacs/chmodr +cmd-shim: https://github.com/ForbesLindesay/cmd-shim +json-stringify-safe: https://github.com/isaacs/json-stringify-safe +sax: https://github.com/isaacs/sax-js +---------- + +Copyright (c) Isaac Z. Schlueter ("Author") +All rights reserved. + +The BSD License + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. + + +---------- +D3: https://github.com/mbostock/d3 +---------- + +Copyright (c) 2012, Michael Bostock +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* 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. + +* The name Michael Bostock may not be used to endorse or promote products + derived from this software without specific prior written permission. + +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 MICHAEL BOSTOCK 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. + + +---------- +jsbn: http://www-cs-students.stanford.edu/~tjw/jsbn/ +---------- + +Copyright (c) 2003-2005 Tom Wu +All Rights Reserved. + +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" AND WITHOUT WARRANTY OF ANY KIND, +EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY +WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + +IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, +INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF +THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +In addition, the following condition applies: + +All redistributions must retain an intact copy of this copyright notice +and disclaimer. + + +---------- +jsSHA2: http://anmar.eu.org/projects/jssha2/ +with Unicode support (Utf8Encode function) added by + http://www.webtoolkit.info/javascript-sha256.html +---------- + +Copyright (c) 2003-2004, Angel Marin +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + * 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. + * Neither the name of the nor the names of its contributors may + be used to endorse or promote products derived from this software without + specific prior written permission. + +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. + + +---------- +ycssmin: https://github.com/yui/ycssmin +---------- + +Copyright 2012 Yahoo! Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of the 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. + +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 YAHOO! INC. 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. + + +---------- +source-map: https://github.com/mozilla/source-map +---------- + +Copyright (c) 2009-2011, Mozilla Foundation and contributors +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* 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. + +* Neither the names of the Mozilla Foundation nor the names of project + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +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 HOLDER 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. + + +---------- +boom: https://github.com/spumko/boom +---------- + +Copyright (c) 2012-2013, Walmart. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of Walmart nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +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 WALMART 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. + + +---------- +hoek: https://github.com/spumko/hoek +---------- + +Copyright (c) 2011-2013, Walmart. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of Walmart nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +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 WALMART 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. + + + * * * + + +Portions of this project were initially based on Postmile, Copyright (c) 2011, Yahoo Inc. +Postmile is published at https://github.com/yahoo/postmile and its licensing terms are +published at https://github.com/yahoo/postmile/blob/master/LICENSE. + + +---------- +cryptiles: https://github.com/hueniverse/cryptiles +hawk: https://github.com/hueniverse/hawk +sntp: https://github.com/hueniverse/sntp +---------- + +Copyright (c) 2012-2013, Eran Hammer. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of Eran Hammer nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +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 ERAN HAMMER 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. + + +---------- +diff: https://github.com/kpdecker/jsdiff +---------- + +Software License Agreement (BSD License) + +Copyright (c) 2009-2011, Kevin Decker + +All rights reserved. + +Redistribution and use of this software in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above + copyright notice, this list of conditions and the + following disclaimer. + +* 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. + +* Neither the name of Kevin Decker nor the names of its + contributors may be used to endorse or promote products + derived from this software without specific prior + written permission. + +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. + + +---------- +escope: https://github.com/Constellation/escope +estraverse: https://github.com/Constellation/estraverse +esutils: https://github.com/Constellation/esutils +escodegen: http://github.com/Constellation/escodegen +---------- + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + +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 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. + + +---------- +esprima: https://github.com/ariya/esprima +esprima-fb: https://github.com/facebook/esprima/tree/fb-harmony +esrefactor: https://github.com/ariya/esrefactor +---------- + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + +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 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. + + +---------- +normalize-package-data: https://github.com/meryn/normalize-package-data +---------- + +This package contains code originally written by Isaac Z. Schlueter. +Used with permission. + +Copyright (c) Meryn Stol ("Author") +All rights reserved. + +The BSD License + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. + + +---------- +npm-user-validate: https://github.com/robertkowalski/npm-user-validate +github-url-from-username-repo: https://github.com/robertkowalski/github-url-from-username-repo +---------- + +Copyright (c) Robert Kowalski +All rights reserved. + +The BSD License + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. + + +---------- +phantomjs: http://phantomjs.org/ +---------- + +Copyright 2010-2014 Ariya Hidayat + + +---------- +shelljs: http://github.com/arturadib/shelljs +---------- + +Copyright (c) 2012, Artur Adib +All rights reserved. + +You may use this project under the terms of the New BSD license as follows: + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of Artur Adib nor the + names of the contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +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 ARTUR ADIB 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. + + +---------- +taffydb: https://github.com/typicaljoe/taffydb +---------- + +Copyright (c) All rights reserved. + +Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following condition is met: + +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +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. + + + + +---------- +npm-install-checks: https://github.com/npm/npm-install-checks +---------- + +Copyright (c) Robert Kowalski and Isaac Z. Schlueter ("Authors") +All rights reserved. + +The BSD License + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +THIS SOFTWARE IS PROVIDED BY THE AUTHORS 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 AUTHORS 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. diff --git a/LICENSES/CDDL.txt b/LICENSES/CDDL.txt new file mode 100644 index 0000000000..1d37f9c667 --- /dev/null +++ b/LICENSES/CDDL.txt @@ -0,0 +1,32 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + +---------- +jsstyle +---------- + +The contents of this file are subject to the terms of the +Common Development and Distribution License (the "License"). +You may not use this file except in compliance with the License. + +You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +or http://www.opensolaris.org/os/licensing. +See the License for the specific language governing permissions +and limitations under the License. + +When distributing Covered Code, include this CDDL HEADER in each +file and include the License file at usr/src/OPENSOLARIS.LICENSE. +If applicable, add the following below this CDDL HEADER, with the +fields enclosed by brackets "[]" replaced with your own identifying +information: Portions Copyright [yyyy] [name of copyright owner] + + +Copyright 2008 Sun Microsystems, Inc. All rights reserved. +Use is subject to license terms. + +Copyright 2011 Joyent, Inc. All rights reserved. diff --git a/LICENSES/DWTFYWT.txt b/LICENSES/DWTFYWT.txt new file mode 100644 index 0000000000..727a7b1b63 --- /dev/null +++ b/LICENSES/DWTFYWT.txt @@ -0,0 +1,51 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + +The following librararies are licensed under the DO WHAT THE FUCK YOU WANT TO +PUBLIC LICENSE, Version 2: + + +""" + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. +""" + + +---------- +inherits: https://github.com/isaacs/inherits +---------- + +By Isaac Z. Schlueter (http://blog.izs.me/) + + + +---------- +Base64: https://github.com/davidchambers/Base64.js +---------- + + Copyright (c) 2011..2012 David Chambers + + +---------- +opener: https://github.com/domenic/opener +path-is-inside: https://github.com/domenic/path-is-inside +sorted-object: https://github.com/domenic/sorted-object +---------- + + Copyright (C) 2012 Domenic Denicola diff --git a/LICENSES/Eclipse.txt b/LICENSES/Eclipse.txt new file mode 100644 index 0000000000..5c41c64561 --- /dev/null +++ b/LICENSES/Eclipse.txt @@ -0,0 +1,89 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + +The following libraries are licensed under the Eclipse Public License, version 1.0: + +""" +Eclipse Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and +b) in the case of each subsequent Contributor: +i) changes to the Program, and +ii) additions to the Program; +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + +2. GRANT OF RIGHTS + +a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. +b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. +c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. +d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and +b) its license agreement: +i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; +ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; +iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and +iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and +b) a copy of this Agreement must be included with each copy of the Program. +Contributors may not remove or alter any copyright notices contained within the Program. + +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +""" + +---------- +mori: https://github.com/swannodette/mori +---------- + +Copyright (C) 2013 David Nolen and contributors + diff --git a/LICENSES/ISC.txt b/LICENSES/ISC.txt new file mode 100644 index 0000000000..7001ad79c4 --- /dev/null +++ b/LICENSES/ISC.txt @@ -0,0 +1,46 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + +The following libraries are licensed under the ISC License: + +""" +The ISC License + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +""" + + +---------- +char-spinner: https://github.com/isaacs/char-spinner +inflight: https://github.com/isaacs/inflight +---------- + +Copyright (c) Isaac Z. Schlueter + + +---------- +npm-cache-filename: https://github.com/npm/npm-cache-filename +---------- + +Copyright (c) npm, Inc. and Contributors + + +---------- +wrappy: https://github.com/npm/wrappy +---------- + +Copyright (c) Isaac Z. Schlueter and Contributors diff --git a/LICENSES/IntelHAXM.txt b/LICENSES/IntelHAXM.txt new file mode 100644 index 0000000000..73dd26b024 --- /dev/null +++ b/LICENSES/IntelHAXM.txt @@ -0,0 +1,33 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + + + +---------- +Intel HAXM +---------- + +Intel® Hardware Accelerated Execution Manager End-User License Agreement + +Last Updated April 15, 2014 + +Copyright© 2013 Intel Corporation. +All rights reserved. + +Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: + +1. Redistributions must reproduce the above copyright notice and the following disclaimer in the documentation and/or other materials provided with the distribution. + +2. Neither the name of Intel Corporation nor the names of its suppliers may be used to endorse or promote products derived from this software without specific prior written permission. + +3. No reverse engineering, de-compilation, or disassembly of this software is permitted. Limited patent license. Intel Corporation grants a world-wide, royalty-free, non-exclusive license under patents it now or hereafter owns or controls to make, have made, use, import, offer to sell and sell ("Utilize") this software, but solely to the extent that any such patent is necessary to Utilize the software alone. The patent license shall not apply to any combinations which include this software. No hardware per se is licensed hereunder. + +DISCLAIMER. +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. + + diff --git a/LICENSES/MIT.txt b/LICENSES/MIT.txt new file mode 100644 index 0000000000..8b7ec70bf6 --- /dev/null +++ b/LICENSES/MIT.txt @@ -0,0 +1,1042 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + +The following libraries are licensed under the MIT License: + +""" +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. +""" + +Although they are distributed under the same license as Meteor, they +retain the copyright of the original author. + + + + +---------- +connect: https://github.com/senchalabs/connect +---------- + +Copyright (c) 2010 Sencha Inc. +Copyright (c) 2011 LearnBoost +Copyright (c) 2011 TJ Holowaychuk + +---------- +gzippo: https://github.com/tomgco/gzippo +---------- + +Copyright (c) 2011 Tom Gallacher + + +---------- +coffee-script: https://github.com/jashkenas/coffee-script +---------- + +Copyright (c) 2009-2012 Jeremy Ashkenas + + +---------- +mime: https://github.com/bentomas/node-mime +---------- + +Copyright (c) 2010 Benjamin Thomas, Robert Kieffer + + +---------- +handlebars: https://github.com/wycats/handlebars.js/ +---------- + +Copyright (C) 2011 by Yehuda Katz + + +---------- +clean-css: https://github.com/GoalSmashers/clean-css +---------- + +Copyright (c) 2011 GoalSmashers.com + + +---------- +progress: https://github.com/visionmedia/node-progress +qs: https://github.com/visionmedia/node-querystring +debug: https://github.com/visionmedia/debug +nib: https://github.com/visionmedia/nib +bytes: https://github.com/visionmedia/bytes.js +commander: https://github.com/visionmedia/commander.js +fresh: https://github.com/visionmedia/node-fresh +github-url-from-git: https://github.com/visionmedia/node-github-url-from-git +pause: https://github.com/visionmedia/node-pause +range-parser: https://github.com/visionmedia/node-range-parser +send: https://github.com/visionmedia/send +methods: https://github.com/visionmedia/node-methods +css-parse: https://github.com/reworkcss/css-parse +css-stringify: https://github.com/reworkcss/css-stringify +callsite: https://github.com/visionmedia/callsite +indexof: https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz +escape-html: https://github.com/component/escape-html +express: https://github.com/strongloop/express +---------- + +Copyright (c) 2010 TJ Holowaychuk +Copyright (c) 2011 TJ Holowaychuk +Copyright (c) 2012 TJ Holowaychuk +Copyright (c) 2013 TJ Holowaychuk +Copyright (c) 2011, 2013 TJ Holowaychuk +Copyright (c) 2009-2014 TJ Holowaychuk + + +---------- +fibers: https://github.com/laverdet/node-fibers +---------- + +Copyright 2011 Marcel Laverdet + + +---------- +http-proxy: https://github.com/nodejitsu/node-http-proxy +---------- + +Copyright (c) 2010 Charlie Robbins, Mikeal Rogers, Fedor Indutny, & Marak Squires + + +---------- +sockjs: https://github.com/sockjs/sockjs-client +---------- + +Copyright (C) 2011 VMware, Inc. + + +---------- +alea: http://baagoe.org/en/wiki/Better_random_numbers_for_javascript +---------- + +Copyright (C) 2010 by Johannes Baagøe + + +---------- +jquery: https://github.com/jquery/jquery +---------- + +Copyright (c) 2011 John Resig, http://jquery.com/ + + +---------- +underscore: https://github.com/documentcloud/underscore +backbone: https://github.com/documentcloud/backbone/ +underscore-contrib: https://github.com/documentcloud/underscore-contrib +---------- + +Copyright (c) 2009-2012 Jeremy Ashkenas, DocumentCloud +Copyright (c) 2013 Jeremy Ashkenas, Michael Fogus, DocumentCloud and Investigative Reporters & Editors + + +---------- +amplify: https://github.com/appendto/amplify +---------- + +Copyright 2011 appendTo LLC. (http://appendto.com/team) + + +---------- +connect-gzip: https://github.com/nateps/connect-gzip +---------- + +Copyright (c) 2011 Nate Smith + + +---------- +socket.io: https://github.com/learnboost/socket.io +ms: https://github.com/guille/ms.js +---------- + +Copyright (c) 2011 Guillermo Rauch + + +---------- +stylus: https://github.com/learnboost/stylus +---------- + +Copyright (c) 2010 LearnBoost + + +---------- +jquery-waypoints: https://github.com/imakewebthings/jquery-waypoints +---------- + +Copyright (c) 2011-2012 Caleb Troughton + + +---------- +jquery-layout: http://layout.jquery-dev.net/ +---------- + +Copyright (c) 2008 + Fabrizio Balliano (http://www.fabrizioballiano.net) + Kevin Dalman (http://allpro.net) + + +---------- +rbytes: https://github.com/akdubya/rbytes +---------- + +Copyright (c) 2010 Aleksander Williams + + +---------- +colors: https://github.com/Marak/colors.js +---------- + +Copyright (c) 2010 +Marak Squires +Alexis Sellier (cloudhead) + + +---------- +pkginfo: https://github.com/indexzero/node-pkginfo +---------- + +Copyright (c) 2010 Charlie Robbins. + +---------- +underscore.string: https://github.com/epeli/underscore.string +---------- + +Copyright (c) 2011 Esa-Matti Suuronen esa-matti@suuronen.org + + +---------- +node-gyp: https://github.com/TooTallNate/node-gyp +keypress: https://github.com/TooTallNate/keypress +bindings: https://github.com/TooTallNate/node-bindings +plist-with-patches: https://github.com/agrieve/node-plist +---------- + +Copyright (c) 2010-2011- Nathan Rajlich +Copyright (c) 2012 Nathan Rajlich + + + +---------- +node-uuid: https://github.com/broofa/node-uuid +---------- + +Copyright (c) 2010 Robert Kieffer + + +---------- +ansi: https://github.com/TooTallNate/ansi.js +---------- + +Copyright (c) 2012 Nathan Rajlich + + +---------- +faye-websocket: https://github.com/faye/faye-websocket-node +websocket-driver: https://github.com/faye/websocket-driver-node +---------- + +Copyright (c) 2009-2013 James Coglan +Copyright (c) 2010-2013 James Coglan + + +---------- +cssom: https://github.com/NV/CSSOM +---------- + +Copyright (c) Nikita Vasilyev + + +---------- +yamlparser: https://github.com/h4evr/commonjs-javascript-yaml-parser +---------- + +Copyright (c) 2011 Diogo Costa (costa.h4evr@gmail.com) + + +---------- +semver: https://github.com/isaacs/node-semver +abbrev: https://github.com/isaacs/abbrev-js +graceful-fs: https://github.com/isaacs/node-graceful-fs +lru-cache: https://github.com/isaacs/node-lru-cache +proto-list: https://github.com/isaacs/proto-list +rimraf: https://github.com/isaacs/rimraf +minimatch: https://github.com/isaacs/minimatch +ini: https://github.com/isaacs/ini +nopt: https://github.com/isaacs/nopt +slide: https://github.com/isaacs/slide-flow-control +which: https://github.com/isaacs/node-which +minimatch: https://github.com/isaacs/minimatch +core-util-is: https://github.com/isaacs/core-util-is +rimraf: https://github.com/isaacs/rimraf +---------- + +Copyright 2009, 2010, 2011 Isaac Z. Schlueter. +All rights reserved. + + +---------- +archy: https://github.com/substack/node-archy +astw: https://github.com/substack/astw +binary: https://github.com/substack/node-binary +browser-pack: https://github.com/substack/browser-pack +buffers: https://github.com/substack/node-buffers +chainsaw: https://github.com/substack/node-chainsaw +commondir: https://github.com/substack/node-commondir +deep-equal: https://github.com/substack/node-deep-equal +defined: https://github.com/substack/defined +deps-sort: https://github.com/substack/deps-sort +detective: https://github.com/substack/node-detective +editor: https://github.com/substack/node-editor +http-browserify: https://github.com/substack/http-browserify +https-browserify: https://github.com/substack/https-browserify +insert-module-globals: https://github.com/substack/insert-module-globals +lexical-scope: https://github.com/substack/lexical-scope +minimist: https://github.com/substack/minimist +mkdirp: https://github.com/substack/node-mkdirp +module-deps: https://github.com/substack/module-deps +optimist: https://github.com/substack/node-optimist +parents: https://github.com/substack/node-parents +path-browserify: https://github.com/substack/path-browserify +quotemeta: https://github.com/substack/quotemeta +resolve: https://github.com/substack/node-resolve +shallow-copy: https://github.com/substack/shallow-copy +shell-quote: https://github.com/substack/node-shell-quote +stream-browserify: https://github.com/substack/stream-browserify +subarg: https://github.com/substack/subarg +syntax-error: https://github.com/substack/node-syntax-error +text-table: https://github.com/substack/text-table +traverse: https://github.com/substack/js-traverse +tty-browserify: https://github.com/substack/tty-browserify +typedarray: https://github.com/substack/typedarray +vm-browserify: https://github.com/substack/vm-browserify +wordwrap: https://github.com/substack/node-wordwrap +yargs: https://github.com/chevex/yargs +---------- + +Copyright 2010, 2011, 2012, 2013 James Halliday (mail@substack.net) + + +---------- +config-chain: https://github.com/dominictarr/config-chain +JSONStream: https://github.com/dominictarr/JSONStream/ +crypto-browserify: https://github.com/dominictarr/crypto-browserify +rc: https://github.com/dominictarr/rc +stream-combiner: https://github.com/dominictarr/stream-combiner +through: http://github.com/dominictarr/through +---------- + +Copyright (c) 2011 Dominic Tarr +Copyright (c) 2012 'Dominic Tarr' +Copyright (c) 2013 Dominic Tarr + + + +---------- +async: https://github.com/caolan/async +---------- + +Copyright (c) 2010 Caolan McMahon + + +---------- +combined-stream: https://github.com/felixge/node-combined-stream +delayed-stream: https://github.com/felixge/node-delayed-stream +---------- + +Copyright (c) 2011 Debuggable Limited + + +---------- +retry: https://github.com/felixge/node-retry +---------- + +Copyright (c) 2011: +Tim Koschützki (tim@debuggable.com) +Felix Geisendörfer (felix@debuggable.com) + +---------- +form-data: https://github.com/felixge/node-form-data +multiparty: https://github.com/superjoe30/node-multiparty +---------- + +Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors + + +---------- +kexec: https://github.com/jprichardson/node-kexec +---------- + +Copyright (c) 2011-2012 JP Richardson + + +---------- +setimmediate: https://github.com/NobleJS/setImmediate +---------- + +Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, and Domenic Denicola + + +---------- +asn1: https://github.com/mcavage/node-asn1 +assert-plus: https://github.com/mcavage/node-assert-plus +---------- + +Copyright (c) 2011 Mark Cavage, All rights reserved. + + +---------- +awssum: https://github.com/awssum/awssum +---------- + +Copyright 2011-2013 Apps Attic Ltd. All rights reserved. +Copyright 2013 Andrew Chilton. All rights reserved. + + +---------- +data2xml: https://github.com/chilts/data2xml +---------- + +Copyright 2011-2012 Apps Attic Ltd. All rights reserved. + + +---------- +buffer-crc32: https://github.com/brianloveswords/buffer-crc32 +---------- + +Copyright (c) 2013 Brian J. Brennan + + +---------- +child-process-close: https://github.com/piscisaureus/child-process-close +---------- + +Copyright (C) 2012 Bert Belder + + +---------- +cli-color: https://github.com/medikoo/cli-color +es5-ext: https://github.com/medikoo/es5-ext +event-emitter: https://github.com/medikoo/event-emitter +memoizee: https://github.com/medikoo/memoize +next-tick: https://github.com/medikoo/next-tick +---------- + +Copyright (C) 2011, 2012 Mariusz Nowak (www.medikoo.com) + + +---------- +connect-jsonp: https://github.com/steelThread/connect-jsonp +---------- + +Copyright (c) 2010 Sean McDaniel + + +---------- +cookie: https://github.com/shtylman/node-cookie +process: https://github.com/shtylman/node-process +---------- + +Copyright (C) Roman Shtylman +Copyright (c) 2013 Roman Shtylman + + +---------- +cookie-signature: https://github.com/visionmedia/node-cookie-signature +---------- + +Copyright (c) 2012 LearnBoost + + +---------- +dateformat: https://github.com/felixge/node-dateformat +---------- + +(c) 2007-2009 Steven Levithan + + +---------- +eyes: https://github.com/cloudhead/eyes.js +vows: https://github.com/cloudhead/vows +---------- + +Copyright (c) 2009 cloudhead + + +---------- +fmt: https://github.com/appsattic/fmt +---------- + +Copyright © 2012-2013 AppsAttic Ltd + + +---------- +http-signature: https://github.com/joyent/node-http-signature +---------- + +Copyright Joyent, Inc. All rights reserved. + + +---------- +i: https://github.com/pksunkara/inflect +---------- + +Copyright Pavan Kumar Sunkara (pavan.sss1991@gmail.com) + + +---------- +ncp: https://github.com/AvianFlu/ncp +---------- + +Copyright (C) 2011 by Charlie McConnell + + +---------- +passgen: https://github.com/SDA/passgen +---------- + +Copyright (c) 2011 SDA Software Associates Inc. + + +---------- +sha: https://github.com/ForbesLindesay/sha +type-of: https://github.com/ForbesLindesay/type-of +uglify-to-browserify: https://github.com/ForbesLindesay/uglify-to-browserify +umd: https://github.com/ForbesLindesay/umd +rfile: https://github.com/ForbesLindesay/rfile +ruglify: https://github.com/ForbesLindesay/ruglify +---------- + +Copyright (c) 2013 Forbes Lindesay + + +---------- +source-map-support: https://github.com/evanw/node-source-map-support +---------- + +Copyright Evan Wallace + + +---------- +utile: https://github.com/flatiron/utile +---------- + +Copyright (c) 2010 Nodejitsu Inc. + + +---------- +xml: https://github.com/dylang/node-xml +---------- + +Copyright (c) 2011 Dylan Greene + + +---------- +xml2js: https://github.com/Leonidas-from-XIV/node-xml2js +---------- + +Copyright 2010, 2011, 2012, 2013. All rights reserved. + + +---------- +ctype: https://github.com/rmustacc/node-ctype +---------- + +Copyright 2011, Robert Mustacchi. All rights reserved. +Copyright 2011, Joyent, Inc. All rights reserved. + + +---------- +eachline: https://github.com/williamwicks/node-eachline +---------- + +Copyright (c) 2013 William Wicks + + +---------- +eventemitter2: https://github.com/hij1nx/EventEmitter2 +---------- + +Copyright (c) 2011 hij1nx http://www.twitter.com/hij1nx + + +---------- +stream-counter: https://github.com/superjoe30/node-stream-counter +---------- + +Copyright (c) 2013 Andrew Kelley + +---------- +uid2: https://github.com/coreh/uid2 +---------- + +Copyright (c) 2013 Marco Aurelio + +---------- +geojson-utils: https://github.com/maxogden/geojson-js-utils +concat-stream: https://github.com/maxogden/concat-stream +---------- + +Copyright (c) 2010 Max Ogden +Copyright (c) 2013 Max Ogden + + +---------- +bcrypt: https://github.com/ncb000gt/node.bcrypt.js +---------- + +Copyright (c) 2010 Nicholas Campbell + + +---------- +html5: https://github.com/aredridel/html5 +---------- + +Copyright (c) 2010 Aria Stewart + + +---------- +node-aes-gcm: https://github.com/xorbit/node-aes-gcm +---------- + +Copyright (c) 2013 Patrick Van Oosterwijck + + +---------- +isarray: https://github.com/juliangruber/isarray +builtins: https://github.com/juliangruber/builtins +constants-browserify: https://github.com/juliangruber/constants-browserify +---------- + +Copyright (c) 2013 Julian Gruber + + +---------- +keep-alive-agent: https://github.com/ceejbot/keep-alive-agent +---------- + +Copyright (c) 2012 C J Silverio + + +---------- +match-stream: https://github.com/EvanOxfeld/match-stream +slice-stream: https://github.com/EvanOxfeld/slice-stream +---------- + +Copyright (c) 2013 Evan Oxfeld + + +---------- +unzip: https://github.com/joeferner/node-unzip +over: https://github.com/joeferner/node-over +pullstream: https://github.com/EvanOxfeld/node-pullstream +bplist-parser: https://github.com/joeferner/node-bplist-parser +---------- + +Copyright (c) 2012 Near Infinity Corporation + + +---------- +assert: https://github.com/defunctzombie/commonjs-assert +browser-resolve: https://github.com/defunctzombie/node-browser-resolve +events: https://github.com/Gozala/events +url: https://github.com/defunctzombie/node-url +util: https://github.com/defunctzombie/node-util +---------- + +Copyright Joyent, Inc. and other Node contributors. All rights reserved. + + +---------- +aws-sign: https://github.com/egorFiNE/node-aws-sign +---------- + +Egor Egorov, me@egorfine.com. + + +---------- +base64-js: https://github.com/beatgammit/base64-js +---------- + +Copyright (c) 2014 + + +---------- +beep: https://github.com/mscdex/beepjs +---------- + +Copyright Brian White. All rights reserved. + + +---------- +browserify-zlib: https://github.com/devongovett/browserify-zlib +---------- + +Devon Govett + + +---------- +buffer: https://github.com/feross/buffer/ +---------- + +Copyright (c) Feross Aboukhadijeh, and other contributors. + + +---------- +catharsis: https://github.com/hegemonic/catharsis +requizzle: https://github.com/hegemonic/requizzle +---------- + +Copyright (c) 2014 Google Inc. +Copyright (c) 2012-2014 Jeff Williams +Copyright (c) 2012-2013 Johannes Ewald + + +---------- +console-browserify: https://github.com/Raynos/console-browserify +duplexer: https://github.com/Raynos/duplexer +xtend: https://github.com/Raynos/xtend +---------- + +Copyright (c) 2012 Raynos. +Copyright (c) 2012-2014 Raynos. + +---------- +deep-extend: https://github.com/unclechu/node-deep-extend +---------- + +Copyright (c) 2013 Viacheslav Lotsmanov + + +---------- +dep-graph: http://github.com/TrevorBurnham/dep-graph +---------- + +©2011 Trevor Burnham + + +---------- +derequire: https://github.com/calvinmetcalf/derequire +---------- + +Calvin Metcalf + + +---------- +domain-browser: https://github.com/bevry/domain-browser +---------- + +Copyright © Bevry Pty Ltd us@bevry.me (http://bevry.me) + + +---------- +jsonparse: https://github.com/creationix/jsonparse +---------- + +Copyright (c) 2012 Tim Caswell + + +---------- +marked: https://github.com/chjj/marked +---------- + +Copyright (c) 2011-2014, Christopher Jeffrey (https://github.com/chjj/) + + +---------- +object-keys: https://github.com/ljharb/object-keys +---------- + +Copyright (C) 2013 Jordan Harband + + +---------- +os-browserify: https://github.com/drewyoung1/os-browserify +---------- + +Copyright (c) 2014 Drew Young + + +---------- +pako: https://github.com/nodeca/pako +---------- + +Copyright (C) 2014 by Vitaly Puzrin + + +---------- +q: https://github.com/kriskowal/q +---------- + +Copyright 2009–2014 Kristopher Michael Kowal. All rights reserved. + + +---------- +querystring-es3: https://github.com/mike-spainhower/querystring +---------- + +Copyright 2012 Irakli Gozalishvili. All rights reserved. + + +---------- +ansi-regex: https://github.com/sindresorhus/ansi-regex +ansi-styles: https://github.com/sindresorhus/ansi-styles +escape-string-regexp: https://github.com/sindresorhus/escape-string-regexp +chalk: https://github.com/sindresorhus/chalk +get-stdin: https://github.com/sindresorhus/get-stdin +has-ansi: https://github.com/sindresorhus/has-ansi +strip-ansi: https://github.com/sindresorhus/strip-ansi +strip-json-comments: https://github.com/sindresorhus/strip-json-comments +supports-color: https://github.com/sindresorhus/supports-color +---------- + +Copyright (c) Sindre Sorhus (sindresorhus.com) + +---------- +timers-browserify: https://github.com/jryans/timers-browserify +---------- + +Copyright © 2012 J. Ryan Stinnett + + +---------- +wrench: https://github.com/ryanmcgrath/wrench-js +---------- + +Copyright (c) 2010 Ryan McGrath + + +---------- +xmlbuilder: http://github.com/oozcitak/xmlbuilder-js +---------- + +Copyright (c) 2013 Ozgur Ozcitak + + +---------- +xmldom: https://github.com/jindw/xmldom +---------- + +jindw (http://www.xidea.org) + + +---------- +properties-parser: https://github.com/xavi-/node-properties-parser +---------- + +Xavi Ramirez + +---------- +js2xmlparser: https://github.com/michaelkourlas/node-js2xmlparser/ +---------- + +Copyright © 2012 Michael Kourlas and other contributors + + +---------- +pegjs: https://github.com/dmajda/pegjs +---------- +Copyright (c) 2010-2013 David Majda + +---------- +foo: https://github.com/coolaj86/node-pakman +---------- + +Copyright (c) 2011 AJ ONeal + + +---------- +ios-sim: https://github.com/phonegap/ios-sim +---------- + +Author: Landon Fuller +Copyright (c) 2008-2011 Plausible Labs Cooperative, Inc. +All rights reserved. + +Modifications made by the following entities are licensed as above: +- Jeff Haynie, Appcelerator, Inc. +- https://github.com/hborders +- http://pivotallabs.com/users/scoward/blog +- Eloy Duran, Fingertips + + +---------- +accepts: https://github.com/jshttp/accepts +merge-descriptors: https://github.com/component/merge-descriptors +type-is: https://github.com/jshttp/type-is +mime-types: https://github.com/jshttp/mime-types +---------- + +Copyright (c) 2013 Jonathan Ong me@jongleberry.com +Copyright (c) 2014 Jonathan Ong + + +---------- +parseurl: https://github.com/expressjs/parseurl +---------- + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014 Douglas Christopher Wilson + + +---------- +serve-static: https://github.com/expressjs/serve-static +---------- + +Copyright (c) 2010 Sencha Inc. +Copyright (c) 2011 LearnBoost +Copyright (c) 2011 TJ Holowaychuk +Copyright (c) 2014 Douglas Christopher Wilson + + +---------- +negotiator: https://github.com/jshttp/negotiator +---------- + +Original "Negotiator" program Copyright Federico Romero +Port to JavaScript Copyright Isaac Z. Schlueter + + +---------- +options: https://github.com/einaros/options.js +tinycolor: https://github.com/einaros/tinycolor +ws: https://github.com/einaros/ws +---------- + +Copyright (c) 2011 Einar Otto Stangvik +Copyright (c) 2012 Einar Otto Stangvik + + +---------- +path-to-regexp: https://github.com/component/path-to-regexp +---------- + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + + +---------- +truncate: https://github.com/FGRibreau/node-truncate +---------- + +Copyright (c) 2013 Francois-Guillaume Ribreau + + +---------- +utils-merge: https://github.com/jaredhanson/utils-merge +---------- + +Copyright (c) 2013 Jared Hanson + + +---------- +bl: https://github.com/rvagg/bl +---------- + +Copyright (c) 2014 bl contributors +bl contributors listed at https://github.com/rvagg/bl#contributors + + +---------- +lodash-node: https://github.com/lodash/lodash-node +---------- + +Copyright 2012-2014 The Dojo Foundation +Based on Underscore.js 1.6.0, copyright 2009-2014 Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + + +---------- +netroute: https://github.com/indutny/node-netroute +---------- + +Copyright Fedor Indutny, 2012. + + +---------- +stringstream: https://github.com/mhart/StringStream +---------- + +Copyright 2012 Michael Hart (michael.hart.au@gmail.com) + + +---------- +clone: https://github.com/pvorb/node-clone +---------- + +Copyright © 2011-2014 Paul Vorbach + + +---------- +defaults: https://github.com/tmpvar/defaults +---------- + +---------- +throttleit: https://github.com/component/throttle +---------- + + +---------- +emissary: https://github.com/atom/emissary +event-kit: https://github.com/atom/event-kit +fs-plus: https://github.com/atom/fs-plus +grim: https://github.com/atom/grim +mixto: https://github.com/atom/mixto +pathwatcher: https://github.com/atom/node-pathwatcher +property-accessors: https://github.com/atom/property-accessors +runas: https://github.com/atom/node-runas +underscore-plus: https://github.com/atom/underscore-plus +---------- + +Copyright (c) 2013 GitHub Inc. +Copyright (c) 2014 GitHub Inc. + + +---------- +harmony-collections: https://github.com/Benvie/harmony-collections +---------- + +Copyright (c) 2012 Brandon Benvie http://bbenvie.com + + +---------- +iconv-lite: https://github.com/ashtuchkin/iconv-lite +---------- + +Copyright (c) 2011 Alexander Shtuchkin + + +---------- +request-progress: https://github.com/IndigoUnited/node-request-progress +---------- + +Copyright (c) 2012 IndigoUnited + + +---------- +wcwidth: https://github.com/mycoboco/wcwidth.js +---------- + +Copyright (C) 2012-2014 by Jun Woong and Tim Oxley. + + +---------- +adm-zip: https://github.com/cthackers/adm-zip +---------- + +Copyright (c) 2012 Another-D-Mention Software and other contributors, +http://www.another-d-mention.ro/ + + +---------- +node-exit: https://github.com/cowboy/node-exit +---------- + +Copyright (c) 2013 "Cowboy" Ben Alman +Licensed under the MIT license. diff --git a/LICENSES/MongoDB.txt b/LICENSES/MongoDB.txt new file mode 100644 index 0000000000..bce79ce5f1 --- /dev/null +++ b/LICENSES/MongoDB.txt @@ -0,0 +1,259 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + +---------- +MongoDB: http://www.mongodb.org/ +---------- + +LICENSE + + Most MongoDB source files are made available under the terms of the + GNU Affero General Public License (AGPL). See individual files for + details. + + As an exception, the files in the client/, debian/, rpm/, + utils/mongoutils, and all subdirectories thereof are made available under + the terms of the Apache License, version 2.0. + +http://www.gnu.org/licenses/agpl-3.0.html +http://www.apache.org/licenses/LICENSE-2.0 + + +MongoDB uses third-party libraries or other resources that may +be distributed under licenses different than the MongoDB software. + +In the event that we accidentally failed to list a required notice, +please bring it to our attention through any of the ways detailed here : + + mongodb-dev@googlegroups.com + +The attached notices are provided for information only. + + +1) License Notice for Boost +--------------------------- + +http://www.boost.org/LICENSE_1_0.txt + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +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, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + + +2) License Notice for V8 +------------------------- + +http://code.google.com/p/v8/source/browse/trunk/LICENSE + +This license applies to all parts of V8 that are not externally +maintained libraries. The externally maintained libraries used by V8 +are: + + - Jscre, located under third_party/jscre. This code is copyrighted + by the University of Cambridge and Apple Inc. and released under a + 2-clause BSD license. + + - Dtoa, located under third_party/dtoa. This code is copyrighted by + David M. Gay and released under an MIT license. + + - Strongtalk assembler, the basis of the files assembler-arm-inl.h, + assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h, + assembler-ia32.cc, assembler-ia32.h, assembler.cc and assembler.h. + This code is copyrighted by Sun Microsystems Inc. and released + under a 3-clause BSD license. + +These libraries have their own licenses; we recommend you read them, +as their terms may differ from the terms below. + +Copyright 2006-2008, Google Inc. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +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. + +3) License Notice for PCRE +-------------------------- + +http://www.pcre.org/licence.txt + +PCRE LICENCE +------------ + +PCRE is a library of functions to support regular expressions whose syntax +and semantics are as close as possible to those of the Perl 5 language. + +Release 7 of PCRE is distributed under the terms of the "BSD" licence, as +specified below. The documentation for PCRE, supplied in the "doc" +directory, is distributed under the same terms as the software itself. + +The basic library functions are written in C and are freestanding. Also +included in the distribution is a set of C++ wrapper functions. + + +THE BASIC LIBRARY FUNCTIONS +--------------------------- + +Written by: Philip Hazel +Email local part: ph10 +Email domain: cam.ac.uk + +University of Cambridge Computing Service, +Cambridge, England. + +Copyright (c) 1997-2008 University of Cambridge +All rights reserved. + + +THE C++ WRAPPER FUNCTIONS +------------------------- + +Contributed by: Google Inc. + +Copyright (c) 2007-2008, Google Inc. +All rights reserved. + + +THE "BSD" LICENCE +----------------- + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * 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. + + * Neither the name of the University of Cambridge nor the name of Google + Inc. nor the names of their contributors may be used to endorse or + promote products derived from this software without specific prior + written permission. + +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. + + +4) License notice for Aladdin MD5 +--------------------------------- + +Copyright (C) 1999, 2002 Aladdin Enterprises. All rights reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +L. Peter Deutsch +ghost@aladdin.com + +5) License notice for Snappy - http://code.google.com/p/snappy/ +--------------------------------- + Copyright 2005 and onwards Google Inc. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + 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. + + A light-weight compression algorithm. It is designed for speed of + compression and decompression, rather than for the utmost in space + savings. + + For getting better compression ratios when you are compressing data + with long repeated sequences or compressing data that is similar to + other data, while still compressing fast, you might look at first + using BMDiff and then compressing the output of BMDiff with + Snappy. + + + +End diff --git a/LICENSES/Node.txt b/LICENSES/Node.txt new file mode 100644 index 0000000000..854d12eb72 --- /dev/null +++ b/LICENSES/Node.txt @@ -0,0 +1,570 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + +---------- +nodejs: http://nodejs.org/ +readable-stream: https://github.com/isaacs/readable-stream +npm: https://github.com/isaacs/npm +init-package-json: https://github.com/isaacs/init-package-json +string_decoder: https://github.com/rvagg/string_decoder +util-extend: https://github.com/isaacs/util-extend +---------- + + +Node's license follows: + +==== + +Copyright Joyent, Inc. and other Node contributors. All rights reserved. +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. + +==== + +This license applies to all parts of Node that are not externally +maintained libraries. The externally maintained libraries used by Node are: + +- V8, located at deps/v8. V8's license follows: + """ + This license applies to all parts of V8 that are not externally + maintained libraries. The externally maintained libraries used by V8 + are: + + - PCRE test suite, located in + test/mjsunit/third_party/regexp-pcre.js. This is based on the + test suite from PCRE-7.3, which is copyrighted by the University + of Cambridge and Google, Inc. The copyright notice and license + are embedded in regexp-pcre.js. + + - Layout tests, located in test/mjsunit/third_party. These are + based on layout tests from webkit.org which are copyrighted by + Apple Computer, Inc. and released under a 3-clause BSD license. + + - Strongtalk assembler, the basis of the files assembler-arm-inl.h, + assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h, + assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h, + assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h, + assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h. + This code is copyrighted by Sun Microsystems Inc. and released + under a 3-clause BSD license. + + - Valgrind client API header, located at third_party/valgrind/valgrind.h + This is release under the BSD license. + + These libraries have their own licenses; we recommend you read them, + as their terms may differ from the terms below. + + Copyright 2006-2012, the V8 project authors. All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + 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. + """ + +- libev, located at deps/uv/src/unix/ev. libev's license follows: + """ + All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * 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. + + 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. + + Alternatively, the contents of this package may be used under the terms + of the GNU General Public License ("GPL") version 2 or any later version, + in which case the provisions of the GPL are applicable instead of the + above. If you wish to allow the use of your version of this package only + under the terms of the GPL and not to allow others to use your version of + this file under the BSD license, indicate your decision by deleting the + provisions above and replace them with the notice and other provisions + required by the GPL in this and the other files of this package. If you do + not delete the provisions above, a recipient may use your version of this + file under either the BSD or the GPL. + """ + +- libeio, located at deps/uv/src/unix/eio. libeio's license follows: + """ + All files in libeio are Copyright (C)2007,2008 Marc Alexander Lehmann. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * 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. + + 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. + + Alternatively, the contents of this package may be used under the terms + of the GNU General Public License ("GPL") version 2 or any later version, + in which case the provisions of the GPL are applicable instead of the + above. If you wish to allow the use of your version of this package only + under the terms of the GPL and not to allow others to use your version of + this file under the BSD license, indicate your decision by deleting the + provisions above and replace them with the notice and other provisions + required by the GPL in this and the other files of this package. If you do + not delete the provisions above, a recipient may use your version of this + file under either the BSD or the GPL. + """ + +- WAF build system, located at tools/waf*. WAF's license follows: + """ + Copyright Thomas Nagy, 2005-2011 + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. 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. + + 3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. + """ + +- C-Ares, an asynchronous DNS client, located at deps/uv/src/ares. C-Ares license + follows + """ + /* Copyright 1998 by the Massachusetts Institute of Technology. + * + * Permission to use, copy, modify, and distribute this + * software and its documentation for any purpose and without + * fee is hereby granted, provided that the above copyright + * notice appear in all copies and that both that copyright + * notice and this permission notice appear in supporting + * documentation, and that the name of M.I.T. not be used in + * advertising or publicity pertaining to distribution of the + * software without specific, written prior permission. + * M.I.T. makes no representations about the suitability of + * this software for any purpose. It is provided "as is" + * without express or implied warranty. + """ + +- OpenSSL located at deps/openssl. OpenSSL is cryptographic software written + by Eric Young (eay@cryptsoft.com) to provide SSL/TLS encryption. OpenSSL's + license follows + """ + /* ==================================================================== + * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. 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. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * openssl-core@openssl.org. + * + * 5. Products derived from this software may not be called "OpenSSL" + * nor may "OpenSSL" appear in their names without prior written + * permission of the OpenSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED 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 OpenSSL PROJECT OR + * ITS 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. + * ==================================================================== + * + * This product includes cryptographic software written by Eric Young + * (eay@cryptsoft.com). This product includes software written by Tim + * Hudson (tjh@cryptsoft.com). + * + */ + """ + +- HTTP Parser, located at deps/http_parser. HTTP Parser's license follows: + """ + http_parser.c is based on src/http/ngx_http_parse.c from NGINX copyright + Igor Sysoev. + + Additional changes are licensed under the same terms as NGINX and + copyright Joyent, Inc. and other Node contributors. All rights reserved. + + 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. + """ + +- Closure Linter is located at tools/closure_linter. Closure's license + follows + """ + # Copyright (c) 2007, Google Inc. + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are + # met: + # + # * Redistributions of source code must retain the above copyright + # notice, this list of conditions and the following disclaimer. + # * 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. + # * Neither the name of Google Inc. nor the names of its + # contributors may be used to endorse or promote products derived from + # this software without specific prior written permission. + # + # 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. + """ + +- tools/cpplint.py is a C++ linter. Its license follows: + """ + # Copyright (c) 2009 Google Inc. All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are + # met: + # + # * Redistributions of source code must retain the above copyright + # notice, this list of conditions and the following disclaimer. + # * 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. + # * Neither the name of Google Inc. nor the names of its + # contributors may be used to endorse or promote products derived from + # this software without specific prior written permission. + # + # 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. + """ + +- lib/buffer_ieee754.js. Its license follows: + """ + // Copyright (c) 2008, Fair Oaks Labs, Inc. + // All rights reserved. + // + // Redistribution and use in source and binary forms, with or without + // modification, are permitted provided that the following conditions are met: + // + // * Redistributions of source code must retain the above copyright notice, + // this list of conditions and the following disclaimer. + // + // * 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. + // + // * Neither the name of Fair Oaks Labs, Inc. nor the names of its contributors + // may be used to endorse or promote products derived from this software + // without specific prior written permission. + // + // 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. + """ + +- lib/punycode.js is copyright 2011 Mathias Bynens + and released under the MIT license. + """ + * Punycode.js + * Copyright 2011 Mathias Bynens + * Available under MIT license + """ + +- tools/gyp GYP is a meta-build system. GYP's license follows: + """ + Copyright (c) 2009 Google Inc. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * 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. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + 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. + """ + +- Zlib at deps/zlib. zlib's license follows + """ + /* zlib.h -- interface of the 'zlib' general purpose compression library + version 1.2.4, March 14th, 2010 + + Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly + Mark Adler + + */ + """ + +- npm is a package manager program located at deps/npm. + npm's license follows: + """ + Copyright 2009-2012, Isaac Z. Schlueter (the "Original Author") + All rights reserved. + + MIT +no-false-attribs License + + 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. + + Distributions of all or part of the Software intended to be used + by the recipients as they would use the unmodified Software, + containing modifications that substantially alter, remove, or + disable functionality of the Software, outside of the documented + configuration mechanisms provided by the Software, shall be + modified such that the Original Author's bug reporting email + addresses and urls are either replaced with the contact information + of the parties responsible for the changes, or removed entirely. + + 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. + + + Except where noted, this license applies to any and all software + programs and associated documentation files created by the + Original Author, when distributed with the Software. + + "Node.js" and "node" trademark Joyent, Inc. npm is not officially + part of the Node.js project, and is neither owned by nor + officially affiliated with Joyent, Inc. + + Packages published in the npm registry are not part of npm + itself, are the sole property of their respective maintainers, + and are not covered by this license. + + "npm Logo" created by Mathias Pettersson and Brian Hammond, + used with permission. + + This program uses "node-uuid", Copyright (c) 2010 Robert Kieffer, + according to the terms of the MIT license. + + This program uses "request", Copyright (c) 2011 Mikeal Rogers, + according to the terms of the Apache license. + + This program uses "mkdirp", Copyright (c) 2010 James Halliday, + according to the terms of the MIT/X11 license. + """ + +- tools/doc/node_modules/marked Marked is a Markdown parser. Marked's + license follows + """ + Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/) + + 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/LICENSES/PublicDomain.txt b/LICENSES/PublicDomain.txt new file mode 100644 index 0000000000..07a34bd51f --- /dev/null +++ b/LICENSES/PublicDomain.txt @@ -0,0 +1,68 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + + +---------- +json2: https://github.com/douglascrockford/JSON-js +---------- + +By Douglas Crockford +2011-10-19 + +Public Domain. + +NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. + + +---------- +meyerweb-reset: http://meyerweb.com/eric/tools/css/reset/ +---------- + +By Eric A. Meyer +v2.0 | 20110126 +License: none (public domain) + + +---------- +enable2k word list: http://personal.riverusers.com/~thegrendel/software.html +---------- + +The ENABLE list has been placed in the Public Domain. This means it is free +and freely distributable. No fees, registrations, or "contributions" are +required for its use. + + + +---------- +stream-buffers: https://github.com/samcday/node-stream-buffer +---------- + +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +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 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. + +For more information, please refer to diff --git a/LICENSES/andris9.txt b/LICENSES/andris9.txt new file mode 100644 index 0000000000..5782a38c6c --- /dev/null +++ b/LICENSES/andris9.txt @@ -0,0 +1,33 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + + +---------- +mimelib-noiconv: https://github.com/andris9/mimelib +mailcomposer: https://github.com/andris9/mailcomposer +simplesmtp: https://github.com/andris9/simplesmtp +rai: https://github.com/andris9/rai +xoauth2: https://github.com/andris9/xoauth2 +---------- + +Copyright (c) 2012 Andris Reinman + +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 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/LICENSES/browserify.txt b/LICENSES/browserify.txt new file mode 100644 index 0000000000..10c4d6c476 --- /dev/null +++ b/LICENSES/browserify.txt @@ -0,0 +1,77 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + + +---------- +browserify: https://github.com/substack/node-browserify +---------- + +MIT + +Some pieces from builtins/ taken from node core under this license: + +---- + +Copyright Joyent, Inc. and other Node contributors. + +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. + +---- + +buffer_ieee754.js has this license in it: + +---- + +Copyright (c) 2008-2014, Fair Oaks Labs, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * 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. + + * Neither the name of Fair Oaks Labs, Inc. nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +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. + +Modifications to writeIEEE754 to support negative zeroes made by Brian White + diff --git a/LICENSES/heapdump.txt b/LICENSES/heapdump.txt new file mode 100644 index 0000000000..81e25cf566 --- /dev/null +++ b/LICENSES/heapdump.txt @@ -0,0 +1,26 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + + +---------- +heapdump: https://github.com/bnoordhuis/node-heapdump +---------- + +Copyright (c) 2012, Ben Noordhuis + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/LICENSES/ieee754.txt b/LICENSES/ieee754.txt new file mode 100644 index 0000000000..5d1d4d262c --- /dev/null +++ b/LICENSES/ieee754.txt @@ -0,0 +1,69 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + +---------- +ieee754: https://github.com/feross/ieee754 +---------- + +The MIT License (MIT) + +Copyright (c) Feross Aboukhadijeh + +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. + +=========================================== +ieee754 originally contained this license: +=========================================== + +Copyright (c) 2008, Fair Oaks Labs, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * 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. + + * Neither the name of Fair Oaks Labs, Inc. nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +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. + +Modifications to writeIEEE754 to support negative zeroes made by Brian White. + diff --git a/LICENSES/jsdoc.txt b/LICENSES/jsdoc.txt new file mode 100644 index 0000000000..3506b0b173 --- /dev/null +++ b/LICENSES/jsdoc.txt @@ -0,0 +1,382 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + +---------- +jsdoc: https://github.com/jsdoc3/jsdoc +---------- + +# License # + +JSDoc 3 is free software, licensed under the Apache License, Version 2.0 (the +"License"). Commercial and non-commercial use are permitted in compliance with +the License. + +Copyright (c) 2011-2014 Michael Mathews and the +[contributors to JSDoc](https://github.com/jsdoc3/jsdoc/graphs/contributors). +All rights reserved. + +You may obtain a copy of the License at: +http://www.apache.org/licenses/LICENSE-2.0 + +In addition, a copy of the License is included with this distribution. + +As stated in Section 7, "Disclaimer of Warranty," of the License: + +> Licensor provides the Work (and each Contributor provides its Contributions) +> on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either +> express or implied, including, without limitation, any warranties or +> conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A +> PARTICULAR PURPOSE. You are solely responsible for determining the +> appropriateness of using or redistributing the Work and assume any risks +> associated with Your exercise of permissions under this License. + +The source code for JSDoc 3 is available at: +https://github.com/jsdoc3/jsdoc + +# Third-Party Software # + +JSDoc 3 includes or depends upon the following third-party software, either in +whole or in part. Each third-party software package is provided under its own +license. + +## MIT License ## + +Several of the following software packages are distributed under the MIT +license, which is reproduced below: + +> 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. + +## Acorn ## + +Portions of the Acorn source code are incorporated into the following files: + +- `lib/jsdoc/src/walker.js` + +Acorn is distributed under the MIT license, which is reproduced above. + +Copyright (C) 2012 Marijn Haverbeke . + +The source code for Acorn is available at: +https://github.com/marijnh/acorn + +## Async.js ## + +Async.js is distributed under the MIT license, which is reproduced above. + +Copyright (c) 2010 Caolan McMahon. + +The source code for Async.js is available at: +https://github.com/caolan/async + +## Catharsis ## + +Catharsis is distributed under the MIT license, which is reproduced above. + +Copyright (c) 2012-2014 Jeff Williams. + +The source code for Catharsis is available at: +https://github.com/hegemonic/catharsis + +## crypto-browserify ## + +crypto-browserify is distributed under the MIT license, which is reproduced +above. + +Copyright (c) 2013 Dominic Tarr. + +The source code for crypto-browserify is available at: +https://github.com/dominictarr/crypto-browserify + +## escape-string-regexp ## + +escape-string-regexp is distributed under the MIT License, which is reproduced +above. + +Copyright (c) Sindre Sorhus . + +The source code for escape-string-regexp is available at: +https://github.com/sindresorhus/escape-string-regexp + +## Esprima ## + +Esprima is distributed under the BSD 2-clause license: + +> Redistribution and use in source and binary forms, with or without +> modification, are permitted provided that the following conditions are met: +> +> - Redistributions of source code must retain the above copyright notice, +> this list of conditions and the following disclaimer. +> - 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. +> +> 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 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. + +Copyright (c) 2011-2013 Ariya Hidayat and other Esprima contributors. + +The source code for Esprima is available at: +https://github.com/ariya/esprima + +## events ## + +Portions of the events source code are incorporated into the following files: + ++ `rhino/events.js` + +events is distributed under the MIT license, which is reproduced above. + +Copyright Joyent, Inc. and other Node contributors. All rights reserved. + +The source code for events is available at: +https://github.com/Gozala/events + +## github-flavored-markdown ## + +github-flavored-markdown is distributed under the BSD 3-clause license: + +> Copyright (c) 2007, John Fraser All rights +> reserved. +> +> Original Markdown copyright (c) 2004, John Gruber +> All rights reserved. +> +> Redistribution and use in source and binary forms, with or without +> modification, are permitted provided that the following conditions are met: +> +> - Redistributions of source code must retain the above copyright notice, +> this list of conditions and the following disclaimer. +> +> - 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. + +> - Neither the name "Markdown" nor the names of its contributors may be used +> to endorse or promote products derived from this software without specific +> prior written permission. +> +> 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. + +The source code for github-flavored-markdown is available at: +https://github.com/hegemonic/github-flavored-markdown + +## Google Code Prettify ## + +Google Code Prettify is distributed under the Apache License 2.0, which is +included with this package. + +Copyright (c) 2006 Google Inc. + +The source code for Google Code Prettify is available at: +https://code.google.com/p/google-code-prettify/ + +## Jasmine ## + +Jasmine is distributed under the MIT license, which is reproduced above. + +Copyright (c) 2008-2011 Pivotal Labs. + +The source code for Jasmine is available at: +https://github.com/pivotal/jasmine + +## jasmine-node ## + +jasmine-node is distributed under the MIT license, which is reproduced above. + +Copyright (c) 2010 Adam Abrons and Misko Hevery (http://getangular.com). + +The source code for jasmine-node is available at: +https://github.com/mhevery/jasmine-node + +## js2xmlparser ## + +js2xmlparser is distributed under the MIT license, which is reproduced above. + +Copyright (c) 2012 Michael Kourlas. + +The source code for js2xmlparser is available at: +https://github.com/michaelkourlas/node-js2xmlparser + +## Node.js ## + +Portions of the Node.js source code are incorporated into the following files: + +- `rhino/fs.js` +- `rhino/path.js` +- `rhino/querystring.js` +- `rhino/util.js` + +Node.js is distributed under the MIT license, which is reproduced above. + +Copyright Joyent, Inc. and other Node contributors. All rights reserved. + +The source code for Node.js is available at: +https://github.com/joyent/node + +## node-browser-builtins ## + +Portions of the node-browser-builtins source code are incorporated into the +following files: + +- `rhino/assert.js` +- `rhino/rhino-shim.js` + +node-browser-builtins is distributed under the MIT license, which is reproduced +above. + +The source code for node-browser-builtins is available at: +https://github.com/alexgorbatchev/node-browser-builtins + +## Requizzle ## + +Requizzle is distributed under the MIT license, which is reproduced above. + +Copyright (c) 2014 Google Inc. All rights reserved. +Copyright (c) 2012-2013 Johannes Ewald. + +The source code for Requizzle is available at: +https://github.com/hegemonic/requizzle + +## Rhino ## + +Rhino is distributed under the following licenses: + +### MPL 2.0 License ### +The majority of the source code for Rhino is available under the Mozilla Public +License (MPL) 2.0, which is included in this distribution. + +### License for portions of the Rhino debugger ### +Additionally, some files are available under the BSD 3-clause license: + +> Copyright 1997, 1998 Sun Microsystems, Inc. All Rights Reserved. +> +> Redistribution and use in source and binary forms, with or without +> modification, are permitted provided that the following conditions are met: +> +> - Redistributions of source code must retain the above copyright notice, +> this list of conditions and the following disclaimer. +> - 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. +> - Neither the name of Sun Microsystems nor the names of its contributors +> may be used to endorse or promote products derived from this software +> without specific prior written permission. +> +> 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. + +### Source Code ### +The source code for Rhino is available at: +https://github.com/jsdoc3/rhino + +## TaffyDB ## + +TaffyDB is distributed under a modified BSD license: + +> All rights reserved. +> +> Redistribution and use of this software in source and binary forms, with or +> without modification, are permitted provided that the following condition is +> met: +> +> Redistributions of source code must retain the above copyright notice, this +> list of conditions and the following disclaimer. +> +> 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. + +The source code for TaffyDB is available at: +https://github.com/hegemonic/taffydb + +## Tomorrow Theme for Google Code Prettify ## + +License information for the Tomorrow Theme for Google Code Prettify is not +available. It is assumed that the package is distributed under an open source +license that is compatible with the Apache License 2.0. + +Copyright (c) Yoshihide Jimbo. + +The source code for the Tomorrow Theme is available at: +https://github.com/jmblog/color-themes-for-google-code-prettify + +## tv4 ## + +tv4 is in the public domain. It is also distributed under the MIT license, which +is reproduced above. + +The source code for tv4 is available at: +https://github.com/geraintluff/tv4 + +## Underscore.js ## + +Underscore.js is distributed under the MIT license, which is reproduced above. + +Copyright (c) 2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative +Reporters & Editors. + +The source code for Underscore.js is available at: +https://github.com/jashkenas/underscore + +## wrench-js ## + +wrench-js is distributed under the MIT license, which is reproduced above. + +Copyright (c) 2010 Ryan McGrath. + +The source code for wrench-js is available at: +https://github.com/ryanmcgrath/wrench-js diff --git a/LICENSES/libuv.txt b/LICENSES/libuv.txt new file mode 100644 index 0000000000..1c84abb178 --- /dev/null +++ b/LICENSES/libuv.txt @@ -0,0 +1,55 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + +---------- +libuv: https://github.com/joyent/libuv +---------- + +libuv is part of the Node project: http://nodejs.org/ +libuv may be distributed alone under Node's license: + +==== + +Copyright Joyent, Inc. and other Node contributors. All rights reserved. +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. + +==== + +This license applies to all parts of libuv that are not externally +maintained libraries. + +The externally maintained libraries used by libuv are: + + - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license. + + - ngx_queue.h (from Nginx), copyright Igor Sysoev. Two clause BSD license. + + - c-ares, copyright Daniel Stenberg and others. MIT licensed. + + - libev, located at ev/ is copyright Marc Alexander Lehmann, and + dual-licensed under the MIT license and GPL2. + + - libeio, located at eio/ is copyright Marc Alexander Lehmann, and + dual-licensed under the MIT license and GPL2. + diff --git a/LICENSES/nan.txt b/LICENSES/nan.txt new file mode 100644 index 0000000000..91cd8675fc --- /dev/null +++ b/LICENSES/nan.txt @@ -0,0 +1,58 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + +---------- +nan: https://github.com/rvagg/nan +---------- + +Copyright 2013, NAN contributors: + - Rod Vagg + - Benjamin Byholm + - Trevor Norris + - Nathan Rajlich + - Brett Lawson + - Ben Noordhuis +(the "Original Author") +All rights reserved. + +MIT +no-false-attribs License + +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. + +Distributions of all or part of the Software intended to be used +by the recipients as they would use the unmodified Software, +containing modifications that substantially alter, remove, or +disable functionality of the Software, outside of the documented +configuration mechanisms provided by the Software, shall be +modified such that the Original Author's bug reporting email +addresses and urls are either replaced with the contact information +of the parties responsible for the changes, or removed entirely. + +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. + + +Except where noted, this license applies to any and all software +programs and associated documentation files created by the +Original Author, when distributed with the Software. diff --git a/LICENSES/through2.txt b/LICENSES/through2.txt new file mode 100644 index 0000000000..0e8a05a412 --- /dev/null +++ b/LICENSES/through2.txt @@ -0,0 +1,53 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + + + +---------- +through2: https://github.com/rvagg/through2 +---------- + +Copyright 2013, Rod Vagg (the "Original Author") +All rights reserved. + +MIT +no-false-attribs License + +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. + +Distributions of all or part of the Software intended to be used +by the recipients as they would use the unmodified Software, +containing modifications that substantially alter, remove, or +disable functionality of the Software, outside of the documented +configuration mechanisms provided by the Software, shall be +modified such that the Original Author's bug reporting email +addresses and urls are either replaced with the contact information +of the parties responsible for the changes, or removed entirely. + +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. + + +Except where noted, this license applies to any and all software +programs and associated documentation files created by the +Original Author, when distributed with the Software. diff --git a/LICENSES/tough-cookie.txt b/LICENSES/tough-cookie.txt new file mode 100644 index 0000000000..4a70fd2cf9 --- /dev/null +++ b/LICENSES/tough-cookie.txt @@ -0,0 +1,93 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + + + +---------- +tough-cookie: https://github.com/goinstant/tough-cookie +---------- + +Copyright GoInstant, Inc. and other contributors. All rights reserved. +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. + +The following exceptions apply: + +=== + +`pubSufTest()` of generate-pubsuffix.js is in the public domain. + + // Any copyright is dedicated to the Public Domain. + // http://creativecommons.org/publicdomain/zero/1.0/ + +=== + +`public-suffix.txt` was obtained from + +via . + +That file contains the usual Mozilla triple-license, for which this project uses it +under the terms of the MPL 1.1: + + // ***** BEGIN LICENSE BLOCK ***** + // Version: MPL 1.1/GPL 2.0/LGPL 2.1 + // + // The contents of this file are subject to the Mozilla Public License Version + // 1.1 (the "License"); you may not use this file except in compliance with + // the License. You may obtain a copy of the License at + // http://www.mozilla.org/MPL/ + // + // Software distributed under the License is distributed on an "AS IS" basis, + // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + // for the specific language governing rights and limitations under the + // License. + // + // The Original Code is the Public Suffix List. + // + // The Initial Developer of the Original Code is + // Jo Hermans . + // Portions created by the Initial Developer are Copyright (C) 2007 + // the Initial Developer. All Rights Reserved. + // + // Contributor(s): + // Ruben Arakelyan + // Gervase Markham + // Pamela Greene + // David Triendl + // Jothan Frakes + // The kind representatives of many TLD registries + // + // Alternatively, the contents of this file may be used under the terms of + // either the GNU General Public License Version 2 or later (the "GPL"), or + // the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + // in which case the provisions of the GPL or the LGPL are applicable instead + // of those above. If you wish to allow use of your version of this file only + // under the terms of either the GPL or the LGPL, and not to allow others to + // use your version of this file under the terms of the MPL, indicate your + // decision by deleting the provisions above and replace them with the notice + // and other provisions required by the GPL or the LGPL. If you do not delete + // the provisions above, a recipient may use your version of this file under + // the terms of any one of the MPL, the GPL or the LGPL. + // + // ***** END LICENSE BLOCK ***** + diff --git a/tools/isopack.js b/tools/isopack.js index 35b5a45409..0daa7aeef3 100644 --- a/tools/isopack.js +++ b/tools/isopack.js @@ -1089,8 +1089,8 @@ _.extend(Isopack.prototype, { '--full-tree', 'HEAD', // The actual trees to copy! - 'tools', 'examples', 'LICENSE.txt', 'meteor', 'meteor.bat', - 'scripts/admin/launch-meteor', + 'tools', 'examples', 'LICENSE.txt', 'LICENSES', + 'meteor', 'meteor.bat', 'scripts/admin/launch-meteor', 'packages/package-version-parser/package-version-parser.js', 'packages/meteor/flush-buffers-on-exit-in-windows.js'); From 1717573f01599134fa70f00a596af96e5338c9f8 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 17 Mar 2015 11:48:22 -0700 Subject: [PATCH 48/56] License update for 1.0.4. --- LICENSES/Apache.txt | 7 ++ LICENSES/BSD.txt | 37 +++++++++ LICENSES/ISC.txt | 16 ++++ LICENSES/MIT.txt | 118 +++++++++++++++++++++++++++++ LICENSES/Node.txt | 2 + LICENSES/PublicDomain.txt | 7 ++ LICENSES/commonmark.txt | 154 ++++++++++++++++++++++++++++++++++++++ LICENSES/unorm.txt | 50 +++++++++++++ 8 files changed, 391 insertions(+) create mode 100644 LICENSES/commonmark.txt create mode 100644 LICENSES/unorm.txt diff --git a/LICENSES/Apache.txt b/LICENSES/Apache.txt index 1caf90fe2e..9ea185e261 100644 --- a/LICENSES/Apache.txt +++ b/LICENSES/Apache.txt @@ -47,6 +47,7 @@ cookie-jar: https://github.com/mikeal/cookie-jar forever-agent: https://github.com/mikeal/forever-agent oauth-sign: https://github.com/mikeal/oauth-sign tunnel-agent: https://github.com/mikeal/tunnel-agent +caseless: https://github.com/request/caseless ---------- Copyright (c) 2011, 2012, 2013 Mikeal Rogers @@ -196,3 +197,9 @@ kew: https://github.com/Medium/kew Copyright 2012 The Obvious Corporation. http://obvious.com/ + +---------- +valid-identifier: https://github.com/purplecabbage/valid-identifier +---------- + +Jesse MacFadyen diff --git a/LICENSES/BSD.txt b/LICENSES/BSD.txt index 88df5b168d..88324cb578 100644 --- a/LICENSES/BSD.txt +++ b/LICENSES/BSD.txt @@ -842,3 +842,40 @@ 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. + + +---------- +canonical-json: https://github.com/mirkokiefer/canonical-json +---------- + +Mirko Kiefer + + +---------- +coffeestack: https://github.com/kevinsawicki/coffeestack +---------- + +Kevin Sawicki + + +---------- +duplexer2: https://github.com/deoxxa/duplexer2 +---------- + +Copyright (c) 2013, Deoxxa Development +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +2. 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. +3. Neither the name of Deoxxa Development nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY DEOXXA DEVELOPMENT ''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 DEOXXA DEVELOPMENT 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. + + +---------- +ripemd160: https://github.com/crypto-browserify/ripemd160 +---------- + +Licensed: BSD3-Clause + diff --git a/LICENSES/ISC.txt b/LICENSES/ISC.txt index 7001ad79c4..4272e85f75 100644 --- a/LICENSES/ISC.txt +++ b/LICENSES/ISC.txt @@ -44,3 +44,19 @@ wrappy: https://github.com/npm/wrappy ---------- Copyright (c) Isaac Z. Schlueter and Contributors + + +---------- +browserify-sign: https://github.com/crypto-browserify/browserify-sign +minimalistic-assert: https://github.com/calvinmetcalf/minimalistic-assert +parse-asn1: https://github.com/crypto-browserify/parse-asn1 +---------- + +Calvin Metcalf + + +---------- +pemstrip: https://github.com/apatil/pemstrip +---------- + +Anand Patil diff --git a/LICENSES/MIT.txt b/LICENSES/MIT.txt index 8b7ec70bf6..5da08ce0f2 100644 --- a/LICENSES/MIT.txt +++ b/LICENSES/MIT.txt @@ -217,6 +217,7 @@ node-gyp: https://github.com/TooTallNate/node-gyp keypress: https://github.com/TooTallNate/keypress bindings: https://github.com/TooTallNate/node-bindings plist-with-patches: https://github.com/agrieve/node-plist +util-deprecate: https://github.com/TooTallNate/util-deprecate ---------- Copyright (c) 2010-2011- Nathan Rajlich @@ -233,6 +234,7 @@ Copyright (c) 2010 Robert Kieffer ---------- ansi: https://github.com/TooTallNate/ansi.js +plist: https://github.com/TooTallNate/plist.js ---------- Copyright (c) 2012 Nathan Rajlich @@ -319,6 +321,9 @@ typedarray: https://github.com/substack/typedarray vm-browserify: https://github.com/substack/vm-browserify wordwrap: https://github.com/substack/node-wordwrap yargs: https://github.com/chevex/yargs +json-stable-stringify: https://github.com/substack/json-stable-stringify +labeled-stream-splicer: https://github.com/substack/labeled-stream-splicer +stream-splicer: https://github.com/substack/stream-splicer ---------- Copyright 2010, 2011, 2012, 2013 James Halliday (mail@substack.net) @@ -331,6 +336,8 @@ crypto-browserify: https://github.com/dominictarr/crypto-browserify rc: https://github.com/dominictarr/rc stream-combiner: https://github.com/dominictarr/stream-combiner through: http://github.com/dominictarr/through +shasum: https://github.com/dominictarr/shasum +stream-combiner2: https://github.com/substack/stream-combiner2 ---------- Copyright (c) 2011 Dominic Tarr @@ -427,6 +434,10 @@ es5-ext: https://github.com/medikoo/es5-ext event-emitter: https://github.com/medikoo/event-emitter memoizee: https://github.com/medikoo/memoize next-tick: https://github.com/medikoo/next-tick +d: https://github.com/medikoo/d +es6-iterator: https://github.com/medikoo/es6-iterator +es6-symbol: https://github.com/medikoo/es6-symbol +es6-weak-map: https://github.com/medikoo/es6-weak-map ---------- Copyright (C) 2011, 2012 Mariusz Nowak (www.medikoo.com) @@ -724,6 +735,15 @@ dep-graph: http://github.com/TrevorBurnham/dep-graph ---------- derequire: https://github.com/calvinmetcalf/derequire +browserify-aes: https://github.com/crypto-browserify/browserify-aes +browserify-rsa: https://github.com/calvinmetcalf/browserify-rsa +create-ecdh: https://github.com/crypto-browserify/createECDH +create-hash: https://github.com/crypto-browserify/createHash +create-hmac: https://github.com/crypto-browserify/createHMAC +diffie-hellman: https://github.com/crypto-browserify/diffie-hellman +pbkdf2-compat: https://github.com/crypto-browserify/pbkdf2 +public-encrypt: https://github.com/crypto-browserify/publicEncrypt +randombytes: https://github.com/crypto-browserify/randombytes ---------- Calvin Metcalf @@ -872,6 +892,7 @@ accepts: https://github.com/jshttp/accepts merge-descriptors: https://github.com/component/merge-descriptors type-is: https://github.com/jshttp/type-is mime-types: https://github.com/jshttp/mime-types +mime-db: https://github.com/jshttp/mime-db ---------- Copyright (c) 2013 Jonathan Ong me@jongleberry.com @@ -943,6 +964,13 @@ Copyright (c) 2014 bl contributors bl contributors listed at https://github.com/rvagg/bl#contributors +---------- +isstream: https://github.com/rvagg/isstream +---------- + +Copyright (c) 2015 Rod Vagg + + ---------- lodash-node: https://github.com/lodash/lodash-node ---------- @@ -954,6 +982,13 @@ DocumentCloud and Investigative Reporters & Editors ---------- netroute: https://github.com/indutny/node-netroute +asn1.js: https://github.com/indutny/asn1.js +asn1.js-rfc3280: https://github.com/indutny/asn1.js +bn.js: https://github.com/indutny/bn.js +brorand: https://github.com/indutny/brorand.js +elliptic: https://github.com/indutny/elliptic +hash.js: https://github.com/indutny/hash.js +miller-rabin: https://github.com/indutny/miller-rabin ---------- Copyright Fedor Indutny, 2012. @@ -1040,3 +1075,86 @@ node-exit: https://github.com/cowboy/node-exit Copyright (c) 2013 "Cowboy" Ben Alman Licensed under the MIT license. + + +---------- +acorn: http://marijnhaverbeke.nl/git/acorn +---------- + +Copyright (C) 2012-2014 by various contributors (see AUTHORS) + + +---------- +d8: https://github.com/constantology/d8 +m8: https://github.com/constantology/m8 +---------- + +Copyright (c) 2011 christos "constantology" constandinou http://muigui.com + + +---------- +date-now: https://github.com/Raynos/date-now +---------- + +Copyright (c) 2012 Colingo. + + +---------- +deep-is: https://github.com/thlorenz/deep-is +---------- + +Copyright (c) 2012, 2013 Thorsten Lorenz +Copyright (c) 2012 James Halliday +Copyright (c) 2009 Thomas Robinson <280north.com> + + +---------- +fast-levenshtein: https://github.com/hiddentao/fast-levenshtein +---------- + +Copyright (c) 2013 Ramesh Nair + + +---------- +is-array: https://github.com/retrofox/is-array +---------- + +Damián Suárez + + +---------- +levn: https://github.com/gkz/levn +optionator: https://github.com/gkz/optionator +prelude-ls: https://github.com/gkz/prelude-ls +type-check: https://github.com/gkz/type-check +---------- + +Copyright (c) George Zahariev + + +---------- +moment: https://github.com/moment/moment +---------- + +Copyright (c) 2011-2014 Tim Wood, Iskren Chernev, Moment.js contributors + + +---------- +mongodb-uri: https://github.com/mongolab/mongodb-uri-node +---------- + +Copyright (c) 2013 ObjectLabs Corporation + + +---------- +querystring: https://github.com/Gozala/querystring +---------- + +Copyright 2012 Irakli Gozalishvili. + + +---------- +sha.js: https://github.com/crypto-browserify/sha.js +---------- + +Copyright (c) 2013-2014 sha.js contributors diff --git a/LICENSES/Node.txt b/LICENSES/Node.txt index 854d12eb72..36b6ba9340 100644 --- a/LICENSES/Node.txt +++ b/LICENSES/Node.txt @@ -13,6 +13,8 @@ npm: https://github.com/isaacs/npm init-package-json: https://github.com/isaacs/init-package-json string_decoder: https://github.com/rvagg/string_decoder util-extend: https://github.com/isaacs/util-extend +path-platform: https://github.com/tjfontaine/node-path-platform +readable-wrap: https://github.com/substack/readable-wrap ---------- diff --git a/LICENSES/PublicDomain.txt b/LICENSES/PublicDomain.txt index 07a34bd51f..6d811cbf3b 100644 --- a/LICENSES/PublicDomain.txt +++ b/LICENSES/PublicDomain.txt @@ -66,3 +66,10 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to + + +---------- +jsonify: https://github.com/substack/jsonify +---------- + +public domain diff --git a/LICENSES/commonmark.txt b/LICENSES/commonmark.txt new file mode 100644 index 0000000000..610d395605 --- /dev/null +++ b/LICENSES/commonmark.txt @@ -0,0 +1,154 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + +---------- +commonmark: https://github.com/jgm/commonmark.js +---------- + +Copyright (c) 2014, John MacFarlane + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * 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. + +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. + +--- + +lib/encode.js and lib/decode.js come from +https://github.com/markdown-it/mdurl + +Copyright (c) 2015 Vitaly Puzrin, Alex Kocharin. + +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. + +--- + +lib/normalize-reference.js is a slightly modified version of +https://github.com/dmoscrop/fold-case: + +Copyright Mathias Bynens + +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. + +--- + +lib/from-code-point.js is derived from a polyfill +Copyright Mathias Bynens + +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. + +--- + +bench/samples/*.md: + +With the exception of `bench/samples/README.md`, the samples in +`bench/samples` are taken from https://github.com/markdown-it/markdown-it. + +Copyright (c) 2014 Vitaly Puzrin, Alex Kocharin. + +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. + +--- + +The CommonMark spec (spec.txt) in test/ is + +Copyright (C) 2014-15 John MacFarlane + +Released under the Creative Commons CC-BY-SA 4.0 license: +. diff --git a/LICENSES/unorm.txt b/LICENSES/unorm.txt new file mode 100644 index 0000000000..1983b15358 --- /dev/null +++ b/LICENSES/unorm.txt @@ -0,0 +1,50 @@ +==================================================================== +For the license for Meteor itself, see LICENSE.txt in the root of +the repository. This file contains the licenses for externally +maintained libraries. +==================================================================== + + + +---------- +unorm: https://github.com/walling/unorm +---------- + +The software dual licensed under the MIT and GPL licenses. MIT license: + +Copyright (c) 2008-2013 Matsuza , Bjarke Walling + +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. +GPL notice (please read the full GPL license online): + +Copyright (C) 2008-2013 Matsuza , Bjarke Walling + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. From 8409919bb6845b145b1c43cf314f3dd8c759d693 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 17 Mar 2015 12:14:16 -0700 Subject: [PATCH 49/56] actually fail on package creation error --- tools/commands.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/commands.js b/tools/commands.js index 0671018256..0bf0802f62 100644 --- a/tools/commands.js +++ b/tools/commands.js @@ -501,6 +501,7 @@ main.registerCommand({ // here. Console.error(packageName + ": Package names may not have more than one colon."); + return 1; } fsName = split[1]; From ff8b47abb03a49c4e34fbaba97ec2d7c4cc63409 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 17 Mar 2015 12:17:28 -0700 Subject: [PATCH 50/56] Banner update --- scripts/admin/banners.json | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/scripts/admin/banners.json b/scripts/admin/banners.json index 66419c0638..e7f3c9fc4d 100644 --- a/scripts/admin/banners.json +++ b/scripts/admin/banners.json @@ -3,16 +3,10 @@ { "versions": ["0.9.0", "0.9.0.1", "0.9.1", "0.9.1.1", "0.9.2", "0.9.2.1", "0.9.2.2", "0.9.3", "0.9.3.1", "0.9.4", "1.0", "1.0.1", "1.0.2", "1.0.2.1", - "1.0.3"], + "1.0.3", "1.0.3.1", "1.0.3.2"], "banner": { - "text": "=> Meteor 1.0.3.2: README.md support in Isobuild and improvements to `meteor show`.\n\n This release is being downloaded in the background. Update your app to\n Meteor 1.0.3.2 by running 'meteor update'." - } - }, - { - "versions": ["1.0.3.1"], - "banner": { - "text": "=> Meteor 1.0.3.2: Fixes a crash in `meteor deploy`.\n\n This release is being downloaded in the background. Update your app to\n Meteor 1.0.3.2 by running 'meteor update'." - } + "text": "=> Meteor 1.0.4: MongoDB 2.6 and 3.0 support, performance improvements, Cordova\n upgrades, template-specific subscriptions, and more!\n\n This release is being downloaded in the background. Update your app to\n Meteor 1.0.4 by running 'meteor update'." + } } ] } From 616649d49274506123d21f7acdfbbf5755ddff44 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 17 Mar 2015 12:22:32 -0700 Subject: [PATCH 51/56] 1.0.4-rc.6 --- packages/meteor-tool/package.js | 2 +- packages/package-version-parser/package.js | 2 +- scripts/admin/meteor-release-experimental.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index 9246af9597..24e81604d2 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "The Meteor command-line tool", - version: '1.0.42-rc.6' + version: '1.0.42-rc.7' }); Package.includeTool(); diff --git a/packages/package-version-parser/package.js b/packages/package-version-parser/package.js index 0f38c09023..c4e895ae99 100644 --- a/packages/package-version-parser/package.js +++ b/packages/package-version-parser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Parses Meteor Smart Package version strings", - version: "3.0.2-rc.2" + version: "3.0.2-rc.3" }); Package.onUse(function (api) { diff --git a/scripts/admin/meteor-release-experimental.json b/scripts/admin/meteor-release-experimental.json index 324bcca689..806484baa7 100644 --- a/scripts/admin/meteor-release-experimental.json +++ b/scripts/admin/meteor-release-experimental.json @@ -1,6 +1,6 @@ { "track": "METEOR", - "version": "1.0.4-rc.5", + "version": "1.0.4-rc.6", "recommended": false, "official": false, "description": "The Official Meteor Distribution" From bc4392ed54b2bebbb809bd57b3cd505b83d94dd5 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 17 Mar 2015 13:01:43 -0700 Subject: [PATCH 52/56] History update --- History.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/History.md b/History.md index deaebc0076..adbda847e7 100644 --- a/History.md +++ b/History.md @@ -186,9 +186,12 @@ * After killing existing `mongod` servers, also clear the `mongod.lock` file. * Stricter validation for package names: they cannot begin with a hyphen, end - with a dot, contain two consecutive dots, contain more than one colon, or - start or end with a colon. (No packages on Atmosphere fail - this validation.) + with a dot, contain two consecutive dots, or start or end with a colon. (No + packages on Atmosphere fail this validation.) Additionally, `meteor create + --package` applies the same validation as `meteor publish` and disallows + packages with multiple colons. (Packages with multiple colons like + `local-test:iron:router` are used internally by `meteor test-packages` so that + is not a strict validation rule.) * `meteor create --package` now no longer creates a directory with the full name of the package, since Windows file systems cannot have colon characters From 765aef5e3562d0121d2ccd9553878d36fb4e5e16 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 17 Mar 2015 13:01:56 -0700 Subject: [PATCH 53/56] Stamp History with date --- History.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/History.md b/History.md index adbda847e7..dfaa557897 100644 --- a/History.md +++ b/History.md @@ -1,6 +1,6 @@ ## v.NEXT -## v1.0.4, 2015-Mar-?? +## v1.0.4, 2015-Mar-17 ### Mongo Driver From 4daaa76b1291f8331cb727610d4aa79eae64b31e Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 17 Mar 2015 13:05:06 -0700 Subject: [PATCH 54/56] METEOR@1.0.4 --- packages/accounts-base/package.js | 2 +- packages/accounts-facebook/package.js | 2 +- packages/accounts-github/package.js | 2 +- packages/accounts-google/package.js | 2 +- packages/accounts-meetup/package.js | 2 +- packages/accounts-meteor-developer/package.js | 2 +- packages/accounts-oauth/package.js | 2 +- packages/accounts-password/package.js | 2 +- packages/accounts-twitter/package.js | 2 +- packages/accounts-ui-unstyled/package.js | 2 +- packages/accounts-ui/package.js | 2 +- packages/accounts-weibo/package.js | 2 +- packages/appcache/package.js | 2 +- packages/audit-argument-checks/package.js | 2 +- packages/autopublish/package.js | 2 +- packages/autoupdate/package.js | 2 +- packages/base64/package.js | 2 +- packages/binary-heap/package.js | 2 +- packages/blaze-tools/package.js | 2 +- packages/blaze/package.js | 2 +- packages/boilerplate-generator/package.js | 2 +- packages/browser-policy-common/package.js | 2 +- packages/browser-policy-content/package.js | 2 +- packages/browser-policy-framing/package.js | 2 +- packages/browser-policy/package.js | 2 +- packages/callback-hook/package.js | 2 +- packages/check/package.js | 2 +- packages/code-prettify/package.js | 2 +- packages/coffeescript-test-helper/package.js | 2 +- packages/coffeescript/package.js | 2 +- packages/constraint-solver/package.js | 2 +- packages/ddp/package.js | 2 +- packages/deps/package.js | 2 +- packages/disable-oplog/package.js | 2 +- packages/ejson/package.js | 2 +- packages/email/package.js | 2 +- packages/facebook/package.js | 2 +- packages/facts/package.js | 2 +- packages/fastclick/package.js | 2 +- packages/force-ssl/package.js | 2 +- packages/geojson-utils/package.js | 2 +- packages/github/package.js | 2 +- packages/google/package.js | 2 +- packages/handlebars/package.js | 2 +- packages/html-tools/package.js | 2 +- packages/htmljs/package.js | 2 +- packages/http/package.js | 2 +- packages/id-map/package.js | 2 +- packages/insecure/package.js | 2 +- packages/jquery-waypoints/package.js | 2 +- packages/jquery/package.js | 2 +- packages/js-analyze-tests/package.js | 2 +- packages/js-analyze/package.js | 2 +- packages/json/package.js | 2 +- packages/jsparse/package.js | 2 +- packages/launch-screen/package.js | 2 +- packages/less/package.js | 2 +- packages/livedata/package.js | 2 +- packages/localstorage/package.js | 2 +- packages/logging/package.js | 2 +- packages/markdown/package.js | 2 +- packages/meetup/package.js | 2 +- packages/meteor-developer/package.js | 2 +- packages/meteor-platform/package.js | 2 +- packages/meteor-tool/package.js | 2 +- packages/meteor/package.js | 2 +- packages/meyerweb-reset/package.js | 2 +- packages/minifiers/package.js | 2 +- packages/minimongo/package.js | 2 +- packages/mobile-status-bar/package.js | 2 +- packages/mongo-livedata/package.js | 2 +- packages/mongo/package.js | 2 +- packages/oauth-encryption/package.js | 2 +- packages/oauth/package.js | 2 +- packages/oauth1/package.js | 2 +- packages/oauth2/package.js | 2 +- packages/observe-sequence/package.js | 2 +- packages/ordered-dict/package.js | 2 +- packages/package-stats-opt-out/package.js | 2 +- packages/package-version-parser/package.js | 2 +- packages/preserve-inputs/package.js | 2 +- packages/random/package.js | 2 +- packages/reactive-dict/package.js | 2 +- packages/reactive-var/package.js | 2 +- packages/reload-safetybelt/package.js | 2 +- packages/reload/package.js | 2 +- packages/retry/package.js | 2 +- packages/routepolicy/package.js | 2 +- packages/service-configuration/package.js | 2 +- packages/session/package.js | 2 +- packages/sha/package.js | 2 +- packages/showdown/package.js | 2 +- packages/spacebars-compiler/package.js | 2 +- packages/spacebars-tests/package.js | 2 +- packages/spacebars/package.js | 2 +- packages/spiderable/package.js | 2 +- packages/srp/package.js | 2 +- packages/standard-app-packages/package.js | 2 +- packages/startup/package.js | 2 +- packages/stylus/package.js | 2 +- packages/templating/package.js | 2 +- packages/test-helpers/package.js | 2 +- packages/test-in-browser/package.js | 2 +- packages/test-in-console/package.js | 2 +- packages/test-server-tests-in-console-once/package.js | 2 +- packages/tinytest/package.js | 2 +- packages/tracker/package.js | 2 +- packages/twitter/package.js | 2 +- packages/ui/package.js | 2 +- packages/underscore-tests/package.js | 2 +- packages/underscore/package.js | 2 +- packages/url/package.js | 2 +- packages/webapp-hashing/package.js | 2 +- packages/webapp/package.js | 2 +- packages/weibo/package.js | 2 +- packages/xmlbuilder/package.js | 2 +- scripts/admin/meteor-release-official.json | 3 +-- 117 files changed, 117 insertions(+), 118 deletions(-) diff --git a/packages/accounts-base/package.js b/packages/accounts-base/package.js index af7d2e3b01..dceee430db 100644 --- a/packages/accounts-base/package.js +++ b/packages/accounts-base/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "A user account system", - version: "1.2.0-rc.0" + version: "1.2.0" }); Package.onUse(function (api) { diff --git a/packages/accounts-facebook/package.js b/packages/accounts-facebook/package.js index 26443cb246..f8221a39c1 100644 --- a/packages/accounts-facebook/package.js +++ b/packages/accounts-facebook/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Facebook accounts", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function(api) { diff --git a/packages/accounts-github/package.js b/packages/accounts-github/package.js index 65b05c6c16..ede866dacb 100644 --- a/packages/accounts-github/package.js +++ b/packages/accounts-github/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Github accounts", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function(api) { diff --git a/packages/accounts-google/package.js b/packages/accounts-google/package.js index f623eb7892..678f1ae92f 100644 --- a/packages/accounts-google/package.js +++ b/packages/accounts-google/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Google accounts", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function(api) { diff --git a/packages/accounts-meetup/package.js b/packages/accounts-meetup/package.js index dd6c77e48e..09c18f2dd3 100644 --- a/packages/accounts-meetup/package.js +++ b/packages/accounts-meetup/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Meetup accounts", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function(api) { diff --git a/packages/accounts-meteor-developer/package.js b/packages/accounts-meteor-developer/package.js index df563b9500..512f67df8b 100644 --- a/packages/accounts-meteor-developer/package.js +++ b/packages/accounts-meteor-developer/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Meteor developer accounts", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function (api) { diff --git a/packages/accounts-oauth/package.js b/packages/accounts-oauth/package.js index f51084cd64..c5f45912a9 100644 --- a/packages/accounts-oauth/package.js +++ b/packages/accounts-oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth-based login services", - version: "1.1.4-rc.0" + version: "1.1.4" }); Package.onUse(function (api) { diff --git a/packages/accounts-password/package.js b/packages/accounts-password/package.js index 5578b994a3..7628f9fa8c 100644 --- a/packages/accounts-password/package.js +++ b/packages/accounts-password/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Password support for accounts", - version: "1.1.0-rc.2" + version: "1.1.0" }); Package.onUse(function(api) { diff --git a/packages/accounts-twitter/package.js b/packages/accounts-twitter/package.js index 86d234f7b4..acd8ee757b 100644 --- a/packages/accounts-twitter/package.js +++ b/packages/accounts-twitter/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Twitter accounts", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function(api) { diff --git a/packages/accounts-ui-unstyled/package.js b/packages/accounts-ui-unstyled/package.js index bcbe999743..5c4f215200 100644 --- a/packages/accounts-ui-unstyled/package.js +++ b/packages/accounts-ui-unstyled/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Unstyled version of login widgets", - version: "1.1.7-rc.0" + version: "1.1.7" }); Package.onUse(function (api) { diff --git a/packages/accounts-ui/package.js b/packages/accounts-ui/package.js index 6cf6263db3..91a0dbcf14 100644 --- a/packages/accounts-ui/package.js +++ b/packages/accounts-ui/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Simple templates to add login widgets to an app", - version: "1.1.5-rc.0" + version: "1.1.5" }); Package.onUse(function (api) { diff --git a/packages/accounts-weibo/package.js b/packages/accounts-weibo/package.js index d6ee1f8e57..d8702b69f8 100644 --- a/packages/accounts-weibo/package.js +++ b/packages/accounts-weibo/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Login service for Sina Weibo accounts", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function(api) { diff --git a/packages/appcache/package.js b/packages/appcache/package.js index e4c6db93fe..df446d0563 100644 --- a/packages/appcache/package.js +++ b/packages/appcache/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Enable the application cache in the browser", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function (api) { diff --git a/packages/audit-argument-checks/package.js b/packages/audit-argument-checks/package.js index 21ed8d30f1..f7bd9c27c0 100644 --- a/packages/audit-argument-checks/package.js +++ b/packages/audit-argument-checks/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Try to detect inadequate input sanitization", - version: '1.0.3-rc.0' + version: '1.0.3' }); // This package is empty; its presence is detected by livedata. diff --git a/packages/autopublish/package.js b/packages/autopublish/package.js index ee177feeba..7472b2a018 100644 --- a/packages/autopublish/package.js +++ b/packages/autopublish/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Publish the entire database to all clients", - version: '1.0.3-rc.0' + version: '1.0.3' }); // This package is empty; its presence is detected by livedata and diff --git a/packages/autoupdate/package.js b/packages/autoupdate/package.js index 6a461f6f2e..cd5c0fe00b 100644 --- a/packages/autoupdate/package.js +++ b/packages/autoupdate/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Update the client when new client code is available", - version: '1.2.0-rc.0' + version: '1.2.0' }); Cordova.depends({ diff --git a/packages/base64/package.js b/packages/base64/package.js index 9e4342f013..9767d48bd4 100644 --- a/packages/base64/package.js +++ b/packages/base64/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Base64 encoding and decoding", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/binary-heap/package.js b/packages/binary-heap/package.js index 72bbd06247..473f5b6979 100644 --- a/packages/binary-heap/package.js +++ b/packages/binary-heap/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Binary Heap datastructure implementation", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/blaze-tools/package.js b/packages/blaze-tools/package.js index 4858ffc485..6b9d06da11 100644 --- a/packages/blaze-tools/package.js +++ b/packages/blaze-tools/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Compile-time tools for Blaze", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/blaze/package.js b/packages/blaze/package.js index 5ea28d1053..bce54b66a0 100644 --- a/packages/blaze/package.js +++ b/packages/blaze/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor Reactive Templating library", - version: '2.1.0-rc.2' + version: '2.1.0' }); Package.onUse(function (api) { diff --git a/packages/boilerplate-generator/package.js b/packages/boilerplate-generator/package.js index 8ded72be24..a95706fb40 100644 --- a/packages/boilerplate-generator/package.js +++ b/packages/boilerplate-generator/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Generates the boilerplate html from program's manifest", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/browser-policy-common/package.js b/packages/browser-policy-common/package.js index 8982ef7d47..68b6ad3431 100644 --- a/packages/browser-policy-common/package.js +++ b/packages/browser-policy-common/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for browser-policy packages", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function (api) { diff --git a/packages/browser-policy-content/package.js b/packages/browser-policy-content/package.js index 311b400b41..6797af845a 100644 --- a/packages/browser-policy-content/package.js +++ b/packages/browser-policy-content/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Configure content security policies", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function (api) { diff --git a/packages/browser-policy-framing/package.js b/packages/browser-policy-framing/package.js index 55646fb2f6..09fd0ca539 100644 --- a/packages/browser-policy-framing/package.js +++ b/packages/browser-policy-framing/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Restrict which websites can frame your app", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function (api) { diff --git a/packages/browser-policy/package.js b/packages/browser-policy/package.js index 257d3fdfa3..dc739ccbe1 100644 --- a/packages/browser-policy/package.js +++ b/packages/browser-policy/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Configure security policies enforced by the browser", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function (api) { diff --git a/packages/callback-hook/package.js b/packages/callback-hook/package.js index 18b5a2bd37..a5a11040fe 100644 --- a/packages/callback-hook/package.js +++ b/packages/callback-hook/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Register callbacks on a hook", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/check/package.js b/packages/check/package.js index 382631fa91..c93924e1e7 100644 --- a/packages/check/package.js +++ b/packages/check/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Check whether a value matches a pattern", - version: '1.0.5-rc.0' + version: '1.0.5' }); Package.onUse(function (api) { diff --git a/packages/code-prettify/package.js b/packages/code-prettify/package.js index 37c139a3b1..b0eb5c1ca0 100644 --- a/packages/code-prettify/package.js +++ b/packages/code-prettify/package.js @@ -8,7 +8,7 @@ var path = Npm.require('path'); Package.describe({ summary: "Syntax highlighting of code, from Google", - version: "1.0.3-rc.0" + version: "1.0.3" }); // XXX this code dumps symbols into the global namespace (directly diff --git a/packages/coffeescript-test-helper/package.js b/packages/coffeescript-test-helper/package.js index c9769a82d6..23fdd80329 100644 --- a/packages/coffeescript-test-helper/package.js +++ b/packages/coffeescript-test-helper/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Used by the coffeescript package's tests", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function (api) { diff --git a/packages/coffeescript/package.js b/packages/coffeescript/package.js index 541e23b80d..771c094195 100644 --- a/packages/coffeescript/package.js +++ b/packages/coffeescript/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Javascript dialect with fewer braces and semicolons", - version: "1.0.6-rc.0" + version: "1.0.6" }); Package.registerBuildPlugin({ diff --git a/packages/constraint-solver/package.js b/packages/constraint-solver/package.js index 48e8786ed8..71e19403a3 100644 --- a/packages/constraint-solver/package.js +++ b/packages/constraint-solver/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Given the set of the constraints, picks a satisfying configuration", - version: "1.0.18-rc.0" + version: "1.0.18" }); Npm.depends({ diff --git a/packages/ddp/package.js b/packages/ddp/package.js index b8dc3cafdf..b93f131caf 100644 --- a/packages/ddp/package.js +++ b/packages/ddp/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor's latency-compensated distributed data framework", - version: '1.1.0-rc.1' + version: '1.1.0' }); // We use 'faye-websocket' for connections in server-to-server DDP, mostly diff --git a/packages/deps/package.js b/packages/deps/package.js index 5289997579..dd190584b4 100644 --- a/packages/deps/package.js +++ b/packages/deps/package.js @@ -2,7 +2,7 @@ Package.describe({ summary: "Deprecated: Use the 'tracker' package instead.", - version: '1.0.7-rc.0' + version: '1.0.7' }); Package.onUse(function (api) { diff --git a/packages/disable-oplog/package.js b/packages/disable-oplog/package.js index 44a3028c5a..c04982c7c4 100644 --- a/packages/disable-oplog/package.js +++ b/packages/disable-oplog/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Disables oplog tailing", - version: '1.0.3-rc.0' + version: '1.0.3' }); // This package is empty; its presence is detected by mongo-livedata. diff --git a/packages/ejson/package.js b/packages/ejson/package.js index abe16f1209..fcea63d9ca 100644 --- a/packages/ejson/package.js +++ b/packages/ejson/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Extended and Extensible JSON library", - version: '1.0.6-rc.0' + version: '1.0.6' }); Package.onUse(function (api) { diff --git a/packages/email/package.js b/packages/email/package.js index cf696d40e7..33f6ec18ad 100644 --- a/packages/email/package.js +++ b/packages/email/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Send email messages", - version: "1.0.6-rc.0" + version: "1.0.6" }); Npm.depends({ diff --git a/packages/facebook/package.js b/packages/facebook/package.js index 3dba619ebb..aa9e698e04 100644 --- a/packages/facebook/package.js +++ b/packages/facebook/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Facebook OAuth flow", - version: "1.1.4-rc.0" + version: "1.1.4" }); Package.onUse(function(api) { diff --git a/packages/facts/package.js b/packages/facts/package.js index af16870127..f6b401faf1 100644 --- a/packages/facts/package.js +++ b/packages/facts/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Publish internal app statistics", - version: '1.0.4-rc.0' + version: '1.0.4' }); Package.onUse(function (api) { diff --git a/packages/fastclick/package.js b/packages/fastclick/package.js index 9148dd3e0c..a9910ca34d 100644 --- a/packages/fastclick/package.js +++ b/packages/fastclick/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Faster touch events on mobile", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/force-ssl/package.js b/packages/force-ssl/package.js index 6ce3c070b2..9e4a0acca3 100644 --- a/packages/force-ssl/package.js +++ b/packages/force-ssl/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Require this application to use HTTPS", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function (api) { diff --git a/packages/geojson-utils/package.js b/packages/geojson-utils/package.js index a0ea0b2766..f85f803e66 100644 --- a/packages/geojson-utils/package.js +++ b/packages/geojson-utils/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'GeoJSON utility functions (from https://github.com/maxogden/geojson-js-utils)', - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/github/package.js b/packages/github/package.js index 3b12fe95e7..74c41efa43 100644 --- a/packages/github/package.js +++ b/packages/github/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Github OAuth flow", - version: "1.1.3-rc.0" + version: "1.1.3" }); Package.onUse(function(api) { diff --git a/packages/google/package.js b/packages/google/package.js index bf1cfddb5d..c1265a8aa4 100644 --- a/packages/google/package.js +++ b/packages/google/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Google OAuth flow", - version: "1.1.5-rc.0" + version: "1.1.5" }); Package.onUse(function(api) { diff --git a/packages/handlebars/package.js b/packages/handlebars/package.js index baa6ffa092..144634eac5 100644 --- a/packages/handlebars/package.js +++ b/packages/handlebars/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Deprecated", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/html-tools/package.js b/packages/html-tools/package.js index b74cd23865..9006f9468f 100644 --- a/packages/html-tools/package.js +++ b/packages/html-tools/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Standards-compliant HTML tools", - version: '1.0.4-rc.0' + version: '1.0.4' }); Package.onUse(function (api) { diff --git a/packages/htmljs/package.js b/packages/htmljs/package.js index 2e5c06f692..b486cfddb7 100644 --- a/packages/htmljs/package.js +++ b/packages/htmljs/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Small library for expressing HTML trees", - version: '1.0.4-rc.0' + version: '1.0.4' }); Package.onUse(function (api) { diff --git a/packages/http/package.js b/packages/http/package.js index e9a7e16e51..f5cdd9d882 100644 --- a/packages/http/package.js +++ b/packages/http/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Make HTTP calls to remote servers", - version: '1.1.0-rc.0' + version: '1.1.0' }); Npm.depends({request: "2.53.0"}); diff --git a/packages/id-map/package.js b/packages/id-map/package.js index 3759be40c4..255300214a 100644 --- a/packages/id-map/package.js +++ b/packages/id-map/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Dictionary data structure allowing non-string keys", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/insecure/package.js b/packages/insecure/package.js index c7ef020ab8..0b00a9ed27 100644 --- a/packages/insecure/package.js +++ b/packages/insecure/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Allow all database writes by default", - version: '1.0.3-rc.0' + version: '1.0.3' }); // This package is empty; its presence is detected by mongo-livedata. diff --git a/packages/jquery-waypoints/package.js b/packages/jquery-waypoints/package.js index e4d714b264..0636c0b607 100644 --- a/packages/jquery-waypoints/package.js +++ b/packages/jquery-waypoints/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run a function when the user scrolls past an element", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function (api) { diff --git a/packages/jquery/package.js b/packages/jquery/package.js index ac4ccb0d24..10480dd4be 100644 --- a/packages/jquery/package.js +++ b/packages/jquery/package.js @@ -5,7 +5,7 @@ Package.describe({ // naively thought that "call the version '1.11.2', add a comment saying that // the next version should be '1.11.2_1'" would be sufficient to not be // missed during the semi-automated version number bumping step. Next time, use `_0` from the start so it's obvious that something weird is happening! - version: '1.11.3-rc.0_2' // XXX see above!!!! + version: '1.11.3_2' // XXX see above!!!! }); Package.onUse(function (api) { diff --git a/packages/js-analyze-tests/package.js b/packages/js-analyze-tests/package.js index 9699942a4b..81530e0ad8 100644 --- a/packages/js-analyze-tests/package.js +++ b/packages/js-analyze-tests/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Tests for JavaScript code analysis for Meteor", - version: "1.0.3-rc.0" + version: "1.0.3" }); // The tests are in a separate package so that it is possible to compile diff --git a/packages/js-analyze/package.js b/packages/js-analyze/package.js index 19f3f2c716..67b5ee98eb 100644 --- a/packages/js-analyze/package.js +++ b/packages/js-analyze/package.js @@ -4,7 +4,7 @@ Package.describe({ summary: "JavaScript code analysis for Meteor", - version: '1.0.5-rc.0' + version: '1.0.5' }); // Use some packages from the Esprima project. If it turns out we need these on diff --git a/packages/json/package.js b/packages/json/package.js index 262ab3638c..1e2527d754 100644 --- a/packages/json/package.js +++ b/packages/json/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Provides JSON.stringify and JSON.parse for older browsers", - version: '1.0.3-rc.0' + version: '1.0.3' }); // We need to figure out how to serve this file only to browsers that don't have diff --git a/packages/jsparse/package.js b/packages/jsparse/package.js index f15ecfd697..f53052d880 100644 --- a/packages/jsparse/package.js +++ b/packages/jsparse/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Full-featured JavaScript parser", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function (api) { diff --git a/packages/launch-screen/package.js b/packages/launch-screen/package.js index f9e889007c..f4a1b85c97 100644 --- a/packages/launch-screen/package.js +++ b/packages/launch-screen/package.js @@ -6,7 +6,7 @@ Package.describe({ // between such packages and the build tool. name: 'launch-screen', summary: 'Default and customizable launch screen on mobile.', - version: '1.0.2-rc.0' + version: '1.0.2' }); Cordova.depends({ diff --git a/packages/less/package.js b/packages/less/package.js index 6d561e27dd..aa5dd04e91 100644 --- a/packages/less/package.js +++ b/packages/less/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "The dynamic stylesheet language", - version: "1.0.13-rc.0" + version: "1.0.13" }); Package.registerBuildPlugin({ diff --git a/packages/livedata/package.js b/packages/livedata/package.js index 9ea7f871cc..6cb856edd9 100644 --- a/packages/livedata/package.js +++ b/packages/livedata/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Moved to the 'ddp' package", - version: '1.0.13-rc.0' + version: '1.0.13' }); Package.onUse(function (api) { diff --git a/packages/localstorage/package.js b/packages/localstorage/package.js index c04deb65d2..e2ea880741 100644 --- a/packages/localstorage/package.js +++ b/packages/localstorage/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Simulates local storage on IE 6,7 using userData", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function (api) { diff --git a/packages/logging/package.js b/packages/logging/package.js index b1cf92673f..bb2d89dba8 100644 --- a/packages/logging/package.js +++ b/packages/logging/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Logging facility.", - version: '1.0.7-rc.0' + version: '1.0.7' }); Npm.depends({ diff --git a/packages/markdown/package.js b/packages/markdown/package.js index f4f2a3de01..274a94244d 100644 --- a/packages/markdown/package.js +++ b/packages/markdown/package.js @@ -2,7 +2,7 @@ Package.describe({ summary: "Markdown-to-HTML processor", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function (api) { diff --git a/packages/meetup/package.js b/packages/meetup/package.js index f3a20fa418..70d436299f 100644 --- a/packages/meetup/package.js +++ b/packages/meetup/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meetup OAuth flow", - version: "1.1.3-rc.0" + version: "1.1.3" }); Package.onUse(function(api) { diff --git a/packages/meteor-developer/package.js b/packages/meteor-developer/package.js index 0a8d442da6..45e5728010 100644 --- a/packages/meteor-developer/package.js +++ b/packages/meteor-developer/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor developer accounts OAuth flow", - version: "1.1.3-rc.0" + version: "1.1.3" }); Package.onUse(function (api) { diff --git a/packages/meteor-platform/package.js b/packages/meteor-platform/package.js index 25663b9919..1150781a6e 100644 --- a/packages/meteor-platform/package.js +++ b/packages/meteor-platform/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Include a standard set of Meteor packages in your app", - version: '1.2.2-rc.0' + version: '1.2.2' }); Package.onUse(function(api) { diff --git a/packages/meteor-tool/package.js b/packages/meteor-tool/package.js index 24e81604d2..2064cc73c9 100644 --- a/packages/meteor-tool/package.js +++ b/packages/meteor-tool/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "The Meteor command-line tool", - version: '1.0.42-rc.7' + version: '1.0.42' }); Package.includeTool(); diff --git a/packages/meteor/package.js b/packages/meteor/package.js index 5986226a79..3f9a27f379 100644 --- a/packages/meteor/package.js +++ b/packages/meteor/package.js @@ -2,7 +2,7 @@ Package.describe({ summary: "Core Meteor environment", - version: '1.1.5-rc.0' + version: '1.1.5' }); Package.registerBuildPlugin({ diff --git a/packages/meyerweb-reset/package.js b/packages/meyerweb-reset/package.js index a0769a98ab..467e706264 100644 --- a/packages/meyerweb-reset/package.js +++ b/packages/meyerweb-reset/package.js @@ -3,7 +3,7 @@ // encourage this pattern. Maybe another solution would be better. Package.describe({ summary: "reset.css v2.0 from http://meyerweb.com/eric/tools/css/reset/", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function (api) { diff --git a/packages/minifiers/package.js b/packages/minifiers/package.js index eb381e65a8..a949299a1d 100644 --- a/packages/minifiers/package.js +++ b/packages/minifiers/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "JavaScript and CSS minifiers", - version: "1.1.4-rc.2" + version: "1.1.4" }); Npm.depends({ diff --git a/packages/minimongo/package.js b/packages/minimongo/package.js index a13a3248ee..b7929b5d18 100644 --- a/packages/minimongo/package.js +++ b/packages/minimongo/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Meteor's client-side datastore: a port of MongoDB to Javascript", - version: '1.0.7-rc.0' + version: '1.0.7' }); Package.onUse(function (api) { diff --git a/packages/mobile-status-bar/package.js b/packages/mobile-status-bar/package.js index fc15e6e59b..17f9c63860 100644 --- a/packages/mobile-status-bar/package.js +++ b/packages/mobile-status-bar/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Good defaults for the mobile status bar", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function(api) { diff --git a/packages/mongo-livedata/package.js b/packages/mongo-livedata/package.js index 5ae8830151..68f246000f 100644 --- a/packages/mongo-livedata/package.js +++ b/packages/mongo-livedata/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Moved to the 'mongo' package", - version: '1.0.8-rc.0' + version: '1.0.8' }); Package.onUse(function (api) { diff --git a/packages/mongo/package.js b/packages/mongo/package.js index 2b0e40c7b5..1faeff61af 100644 --- a/packages/mongo/package.js +++ b/packages/mongo/package.js @@ -9,7 +9,7 @@ Package.describe({ summary: "Adaptor for using MongoDB and Minimongo over DDP", - version: '1.1.0-rc.0' + version: '1.1.0' }); Npm.depends({ diff --git a/packages/oauth-encryption/package.js b/packages/oauth-encryption/package.js index 969702b361..2be41bd02d 100644 --- a/packages/oauth-encryption/package.js +++ b/packages/oauth-encryption/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Encrypt account secrets stored in the database", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/oauth/package.js b/packages/oauth/package.js index 41a5c0d765..76918bfa0c 100644 --- a/packages/oauth/package.js +++ b/packages/oauth/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth-based services", - version: "1.1.4-rc.0" + version: "1.1.4" }); Package.onUse(function (api) { diff --git a/packages/oauth1/package.js b/packages/oauth1/package.js index aa0d248b03..ca1acf1b16 100644 --- a/packages/oauth1/package.js +++ b/packages/oauth1/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth1-based login services", - version: "1.1.4-rc.0" + version: "1.1.4" }); Package.onUse(function (api) { diff --git a/packages/oauth2/package.js b/packages/oauth2/package.js index f7a55bca97..99f1a1769a 100644 --- a/packages/oauth2/package.js +++ b/packages/oauth2/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Common code for OAuth2-based login services", - version: "1.1.3-rc.0" + version: "1.1.3" }); Package.onUse(function (api) { diff --git a/packages/observe-sequence/package.js b/packages/observe-sequence/package.js index 0ddd59b1a9..c7a130175b 100644 --- a/packages/observe-sequence/package.js +++ b/packages/observe-sequence/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Observe changes to various sequence types such as arrays, cursors and objects", - version: "1.0.5-rc.0" + version: "1.0.5" }); Package.onUse(function (api) { diff --git a/packages/ordered-dict/package.js b/packages/ordered-dict/package.js index c0cb5d9deb..de908ce939 100644 --- a/packages/ordered-dict/package.js +++ b/packages/ordered-dict/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Ordered traversable dictionary with a mutable ordering", - version: '1.0.3-rc.0', + version: '1.0.3', documentation: null }); diff --git a/packages/package-stats-opt-out/package.js b/packages/package-stats-opt-out/package.js index 0c65d3f1e8..0977f65740 100644 --- a/packages/package-stats-opt-out/package.js +++ b/packages/package-stats-opt-out/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Opt out of sending package stats", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/package-version-parser/package.js b/packages/package-version-parser/package.js index c4e895ae99..84cdcc2ec8 100644 --- a/packages/package-version-parser/package.js +++ b/packages/package-version-parser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Parses Meteor Smart Package version strings", - version: "3.0.2-rc.3" + version: "3.0.2" }); Package.onUse(function (api) { diff --git a/packages/preserve-inputs/package.js b/packages/preserve-inputs/package.js index d4aceea3a8..de61a524a8 100644 --- a/packages/preserve-inputs/package.js +++ b/packages/preserve-inputs/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Deprecated package (now empty)", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function (api) { diff --git a/packages/random/package.js b/packages/random/package.js index ccaf2a2f36..a20a17cc26 100644 --- a/packages/random/package.js +++ b/packages/random/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Random number generator and utilities", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/reactive-dict/package.js b/packages/reactive-dict/package.js index 46331c1bb3..5b90796729 100644 --- a/packages/reactive-dict/package.js +++ b/packages/reactive-dict/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Reactive dictionary", - version: '1.1.0-rc.0' + version: '1.1.0' }); Package.onUse(function (api) { diff --git a/packages/reactive-var/package.js b/packages/reactive-var/package.js index 1843cdc63a..3fa7624361 100644 --- a/packages/reactive-var/package.js +++ b/packages/reactive-var/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Reactive variable", - version: '1.0.5-rc.0' + version: '1.0.5' }); Package.onUse(function (api) { diff --git a/packages/reload-safetybelt/package.js b/packages/reload-safetybelt/package.js index 5f3f9b5fe5..68a73eac18 100644 --- a/packages/reload-safetybelt/package.js +++ b/packages/reload-safetybelt/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Reload safety belt for multi-server deployments", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/reload/package.js b/packages/reload/package.js index 7603f3cfb1..2757c78c55 100644 --- a/packages/reload/package.js +++ b/packages/reload/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Reload the page while preserving application state.", - version: '1.1.3-rc.0' + version: '1.1.3' }); Package.onUse(function (api) { diff --git a/packages/retry/package.js b/packages/retry/package.js index 537871fee4..54165b1395 100644 --- a/packages/retry/package.js +++ b/packages/retry/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Retry logic with exponential backoff", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/routepolicy/package.js b/packages/routepolicy/package.js index 8dca18d663..f81b88db97 100644 --- a/packages/routepolicy/package.js +++ b/packages/routepolicy/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "route policy declarations", - version: '1.0.5-rc.0' + version: '1.0.5' }); Package.onUse(function (api) { diff --git a/packages/service-configuration/package.js b/packages/service-configuration/package.js index 35f3dd04a6..0743712b63 100644 --- a/packages/service-configuration/package.js +++ b/packages/service-configuration/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Manage the configuration for third-party services", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function(api) { diff --git a/packages/session/package.js b/packages/session/package.js index ee5099da1d..cd76762278 100644 --- a/packages/session/package.js +++ b/packages/session/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Session variable", - version: '1.1.0-rc.0' + version: '1.1.0' }); Package.onUse(function (api) { diff --git a/packages/sha/package.js b/packages/sha/package.js index 51baf46ca7..b8379f7d60 100644 --- a/packages/sha/package.js +++ b/packages/sha/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "SHA256 implementation", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function (api) { diff --git a/packages/showdown/package.js b/packages/showdown/package.js index aca08df67b..6dc4c41b23 100644 --- a/packages/showdown/package.js +++ b/packages/showdown/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Moved to the 'markdown' package", - version: '1.0.4-rc.0' + version: '1.0.4' }); Package.onUse(function (api) { diff --git a/packages/spacebars-compiler/package.js b/packages/spacebars-compiler/package.js index 2d4d414860..3ea579e38b 100644 --- a/packages/spacebars-compiler/package.js +++ b/packages/spacebars-compiler/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Compiler for Spacebars template language", - version: '1.0.5-rc.0' + version: '1.0.5' }); Package.onUse(function (api) { diff --git a/packages/spacebars-tests/package.js b/packages/spacebars-tests/package.js index 78bc3369a2..96f2ed3b6b 100644 --- a/packages/spacebars-tests/package.js +++ b/packages/spacebars-tests/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Additional tests for Spacebars", - version: '1.0.3-rc.1' + version: '1.0.3' }); // These tests are in a separate package to avoid a circular dependency diff --git a/packages/spacebars/package.js b/packages/spacebars/package.js index 53d1dba82f..ceebf99010 100644 --- a/packages/spacebars/package.js +++ b/packages/spacebars/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Handlebars-like template language for Meteor", - version: '1.0.6-rc.0' + version: '1.0.6' }); // For more, see package `spacebars-compiler`, which is used by diff --git a/packages/spiderable/package.js b/packages/spiderable/package.js index 3e07d4bba1..7d4236ed52 100644 --- a/packages/spiderable/package.js +++ b/packages/spiderable/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Makes the application crawlable to web spiders", - version: "1.0.7-rc.0" + version: "1.0.7" }); Package.onUse(function (api) { diff --git a/packages/srp/package.js b/packages/srp/package.js index d9677c9189..9d7ae13d38 100644 --- a/packages/srp/package.js +++ b/packages/srp/package.js @@ -5,7 +5,7 @@ Package.describe({ summary: "Library for Secure Remote Password (SRP) exchanges", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function (api) { diff --git a/packages/standard-app-packages/package.js b/packages/standard-app-packages/package.js index f55bcd31f9..7ec1b9c369 100644 --- a/packages/standard-app-packages/package.js +++ b/packages/standard-app-packages/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Moved to meteor-platform", - version: '1.0.5-rc.0' + version: '1.0.5' }); Package.onUse(function (api) { diff --git a/packages/startup/package.js b/packages/startup/package.js index 21fa5541d1..21f28f6c1b 100644 --- a/packages/startup/package.js +++ b/packages/startup/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Deprecated package (now empty)", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function (api) { diff --git a/packages/stylus/package.js b/packages/stylus/package.js index 73b27d7524..b6cb09d922 100644 --- a/packages/stylus/package.js +++ b/packages/stylus/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: 'Expressive, dynamic, robust CSS', - version: "1.0.7-rc.0" + version: "1.0.7" }); Package.registerBuildPlugin({ diff --git a/packages/templating/package.js b/packages/templating/package.js index 07d95129b9..a3e5e0caa0 100644 --- a/packages/templating/package.js +++ b/packages/templating/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Allows templates to be defined in .html files", - version: '1.1.0-rc.2' + version: '1.1.0' }); // Today, this package is closely intertwined with Handlebars, meaning diff --git a/packages/test-helpers/package.js b/packages/test-helpers/package.js index 2d7c081f52..01bf5c59e8 100644 --- a/packages/test-helpers/package.js +++ b/packages/test-helpers/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Utility functions for tests", - version: '1.0.4-rc.0' + version: '1.0.4' }); Package.onUse(function (api) { diff --git a/packages/test-in-browser/package.js b/packages/test-in-browser/package.js index 308a100398..28c8df81d1 100644 --- a/packages/test-in-browser/package.js +++ b/packages/test-in-browser/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run tests interactively in the browser", - version: '1.0.7-rc.0', + version: '1.0.7', documentation: null }); diff --git a/packages/test-in-console/package.js b/packages/test-in-console/package.js index e661a44cea..4666570fdf 100644 --- a/packages/test-in-console/package.js +++ b/packages/test-in-console/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run tests noninteractively, with results going to the console.", - version: '1.0.5-rc.0' + version: '1.0.5' }); Package.onUse(function (api) { diff --git a/packages/test-server-tests-in-console-once/package.js b/packages/test-server-tests-in-console-once/package.js index 7479d24d52..911f93c038 100644 --- a/packages/test-server-tests-in-console-once/package.js +++ b/packages/test-server-tests-in-console-once/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Run server tests noninteractively, with results going to the console.", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/tinytest/package.js b/packages/tinytest/package.js index c7727f814c..438634a3c2 100644 --- a/packages/tinytest/package.js +++ b/packages/tinytest/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Tiny testing framework", - version: '1.0.5-rc.0' + version: '1.0.5' }); Package.onUse(function (api) { diff --git a/packages/tracker/package.js b/packages/tracker/package.js index a8ad063cd8..4d635adbc2 100644 --- a/packages/tracker/package.js +++ b/packages/tracker/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Dependency tracker to allow reactive callbacks", - version: '1.0.6-rc.0' + version: '1.0.6' }); Package.onUse(function (api) { diff --git a/packages/twitter/package.js b/packages/twitter/package.js index 846450517d..34d878d6af 100644 --- a/packages/twitter/package.js +++ b/packages/twitter/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Twitter OAuth flow", - version: '1.1.4-rc.0' + version: '1.1.4' }); Package.onUse(function(api) { diff --git a/packages/ui/package.js b/packages/ui/package.js index 64ec963d65..f6efb092d8 100644 --- a/packages/ui/package.js +++ b/packages/ui/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Deprecated: Use the 'blaze' package", - version: '1.0.6-rc.0' + version: '1.0.6' }); Package.onUse(function (api) { diff --git a/packages/underscore-tests/package.js b/packages/underscore-tests/package.js index eb4e7330ab..06aacec72d 100644 --- a/packages/underscore-tests/package.js +++ b/packages/underscore-tests/package.js @@ -2,7 +2,7 @@ Package.describe({ // These tests can't be directly in the underscore packages since // Tinytest depends on underscore summary: "Tests for the underscore package", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onTest(function (api) { diff --git a/packages/underscore/package.js b/packages/underscore/package.js index d0a4fce24b..ab2513c4e6 100644 --- a/packages/underscore/package.js +++ b/packages/underscore/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Collection of small helpers: _.map, _.each, ...", - version: '1.0.3-rc.0' + version: '1.0.3' }); Package.onUse(function (api) { diff --git a/packages/url/package.js b/packages/url/package.js index b796db1993..847f5a9ab5 100644 --- a/packages/url/package.js +++ b/packages/url/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Utility code for constructing URLs", - version: "1.0.4-rc.0" + version: "1.0.4" }); Package.onUse(function(api) { diff --git a/packages/webapp-hashing/package.js b/packages/webapp-hashing/package.js index 2cc6fc97d8..2859eba8f5 100644 --- a/packages/webapp-hashing/package.js +++ b/packages/webapp-hashing/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Used internally by WebApp. Knows how to hash programs from manifests.", - version: "1.0.3-rc.0" + version: "1.0.3" }); Package.onUse(function(api) { diff --git a/packages/webapp/package.js b/packages/webapp/package.js index 1e2b703ba8..2747434e0f 100644 --- a/packages/webapp/package.js +++ b/packages/webapp/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Serves a Meteor app over HTTP", - version: '1.2.0-rc.1' + version: '1.2.0' }); Npm.depends({connect: "2.9.0", diff --git a/packages/weibo/package.js b/packages/weibo/package.js index f6dc6f5bc4..1d6503dd80 100644 --- a/packages/weibo/package.js +++ b/packages/weibo/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "Weibo OAuth flow", - version: '1.1.3-rc.0' + version: '1.1.3' }); Package.onUse(function(api) { diff --git a/packages/xmlbuilder/package.js b/packages/xmlbuilder/package.js index 709c0ea202..6a05bb2da4 100644 --- a/packages/xmlbuilder/package.js +++ b/packages/xmlbuilder/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "An XML builder for node.js similar to java-xmlbuilder.", - version: '2.4.6-rc.0' + version: '2.4.6' }); Npm.depends({ diff --git a/scripts/admin/meteor-release-official.json b/scripts/admin/meteor-release-official.json index 014318f3ea..ff0b262aa0 100644 --- a/scripts/admin/meteor-release-official.json +++ b/scripts/admin/meteor-release-official.json @@ -1,7 +1,6 @@ { "track": "METEOR", - "version": "1.0.3.2", - "patchFrom": ["1.0.3", "1.0.3.1"], + "version": "1.0.4", "recommended": false, "official": true, "description": "The Official Meteor Distribution" From e84f5d7c74269c75d664cb662ec966477c2849b3 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 17 Mar 2015 13:31:09 -0700 Subject: [PATCH 55/56] Update docs and examples to 1.0.4 --- docs/.meteor/release | 2 +- docs/.meteor/versions | 112 ++++++++++++------------- docs/client/helpers.js | 2 +- examples/clock/.meteor/release | 2 +- examples/clock/.meteor/versions | 96 ++++++++++----------- examples/leaderboard/.meteor/release | 2 +- examples/leaderboard/.meteor/versions | 96 ++++++++++----------- examples/localmarket/.meteor/release | 2 +- examples/localmarket/.meteor/versions | 116 +++++++++++++------------- examples/todos/.meteor/release | 2 +- examples/todos/.meteor/versions | 110 ++++++++++++------------ 11 files changed, 271 insertions(+), 271 deletions(-) diff --git a/docs/.meteor/release b/docs/.meteor/release index 91f0d7a00c..509b6f42a1 100644 --- a/docs/.meteor/release +++ b/docs/.meteor/release @@ -1 +1 @@ -METEOR@1.0.4-rc.3 +METEOR@1.0.4 diff --git a/docs/.meteor/versions b/docs/.meteor/versions index adc28dfb25..03e3a4b874 100644 --- a/docs/.meteor/versions +++ b/docs/.meteor/versions @@ -1,58 +1,58 @@ -appcache@1.0.4-rc.0 -autoupdate@1.2.0-rc.0 -base64@1.0.3-rc.0 -binary-heap@1.0.3-rc.0 -blaze@2.1.0-rc.2 -blaze-tools@1.0.3-rc.0 -boilerplate-generator@1.0.3-rc.0 -callback-hook@1.0.3-rc.0 -check@1.0.5-rc.0 -coffeescript@1.0.6-rc.0 -ddp@1.1.0-rc.1 -deps@1.0.7-rc.0 -ejson@1.0.6-rc.0 -fastclick@1.0.3-rc.0 -force-ssl@1.0.4-rc.0 -geojson-utils@1.0.3-rc.0 -html-tools@1.0.4-rc.0 -htmljs@1.0.4-rc.0 -http@1.1.0-rc.0 -id-map@1.0.3-rc.0 -jquery@1.11.3-rc.0_2 -jquery-waypoints@1.0.3-rc.0 -json@1.0.3-rc.0 -launch-screen@1.0.2-rc.0 -less@1.0.13-rc.0 -livedata@1.0.13-rc.0 -logging@1.0.7-rc.0 -markdown@1.0.4-rc.0 -meteor@1.1.5-rc.0 -meteor-platform@1.2.2-rc.0 -minifiers@1.1.4-rc.1 -minimongo@1.0.7-rc.0 -mobile-status-bar@1.0.3-rc.0 -mongo@1.1.0-rc.0 -observe-sequence@1.0.5-rc.0 -ordered-dict@1.0.3-rc.0 -random@1.0.3-rc.0 -reactive-dict@1.1.0-rc.0 -reactive-var@1.0.5-rc.0 -reload@1.1.3-rc.0 -reload-safetybelt@1.0.3-rc.0 -retry@1.0.3-rc.0 -routepolicy@1.0.5-rc.0 -session@1.1.0-rc.0 -showdown@1.0.4-rc.0 +appcache@1.0.4 +autoupdate@1.2.0 +base64@1.0.3 +binary-heap@1.0.3 +blaze@2.1.0 +blaze-tools@1.0.3 +boilerplate-generator@1.0.3 +callback-hook@1.0.3 +check@1.0.5 +coffeescript@1.0.6 +ddp@1.1.0 +deps@1.0.7 +ejson@1.0.6 +fastclick@1.0.3 +force-ssl@1.0.4 +geojson-utils@1.0.3 +html-tools@1.0.4 +htmljs@1.0.4 +http@1.1.0 +id-map@1.0.3 +jquery@1.11.3_2 +jquery-waypoints@1.0.3 +json@1.0.3 +launch-screen@1.0.2 +less@1.0.13 +livedata@1.0.13 +logging@1.0.7 +markdown@1.0.4 +meteor@1.1.5 +meteor-platform@1.2.2 +minifiers@1.1.4 +minimongo@1.0.7 +mobile-status-bar@1.0.3 +mongo@1.1.0 +observe-sequence@1.0.5 +ordered-dict@1.0.3 +random@1.0.3 +reactive-dict@1.1.0 +reactive-var@1.0.5 +reload@1.1.3 +reload-safetybelt@1.0.3 +retry@1.0.3 +routepolicy@1.0.5 +session@1.1.0 +showdown@1.0.4 simple:highlight.js@1.0.9 simple:markdown-templating@1.2.6 -spacebars@1.0.6-rc.0 -spacebars-compiler@1.0.5-rc.0 -spiderable@1.0.7-rc.0 -standard-app-packages@1.0.5-rc.0 -templating@1.1.0-rc.1 -tracker@1.0.6-rc.0 -ui@1.0.6-rc.0 -underscore@1.0.3-rc.0 -url@1.0.4-rc.0 -webapp@1.2.0-rc.1 -webapp-hashing@1.0.3-rc.0 +spacebars@1.0.6 +spacebars-compiler@1.0.5 +spiderable@1.0.7 +standard-app-packages@1.0.5 +templating@1.1.0 +tracker@1.0.6 +ui@1.0.6 +underscore@1.0.3 +url@1.0.4 +webapp@1.2.0 +webapp-hashing@1.0.3 diff --git a/docs/client/helpers.js b/docs/client/helpers.js index 25f1e5f25b..ec918a92c6 100644 --- a/docs/client/helpers.js +++ b/docs/client/helpers.js @@ -1,4 +1,4 @@ -release = Meteor.release ? "1.0.4-rc.3" : "(checkout)"; +release = Meteor.release ? "1.0.4" : "(checkout)"; Template.registerHelper("release", release); diff --git a/examples/clock/.meteor/release b/examples/clock/.meteor/release index 1dd4eaaa23..509b6f42a1 100644 --- a/examples/clock/.meteor/release +++ b/examples/clock/.meteor/release @@ -1 +1 @@ -METEOR@1.0.4-rc.0 +METEOR@1.0.4 diff --git a/examples/clock/.meteor/versions b/examples/clock/.meteor/versions index d8b4cf1359..1ed4af4439 100644 --- a/examples/clock/.meteor/versions +++ b/examples/clock/.meteor/versions @@ -1,48 +1,48 @@ -autopublish@1.0.3-rc.0 -autoupdate@1.2.0-rc.0 -base64@1.0.3-rc.0 -binary-heap@1.0.3-rc.0 -blaze@2.1.0-rc.0 -blaze-tools@1.0.3-rc.0 -boilerplate-generator@1.0.3-rc.0 -callback-hook@1.0.3-rc.0 -check@1.0.5-rc.0 -ddp@1.1.0-rc.0 -deps@1.0.7-rc.0 -ejson@1.0.6-rc.0 -fastclick@1.0.3-rc.0 -geojson-utils@1.0.3-rc.0 -html-tools@1.0.4-rc.0 -htmljs@1.0.4-rc.0 -http@1.1.0-rc.0 -id-map@1.0.3-rc.0 -insecure@1.0.3-rc.0 -jquery@1.11.3-rc.0_2 -json@1.0.3-rc.0 -launch-screen@1.0.2-rc.0 -livedata@1.0.13-rc.0 -logging@1.0.7-rc.0 -meteor@1.1.5-rc.0 -meteor-platform@1.2.2-rc.0 -minifiers@1.1.4-rc.0 -minimongo@1.0.7-rc.0 -mobile-status-bar@1.0.3-rc.0 -mongo@1.1.0-rc.0 -observe-sequence@1.0.5-rc.0 -ordered-dict@1.0.3-rc.0 -random@1.0.3-rc.0 -reactive-dict@1.1.0-rc.0 -reactive-var@1.0.5-rc.0 -reload@1.1.3-rc.0 -retry@1.0.3-rc.0 -routepolicy@1.0.5-rc.0 -session@1.1.0-rc.0 -spacebars@1.0.6-rc.0 -spacebars-compiler@1.0.5-rc.0 -templating@1.1.0-rc.0 -tracker@1.0.6-rc.0 -ui@1.0.6-rc.0 -underscore@1.0.3-rc.0 -url@1.0.4-rc.0 -webapp@1.2.0-rc.0 -webapp-hashing@1.0.3-rc.0 +autopublish@1.0.3 +autoupdate@1.2.0 +base64@1.0.3 +binary-heap@1.0.3 +blaze@2.1.0 +blaze-tools@1.0.3 +boilerplate-generator@1.0.3 +callback-hook@1.0.3 +check@1.0.5 +ddp@1.1.0 +deps@1.0.7 +ejson@1.0.6 +fastclick@1.0.3 +geojson-utils@1.0.3 +html-tools@1.0.4 +htmljs@1.0.4 +http@1.1.0 +id-map@1.0.3 +insecure@1.0.3 +jquery@1.11.3_2 +json@1.0.3 +launch-screen@1.0.2 +livedata@1.0.13 +logging@1.0.7 +meteor@1.1.5 +meteor-platform@1.2.2 +minifiers@1.1.4 +minimongo@1.0.7 +mobile-status-bar@1.0.3 +mongo@1.1.0 +observe-sequence@1.0.5 +ordered-dict@1.0.3 +random@1.0.3 +reactive-dict@1.1.0 +reactive-var@1.0.5 +reload@1.1.3 +retry@1.0.3 +routepolicy@1.0.5 +session@1.1.0 +spacebars@1.0.6 +spacebars-compiler@1.0.5 +templating@1.1.0 +tracker@1.0.6 +ui@1.0.6 +underscore@1.0.3 +url@1.0.4 +webapp@1.2.0 +webapp-hashing@1.0.3 diff --git a/examples/leaderboard/.meteor/release b/examples/leaderboard/.meteor/release index 1dd4eaaa23..509b6f42a1 100644 --- a/examples/leaderboard/.meteor/release +++ b/examples/leaderboard/.meteor/release @@ -1 +1 @@ -METEOR@1.0.4-rc.0 +METEOR@1.0.4 diff --git a/examples/leaderboard/.meteor/versions b/examples/leaderboard/.meteor/versions index d8b4cf1359..1ed4af4439 100644 --- a/examples/leaderboard/.meteor/versions +++ b/examples/leaderboard/.meteor/versions @@ -1,48 +1,48 @@ -autopublish@1.0.3-rc.0 -autoupdate@1.2.0-rc.0 -base64@1.0.3-rc.0 -binary-heap@1.0.3-rc.0 -blaze@2.1.0-rc.0 -blaze-tools@1.0.3-rc.0 -boilerplate-generator@1.0.3-rc.0 -callback-hook@1.0.3-rc.0 -check@1.0.5-rc.0 -ddp@1.1.0-rc.0 -deps@1.0.7-rc.0 -ejson@1.0.6-rc.0 -fastclick@1.0.3-rc.0 -geojson-utils@1.0.3-rc.0 -html-tools@1.0.4-rc.0 -htmljs@1.0.4-rc.0 -http@1.1.0-rc.0 -id-map@1.0.3-rc.0 -insecure@1.0.3-rc.0 -jquery@1.11.3-rc.0_2 -json@1.0.3-rc.0 -launch-screen@1.0.2-rc.0 -livedata@1.0.13-rc.0 -logging@1.0.7-rc.0 -meteor@1.1.5-rc.0 -meteor-platform@1.2.2-rc.0 -minifiers@1.1.4-rc.0 -minimongo@1.0.7-rc.0 -mobile-status-bar@1.0.3-rc.0 -mongo@1.1.0-rc.0 -observe-sequence@1.0.5-rc.0 -ordered-dict@1.0.3-rc.0 -random@1.0.3-rc.0 -reactive-dict@1.1.0-rc.0 -reactive-var@1.0.5-rc.0 -reload@1.1.3-rc.0 -retry@1.0.3-rc.0 -routepolicy@1.0.5-rc.0 -session@1.1.0-rc.0 -spacebars@1.0.6-rc.0 -spacebars-compiler@1.0.5-rc.0 -templating@1.1.0-rc.0 -tracker@1.0.6-rc.0 -ui@1.0.6-rc.0 -underscore@1.0.3-rc.0 -url@1.0.4-rc.0 -webapp@1.2.0-rc.0 -webapp-hashing@1.0.3-rc.0 +autopublish@1.0.3 +autoupdate@1.2.0 +base64@1.0.3 +binary-heap@1.0.3 +blaze@2.1.0 +blaze-tools@1.0.3 +boilerplate-generator@1.0.3 +callback-hook@1.0.3 +check@1.0.5 +ddp@1.1.0 +deps@1.0.7 +ejson@1.0.6 +fastclick@1.0.3 +geojson-utils@1.0.3 +html-tools@1.0.4 +htmljs@1.0.4 +http@1.1.0 +id-map@1.0.3 +insecure@1.0.3 +jquery@1.11.3_2 +json@1.0.3 +launch-screen@1.0.2 +livedata@1.0.13 +logging@1.0.7 +meteor@1.1.5 +meteor-platform@1.2.2 +minifiers@1.1.4 +minimongo@1.0.7 +mobile-status-bar@1.0.3 +mongo@1.1.0 +observe-sequence@1.0.5 +ordered-dict@1.0.3 +random@1.0.3 +reactive-dict@1.1.0 +reactive-var@1.0.5 +reload@1.1.3 +retry@1.0.3 +routepolicy@1.0.5 +session@1.1.0 +spacebars@1.0.6 +spacebars-compiler@1.0.5 +templating@1.1.0 +tracker@1.0.6 +ui@1.0.6 +underscore@1.0.3 +url@1.0.4 +webapp@1.2.0 +webapp-hashing@1.0.3 diff --git a/examples/localmarket/.meteor/release b/examples/localmarket/.meteor/release index 1dd4eaaa23..509b6f42a1 100644 --- a/examples/localmarket/.meteor/release +++ b/examples/localmarket/.meteor/release @@ -1 +1 @@ -METEOR@1.0.4-rc.0 +METEOR@1.0.4 diff --git a/examples/localmarket/.meteor/versions b/examples/localmarket/.meteor/versions index e996eaab94..158a8ce441 100644 --- a/examples/localmarket/.meteor/versions +++ b/examples/localmarket/.meteor/versions @@ -1,67 +1,67 @@ -accounts-base@1.2.0-rc.0 -accounts-oauth@1.1.4-rc.0 -accounts-twitter@1.0.4-rc.0 -autoupdate@1.2.0-rc.0 -base64@1.0.3-rc.0 -binary-heap@1.0.3-rc.0 -blaze@2.1.0-rc.0 -blaze-tools@1.0.3-rc.0 -boilerplate-generator@1.0.3-rc.0 -callback-hook@1.0.3-rc.0 -check@1.0.5-rc.0 -coffeescript@1.0.6-rc.0 -ddp@1.1.0-rc.0 -deps@1.0.7-rc.0 -ejson@1.0.6-rc.0 -email@1.0.6-rc.0 -fastclick@1.0.3-rc.0 -geojson-utils@1.0.3-rc.0 -html-tools@1.0.4-rc.0 -htmljs@1.0.4-rc.0 -http@1.1.0-rc.0 -id-map@1.0.3-rc.0 +accounts-base@1.2.0 +accounts-oauth@1.1.4 +accounts-twitter@1.0.4 +autoupdate@1.2.0 +base64@1.0.3 +binary-heap@1.0.3 +blaze@2.1.0 +blaze-tools@1.0.3 +boilerplate-generator@1.0.3 +callback-hook@1.0.3 +check@1.0.5 +coffeescript@1.0.6 +ddp@1.1.0 +deps@1.0.7 +ejson@1.0.6 +email@1.0.6 +fastclick@1.0.3 +geojson-utils@1.0.3 +html-tools@1.0.4 +htmljs@1.0.4 +http@1.1.0 +id-map@1.0.3 iron:core@0.3.4 iron:dynamic-template@0.4.1 iron:layout@0.4.1 iron:router@0.9.4 -jquery@1.11.3-rc.0_2 -jquery-waypoints@1.0.3-rc.0 -json@1.0.3-rc.0 -launch-screen@1.0.2-rc.0 -less@1.0.13-rc.0 -livedata@1.0.13-rc.0 -localstorage@1.0.3-rc.0 -logging@1.0.7-rc.0 +jquery@1.11.3_2 +jquery-waypoints@1.0.3 +json@1.0.3 +launch-screen@1.0.2 +less@1.0.13 +livedata@1.0.13 +localstorage@1.0.3 +logging@1.0.7 mdg:camera@1.1.3 mdg:geolocation@1.0.2 -meteor@1.1.5-rc.0 -meteor-platform@1.2.2-rc.0 -minifiers@1.1.4-rc.0 -minimongo@1.0.7-rc.0 -mobile-status-bar@1.0.3-rc.0 -mongo@1.1.0-rc.0 -oauth@1.1.4-rc.0 -oauth1@1.1.4-rc.0 -observe-sequence@1.0.5-rc.0 -ordered-dict@1.0.3-rc.0 +meteor@1.1.5 +meteor-platform@1.2.2 +minifiers@1.1.4 +minimongo@1.0.7 +mobile-status-bar@1.0.3 +mongo@1.1.0 +oauth@1.1.4 +oauth1@1.1.4 +observe-sequence@1.0.5 +ordered-dict@1.0.3 percolate:velocityjs@1.1.0 percolate:wireframing@0.2.0 -random@1.0.3-rc.0 -reactive-dict@1.1.0-rc.0 -reactive-var@1.0.5-rc.0 -reload@1.1.3-rc.0 -retry@1.0.3-rc.0 -routepolicy@1.0.5-rc.0 -service-configuration@1.0.4-rc.0 -session@1.1.0-rc.0 -spacebars@1.0.6-rc.0 -spacebars-compiler@1.0.5-rc.0 -templating@1.1.0-rc.0 +random@1.0.3 +reactive-dict@1.1.0 +reactive-var@1.0.5 +reload@1.1.3 +retry@1.0.3 +routepolicy@1.0.5 +service-configuration@1.0.4 +session@1.1.0 +spacebars@1.0.6 +spacebars-compiler@1.0.5 +templating@1.1.0 tmeasday:publish-counts@0.3.4 -tracker@1.0.6-rc.0 -twitter@1.1.4-rc.0 -ui@1.0.6-rc.0 -underscore@1.0.3-rc.0 -url@1.0.4-rc.0 -webapp@1.2.0-rc.0 -webapp-hashing@1.0.3-rc.0 +tracker@1.0.6 +twitter@1.1.4 +ui@1.0.6 +underscore@1.0.3 +url@1.0.4 +webapp@1.2.0 +webapp-hashing@1.0.3 diff --git a/examples/todos/.meteor/release b/examples/todos/.meteor/release index 1dd4eaaa23..509b6f42a1 100644 --- a/examples/todos/.meteor/release +++ b/examples/todos/.meteor/release @@ -1 +1 @@ -METEOR@1.0.4-rc.0 +METEOR@1.0.4 diff --git a/examples/todos/.meteor/versions b/examples/todos/.meteor/versions index ba6a37e69d..03f024b4c5 100644 --- a/examples/todos/.meteor/versions +++ b/examples/todos/.meteor/versions @@ -1,60 +1,60 @@ -accounts-base@1.2.0-rc.0 -accounts-password@1.1.0-rc.0 -autoupdate@1.2.0-rc.0 -base64@1.0.3-rc.0 -binary-heap@1.0.3-rc.0 -blaze@2.1.0-rc.0 -blaze-tools@1.0.3-rc.0 -boilerplate-generator@1.0.3-rc.0 -callback-hook@1.0.3-rc.0 -check@1.0.5-rc.0 -ddp@1.1.0-rc.0 -deps@1.0.7-rc.0 -ejson@1.0.6-rc.0 -email@1.0.6-rc.0 -fastclick@1.0.3-rc.0 -geojson-utils@1.0.3-rc.0 -html-tools@1.0.4-rc.0 -htmljs@1.0.4-rc.0 -http@1.1.0-rc.0 -id-map@1.0.3-rc.0 -insecure@1.0.3-rc.0 +accounts-base@1.2.0 +accounts-password@1.1.0 +autoupdate@1.2.0 +base64@1.0.3 +binary-heap@1.0.3 +blaze@2.1.0 +blaze-tools@1.0.3 +boilerplate-generator@1.0.3 +callback-hook@1.0.3 +check@1.0.5 +ddp@1.1.0 +deps@1.0.7 +ejson@1.0.6 +email@1.0.6 +fastclick@1.0.3 +geojson-utils@1.0.3 +html-tools@1.0.4 +htmljs@1.0.4 +http@1.1.0 +id-map@1.0.3 +insecure@1.0.3 iron:core@0.3.4 iron:dynamic-template@0.4.1 iron:layout@0.4.1 iron:router@0.9.4 -jquery@1.11.3-rc.0_2 -json@1.0.3-rc.0 -launch-screen@1.0.2-rc.0 -less@1.0.13-rc.0 -livedata@1.0.13-rc.0 -localstorage@1.0.3-rc.0 -logging@1.0.7-rc.0 -meteor@1.1.5-rc.0 -meteor-platform@1.2.2-rc.0 -minifiers@1.1.4-rc.0 -minimongo@1.0.7-rc.0 -mobile-status-bar@1.0.3-rc.0 -mongo@1.1.0-rc.0 +jquery@1.11.3_2 +json@1.0.3 +launch-screen@1.0.2 +less@1.0.13 +livedata@1.0.13 +localstorage@1.0.3 +logging@1.0.7 +meteor@1.1.5 +meteor-platform@1.2.2 +minifiers@1.1.4 +minimongo@1.0.7 +mobile-status-bar@1.0.3 +mongo@1.1.0 npm-bcrypt@0.7.8_1 -observe-sequence@1.0.5-rc.0 -ordered-dict@1.0.3-rc.0 -random@1.0.3-rc.0 -reactive-dict@1.1.0-rc.0 -reactive-var@1.0.5-rc.0 -reload@1.1.3-rc.0 -retry@1.0.3-rc.0 -routepolicy@1.0.5-rc.0 -service-configuration@1.0.4-rc.0 -session@1.1.0-rc.0 -sha@1.0.3-rc.0 -spacebars@1.0.6-rc.0 -spacebars-compiler@1.0.5-rc.0 -srp@1.0.3-rc.0 -templating@1.1.0-rc.0 -tracker@1.0.6-rc.0 -ui@1.0.6-rc.0 -underscore@1.0.3-rc.0 -url@1.0.4-rc.0 -webapp@1.2.0-rc.0 -webapp-hashing@1.0.3-rc.0 +observe-sequence@1.0.5 +ordered-dict@1.0.3 +random@1.0.3 +reactive-dict@1.1.0 +reactive-var@1.0.5 +reload@1.1.3 +retry@1.0.3 +routepolicy@1.0.5 +service-configuration@1.0.4 +session@1.1.0 +sha@1.0.3 +spacebars@1.0.6 +spacebars-compiler@1.0.5 +srp@1.0.3 +templating@1.1.0 +tracker@1.0.6 +ui@1.0.6 +underscore@1.0.3 +url@1.0.4 +webapp@1.2.0 +webapp-hashing@1.0.3 From 7bf8665163253a049c05828440f7f452862d8f36 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 17 Mar 2015 13:33:27 -0700 Subject: [PATCH 56/56] fix banner spacing --- scripts/admin/banners.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/admin/banners.json b/scripts/admin/banners.json index e7f3c9fc4d..dfe52e1123 100644 --- a/scripts/admin/banners.json +++ b/scripts/admin/banners.json @@ -5,7 +5,7 @@ "0.9.2.1", "0.9.2.2", "0.9.3", "0.9.3.1", "0.9.4", "1.0", "1.0.1", "1.0.2", "1.0.2.1", "1.0.3", "1.0.3.1", "1.0.3.2"], "banner": { - "text": "=> Meteor 1.0.4: MongoDB 2.6 and 3.0 support, performance improvements, Cordova\n upgrades, template-specific subscriptions, and more!\n\n This release is being downloaded in the background. Update your app to\n Meteor 1.0.4 by running 'meteor update'." + "text": "=> Meteor 1.0.4: MongoDB 2.6 and 3.0 support, performance improvements,\n Cordova upgrades, template-specific subscriptions, and more!\n\n This release is being downloaded in the background. Update your app to\n Meteor 1.0.4 by running 'meteor update'." } } ]