Commit Graph

4468 Commits

Author SHA1 Message Date
Emily Stark
3403b31c42 Preserve the connection that called logoutAll. 2013-09-11 13:44:12 -07:00
Emily Stark
7dfff264a3 Add method that logs the user out everywhere.
Might need some UI work; currently causes confusing error message "Couldn't find
login token."
2013-09-11 13:44:12 -07:00
Emily Stark
afa8afd9a9 Keep track of open DDP connections by login token. 2013-09-11 13:44:12 -07:00
Andrew Wilcox
ba34b2550b Chrome for iOS supports the appcache 2013-09-04 16:31:52 -07:00
Emily Stark
1c8a5169ed Merge pull request #1387 from peerlibrary/wrapasync-err
Check for err.stack in logErr in wrapAsync
2013-09-01 19:06:22 -07:00
Mitar
e082d9745a Check for err.stack in logErr in wrapAsync. 2013-08-31 10:03:41 -07:00
Nick Martin
9c53643113 Merge branch 'master' into devel
Conflicts:
	History.md
	docs/client/docs.js
2013-08-28 14:16:31 -07:00
Nick Martin
bb6c88ca9e Merge branch 'release-0.6.5.1' 2013-08-28 14:14:44 -07:00
Nick Martin
16b8f0b0b6 update examples for 0.6.5.1 2013-08-28 14:13:09 -07:00
Nick Martin
5d4849d361 bump docs version too. eventually this won't be needed. 2013-08-27 20:28:56 -07:00
Emily Stark
cdb6f90b66 Bump docs version to latest galaxy 2013-08-27 20:28:09 -07:00
Nick Martin
61f84eb7e7 banner and notices for 0.6.5.1 2013-08-27 20:17:59 -07:00
Nick Martin
fab6f3fe5d First pass at history for 0.6.5.1 2013-08-26 20:30:41 -07:00
David Glasser
6a4216f16f Fix doc on how to get correct fibers. release/0.6.5.1 release/0.6.5.1-rc1 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
7f73833991 Fix typo in package description. 2013-08-26 19:51:39 -07:00
Nick Martin
61d9510ef1 Export Spiderable symbol, so people can override user agents. Also add twitterbot to agents. Fixes #1300. 2013-08-26 19:51:39 -07:00
Emily Stark
2c68882fff Fix d3 tab character 2013-08-26 19:51:38 -07:00
David Glasser
99d29cc9d2 More comments on idStringify fix. 2013-08-26 19:51:38 -07:00
David Glasser
9847720a3b Various bugs involving idStringify.
In minimongo, we support various types as _id fields; the most important are
strings and ObjectIds. We have a special encoding that we use when we need to
represent them as strings, but we had a few bugs with using it.

minimongo: The duplicate-ID check in insert needed to check using the encoded
string.

spark OrderedDict: due to linker changes, it was not successfully finding
LocalCollection._idStringify, and so it fell back to the identity
function. Fixed to use weak dependencies. Also, later refactorings have removed
the need for idStringify(null) === null so that special case is removed.

spark branch labels: use idStringify in various places where _id is used as a
branch label.
2013-08-26 19:35:41 -07:00
Emily Stark
70a691661d Use decoded pathnames in staticFiles keys.
Fixes #1339
2013-08-26 19:34:39 -07:00
Nick Martin
a79db877a4 Add EJSON to standard-app-packages. Fixes #1343. 2013-08-26 19:34:32 -07:00
Emily Stark
5784c811ae Don't number lines that end in backslash.
Fixes #1326
2013-08-26 19:34:24 -07:00
David Greenspan
6b9bfe8b5a update esprima to take fix for regex parsing bug 2013-08-26 19:34:19 -07:00
Nick Martin
c4203e3500 Fix typo in package description. 2013-08-26 19:28:25 -07:00
Emily Stark
c4f52b7551 Update docs for Date types on createdAt fields. 2013-08-21 15:19:05 -07:00
Emily Stark
d8364af765 Merge branch 'mongo-dates' into devel 2013-08-21 14:30:05 -07:00
Emily Stark
aa291537a4 Update tests for new Date fields on user docs 2013-08-21 14:28:50 -07:00
Emily Stark
14da1c3ad2 Use Date for login token timestamps 2013-08-21 14:28:33 -07:00
Emily Stark
9948ba715d Shorten History.md for mongo dates 2013-08-21 14:21:29 -07:00
Emily Stark
8160ce549b Merge branch 'isodate-to-mongo' of github.com:ryw/meteor into mongo-dates
Conflicts:
	History.md
2013-08-21 14:17:29 -07:00
Emily Stark
9547ac2b9f Rename _suppress_ordered to _allow_unordered. 2013-08-20 18:31:08 -07:00
Emily Stark
6f02ee6098 Merge branch 'meteor-issue-654' of github.com:nathan-muir/meteor into issue-654 2013-08-20 18:25:43 -07:00
Nick Martin
1e9a61eff6 Mark application-configuration as internal. People don't need to add it. Plus, the name is long enough to throw off 'meteor list' 2013-08-20 14:48:22 -07:00
Emily Stark
008c1cf7f2 Use decoded pathnames in staticFiles keys.
Fixes #1339
2013-08-20 11:37:11 -07:00
Emily Stark
bfc7f22dc0 Don't number lines that end in backslash.
Fixes #1326
2013-08-20 11:14:44 -07:00
Emily Stark
8b13f53cf4 Fix d3 tab character 2013-08-20 11:08:50 -07:00
Emily Stark
d567bbdaf3 Fix docs typo.
Fixes #1297
2013-08-20 10:52:45 -07:00
David Glasser
0088475699 More comments on idStringify fix. 2013-08-19 22:15:52 -07:00
David Glasser
3cfeed5b5b Various bugs involving idStringify.
In minimongo, we support various types as _id fields; the most important are
strings and ObjectIds. We have a special encoding that we use when we need to
represent them as strings, but we had a few bugs with using it.

minimongo: The duplicate-ID check in insert needed to check using the encoded
string.

spark OrderedDict: due to linker changes, it was not successfully finding
LocalCollection._idStringify, and so it fell back to the identity
function. Fixed to use weak dependencies. Also, later refactorings have removed
the need for idStringify(null) === null so that special case is removed.

spark branch labels: use idStringify in various places where _id is used as a
branch label.
2013-08-19 22:00:37 -07:00
Nick Martin
30b08fc012 Export Spiderable symbol, so people can override user agents. Also add twitterbot to agents. Fixes #1300. 2013-08-19 19:51:01 -07:00
Nick Martin
dff1310cc4 Upgrade stylus to 0.37.0 and nib to 1.0.0. Fixes #1121, #1315.
Tested by:
- run unit tests
- create an app, add stylus package.
- add foo.style file that uses nib and a background gradient
- see appropriate css generated in app with web inspector.
2013-08-19 19:27:58 -07:00
Nick Martin
9b8d72392c Change the part of the app html that the http tests look for. test-in-console doesn't set a title. 2013-08-19 19:18:26 -07:00
Nick Martin
2fad88988f Add EJSON to standard-app-packages. Fixes #1343. 2013-08-19 16:26:17 -07:00
David Glasser
3d5c288b2b Remove newline from 'meteor add http'. 2013-08-19 16:24:32 -07:00
Matty G
28ab8026fd connectHooks -> connectHandlers
Slight typo if I have inspected the code correctly [here](https://github.com/meteor/meteor/blob/devel/packages/webapp/webapp_server.js#L303).  I fixed the bits in observatory and observatory-apollo as a test case.
2013-08-15 20:31:32 -07:00
Slava Kim
ed9cb03ac1 Merge branch 'minimongo-fields' into devel
Support for 'fields' option in minimongo. Observe on the fields certain fields
will fire 'change' events only if one of watched fields changed.

Note: in minimongo observe, granularity of diff is one level. Meaning, watching
for changes at 'foo.bar' may fire even if 'foo.bar' didn't change.

Fixes #1287.
2013-08-15 14:38:20 -07:00
Slava Kim
492bf58b08 A slightly better comment on MongoDB edge-cases simulation. 2013-08-15 14:33:59 -07:00