-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32137b5
commit 087a5cc
Showing
4 changed files
with
15 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
description: Timezone Support | ||
--- | ||
Bokeh currently ignores timezone information when displaying and handling dates and times. | ||
It could be modified to handle timezones, which includes potentially different timezones on the | ||
server and in the browser, and daylight saving time changes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
description: Pluggable Client-Server Communications | ||
--- | ||
Bokeh uses Tornado and WebSockets for communication between the server and client, and bespoke | ||
code to serialize/deserialize messages. | ||
It would be beneficial to decouple Bokeh functionality from the communication implementation and | ||
allow others such as those based on Jupyter and ZeroMQ for example. | ||
This would require a review and specification of the required communcation and serialization | ||
functionality, and at least two pluggable implementations, one of which would be the current one. |