forked from meteor/meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
some compatibility notes about packages: - packages now have their own namespaces (rather than needing to use the global namespace). symbols you want to share should be declared with an @export comment - this also means that missing dependencies can hurt you. so don't leave them out. - your app's packages (in the 'packages' directory in your app) are not automatically included in your app; you need to explicitly run "meteor add" for them. this means that, eg, you can have test helper packages which are not directly used in your app, but just used by other packages' tests. (before releasing this, we may make 'meteor update' fix current apps.) - the bundle ("star") format has changed - packages are now built into the "unipackage" format. if this format changes before we release this code (and commit to the definition of the initial versions of the formats) you may need to run "meteor rebuild-all" - __meteor_bootstrap__ has been stripped of everything not related to executing JS code. Some of what used to be there is now on the WebApp object. more detailed docs are likely to come before the 0.6.5 release.
- Loading branch information
Showing
291 changed files
with
186,526 additions
and
176,408 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -385,7 +385,7 @@ 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/ | ||
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. | ||
|
@@ -433,6 +433,13 @@ amdefine: https://github.com/jrburke/amdefine | |
Copyright (c) 2011, The Dojo Foundation | ||
|
||
|
||
---------- | ||
nlogger: https://github.com/igo/nlogger | ||
---------- | ||
|
||
Copyright (c) 2010 by Igor Urmincek | ||
|
||
|
||
|
||
============ | ||
BSD Licenses | ||
|
@@ -534,12 +541,12 @@ openssl: http://www.openssl.org/ | |
showdown: http://www.attacklab.net/ | ||
--------- | ||
|
||
Copyright (c) 2007, John Fraser | ||
<http://www.attacklab.net/> | ||
Copyright (c) 2007, John Fraser | ||
<http://www.attacklab.net/> | ||
All rights reserved. | ||
|
||
Original Markdown copyright (c) 2004, John Gruber | ||
<http://daringfireball.net/> | ||
Original Markdown copyright (c) 2004, John Gruber | ||
<http://daringfireball.net/> | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
|
@@ -719,9 +726,9 @@ 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. | ||
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 | ||
|
@@ -993,7 +1000,7 @@ 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 : | ||
please bring it to our attention through any of the ways detailed here : | ||
|
||
[email protected] | ||
|
||
|
@@ -1506,7 +1513,7 @@ maintained libraries. The externally maintained libraries used by Node are: | |
* are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* 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 | ||
|
@@ -1577,7 +1584,7 @@ maintained libraries. The externally maintained libraries used by Node are: | |
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. | ||
IN THE SOFTWARE. | ||
""" | ||
|
||
- Closure Linter is located at tools/closure_linter. Closure's license | ||
|
@@ -1744,8 +1751,8 @@ maintained libraries. The externally maintained libraries used by Node are: | |
*/ | ||
""" | ||
|
||
- npm is a package manager program located at deps/npm. | ||
npm's license follows: | ||
- 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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
insecure | ||
jquery | ||
preserve-inputs | ||
random |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.