From d00f6e8bdeda2425c45ebb0d66796596a8fcc003 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Wed, 17 Oct 2012 11:36:33 -0700 Subject: [PATCH] Get rid of Concepts accounts section. Add to Data and Security instead. --- History.md | 4 +++- docs/client/concepts.html | 32 ++++++++++---------------------- docs/client/docs.js | 1 - 3 files changed, 13 insertions(+), 24 deletions(-) diff --git a/History.md b/History.md index 0378f1b54d..a943c3619a 100644 --- a/History.md +++ b/History.md @@ -22,7 +22,9 @@ to restore the old behavior where anyone can write to any collection which has not been configured with `allow` or `deny` - For more information on Meteor Accounts, see http://docs.meteor.com/#accounts + For more information on Meteor Accounts, see: + http://docs.meteor.com/#dataandsecurity + http://docs.meteor.com/#accounts_api * The new function `Meteor.autorun` allows you run any code in a reactive context. See http://docs.meteor.com/#meteor_autorun diff --git a/docs/client/concepts.html b/docs/client/concepts.html index 570f21831c..eab03d13ad 100644 --- a/docs/client/concepts.html +++ b/docs/client/concepts.html @@ -12,7 +12,6 @@ when writing those apps. {{> reactivity }} {{> livehtml }} {{> templates }} -{{> accounts }} {{> packages_concept }} {{> deploying }} @@ -192,6 +191,16 @@ modify data, those modifications can run locally without waiting for the confirmation from the server, while still giving the server final say over the requested change. +Meteor provides low-level APIs that allows any login system to take advantage of +the data and RPC security features, but most developers will want to use [Meteor +Accounts](#accounts_api), our full-featured authentication system featuring both +secure login with passwords and integration with external services such as +Facebook and Twitter. To help you make your app secure as quickly as possible, +you can even use [Accounts UI](#accountsui), a pre-built user interface which +lets you add a complete login and signup system to your app with just one line +of code. It even contains password change, email-based password reset, and +configuration wizards for the external service providers. + {{#note}} The current release of Meteor supports MongoDB, the popular document database, and the examples in this section use the @@ -483,27 +492,6 @@ discussion. > Session.set("weather", "cool and dry"); In DOM:
It'll be cool and dry tonight
-{{/better_markdown}} - - - diff --git a/docs/client/docs.js b/docs/client/docs.js index eaff8cd064..ff18de102c 100644 --- a/docs/client/docs.js +++ b/docs/client/docs.js @@ -85,7 +85,6 @@ var toc = [ "Reactivity", "Live HTML", "Templates", - "Accounts", "Smart packages", "Deploying" ],