Commit Graph

3199 Commits

Author SHA1 Message Date
David Glasser
02b91c3dc4 only print override message if using warehouse 2013-03-29 11:52:33 -07:00
David Glasser
08efe48090 Print "as requested" message in meteor run
(maybe should be others too)
2013-03-29 11:52:33 -07:00
David Glasser
734c185a89 Call "uname plus arch" the "platform".
Normalize to _ (like dev bundle) rather than - (like old releases).
2013-03-29 11:52:33 -07:00
David Glasser
4e199eb07f look for an urlBase in release.json (to support binary packages later) 2013-03-29 11:52:32 -07:00
David Glasser
3c8f21a409 make TEST_WAREHOUSE_DIR a non-test thing called METEOR_WAREHOUSE_DIR
(the non-springboarding piece of that is now controlled by
METEOR_TEST_NO_SPRINGBOARD)

This means that run-all-tests.sh can use launch-meteor to bootstrap a warehouse
instead of starting with an empty warehouse directory (which is no longer
allowed).

also, fix npm module usage out of the bootstrap tarball: we were too liberal in
the "never update npm dependencies in the warehouse" rule since the bootstrap
tarball would contain packages with no node_modules (or if we had a failure
between downloading a package and running installNpmDependencies).  instead,
"never update npm dependencies in the warehouse if .npm/node_modules already
exists".
2013-03-29 11:52:32 -07:00
David Glasser
99ba22d2c4 Don't assign to exports. That breaks circular requires. 2013-03-29 11:52:32 -07:00
David Glasser
6b383db405 We can assume there is always a latest release installed now. 2013-03-29 11:52:32 -07:00
David Glasser
034a6b862d background update check, now with print-once-only banner 2013-03-29 11:52:32 -07:00
Nick Martin
76f611789e Whitelist allowed update operators in validated updates. 2013-03-27 22:22:42 -07:00
Nick Martin
6aa855fbe0 Remove list of names from docs. 2013-03-27 18:56:23 -07:00
David Glasser
67f7343022 Fix function name typo in docs. 2013-03-27 15:13:48 -07:00
David Greenspan
4e63cc21e6 Stop accounts-ui <input> CSS from leaking to whole app 2013-03-27 11:20:05 -07:00
Chris Mather
5f37a9d50e Merge branch 'pr/877' into devel
Closes #877
2013-03-26 14:49:32 -07:00
Andrew Wilcox
54b756782c remove leftover comment 2013-03-26 14:45:35 -07:00
Chris Mather
8d9854fd5d Merge pull request #878 from 'awwx/clarify-startup-docs' into devel 2013-03-26 14:33:13 -07:00
Chris Mather
a2485a85fc minor wordsmithing 2013-03-26 14:32:31 -07:00
Andrew Wilcox
c443011e46 Clarify Meteor.startup documentation.
Fixes #831.
2013-03-26 14:32:31 -07:00
David Greenspan
fe58789d8f fix error logging in login-demo 2013-03-26 11:13:55 -07:00
David Greenspan
f7dbbca72f log errors from login (eg not configured) 2013-03-25 22:07:57 -07:00
David Greenspan
d90f422b43 more readme 2013-03-25 21:25:05 -07:00
David Greenspan
2c8f7d5d87 demo of login and private data 2013-03-25 21:19:33 -07:00
Nick Martin
2dcef81a7c Add explicit safety check for non-object modifiers passed to update. 2013-03-25 17:20:17 -07:00
Nick Martin
f146c7383c Workaround issue with new node and old connect. Fixes #852
New node (0.8.21+) throws an error when path.join is passed null. Connect 1.9.2's static.send (used by gzippo) does this if you don't pass a 'root' option. Passing root: '/' works around this, but we should consider fixing the underlying issue, possibly by upgrading connect.
2013-03-25 15:22:15 -07:00
David Greenspan
2601075b33 Fix error on Meteor.loginWithGoogle() with no args 2013-03-25 13:42:59 -07:00
David Glasser
d2b7b63c86 Merge branch 'pr/869' into devel 2013-03-23 13:12:00 -07:00
David Glasser
2790b90f4b Wrap new doc section, link to global in the Node API, and mention @. 2013-03-23 13:11:51 -07:00
Andrew Wilcox
e0d6c7d658 add documentation for setting global vars in CoffeeScript 2013-03-23 13:07:22 -07:00
Andrew Wilcox
d5bfc0a3f3 Remove unneeded code to pass "this" to top-level code.
Reverts commit c1f2379710, as @glasser
discovered it isn't needed and so is an unnecessary complication.

Add a space after the leading "(function(){", to make generated code
easier to read.
2013-03-23 13:07:22 -07:00
Andrew Wilcox
b1a27cd90c test that CoffeeScript can set global vars using this 2013-03-23 13:07:22 -07:00
Andrew Wilcox
661484fe14 spelling fix in test-packages help 2013-03-23 13:01:53 -07:00
David Glasser
27923d8b24 move upgrade-to-engine stuff into a subdir.
i *think* this stuff should currently work with the new bootstrappy but have not
tested. certainly, the text is bad.
2013-03-22 23:52:54 -07:00
David Glasser
8ebcca8f6d New install-engine.sh script. 2013-03-22 23:47:33 -07:00
David Glasser
c05b0dd652 fix release blessing 2013-03-22 23:39:10 -07:00
David Glasser
001476036c In launch-meteor, print all messages to standard error.
That way (eg) `meteor --version` prints to stdout the version even if there's
some bootstrapping required.
2013-03-22 22:37:34 -07:00
David Glasser
18a0e0ab72 manage git tags in publish/bless-release 2013-03-22 22:34:03 -07:00
David Glasser
9a38eb2b56 Slight improvements to launch-meteor. dsg-test 2013-03-22 22:00:14 -07:00
David Glasser
d5c85ec5c4 Overhaul release blessing process.
Blessing is now the time that bootstrap tarballs are created.

There's a banner that goes into the global manifest (stored in
scripts/admin/banner.txt).

The global manifest.json is now entirely generated: there's no record of the
current version stored in git.

Have not yet updated launch-meteor or install-template.sh or the fake release
for this brave new bootstrap world, or https://install-bootstrap.meteor.com/.
2013-03-22 19:15:18 -07:00
David Glasser
6af118529c History.md credit for PR 866. 2013-03-22 19:09:42 -07:00
Rahul
d9667c9761 Fixes #848. Remove spurious 'cursors' from api docs. 2013-03-22 18:22:52 -07:00
Nick Martin
9f397fbbdc Comment on API mismatch between with-dot and without. 2013-03-22 17:16:00 -07:00
Nick Martin
485d963347 History.md note for #857. 2013-03-22 17:07:23 -07:00
Nick Martin
c299785b86 Merge branch 'pr-857' into devel 2013-03-22 16:57:58 -07:00
Nick Martin
c905c7b001 Stylistic cleanups and finding on other place that needs findExtension 2013-03-22 16:52:35 -07:00
mquandalle
1ef7e770b0 2 new functions : files.findExtension and files.extname 2013-03-22 16:07:42 -07:00
mquandalle
72482ec07c Possibility to register multiple extensions such as '.coffee.md' Add the new registered_file_extension function Solve issue #830 2013-03-22 16:07:42 -07:00
David Glasser
2aec0f636c publish-release now lets you specify the git rev to publish (from jenkins)
and the release name.
2013-03-22 16:01:21 -07:00
David Glasser
f05064aa77 History.md update for PR 866. 2013-03-22 15:14:11 -07:00
David Glasser
9dcedace31 Merge branch 'pr/866' into devel 2013-03-22 15:09:46 -07:00
Emily Stark
a6f01b6c92 Fix #770.
Add optional else case to {{#with}}.
2013-03-22 15:09:35 -07:00
Emily Stark
357d35d19a Add tests for issue #770 2013-03-22 15:09:35 -07:00