##// END OF EJS Templates
Merge pull request #6183 from takluyver/pr-whatsnew-6...
Min RK -
r17316:b03e27b3 merge
parent child Browse files
Show More
@@ -128,6 +128,8 b" exclude_patterns = ['whatsnew/pr']"
128 # The name of the Pygments (syntax highlighting) style to use.
128 # The name of the Pygments (syntax highlighting) style to use.
129 pygments_style = 'sphinx'
129 pygments_style = 'sphinx'
130
130
131 # Set the default role so we can use `foo` instead of ``foo``
132 default_role = 'literal'
131
133
132 # Options for HTML output
134 # Options for HTML output
133 # -----------------------
135 # -----------------------
@@ -11,12 +11,82 b' This document describes in-flight development work.'
11 `docs/source/whatsnew/pr` folder
11 `docs/source/whatsnew/pr` folder
12
12
13
13
14 * :class:`~.TextWidget` and :class:`~.TextareaWidget` objects now include a
15 ``placeholder`` attribute, for displaying placeholder text before the
16 user has typed anything.
17
18 * The %load magic can now find the source for objects in the user namespace.
19 To enable searching the namespace, use the ``-n`` option.
20
21 .. sourcecode:: ipython
22
23 In [1]: %load -n my_module.some_function
24
25 * :class:`~.DirectView` objects have a new :meth:`~.DirectView.use_cloudpickle`
26 method, which works like ``view.use_dill()``, but causes the ``cloudpickle``
27 module from PiCloud's `cloud`__ library to be used rather than dill or the
28 builtin pickle module.
29
30 __ https://pypi.python.org/pypi/cloud
31
32 * Added a .ipynb exporter to nbconvert. It can be used by passing `--to notebook`
33 as a commandline argument to nbconvert.
34
35 * New nbconvert preprocessor called :class:`~.ClearOutputPreprocessor`. This
36 clears the output from IPython notebooks.
37
38 * New preprocessor for nbconvert that executes all the code cells in a notebook.
39 To run a notebook and save its output in a new notebook::
40
41 ipython nbconvert InputNotebook --ExecutePreprocessor.enabled=True --to notebook --output Executed
42
14 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
43 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
15
44
16
45
17 Backwards incompatible changes
46 Backwards incompatible changes
18 ------------------------------
47 ------------------------------
19
48
49 * :func:`IPython.core.oinspect.getsource` call specification has changed:
50
51 * `oname` keyword argument has been added for property source formatting
52 * `is_binary` keyword argument has been dropped, passing ``True`` had
53 previously short-circuited the function to return ``None`` unconditionally
54
55 * Removed the octavemagic extension: it is now available as ``oct2py.ipython``.
56
57 * Creating PDFs with LaTeX no longer uses a post processor.
58 Use `nbconvert --to pdf` instead of `nbconvert --to latex --post pdf`.
59
60 * Used https://github.com/jdfreder/bootstrap2to3 to migrate the Notebook to Bootstrap 3.
61
62 Additional changes:
63
64 - Set `.tab-content .row` `0px;` left and right margin (bootstrap default is `-15px;`)
65 - Removed `height: @btn_mini_height;` from `.list_header>div, .list_item>div` in `tree.less`
66 - Set `#header` div `margin-bottom: 0px;`
67 - Set `#menus` to `float: left;`
68 - Set `#maintoolbar .navbar-text` to `float: none;`
69 - Added no-padding convienence class.
70 - Set border of #maintoolbar to 0px
71
72 * Accessing the `container` DOM object when displaying javascript has been
73 deprecated in IPython 2.0 in favor of accessing `element`. Starting with
74 IPython 3.0 trying to access `container` will raise an error in browser
75 javascript console.
76
77 IFrame embedding
78 ````````````````
79
80 The IPython Notebook and its APIs by default will only be allowed to be
81 embedded in an iframe on the same origin.
82
83 To override this, set ``headers[X-Frame-Options]`` to one of
84
85 * DENY
86 * SAMEORIGIN
87 * ALLOW-FROM uri
88
89 See `Mozilla's guide to X-Frame-Options <https://developer.mozilla.org/en-US/docs/Web/HTTP/X-Frame-Options>`_ for more examples.
90
20 .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT.
91 .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT.
21
92
22 No newline at end of file
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now