Jonas Sicking
Jonas Sicking
I think the higher meta-question here is: Are Futures appropriate to use in situations when we want to asynchronously deliver a success/error signal, but where it's critical that the signal...
See http://lists.w3.org/Archives/Public/public-webapps/2013AprJun/0217.html
Like Dominic, I think that if we were to have a separate `.when()` function, then it would be most useful/consistent if that function gave `x == 5` `y == a`...
The `Access-Control-Allow-Credentials: true` has very important security implications. The intent of that header is to enable sharing of private user data with other websites, which is clearly something that should...
I think we should deprecate DOMRequest in favor of DOMFuture. Whatever DOMFuture ends up looking like, it's better to have a single "promise-like" API than to have two. We can...
Unfortunately some of the IDBRequests that IndexedDB creates fires the "success" events multiple times. In particular the requests returned from the cursor-creating functions openCursor and openKeyCursor.
What might be doable is to create two implementations of the IDBRequest interface. One that also implements the Future interface, and one that also implements the Cursor interface proposed in...
Per RFC 4180, escaping should only be done for quote (") characters, and not for %, , or &. And escaping " is done by preceding it with another "....