Changes between Version 14 and Version 15 of Software/Jupyter


Ignore:
Timestamp:
10/13/17 17:03:16 (7 years ago)
Author:
Jens Henrik Goebbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Software/Jupyter

    v14 v15  
    6161    * add handlers [https://github.com/jupyterhub/jupyterhub/tree/master/jupyterhub/handlers handlers]
    6262    * add apihandlers [https://github.com/jupyterhub/jupyterhub/tree/master/jupyterhub/apihandlers apihandlers]
    63   * init webserver   [https://github.com/jupyterhub/jupyterhub/blob/master/jupyterhub/app.py#L1284 app.py:1284]
     63  * init webserver with handlers [https://github.com/jupyterhub/jupyterhub/blob/master/jupyterhub/app.py#L1284 app.py:1284]
    6464    * init Jinja2 template engine [https://github.com/jupyterhub/jupyterhub/blob/master/jupyterhub/app.py#L1291 app.py:1291]
    6565    * static_path points to HTML/JS/JINJA2 files [https://github.com/jupyterhub/jupyterhub/tree/master/share/jupyter/hub/ webfiles]
     
    8282      * for communication back to the server functions from the JupyterHubAPI in [https://github.com/jupyterhub/jupyterhub/blob/master/share/jupyter/hub/static/js/jhapi.js jhapi.js] are called
    8383        * jhapi.js uses [https://jquery.com/ jquery.js] for ajax-functionality (send/recive commands between client/server)
    84           * values are send back to client with an an asynchronous HTTP (Ajax) request using jquery.ajax() [https://github.com/jupyterhub/jupyterhub/blob/master/share/jupyter/hub/static/js/jhapi.js#L43 here]
     84          * values are send back to client with an an asynchronous HTTP (Ajax) request using jquery.ajax() [https://github.com/jupyterhub/jupyterhub/blob/master/share/jupyter/hub/static/js/jhapi.js#L43 here] \\ => this triggers a handler of the tornado web server (eg. apihandler)
    8585
    8686