Commit Graph

9631 Commits

Author SHA1 Message Date
wenjun.swj
184e1e28fe typo 2016-07-25 12:05:22 +08:00
wenjun.swj
17a7fe76a9 encode file name in Content-Disposition when it contains non-ascii characters 2016-07-25 11:51:34 +08:00
Matthias Bussonnier
52bade4f01 Merge pull request #1614 from staeiou/master
Add info on how to launch master branch install
2016-07-20 16:03:53 -07:00
Stuart Geiger
cad19f86bf Add info on how to launch master branch install 2016-07-16 08:26:01 -07:00
Matthias Bussonnier
7607db428b Merge pull request #1603 from minrk/rm-docker-readme
remove outdated/false docker info from README
2016-07-08 15:25:07 -07:00
Min RK
79e899a87b remove outdated/false docker info from README
the jupyter/notebok docker image is gone, leaving only various docker-stacks
2016-07-08 15:51:40 +02:00
Thomas Kluyver
1176f29c61 Merge pull request #1599 from minrk/validate_nb
fix notebook validation
2016-07-07 15:23:17 +01:00
Min RK
02a81adf3e test opening an invalid notebook
ensure we get a validation failed message
2016-07-07 15:03:22 +02:00
Min RK
6768b89407 fix notebook validation
validate was imported from traitlets in #1527, clobbering validate from nbformat
2016-07-06 14:01:34 +02:00
Min RK
b2641bb44f Merge pull request #1598 from willingc/contrib
Remove general install link
2016-07-06 11:18:42 +02:00
Carol Willing
3fb49c795d Remove general install link 2016-07-05 21:35:11 -07:00
Thomas Kluyver
797227b4ad Merge pull request #1591 from blink1073/use-xterm
Switch to xterm for the terminal emulator
2016-07-05 22:06:57 +01:00
Peter Parente
2473efcb3d Update Distributing Jupyter Extensions doc
* Add tarball_bundler example inline
* Add tarball_bundler example to bundler doc too
* Cross-ref from distributing doc to doc about writing extensions

(c) Copyright IBM Corp. 2016
2016-07-05 14:53:00 -04:00
Peter Parente
4a3386663c New bundler extensions developer doc
* Improve some docstrings too
* Fix a busted extension link along the way

(c) Copyright IBM Corp. 2016
2016-07-05 13:12:03 -04:00
Steven Silvester
f74608ddaa Remove check for term.js file 2016-07-05 11:55:23 -05:00
Min RK
c99cd2b330 Merge pull request #1592 from jupyter/pandoc-requirement
Note that pandoc is required to build docs
2016-07-05 17:13:17 +02:00
Peter Parente
d6e81fef15 Note that pandoc is required for doc 2016-07-05 11:10:52 -04:00
Steven Silvester
d0708614b5 Add missing webpack loaders 2016-07-05 09:33:26 -05:00
Steven Silvester
d223e96fe1 Switch to xterm for the terminal emulator 2016-07-05 09:09:01 -05:00
Peter Parente
c82cce050b Fix missed bundler -> bundlerextensions renames
In notebook.json config

(c) Copyright IBM Corp. 2016
2016-07-04 17:41:46 -04:00
Peter Parente
4412b4bd6c Improve bundler list output
Include label and module name (if available) to
help a user remember which Python module provides
which bundler(s)

(c) Copyright IBM Corp. 2016
2016-07-04 17:34:10 -04:00
Peter Parente
352d3830fd Add bundler CLI tests
(c) Copyright IBM Corp. 2016
2016-07-03 22:28:56 -04:00
Peter Parente
7e7c25b405 Add missing copyright
(c) Copyright IBM Corp. 2016
2016-07-03 22:09:45 -04:00
Peter Parente
4828410c26 Bundler API tests
(c) Copyright IBM Corp. 2016
2016-07-03 21:57:06 -04:00
Peter Parente
ebcfebcfd0 Add bundler tool test cases
(c) Copyright IBM Corp. 2016
2016-07-03 16:49:26 -04:00
Peter Parente
4f81b71512 Make BundlerTools a module
It has no instance state. It should be a module that bundlers optionally import.

(c) Copyright IBM Corp. 2016
2016-07-03 16:49:08 -04:00
Peter Parente
99b6aa4bd0 Docstring cleanup
(c) Copyright IBM Corp. 2016
2016-07-03 16:24:28 -04:00
Peter Parente
d5f47d2d53 Add zip bundler as an example
(c) Copyright IBM Corp. 2016
2016-07-02 23:16:06 -04:00
Peter Parente
3a9a0f5f74 Add jupyter bundler extension list command
Cleanup more bundler vs bundlerextension refs

(c) Copyright IBM Corp. 2016
2016-07-02 23:15:47 -04:00
Peter Parente
40b2c2fe72 Stable sort bundler menu items
(c) Copyright IBM Corp. 2016
2016-07-02 15:22:55 -04:00
Peter Parente
de7753402b Cleanup CLI naming
Based on first review by @minrk

* bundlerextension for consistency
* Move CLI entry point into bundler package
* Add bundler/__main__.py

(c) Copyright IBM Corp. 2016
2016-07-02 14:57:10 -04:00
Peter Parente
8fb670904b First pass migrating from jupyter_cms
* Change handler for consistency with nbconvert
* Change bundler function API to take ContentManager models
* Change CLI to work as jupyter bundler
* Change UI to fit into existing template / JS structure

(c) Copyright IBM Corp. 2016
2016-07-02 14:36:17 -04:00
Min RK
53ab302a98 Merge pull request #1573 from takluyver/fix-backspace-in-output
Process backspace characters in output
2016-06-29 17:51:31 +02:00
Thomas Kluyver
e83d490a89 Fix silly Javascript 2016-06-29 11:49:26 +01:00
Thomas Kluyver
e7d1950aaf Add tests and hope 2016-06-29 11:40:19 +01:00
Thomas Kluyver
1b4af762e0 Merge pull request #1577 from mkoske/fix/hide-files-on-windows
Fix #1532
2016-06-29 10:49:40 +01:00
Miika Koskela
4486b1e295 Fix #1532 2016-06-29 12:33:02 +03:00
Thomas Kluyver
e77d7ebfb0 Process backspace characters in output
These are like carriage return, but only affect a character before them
instead of the whole line. I've checked that this makes the output from
'man ls' look OK.

Closes gh-1572
2016-06-28 12:50:29 +01:00
Min RK
8a0b8898d7 Merge pull request #1561 from Fitz3012/master
[Post save hook] Raise web.HTTPError on fail
2016-06-26 11:59:02 +02:00
Min RK
48cf6b1c77 Merge pull request #1568 from mgeier/list-css
CSS: Clean up list spacing
2016-06-26 11:57:58 +02:00
Matthias Geier
848d7d1585 CSS: Clean up list spacing
This is closer to what was intended with `* + ul` etc. (see
https://github.com/jupyter/notebook/issues/1392#issuecomment-215022995),
but it is still not really good.
Especially nested lists look awkward.
2016-06-25 11:22:39 +02:00
Min RK
178f9f3edf Merge pull request #1564 from eskirk/list_spacing
Corrected spacing above list elements
2016-06-24 18:42:03 +01:00
Bernhard Liebl
ab8f837ce9 switch from MathJax configuration TeX-AMS_HTML-full to TeX-AMS-MML_HTMLorMML-full 2016-06-24 15:23:32 +02:00
Elliot Kirk
f4dd6d6058 Corrected spacing above list elements 2016-06-23 16:21:24 -07:00
Pierre
2ae49c84f9 [Post save hook] Raise web.HTTPError on fail 2016-06-22 11:41:11 +02:00
Matthias Bussonnier
89be0752f3 Merge pull request #1552 from minrk/ssl_options
avoid clobbering ssl_options.ssl_version
2016-06-21 15:12:38 -07:00
Matthias Bussonnier
7bf60ddf38 Merge pull request #1557 from ssanderson/addcleanup-instead-of-teardown
Use addCleanup instead of tearDown in several test suites.
2016-06-21 10:39:11 -07:00
Scott Sanderson
129f990122 TEST: Use addCleanup in test_sessions_api.
This ensures that directories are correctly cleaned up even if tests
fail during setUp.
2016-06-18 14:41:36 -04:00
Scott Sanderson
53ebb068c9 TEST: Use addCleanup in test_sessionmanager. 2016-06-18 14:41:08 -04:00
Scott Sanderson
d5856dc8b0 TEST: Use addCleanup in test_nbextensions.
This ensures that resources/patches created during setUp are torn down
correctly even if setUp fails.
2016-06-18 14:40:24 -04:00