Andrew Wilcox
Andrew Wilcox
I see that `on-err` is used in arc.arc, but it doesn't appear to have been exported into the user namespace: ``` arc> on-err Error: Unbound variable on-err ``` Is there...
Meteor.user() and Meteor.userId() can't be called from Meteor.publish functions. This commit adds an optional `userId` argument to `isAdmin` and `hasPermission`, allowing permissions to be checked from publish functions.
After the user makes an update on the client, this could provide feedback "saving"... "saved". Perhaps something like - zero outstanding methods: "saved" - outstanding methods and online: "saving" -...
IE and Firefox don't support Web SQL Database; adding IndexedDB support would allow these browsers to use data offline as well.
When a method completes, it is removed from the queuedMethods and methodsHoldingUpSubscriptions tables. However, if an old record is left over in methodsHoldingUpSubscriptions from running tests or a crash, it...
Because the offline agent makes its own connection to the Meteor server, it would be useful if the client could check the agent's connection status (analogous to `Meteor.status()`) and reconnect...
Here's a fairly odd corner case: when the client makes a subscription, the server sends the documents that are currently in the subscription set, followed by subscription ready. Once the...
Relay the connection status of a connection made from the agent back to the client window, implementing `Offline.status()` and `offlineConnection.status()`.
A "null" connection could indicate a browser-only collection that is saved persistently in the browser, but not synced from a server collection. (The collection would still need to have a...