Emily Stark
27e5b77249
Bump examples and docs to 0.7.1-rc3
2014-02-21 15:54:04 -08:00
David Glasser
2e9755a75f
More improvements to load order doc
...
Fixes #1839 . See also #1675 .
2014-02-20 15:27:44 -08:00
Emily Stark
67b6adc801
Modify docs sidebar to not list every external login provider.
...
`Meteor.loginWithMeteorDeveloperAccount` is too long for the sidebar,
and we don't really want to update the sidebar for every login provider
anyway.
2014-02-20 14:34:22 -08:00
Emily Stark
b4c78fce39
Bump apps to 0.7.1-rc0
2014-02-17 10:02:54 -08:00
Emily Stark
055426a449
Add loginWithMeteorDeveloperAccount to docs
2014-02-13 20:25:45 -08:00
David Glasser
47cb936719
Explicitly document where transforms are ignored
...
Note that now that transforms are required to return objects with the
right _id, we may want to reconsider this choice.
Fixes #1819 .
2014-02-12 16:27:13 -08:00
Dan Dascalescu
3204ffa42b
Update link to mongo page for selector syntax
2014-02-12 16:14:42 -08:00
David Glasser
72c626be61
document explicitly that we treat strings as IDs
...
Fixes #1813
2014-02-12 16:14:28 -08:00
Nick Martin
0e48d5183d
Update comment in docs. Fixes #1807 .
2014-02-12 16:06:39 -08:00
David Glasser
c16c1c1e19
Reorder table of contents
2014-02-12 15:35:03 -08:00
David Glasser
d1e03a58de
Docs improvements for #1745
...
Text before an api_box does not look good as an introduction to that
api_box due to spacing.
2014-02-12 15:34:26 -08:00
Marc-Andre Lafortune
de294ddb19
EJSON: Provide default implementation of equals for custom types
2014-02-12 15:26:50 -08:00
Marc-Andre Lafortune
0be15bdf3f
EJSON: Provide default implementation of clone for custom types
2014-02-12 15:26:50 -08:00
EOT
f5b4af815b
Fix minor typo in docs (Deps.afterFlush)
2014-02-10 16:08:07 -08:00
Andrew Mao
788a1b622a
Update docs about using fields in find cursors
...
Addresses #1299 and #1780
2014-02-10 15:37:42 -08:00
Slava Kim
ca164d477d
Merge branch 'css-minification' into devel
2014-02-05 22:00:26 -08:00
Andrew Wilcox
09029be917
Update client info API to just have connection.clientAddress and connection.httpHeaders.
...
Fix documentation.
Expose webapp's `identifyBrowser`, even though we aren't currently
using outside of webapp.
2014-02-04 01:08:36 -08:00
Andrew Wilcox
ca7a6929d7
Make information about the client available in the connection object.
2014-02-04 01:08:36 -08:00
Maxime Quandalle
cf11139f6c
Add a .import.styl handler to prevent Meteor processing a stylus file Fix #462
2014-02-03 21:58:29 -08:00
Maxime Quandalle
a63a3b0057
Update documentation: lessimport -> import.less
2014-02-03 21:58:28 -08:00
David Glasser
df47013639
Fix Accounts.createUser docs
...
Fixes #1777 .
2014-01-29 14:48:38 -08:00
David Glasser
204959b509
Fix pronoun in docs
2014-01-27 16:30:43 -08:00
David Glasser
f53bf0ab82
Docs for wrapTransform
2014-01-27 16:29:59 -08:00
David Glasser
a7d10d650d
Update Node to 0.10.25. Remove bug workaround.
2014-01-23 12:15:29 -08:00
Nathan Le Ray
4cf8b41d5d
Fix a typo in the API doc
2014-01-15 14:32:43 -08:00
Emily Stark
3c1a06f033
Merge branch 'bp-improvements' into devel
2014-01-15 13:01:10 -08:00
Slava Kim
9c1943c467
Adjust docs to waypoints 2.x and add a delay for deps flush to increase performance on scroll.
2014-01-13 11:51:21 -08:00
Emily Stark
189845f1fb
Add frame-src to browser-policy-content.
2014-01-11 20:43:36 -08:00
Emily Stark
f89941412a
Smooth over some cross-browser CSP differences.
...
* Adding "foo.com" to your CSP via browser-policy now adds both
"http://foo.com " and "https://foo.com ". This smooths over the fact
that some browsers interpret "foo.com" as "http://foo.com " and some
interpret it as http AND https.
* Trim trailing slashes from origins. Firefox does not allow content
from foo.com if you add "foo.com/" to your CSP.
2014-01-11 20:36:01 -08:00
David Glasser
bab936eac9
Patch _.each to not treat {length: 5} as an array
...
Specifically, in all Underscore "collection" functions which treat their
arguments polymorphically as either "object-like" or "array-like", don't
treat arguments with `x.constructor === Object` as arrays (except for
the 'arguments' object).
Fixes #594 . Fixes #1737 .
2014-01-07 20:17:47 -08:00
David Glasser
8a3f24765b
Add Oxford comma
...
http://www.washingtontimes.com/news/2013/dec/11/comma-twitter-erupts-over-obama-castro-marriage/
2014-01-07 17:23:49 -08:00
Maxime Quandalle
c6bea042b7
Update coffeescript.html
2014-01-07 17:23:34 -08:00
David Glasser
53de3f21ba
Improve docs for server-to-server collections
...
Fixes #1723 .
2014-01-07 17:15:06 -08:00
David Glasser
ce77adc22e
Remove warning about update/$
2014-01-07 17:00:18 -08:00
David Glasser
cc1d47b5c5
Wording tweak.
2014-01-07 16:34:25 -08:00
Denis Gorbachev
f7c3e7621c
Update concepts.html
2014-01-07 16:29:49 -08:00
David Glasser
add4f6e015
Disallow {fields:{_id:0}} in observeChanges
...
This implies it is not allowed in `observe` either, or in cursors
returned from publish functions, or in cursors used in {{#each}}
Why? observeChanges and DDP publication use the ID as part of the
callback/message, and eliding it completely breaks them. Meteor UI uses
the ID with {{#each}} to properly move nodes around instead of
re-rendering. We could try to allow it for `observe` outside of
{{#each}}, but it would feel somewhat inconsistent.
2014-01-06 21:16:23 -08:00
Matt DeBergalis
412f89a352
document return value of Deps.nonreactive
2013-12-26 22:59:05 -08:00
David Glasser
36bad38aa0
Merge branch 'master' into devel
...
Conflicts:
tools/mongo_runner.js
2013-12-20 14:26:27 -08:00
David Glasser
6fc8332c99
Update docs and examples to 0.7.0.1.
2013-12-20 14:23:11 -08:00
Geoff Schmidt
5cae2c426a
update docs app to release sso-1
2013-12-20 14:21:59 -08:00
David Glasser
508ad66513
Support websockets on Node 0.10.24 too
2013-12-20 13:51:29 -08:00
Geoff Schmidt
4294d40220
update docs app to release sso-1
2013-12-19 18:14:22 -08:00
Nick Martin
eeae8ad11e
Reword docs around file load order to be more correct. Fixes #1675 .
2013-12-19 15:14:16 -08:00
David Glasser
b6c7d424bc
Update examples and docs to 0.7.0
2013-12-17 11:08:19 -08:00
David Glasser
4771b71734
Rename 0.6.7 to 0.7.0
2013-12-17 10:48:54 -08:00
Nick Martin
de6fb4276d
update displayed release version number for docs.
2013-12-13 02:19:34 -08:00
Nick Martin
9d5fb4d1e1
upgrade examples and docs.
2013-12-13 02:19:13 -08:00
Dan Dascalescu
b556a474d3
Mention Meteor.bindEnvironment
...
Google searches for the error fail to find the Meteor docs, and there was no mention of bindEnvironment therein.
2013-12-06 14:12:18 -08:00
David Glasser
51b786c64c
docs: Fix line break and punctuation
2013-12-06 13:40:59 -08:00