Commit Graph

481 Commits

Author SHA1 Message Date
David Glasser
6a4216f16f Fix doc on how to get correct fibers. 2013-08-26 19:51:39 -07:00
Geoff Schmidt
f6b0bab517 Docs: CoffeeScript namespacing, other tweaks 2013-08-26 19:51:39 -07:00
Nick Martin
0e70184fd0 fix typo. 2013-08-26 19:51:39 -07:00
Emily Stark
bab5c1685d Fix docs typo.
Fixes #1297
2013-08-26 19:51:39 -07:00
Nick Martin
21df324a1d bump version numbers. 2013-08-14 13:30:46 -07:00
David Glasser
f5531b41a6 Small doc cleanups:
- Fix order of ')' and '.' in a bunch of places

- Remove last reference to "smart packages"

- Fix an Atmosphere link

- Linkify a bunch of other things (CoffeeScript, npm, GitHub bug tracker, etc)

- Added a newline after the dot in "`meteor`. `meteor`".  It looked way more
  like `meteor.meteor` when rendered.

- Name `api.add_files` explicitly.

- Fix capitalization of GitHub

- Explain how weak deps check if the dep is there

- A few other typos
2013-08-13 09:25:47 -07:00
Geoff Schmidt
673b8462b1 Draft of doc updates for new packages system. 2013-08-13 01:32:23 -07:00
Nick Martin
2471dcba7e remove 'temporarily' in reference to Meteor.disconnect. It's not really temporary. 2013-08-12 23:40:32 -07:00
Nick Martin
6fffbec675 Doc tweak for connection:null in new Meteor.Collection. 2013-08-12 17:03:08 -07:00
Nick Martin
e2344a2a07 Fixup ids for Meteor.http -> HTTP transition. 2013-08-09 17:52:25 -07:00
Nick Martin
e47c14d481 Fixup DDP.connect docs. 2013-08-07 21:14:11 -07:00
Nick Martin
7e9eb48a9f Merge branch 'devel' into release-0.6.5 2013-08-06 16:41:44 -07:00
Slava Kim
e16738e920 Better docs for Match.Optional. 2013-08-05 16:14:59 -07:00
Slava Kim
580de65f62 Grammar corrections. Comments moving. 2013-08-05 13:26:43 -07:00
David Glasser
cd5044b6f3 Update docs to 0.6.5-rc12. Link to EJSON binary. 2013-08-02 18:17:38 -07:00
David Glasser
70883fdc42 Remove "write to the global" coffeescript instructions.
As part of a docs pass we will explain the new way to use coffeescript globals.

(In short: in a package, anything declared with `api.export` becomes
package-level and exported. If you want something package-level and not
exported, or app-level, there's an object `share` and you can assign to fields
on it.)
2013-08-02 17:13:49 -07:00
Slava Kim
ffc31748f5 Make docs for Match.Optional more truthy about undefined in an object. 2013-08-02 14:25:03 -07:00
Slava Kim
86022fb06e Docs for Match.Integer 2013-08-02 14:25:03 -07:00
David Glasser
1297034201 Update docs to 0.6.5-rc2. 2013-07-29 12:38:49 -07:00
David Glasser
4e222d8e26 The standard app packages are brought in explicitly now.
.meteor/packages in new apps now contains "standard-app-packages", which implies
the standard set of packages like mongo-livedata. There is no special-casing in
initFromAppDir.  This line has been added to all the examples, etc.

There's a new concept of "upgraders".  "meteor run-upgrader app-packages" will
add standard-app-packages to the app, as well as all of the package in the app's
packages/ directory (an unrelated change since 0.6.4). This will be integrated
soon with "meteor update"; run-upgrader is essentially for testing.

project.add_package no longer adds packages that are already there.
2013-07-26 19:02:12 -07:00
David Glasser
a5c061ecde Rename Meteor.http to HTTP. Backwards compatible. 2013-07-25 18:54:42 -07:00
David Glasser
ce16794cbb Push through on the Meteor.connect -> DDP.connect rename. 2013-07-25 18:54:42 -07:00
Nick Martin
475af49b27 doc tweaks. 2013-07-25 16:55:59 -07:00
Zoltan Olah
853bdb4df2 Documentation for Meteor.disconnect(). 2013-07-25 16:55:59 -07:00
Zoltan Olah
732482b5ea Documentation for forceApprovalPrompt to meteor_loginwithexternalservice. 2013-07-23 22:50:07 -07:00
Emily Stark
bd7e0d768c Merge branch 'master' into devel
Conflicts:
	History.md
	docs/.meteor/release
	packages/mongo-livedata/.npm/package/npm-shrinkwrap.json
	packages/mongo-livedata/package.js
2013-07-19 16:05:29 -07:00
Emily Stark
614ab6a172 Update docs and examples to 0.6.4.1 2013-07-19 15:54:21 -07:00
David Glasser
e8af79e151 Update docs and examples to rc3. 2013-07-19 12:09:01 -07:00
David Glasser
abe145736d Update docs and examples to the RC. 2013-07-19 11:13:17 -07:00
David Glasser
9e6653d3ba Update docs to linker-pre5. 2013-07-18 18:08:12 -07:00
Nick Martin
fc307660ac Add a note about how isServer doesn't strip code from the client. 2013-07-17 19:57:40 -07:00
David Glasser
625aed5ea3 Upgrade fibers to 1.0.1. Specify the tested Node version in more places.
Dev bundle version not yet bumped.

Fixes #1153.
2013-07-17 11:48:10 -07:00
Geoff Schmidt
7617d8931a Update docs, query, and showdown for namespacing 2013-07-12 17:36:40 -07:00
David Glasser
36275c570c Merge branch 'linker' into devel
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.
2013-07-12 13:38:05 -07:00
Avital Oliver
4e0d656e5c Don't load full query results in findOne() 2013-07-09 20:33:12 -07:00
Emily Stark
e6078ba108 Mention that Assets.getText hardcodes utf8 2013-06-28 14:55:47 -07:00
Emily Stark
7046d4cc91 Assets docs 2013-06-28 14:55:47 -07:00
David Glasser
e0ef4d4ce9 docs: move note that slipped down a section. 2013-06-10 14:01:17 -07:00
Nick Martin
299543da78 bump release number in docs and examples. 2013-06-10 11:48:00 -07:00
Nick Martin
55dd8a0304 Bump example version numbers for QA testing. 2013-06-05 22:13:02 -07:00
David Glasser
20a1f88993 Update docs to 0.6.4-rc1. 2013-05-31 13:05:07 -07:00
Avital Oliver
75ab6e61fa docs on 0.6.3.1 2013-05-15 15:28:59 -07:00
Nick Martin
546f4e5fb9 bump docs version. 2013-05-15 11:55:31 -07:00
Avital Oliver
d36de8253d Support 'tap' event. 2013-05-13 23:50:53 -07:00
Andrew Wilcox
6c8a4b590b Rename a collection "manager" to "connection". 2013-05-06 16:14:32 -07:00
Nick Martin
f20c76725c Merge branch 'master' into devel 2013-04-25 20:32:20 -07:00
Nick Martin
bfe4b72ebe Obfuscate security email from web scrapers so we don't get spam to our pagers. 2013-04-25 20:28:24 -07:00
Christine Spang
17d81e64bc Update documentation for Email.send. 2013-04-25 16:52:06 -07:00
Andrew Wilcox
3e7d38ee9a also add Chromium to the list of browsers in the docs 2013-04-25 16:50:33 -07:00
Avital Oliver
fb61e884db Don't create new var scope for js files in client/compatibility/ 2013-04-24 15:53:19 -07:00