Jonathan Frederic
2969de609d
Selection test fix
2014-12-03 10:52:25 -08:00
Jonathan Frederic
22168a538e
Typo fix
2014-12-02 13:18:55 -08:00
Jonathan Frederic
01a6929c0d
Fix faulty interact tests
2014-12-02 09:29:02 -08:00
Jonathan Frederic
592112f0fa
Don't magically convert values to a list of tuples.
2014-12-02 09:22:16 -08:00
Jonathan Frederic
c8ef47b03b
Fix readonly lock logic.
2014-12-01 16:27:17 -08:00
Thomas Kluyver
99e6d35808
Fix variable name
2014-11-24 15:41:38 -08:00
Thomas Kluyver
694e32c938
Import Tuple traitlet for Selection widget
2014-11-24 15:41:37 -08:00
Jonathan Frederic
79fa062310
Make selection widget respect order.
2014-11-24 15:40:18 -08:00
Jonathan Frederic
52a0314719
Something
2014-11-24 15:40:18 -08:00
Min RK
535bbee883
Merge pull request #6978 from takluyver/nbconvert-script
...
Nbconvert to script for any kernel language
2014-11-24 12:56:20 -08:00
Kyle Kelley
6061ff914b
Merge pull request #7010 from quantopian/add-events
...
Add various events useful for third party integrations.
2014-11-23 20:26:33 -06:00
Scott Sanderson
4ed34d4f9d
DEV: Pass current cell to the execute cell event.
2014-11-23 20:59:22 -05:00
Matthias Bussonnier
5db4b7a8ee
Merge pull request #6668 from Carreau/actions
...
Add notion of action to keyboard manager.
2014-11-22 12:23:16 +01:00
Scott Sanderson
16b9150151
DEV: Add various events.
2014-11-21 17:43:59 -05:00
Thomas Kluyver
8bfec5015b
Add the . into file_extension
2014-11-20 17:34:39 -08:00
Min RK
b54cc20357
use Jupyter logo in the notebook header
...
and favicon
2014-11-20 14:55:59 -08:00
Min RK
837ef7f122
s/open_w/atomic_writing/
2014-11-19 19:56:54 -08:00
Min RK
c9a4e5b00d
handle various permission failures
...
- turn various EPERM, EACCES errors into 403
- add `writable` bool field to contents models
- if a notebook is not `writable`, save is disabled
2014-11-19 19:56:52 -08:00
Thomas Kluyver
f424dafeba
Merge pull request #6962 from takluyver/nb-dir-and-file-to-run
...
Allow starting the server with both file_to_run and notebook_dir
2014-11-19 17:21:42 -08:00
Bussonnier Matthias
907d70339e
some extra comma/semicolon cleanup
2014-11-19 21:47:22 +01:00
Bussonnier Matthias
ac355d757f
update to use event
2014-11-19 21:44:15 +01:00
Matthias Bussonnier
9ae62c21b8
Some cleanup unused code and missig use-strict
2014-11-19 21:44:15 +01:00
Jonathan Frederic
295050060e
Merge pull request #6988 from jasongrout/promises-again
...
Clean up promises code some more.
2014-11-19 12:14:05 -08:00
Min RK
7af86625af
Merge pull request #6982 from Carreau/ksm
...
fix clientside notebook manager and assume tree is dir by default
2014-11-19 11:55:57 -08:00
Min RK
a4aaf94cd6
Merge pull request #6987 from takluyver/i6983
...
Fix conversion of input area to stream output
2014-11-19 11:44:33 -08:00
Jason Grout
2b96a97118
Simplify error-handling code
...
Thanks to @jdfreder for this change.
2014-11-19 19:43:22 +00:00
Matthias Bussonnier
9caf579d8d
Merge pull request #6975 from minrk/rename-error
...
Don't dismiss rename dialog until rename is complete
2014-11-19 20:18:46 +01:00
Jason Grout
da8cab76dd
Clean up promises code some more.
2014-11-19 19:16:54 +00:00
Thomas Kluyver
5990012062
Fix conversion of input area to stream output
...
Closes gh-6983
2014-11-19 10:22:32 -08:00
Matthias Bussonnier
1b1d1f2325
fix clientside notebook manager and assume tree is dir by default
...
Assume tree url are dir by default instead of file, and if
not do a redirect. Usefull for Clientside manager where the server
does not know the content of the drive, and think that everythong exists.
2014-11-19 11:52:03 +01:00
Jason Grout
5a39c0c9bd
Use os.remove instead of shutil.rmtree if we try to remove a symbolic link
...
If we try to remove a symbolic link to a directory with shutil.rmtree, we get
the error “Cannot call rmtree on a symbolic link”
2014-11-19 04:46:13 -05:00
Thomas Kluyver
8252f56b00
Allow FileContentsManager and MappingKernelManager to be used outside NotebookApp
2014-11-18 17:41:21 -08:00
Thomas Kluyver
6d776a5292
Allow starting the server with both file_to_run and notebook_dir
...
file_to_run and notebook_dir would collide, with possible dictionary
ordering randomness depending on how they were passed.
With this change, the default value of notebook_dir is pulled from
file_to_run, instead of pushing the value when file_to_run is changed.
This makes it possible to specify both and have the server behave as
expected.
2014-11-18 17:41:21 -08:00
Thomas Kluyver
58b0669b9b
Fix asyncy nbconvert to download
2014-11-18 16:56:39 -08:00
Thomas Kluyver
800e2ad25a
'Download as' script
2014-11-18 16:26:29 -08:00
Thomas Kluyver
2414db41e6
Merge pull request #6961 from minrk/profile-dir-no-3p
...
Don't pass IPython-specific args to non-IPython kernels
2014-11-18 14:09:35 -08:00
Min RK
c7ad3aa47d
Don't dismiss rename dialog until rename is complete
...
- draws error message in the same dialog,
rather than triggering a new dialog via events.
- `Notebook.rename` returns the contents Promise, rather than registering its own error handler.
2014-11-18 13:59:02 -08:00
Min RK
a62a9abdef
update MappingKernelManager module docstring
2014-11-18 13:29:44 -08:00
Min RK
da80d64e45
Merge pull request #6955 from Carreau/typeset
...
Actually typeset latex
2014-11-18 12:56:49 -08:00
Jonathan Frederic
2ef509e505
Add doc string to Output widget
2014-11-18 11:31:33 -08:00
Jonathan Frederic
7a3a9e74e9
Bug fix, typo
2014-11-18 11:31:33 -08:00
Jonathan Frederic
db2ef15b81
Address @carreau 's comments
2014-11-18 11:31:32 -08:00
Jonathan Frederic
36f0aabb86
active_output_areas (plural)
2014-11-18 11:29:35 -08:00
Jonathan Frederic
6f2e02b585
Pop output now removes a specific output
2014-11-18 11:29:35 -08:00
Jonathan Frederic
a12da7cee4
Added comment describing output area stack.
2014-11-18 11:29:35 -08:00
Jonathan Frederic
d033d6c1ea
Make output widget reactive.
2014-11-18 11:29:35 -08:00
Jonathan Frederic
a5779bcd0e
Output Widget
2014-11-18 11:29:35 -08:00
Matthias Bussonnier
4cd8ee3bb2
Merge pull request #6881 from jasongrout/template-blocks
...
Make favicon and logo images blocks in the template
2014-11-18 16:52:06 +01:00
Matthias Bussonnier
0ee990614d
Merge pull request #6923 from SylvainCorlay/toggle_button_tooltip
...
Tooltip on toggle button
2014-11-18 14:47:13 +01:00
Matthias Bussonnier
fe4bae10ac
Actually typeset latex
2014-11-18 14:37:11 +01:00