Commit Graph

269 Commits

Author SHA1 Message Date
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
ce16794cbb Push through on the Meteor.connect -> DDP.connect rename. 2013-07-25 18:54:42 -07:00
David Glasser
db51a3a14c Eliminate the "past" package.
This package was always included in apps, and even if it was possible to remove,
there wasn't a compelling story about when users would remove and replace
it. Plus, not all backwards-compatibility code could even live in it (eg, field
names of objects), so it was incomplete. It also introduced odd load order
constraints.

Instead, we introduce two conventions for backwards-compatibility code:

  - Special comments of the form "// XXX COMPAT WITH 0.6.4"
  - When feasible, put backwards-compatibility code in a file called
    "deprecated.js" in the relevant package.

This is documented at:
https://github.com/meteor/meteor/wiki/Meteor-Style-Guide#deprecated-code-and-backwards-compatibility

Additionally, removed some symbols that existed for backwards compatibility with
Meteor 0.4.0 (changes made 10 months ago): Meteor.is_client, Meteor.is_server,
and (in a method) this.is_simulation.
2013-07-25 18:54:42 -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
3fa0b533cc wordplay: make dictionary check O(1) and take punctuation out of word list
apologies to deberg for stealing all of his git blame credit.
2013-06-14 11:09:57 -07:00
Emily Stark
1f3a69d7eb Update wordplay example to use Assets API 2013-06-14 08:40:26 -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
6edeacf29e Update examples to 0.6.4-rc1. 2013-05-31 13:02:41 -07:00
Nick Martin
bb4afdff5b move app out of package 2013-05-22 21:58:43 -07:00
Tim Haines
b7754f8c28 Refactor Oauth packages and extract twitter package from accounts-twitter 2013-05-17 18:00:35 -07:00
Nick Martin
2fb44613ce Bump example version numbers. 2013-05-15 11:52:09 -07:00
Avital Oliver
98c5efd8f1 Prerequisites for python-ddp-client 2013-05-06 12:13:02 -07:00
Avital Oliver
3ff6df2e9e Merge branch 'master' into devel
Conflicts:
	History.md
	packages/accounts-github/github_server.js
2013-04-24 14:01:22 -07:00
Avital Oliver
97b4ed263d 0.6.2.1 2013-04-24 11:10:16 -07:00
Nick Martin
c12f3851d1 Add audit-argument-checks to parties. This way when we do QA, we will exercise the package. 2013-04-18 19:30:44 -07:00
David Glasser
f67db983c3 New check library. 2013-04-18 19:17:53 -07:00
Nick Martin
f8c561140f Bump version numbers on apps. 2013-04-16 12:51:51 -07:00
Nick Martin
ac1e62ac30 Update apps to 0.6.2-rc3 2013-04-15 23:35:44 -07:00
Avital Oliver
a163c78dd0 0.6.1 2013-04-08 10:42:07 -07:00
David Glasser
1c8a667242 Update docs and examples to 0.6.0. 2013-04-04 12:08:38 -07:00
David Glasser
974583d9a6 Tested examples and docs with 0.6.0-rc7. 2013-04-03 17:00:32 -07:00
David Glasser
43f6ea8a80 update docs and examples to 0.6.0-rc1 2013-04-01 12:17:25 -07:00
David Greenspan
fe58789d8f fix error logging in login-demo 2013-03-26 11:13:55 -07:00
David Greenspan
f7dbbca72f log errors from login (eg not configured) 2013-03-25 22:07:57 -07:00
David Greenspan
d90f422b43 more readme 2013-03-25 21:25:05 -07:00
David Greenspan
2c8f7d5d87 demo of login and private data 2013-03-25 21:19:33 -07:00
David Glasser
a0e9fc3979 Add release files (0.6.0) to docs and all examples.
As part of the release process we'll update docs and all active
examples (other/unfinished examples can be updated as necessary). eg, first to
0.6.1-rc1, etc, and then to 0.6.1 when that is tagged from rc.
2013-03-19 15:13:54 -07:00
David Glasser
3c8f0b5949 Wrap client code in closure too.
Update parties and test helpers to not use file-level vars.
2013-03-19 15:11:14 -07:00
David Glasser
faa1818973 drop 'var' from wordplay functions used outside file 2013-03-19 15:11:14 -07:00
Avital Oliver
78ca755d3d Npm.require unified requireNpm and __meteor_bootstrap__.require 2013-03-19 15:11:04 -07:00
David Glasser
1a68026aa3 collection.update() and .remove() may only use IDs as selectors when sending RPCs.
ie, they can use arbitrary selectors on the server and in client stubs, but not
in other client contexts. This is to prevent clients from executing arbitrary
selectors against the DB.

Because of this, the update and remove allow/deny callbacks can only ever get
one doc, so switch them from getting an array to just getting the doc (like
insert).
2013-03-13 04:44:47 -07:00
David Greenspan
a18a92e65f Deps.run => Deps.autorun 2013-03-11 12:17:39 -07:00
David Greenspan
b9c3e1fa30 port examples 2013-03-08 12:50:46 -08:00
Naomi Seyfer
dba23bd29c Session.setDefault, and updating todos to use it. #698 2013-02-20 17:56:39 -08:00
David Glasser
9b486b3c9b Meteor.random -> Random.fraction
add Random.choice
2013-02-13 00:08:50 -08:00
David Glasser
d2ae5f7e1c Replace almost all uses of Meteor.uuid with Random.id. 2013-02-12 23:55:19 -08:00
David Glasser
0021307708 Updates to Python DDP client.
- Implement version handshake.

- Use a condition variable instead of sleep(0).

- Don't crash on 'added' with no fields.

- Include 'reason' when connection is closed.

- If our code throws an exception, make sure to print it before killing the main
  thread.

- Don't print a KeyboardInterrupt traceback on Ctrl-C or
  kill-due-to-connection-close. (ie, don't print two tracebacks if the thread
  throws.)
2013-02-12 11:40:43 -08:00
David Glasser
40bfd2e360 Add a reactive ready() method to subscription handles. Fixes #273.
Inspired by a pull request from tmeasday (though we've changed the underlying
code enough on ddp-pre1 that I had to rewrite it myself).

Use it in todos. No docs yet, but the Meteor.subscribe docs are already
scheduled for some attention.
2013-02-08 18:41:41 -08:00
Naomi Seyfer
d3d267d95b Deleted dead code from wordplay 2013-02-05 16:15:51 -08:00
David Glasser
3f2aad7c0e Rename subscription "complete" to "ready" everywhere (including in the
protocol and the publisher API).

Also update examples/other/quiescence for ddp-pre1.
2013-01-30 13:34:58 -08:00
Naomi Seyfer
677a43fe19 Updated python DDP client to ddp-pre1 2013-01-17 15:23:24 -05:00
David Glasser
2aa92b2ed3 Update to use APIs from new versions of fibers and uglify-js.
Combine files before minimizing.

minimongo - subkey sort fails when minized, so clearly there is some sort of
uglify bug.
2013-01-16 11:34:30 -05:00
David Glasser
27d3073660 Make Meteor.autosubscribe a deprecated alias for Meteor.autorun.
Instead of a general client-side sub de-duping mechanism (which mostly existed
for the sake of autosubscribe, and causes issues with server-driven
unsubscribes), make Meteor.subscribe explicitly aware of reactivity.

Expose an "invalidated" flag on Meteor.deps.Context.

Guarantee that invalidation callbacks from different contexts will not be
interleaved at flush time. This has the implication that if you do

   context1.onInvalidate(function () {
     context2.invalidate();
   });

and this is the only way to invalidate context2, then context2's invalidation
callbacks will not be called until after *ALL* of context1's callbacks are
called. This allows us to be sure that the "unsubscribe, unless autorun tried to
re-create an identical sub" logic runs after the autorun function is rerun.
2013-01-15 17:07:03 -05:00
Nick Martin
0c64008499 Optimised images
Originally from https://github.com/meteor/meteor/pull/569

Reworked to:
- apply to soma.png, not soma.jpeg (file was previously misnamed).
- don't touch bootstrap's glyph image. It would cause conflicts later, and is not neighborly.
2013-01-08 20:52:30 -08:00
David Glasser
64253bc470 accounts-ui-viewer: use triple-stash for the inclusiong of checked="checked" to
avoid escaping the quotes.
2012-12-26 23:30:26 -08:00
David Glasser
1070a682fd Rename soma.jpeg to soma.png, because that's what it is. 2012-12-13 17:49:09 -08:00