diff --git a/README.md b/README.md index ec672b4111..7f821178d7 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@ -# Skybreak +# Meteor -Skybreak is an ultra-simple environment for building modern web +Meteor is an ultra-simple environment for building modern web applications. -With Skybreak you write apps: +With Meteor you write apps: * in pure Javascript * that send data over the wire, rather than HTML * using your choice of popular open-source libraries -Please, do not share or blog about Skybreak yet. It is experimental, +Please, do not share or blog about Meteor yet. It is experimental, pre-release software. We hope it shows the direction of our thinking, and much of it will to change. We'd love to hear your feedback. @@ -17,7 +17,7 @@ Documentation is available at http://preview.meteor.com/ ## Quick Start -Install Skybreak (only OS X, for now): +Install Meteor (only OS X, for now): curl -sL bit.ly/n122Iu | /bin/sh @@ -36,15 +36,15 @@ Deploy it to the world, for free: ## Slow Start (for developers) -If you want to run on the bleeding edge, or help develop Skybreak, you -can run Skybreak directly from a git checkout. +If you want to run on the bleeding edge, or help develop Meteor, you +can run Meteor directly from a git checkout. git clone git@github.com:skybreak/skybreak.git cd skybreak If you're the sort of person who likes to build everything from scratch, -you can build all the Skybreak dependencies (node.js, npm, mongodb, etc) -with the provided script. If you do not run this script, Skybreak will +you can build all the Meteor dependencies (node.js, npm, mongodb, etc) +with the provided script. If you do not run this script, Meteor will automatically download pre-compiled binaries when you first run it. # OPTIONAL diff --git a/admin/cut-release.sh b/admin/cut-release.sh index 769d527a4c..99de514a01 100755 --- a/admin/cut-release.sh +++ b/admin/cut-release.sh @@ -8,7 +8,7 @@ cd .. # Check for MacOS if [ `uname` != "Darwin" ] ; then - echo "Skybreak only support MacOS X right now." + echo "Meteor only support MacOS X right now." exit 1 fi diff --git a/admin/generate-dev-bundle.sh b/admin/generate-dev-bundle.sh index 633e28b68c..48a2ed791f 100755 --- a/admin/generate-dev-bundle.sh +++ b/admin/generate-dev-bundle.sh @@ -53,7 +53,7 @@ index c37e2a7..d4e71bc 100644 - else - console.error(sysWarning); -} -+// XXX Skybreak disabled ++// XXX Meteor disabled +// var sysWarning; +// if (!sysWarning) { +// sysWarning = 'The "sys" module is now called "util". ' + diff --git a/admin/install-s3.sh b/admin/install-s3.sh index 0fffc18909..3b23918408 100755 --- a/admin/install-s3.sh +++ b/admin/install-s3.sh @@ -6,7 +6,7 @@ PARENT="/usr/local" # Check for MacOS if [ `uname` != "Darwin" ] ; then - echo "Sorry, Skybreak only supports MacOS X right now." + echo "Sorry, Meteor only supports MacOS X right now." exit 1 fi @@ -14,9 +14,9 @@ set -e trap "echo Installation failed." EXIT if [ -e "$TARGET" ] ; then - echo "Updating Skybreak in $TARGET" + echo "Updating Meteor in $TARGET" else - echo "Installing Skybreak to $TARGET" + echo "Installing Meteor to $TARGET" fi # if /usr/local doesn't exist or isn't writable, fix it with sudo. @@ -64,7 +64,7 @@ ln -s "$TARGET/bin/skybreak" "$PARENT/bin/skybreak" cat <Browser not supported

Sorry, the web browser you are using is not supported by - Skybreak. Skybreak uses advanced JavaScript features and can not + Meteor. Meteor uses advanced JavaScript features and can not support Internet Explorer version 7 and below.

Do yourself a favor download a modern browser, diff --git a/app/skybreak/deploy.js b/app/skybreak/deploy.js index 685a754685..6a27cb7563 100644 --- a/app/skybreak/deploy.js +++ b/app/skybreak/deploy.js @@ -206,7 +206,7 @@ var parse_url = function (url) { if (parsed.pathname != '/' || parsed.hash || parsed.query) { process.stdout.write( -"Sorry, Skybreak does not yet support specific path URLs, such as\n" + +"Sorry, Meteor does not yet support specific path URLs, such as\n" + "http://www.example.com/blog . Please specify the root of a domain.\n"); process.exit(1); } diff --git a/app/skybreak/run.js b/app/skybreak/run.js index 5662b88bcc..01e978f3b4 100644 --- a/app/skybreak/run.js +++ b/app/skybreak/run.js @@ -85,9 +85,9 @@ var start_proxy = function (outer_port, inner_port, callback) { p.on('error', function (err) { if (err.code == 'EADDRINUSE') { process.stderr.write("Can't listen on port " + outer_port - + ", perhaps another Skybreak is running?\n"); + + ", perhaps another Meteor is running?\n"); process.stderr.write("\n"); - process.stderr.write("Running two copies of Skybreak in the same application directory\n"); + process.stderr.write("Running two copies of Meteor in the same application directory\n"); process.stderr.write("will not work. If something else is using port " + outer_port + ", you can\n"); process.stderr.write("specify an alternative port with --port .\n"); } else { diff --git a/app/skybreak/skel/client/~name~.html b/app/skybreak/skel/client/~name~.html index 1f26817e35..a51c27ba71 100644 --- a/app/skybreak/skel/client/~name~.html +++ b/app/skybreak/skel/client/~name~.html @@ -8,7 +8,7 @@

~name~

- Skybreak is an ultra-simple environment for building websites: + Meteor is an ultra-simple environment for building websites: