David Glasser
996d347139
Merge branch 'devel' into packaging
...
Conflicts:
docs/client/api.html
docs/client/concepts.html
docs/client/introduction.html
meteor
packages/html-tools/package.js
packages/spacebars-common/package.js
packages/webapp/webapp_server.js
tools/bundler.js
2014-07-21 16:18:25 -07:00
Fredric Endrerud
effd3c1524
Change AppCache from browser whitelist to blacklist
2014-07-18 16:07:02 -07:00
David Greenspan
e970d5381d
Merge branch 'blaze-refactor' into devel
...
Conflicts:
packages/spacebars-tests/template_tests.html
packages/spacebars-tests/template_tests.js
packages/ui/render.js
2014-07-10 16:29:20 -07:00
Maria Pacana
ecb366f62e
Revised wording about Manual on docs page.
2014-07-08 18:56:02 -07:00
Maria Pacana
478899c4d3
Added links to Meteor Manual on docs page.
2014-07-08 18:40:26 -07:00
Maria Pacana
1d946bc040
Added links to Meteor Manual on docs page.
2014-07-08 17:59:31 -07:00
David Greenspan
fe1cd72a8e
Document UI.remove
...
Also tweak the warning about non-jQuery removals
2014-07-08 13:13:05 -07:00
David Greenspan
8afc41f0ef
Remove mentions of “Component” from docs
...
“instantiated component” -> “rendered template”
2014-07-08 12:18:13 -07:00
Emily Stark
d962d498c8
Remove more SRP from docs
2014-07-07 11:45:03 -07:00
David Glasser
7bfa2dacb5
Add package.json and npm-shrinkwrap.json to bundle
...
Recommend their use instead of hacky fibers reinstallation.
2014-07-01 16:18:36 -07:00
David Glasser
6bf6480569
Clarify that your publisher must do SOMETHING
...
Either return cursor(s), or use the low-level API.
Fixes #2253
2014-06-27 16:48:20 -07:00
Emily Stark
1c90d0410c
galaxy-reload-safetybelt -> reload-safetybelt
2014-06-26 15:08:41 -07:00
Emily Stark
b76f3e67c8
Move reload safety belt into an opt-in package
2014-06-26 15:08:41 -07:00
David Glasser
cffc1ed1cc
camelcase api.versionsFrom and api.addFiles
...
Leave around api.add_files so as to not break literally every
package. Leave our own uses of it alone until after merging to devel, so
that merging package.js files isn't a nightmare.
2014-06-24 16:11:30 -07:00
Emily Stark
da356dad0f
Remove sentence about SRP from docs
2014-06-24 08:33:02 -07:00
Emily Stark
51e1429d86
Make docs npm install one line
2014-06-23 16:39:27 -07:00
Emily Stark
969009460c
Update docs for bcrypt dependency
2014-06-23 16:35:55 -07:00
Emily Stark
1c12b1a49f
Merge branch 'master' into devel
...
Conflicts:
History.md
packages/accounts-password/password_server.js
packages/spacebars-tests/template_tests.html
packages/spacebars-tests/template_tests.js
packages/ui/base.js
2014-06-23 08:18:19 -07:00
Emily Stark
5cba1289e8
Update docs and examples
2014-06-23 08:13:51 -07:00
Emily Stark
1180597f06
bump dev bundle; upgrade node
2014-06-16 18:17:21 -07:00
Tim Phillips
b3d7434e06
Add command line h1 to docs
...
Remove unused template
2014-06-10 16:40:26 -07:00
Emily Stark
05bfdc297e
Merge branch 'pr/2183' into devel
2014-06-10 15:17:24 -07:00
Emily Stark
ab6091ef43
Add docs for Meteor.loginWithMDA userEmail option.
2014-06-10 15:11:23 -07:00
David Glasser
b5a0613f85
Remove cursor.rewind interface
...
Our cursor interface has no nextObject method, so there's no point in
having a rewind method. Its major effect is ensuring that
fetch/forEach/map return no documents if you've already called one of
them once. It's not clear why this is actually useful to anybody.
rewind is kept around as a no-op; if we later implement nextObject, we
can make rewind do something, but we still presumably would auto-rewind
before fetch/forEach/map.
In minimongo, remove the db_objects cache inside each cursor. The only
actual use of this cache was that if you called count multiple times, it
would return the same number without re-running the query, and you could
share the query work between N calls to count and one call to
fetch/forEach/map (but only one call! future calls would return
nothing!) While there's a minor performance hit from getting rid of
this cache, it should also use a little less memory, and enable use
cases like
{{#with someCursor}}
{{#if count}}
{{#each this}}
...
{{/each}}
{{/if}}
{{/with}}
which didn't work before because even the deps invalidation didn't
rewind the cursor.
Also, as a minor optimization, skip an EJSON.clone if there's a
projection, because projection functions are guaranteed to clone.
Fixes #2114
2014-06-05 13:18:51 -07:00
Avital Oliver
284f71666d
Improve docs for this.$ and this.findAll
2014-05-29 17:53:50 -07:00
Hubert OG
95c3ff365b
Separated findAll and $
2014-05-29 17:53:50 -07:00
Emily Stark
1492da8ed4
Fix docs typo
2014-05-22 12:10:26 -07:00
Emily Stark
bf8426322c
Merge branch 'master' into devel
2014-05-22 09:50:17 -07:00
Emily Stark
c0722aac30
Update docs and examples to 0.8.1.3
2014-05-22 09:48:54 -07:00
David Glasser
9f477e974d
Remove statement about Rails and Django
...
Fixes #2142 . Apparently Django doesn't work precisely this way.
2014-05-14 17:20:50 -07:00
Avital Oliver
910f75f359
Document UI.getElementData
...
While doing this, I realized that this function
can be called on text nodes as well, so it's probably
better named UI.getNodeData?
2014-05-13 11:27:19 -07:00
Emily Stark
bfeabbc5b0
Merge branch 'master' into devel
2014-05-12 17:15:42 -07:00
Emily Stark
c8bfff8959
Merge branch 'release-0.8.1.2'
2014-05-12 17:15:08 -07:00
Emily Stark
1b1a4d7c25
Update docs to 0.8.1.2
2014-05-12 17:09:41 -07:00
Avital Oliver
ec170b7c3c
docs: turn off appcache on safari
...
Turns out AppCache on Safari 7 is totally broken (see
http://stackoverflow.com/questions/22888945/safari-7-application-cache-does-not-work ).
This, combined with our "reload if you can't load CSS or JS" strategy for
multi-server deploy causes infinite reloads in some cases.
Hopefully this will resolve the sporadic complaints we get
from some users about infinite reloads.
2014-05-09 18:34:39 -07:00
David Glasser
d6e53c0428
cleanup HTML
2014-05-08 18:00:35 -07:00
Cangit
829325928e
Update commandline.html
...
Removed deprecated --password command from docs. Added info on new practices.
2014-05-08 17:58:41 -07:00
Emily Stark
a8673d01cd
Set X-Content-Type-Options in browser-policy-content
2014-05-08 12:12:45 -07:00
David Glasser
74bcb916b4
Doc and history updates for 4777e64336
2014-05-06 14:11:40 -07:00
David Glasser
f2e2a781cc
Update Node to 0.10.28 which includes our npm fix
2014-05-02 10:59:37 -07:00
Emily Stark
de9188f1e8
Merge branch 'master' into devel
...
Conflicts:
History.md
packages/minifiers/urlrewriting-tests.js
2014-05-01 12:39:33 -07:00
Emily Stark
53c4a32d7e
Update docs and examples
2014-05-01 12:31:27 -07:00
Emily Stark
b37fd2af7e
Merge branch 'master' into devel
2014-04-30 11:03:19 -07:00
Emily Stark
532e9f32a8
Update docs and examples
2014-04-30 11:02:18 -07:00
Dan Dascalescu
3eeb7e61bd
Mark reason and error as optional in new Meteor.Error
2014-04-29 16:25:38 -07:00
David Glasser
c35593c574
Improve documentation of Meteor.settings
...
Fixes #2005 .
2014-04-24 14:13:05 -07:00
emgee3
cbd55698fd
Add collapsing TOC to Meteor Docs
...
On small devices (< 768 px) make the Table of Contents hide by default.
2014-04-24 13:45:55 -07:00
Emily Stark
55363a9b86
Merge remote-tracking branch 'origin/devel' into awwx-oauth-encryption
...
Conflicts:
History.md
packages/facebook/facebook_client.js
packages/github/github_client.js
packages/google/google_client.js
packages/meetup/meetup_client.js
packages/meteor-developer/meteor_developer_client.js
packages/twitter/twitter_client.js
packages/weibo/weibo_client.js
2014-04-22 11:31:31 -07:00
David Glasser
ce201682f0
Warn about unready publications to spiderable docs
...
Fixes #1149 .
2014-04-21 19:17:51 -07:00
David Glasser
3740d42f2d
Document Accounts.loginServicesConfigured
...
Fixes #1051 . See also #2048 .
2014-04-21 18:50:44 -07:00