Fernando Perez
e9d744f06c
Add quick help button: broken ATM, style and binding aren't working.
...
Help needed here, will discuss during pull request before merging.
14 years ago
Fernando Perez
6d0715988f
Change button labels in restart dialog to action words.
14 years ago
Fernando Perez
e852a86669
Add confirmation dialog to kernel restart action.
14 years ago
Fernando Perez
e41ba5a75c
Refactor line num. toggle into proper function, access via C-m-l.
...
This makes the keybinding consistent with the rest, updated help dialog.
14 years ago
Fernando Perez
8fb9f71e42
Use monospaced font for keybinding display.
14 years ago
Fernando Perez
e8326241eb
Add C-m-{'i', '.'} as keybindings for kernel interrupt/restart.
14 years ago
Fernando Perez
3db974a4f4
Padding adjustments to better use vertical and horizontal whitespace.
...
Verified that all prompts align correctly on linux/chrome + ffox, and
that input prompts up to 4 digits long still fit.
14 years ago
Fernando Perez
e00e604144
Add Ctrl-L as a way to toggle line-numbers for any individual code cell
14 years ago
MinRK
7041224f96
fix typo in stripping kernel args in nb and qt
...
closes #885
14 years ago
Fernando Perez
13377a2d23
Merge branch 'carreau-mathjax-warning'
...
Warn user if MathJax can't be fetched from notebook
Closes #744 .
14 years ago
Fernando Perez
87462b4259
Minor fixes to text and formatting of error message.
14 years ago
Fernando Perez
df43150509
Merge pull request #850 from fperez/codemirror
...
Update codemirror to 2.15 and make the code internally more version-agnostic.
Added our own README file with information about what changes we carry to upstream CodeMirror and what version we currently use.
14 years ago
Matthias BUSSONNIER
85ea4222fb
Hide warning message about matjax when page load
...
also fix Matjax->MathJax
14 years ago
Matthias BUSSONNIER
b05d2c21a9
Matjax Warning message improvement.
...
merge '<script>' balises.
Improve message text and style.
Remove instead of hide
14 years ago
Fernando Perez
00af93da43
IPython-specific changes to CodeMirror: recognize '?' in Python mode.
14 years ago
MinRK
52592d47b1
fix missing trailing comma in kernel.js
14 years ago
Matthias BUSSONNIER
4d5e605082
Warn user if MathJax can't be fetched from notebook
...
closes #744
14 years ago
MinRK
4d7ef4899e
enable HMAC message signing by default in notebook kernels
...
This is separate from previous, because it is more likely to be rejected.
It requires the the Session objects in Handlers get a reference all the way back up to the IPython App that started the environment.
14 years ago
MinRK
b01c6ef0c4
use zmq.KernelManager to manage individual kernels in notebook
...
This means that proper restart is now available, rather than
killing and starting a new kernel, breaking connections to
secondary frontends.
14 years ago
MinRK
e38729c9b2
fix kernel_argv scrubbing to cover args passed with space
...
$> ipqt --shell 12345
would not scrub the port, previously
14 years ago
MinRK
4eb4926812
use ROUTER/DEALER sockets for stdin
...
stdin requests are now directed to the frontend that made the execution
request that called raw_input.
allow_stdin flag added to execution_request to indicate whether stdin_requests are allowed.
StdInNotImplementedError exception class added to IPython.core.error, and is raised if raw_input is called from execute requests where allow_input is undefined.
closes gh-673
14 years ago
Fernando Perez
b8bab4a051
Update templates to new directory name for codemirror.
15 years ago
Fernando Perez
9cca38f452
Do not use version # in codemirror directory name.
...
Simply call it 'codemirror', so we don't have explicit version numbers
inside a bunch of files.
A file called ipython-version-N.NN will be kept to easily let us know
which version we're shipping with IPython.
15 years ago
Fernando Perez
6b0fdf2356
Update CodeMirror code to v2.15
15 years ago
Fernando Perez
43a4db17e6
Merge pull request #830 from minrk/stream
...
Several improvements to stdout/stderr handling and visual layout of cells.
Now stdout and stderr are kept contiguous (in a single div) if they are being written to continuously, and stderr is shown with a light red background to help distinguish from stdout.
Further, input cells now have a light gray background to help distinguish them from plain stdout areas.
15 years ago
MinRK
940d636656
fix Input prompt/code alignment
...
with note for future reference
15 years ago
MinRK
30028c3ca0
round corner and light bg on code areas
...
c/o @fperez
15 years ago
Fernando Perez
eba1a8c796
Merge pull request #801 from takluyver/py3-notebook
...
Gets the notebook working under Python3.
15 years ago
MinRK
c022dca01a
small CSS adjustments in notebook
...
* add think border around input area
* change background instead of foreground on stderr
* only stderr/stdout are output_stream, general text (including streams) is output_text
* reduce vertical padding on stream output, per @fperez
15 years ago
Bernardo B. Marques
8e32204222
remove all trailling spaces
15 years ago
Thomas Kluyver
609e4134ff
Decode data for saving notebook, allowing saving in Python 3.
15 years ago
MinRK
788d7e6348
allow stdout/stderr to have distinct css
...
make stderr output darkred
15 years ago
MinRK
a9d9a8b72c
support contiguous stream output in notebook
...
Consecutive messages to stdout or stderr will not be split
into separate divs, until a new message to different stream
arrives.
Appending will only occur when the latest output is the same
as the new one. Interleaving messages will still result in
multiple divs.
15 years ago
Thomas Kluyver
0f5c0f67c9
Fix for notebook in Python 3.
15 years ago
MinRK
5dd7dce0b2
fix installation of zmq IOLoop into tornado
...
incorrectly overrode the module, rather than the class in the module, which is more reliable.
15 years ago
Brian Granger
b7ab64f304
fixConsole no longer trims the final text.
15 years ago
MinRK
3ee19c6563
only store hashed user_id in notebook cookie
...
hashed user_id is used for authentication, rather than hashed password. Thus, user cookie is only set after authentication succeeds.
15 years ago
Brian E. Granger
98393e9a28
Merge branch 'enh/httpauth' of https://github.com/satra/ipython into satra-enh/httpauth
15 years ago
MinRK
d11ef986a4
authenticate Websockets with the session cookie
...
Now all Notebook connections are authenticated.
15 years ago
MinRK
152fe1b6f1
Authenticate all notebook requests (except websockets)
...
* BaseHandler renamed AuthenticatedHandler
* also clears cookies if invalid, to prevent repeated 'Invalid cookie signature' warning messages.
15 years ago
MinRK
dbfe19f6e2
notebook auth adjustments
...
* keyword -> password
* removed password alias
* add login.html as template
* new cookie key for each Server instance
15 years ago
Brian E. Granger
8c76fcf71c
Fixing Ctrl-Enter on Firefox.
15 years ago
Satrajit Ghosh
00986be4f8
fix: added keyword to notebook aliases
15 years ago
Satrajit Ghosh
546a0147fb
fix: changed keyword input field to type password
15 years ago
MinRK
549cf4ee2a
fix undefined 'session_id' member in kernel.js
15 years ago
Satrajit Ghosh
c4d90c8a08
enh: added authentication ability for webapp
15 years ago
Brian E. Granger
1021c3dc88
Merge branch 'fix/https' of https://github.com/satra/ipython into satra-fix/https
15 years ago
Brian E. Granger
c6d030761e
Merge branch 'placeholder' of https://github.com/minrk/ipython into minrk-placeholder
15 years ago
MinRK
3aed0a0b94
use null char to start text cell placeholders
15 years ago
Satrajit Ghosh
7d0467df1c
fix: applied fernando's if simplification fix
15 years ago