##// END OF EJS Templates
Adds configuration options to use Google Drive content manager...
Adds configuration options to use Google Drive content manager Adds the key contentmanager_js_source to webapp_settings that allows for specifying the content manager JavaScript source file. Also adds a NotebookManager subclass, ClientSideNotebookManager, which does minimal logic. This class is used when the JavaScript content manager doesn't use the Python notebook manager, but rather implements that logic client side, as is the case for the Google Drive based content manager. A sample command line that uses the Google Drive content manager, and the ClientSideNotebookManager, is ipython notebook --NotebookApp.webapp_settings="{'contentmanager_js_source': 'base/js/drive_contentmanager'}" --NotebookApp.notebook_manager_class="IPython.html.services.notebooks.clientsidenbmanager.ClientSideNotebookManager"

File last commit:

r18606:776d1fa8
r18639:28c27a69
Show More
__init__.py
19 lines | 468 B | text/x-python | PythonLexer
MinRK
first complete pass on v4...
r18573 """The main API for the v4 notebook format."""
MinRK
copy nbformat.v3 to v4
r18568
MinRK
first complete pass on v4...
r18573 # Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
MinRK
copy nbformat.v3 to v4
r18568
from .nbbase import (
MinRK
first complete pass on v4...
r18573 nbformat, nbformat_minor, nbformat_schema,
MinRK
remove heading cells in v4
r18596 new_code_cell, new_markdown_cell, new_notebook,
MinRK
add nbformat.output_from_msg...
r18582 new_output, output_from_msg,
MinRK
copy nbformat.v3 to v4
r18568 )
MinRK
move NotebookNode to top-level...
r18606 from .nbjson import reads, writes, to_notebook
reads_json = reads
writes_json = writes
to_notebook_json = to_notebook
MinRK
copy nbformat.v3 to v4
r18568
from .convert import downgrade, upgrade