##// END OF EJS Templates
tab management new/existing kernel....
tab management new/existing kernel. working 2 kinds of tab with Ctrl+Shift+T -> tab attached on same kernel with Ctrl+T -> tab attached on new kernel closing event management is way far from the one of the mainWindow and "first tab" is still handeled differently as the other ones as some action are still attaches to it directly

File last commit:

r4637:d919e2ec
r5035:eb0e7f37
Show More
nbexamples.py
103 lines | 2.1 KiB | text/x-python | PythonLexer
Brian E. Granger
Full versioning added to nbformat.
r4406 from ..nbbase import (
Brian E. Granger
Initial draft of more formal notebook format....
r4401 NotebookNode,
Brian E. Granger
Implemented metadata for notebook format.
r4637 new_code_cell, new_text_cell, new_worksheet, new_notebook, new_output,
new_metadata, new_author
Brian E. Granger
Initial draft of more formal notebook format....
r4401 )
ws = new_worksheet(name='worksheet1')
Brian E. Granger
Markdown cells are now saved and restored in notebooks.
r4511 ws.cells.append(new_text_cell(
u'html',
source='Some NumPy Examples',
rendered='Some NumPy Examples'
Brian E. Granger
Initial draft of more formal notebook format....
r4401 ))
ws.cells.append(new_code_cell(
Brian E. Granger
Updates to basic notebook format....
r4402 input='import numpy',
Brian E. Granger
Added collapsed field to the code cell.
r4533 prompt_number=1,
collapsed=False
Brian E. Granger
Initial draft of more formal notebook format....
r4401 ))
Brian E. Granger
Markdown cells are now saved and restored in notebooks.
r4511 ws.cells.append(new_text_cell(
u'markdown',
Brian E. Granger
New .py notebook format implemented.
r4536 source='A random array',
rendered='A random array'
Brian E. Granger
Markdown cells are now saved and restored in notebooks.
r4511 ))
Brian E. Granger
Initial draft of more formal notebook format....
r4401 ws.cells.append(new_code_cell(
Brian E. Granger
Updates to basic notebook format....
r4402 input='a = numpy.random.rand(100)',
Brian E. Granger
Added collapsed field to the code cell.
r4533 prompt_number=2,
collapsed=True
Brian E. Granger
Initial draft of more formal notebook format....
r4401 ))
ws.cells.append(new_code_cell(
input='print a',
Brian E. Granger
Updates to basic notebook format....
r4402 prompt_number=3,
Brian E. Granger
Added collapsed field to the code cell.
r4533 collapsed=False,
Brian E. Granger
Updates to basic notebook format....
r4402 outputs=[new_output(
output_type=u'pyout',
output_text=u'<array a>',
output_html=u'The HTML rep',
output_latex=u'$a$',
output_png=b'data',
Brian E. Granger
Finishing display system work....
r4528 output_jpeg=b'data',
Brian E. Granger
Updates to basic notebook format....
r4402 output_svg=u'<svg>',
output_json=u'json data',
Brian E. Granger
Starting to rename text cell to html cell.
r4498 output_javascript=u'var i=0;',
prompt_number=3
Brian E. Granger
Updates to basic notebook format....
r4402 ),new_output(
output_type=u'display_data',
output_text=u'<array a>',
output_html=u'The HTML rep',
output_latex=u'$a$',
output_png=b'data',
Brian E. Granger
Finishing display system work....
r4528 output_jpeg=b'data',
Brian E. Granger
Updates to basic notebook format....
r4402 output_svg=u'<svg>',
output_json=u'json data',
Brian E. Granger
Adding tracebacks, evalue and etype to the nbformat and notebook.
r4540 output_javascript=u'var i=0;'
),new_output(
output_type=u'pyerr',
etype=u'NameError',
evalue=u'NameError was here',
traceback=[u'frame 0', u'frame 1', u'frame 2']
Brian E. Granger
Updates to basic notebook format....
r4402 )]
Brian E. Granger
Initial draft of more formal notebook format....
r4401 ))
Brian E. Granger
Implemented metadata for notebook format.
r4637 authors = [new_author(name='Bart Simpson',email='bsimpson@fox.com',
affiliation=u'Fox',url=u'http://www.fox.com')]
md = new_metadata(name=u'My Notebook',license=u'BSD',created=u'8601_goes_here',
modified=u'8601_goes_here',gistid=u'21341231',authors=authors)
Brian E. Granger
Initial draft of more formal notebook format....
r4401 nb0 = new_notebook(
Brian E. Granger
New .py notebook format implemented.
r4536 worksheets=[ws, new_worksheet(name='worksheet2')],
Brian E. Granger
Implemented metadata for notebook format.
r4637 metadata=md
Brian E. Granger
Initial draft of more formal notebook format....
r4401 )
Brian E. Granger
Full versioning added to nbformat.
r4406 nb0_py = """# <nbformat>2</nbformat>
Brian E. Granger
New .py notebook format implemented.
r4536 # <htmlcell>
# Some NumPy Examples
Brian E. Granger
Full versioning added to nbformat.
r4406 # <codecell>
Brian E. Granger
Initial draft of more formal notebook format....
r4401
import numpy
Brian E. Granger
New .py notebook format implemented.
r4536 # <markdowncell>
# A random array
Brian E. Granger
Initial draft of more formal notebook format....
r4401 # <codecell>
a = numpy.random.rand(100)
# <codecell>
print a
Brian E. Granger
Full versioning added to nbformat.
r4406
Brian E. Granger
Initial draft of more formal notebook format....
r4401 """