aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/werkzeug.BUILD
Commit message (Collapse)AuthorAge
* Refactor TensorBoard into WSGI application. Adds werkzeug pip dependency toGravatar Dandelion Mané2017-01-21
| | | | | | | | | | | | | | | tensorflow. This change is motivated by the need to use middleware to provide authentication internally. It also makes the TensorBoard backend more embeddable/re-usable. * Adds a dependency on werkzeug for convenience in setting up WSGI apps. * Replaces "TensorBoardHandler" with "TensorBoardWSGIApp". Now each route is a WSGI application. Generally uses convenient werkzeug decorators for making these applications. * Removes handler.py, server.py; these are merged into application.py * The Respond method in http.py now returns a Werkzeug Response object. * Modify projector plugin to also be a WSGI application. * Add a few error messages for helpfulness. * Remove some dead code along the way. It has to do with sampling, but we never incorporated it anywhere. Change: 145183192
* Add werkzeug as a dependency to TensorBoard.Gravatar Dandelion Mané2017-01-18
This is in preparation for making TensorBoard a WSGI app. Change: 144917110