Byron Ruth
Byron Ruth
The issue here isn't the UI canceling a request or delaying one until the current one finishes, it's canceling a query that is already running.
This is very much around permissions of the database. For example pg_cancel_backend and pg_terminate_backend require superuser privileges to call even if it’s your own query. Harvest could perceivably timeout/cancel a...
You are right about the same user rule: http://www.postgresql.org/docs/9.2/static/functions-admin.html#FUNCTIONS-ADMIN-SIGNAL-TABLE
The fundamental issue here is that the validation check is asynchronous, but the validation message is assumed to appear immediately. This will require a refactor for controls to return a...
Another interesting one is [JSXGraph](http://jsxgraph.uni-bayreuth.de/wp/) which is more of a drawing library, but has a ton of [examples](http://jsxgraph.uni-bayreuth.de/wp/examples/) on the [wiki](http://jsxgraph.uni-bayreuth.de/wiki/index.php/Category:Examples).
Another contender although there are virtually no docs: https://github.com/gionkunz/chartist-js
Another: http://c3js.org/
A lexicon should have distinct values with distinct labels. It is up to the maintainer of the lexicon to disambiguate or merge the values in the lexicon itself. On a...
The [implementation](https://github.com/chop-dbhi/cilantro/blob/af958a0b11f885a41bd719ec67e799b46bee3022/src/js/cilantro/ui/welcome.js#L37-L40) assumes that having one filter applied denotes an existing user. However if the filters are cleared the message reverts to the "new user" message which makes this method...
Certainly an idea. For now, you can script it. As long as the options are set before the controls that are affected are rendered in the UI, they will be...