##// END OF EJS Templates
Fix undefined labels in docs #2
klonuo -
Show More
@@ -179,7 +179,7 b' The later form of expansion supports arbitrary python expression:'
179 The bang can also be present in the right hand side of an assignment, just
179 The bang can also be present in the right hand side of an assignment, just
180 after the equal sign, or separated from it by a white space. In which case the
180 after the equal sign, or separated from it by a white space. In which case the
181 standard output of the command after the bang ``!`` will be split out into lines
181 standard output of the command after the bang ``!`` will be split out into lines
182 in a list-like object (:ref:`IPython Slist`) and assign to the left hand side.
182 in a list-like object and assign to the left hand side.
183
183
184 This allow you for example to put the list of files of the current working directory in a variable:
184 This allow you for example to put the list of files of the current working directory in a variable:
185
185
@@ -20,7 +20,7 b' has three main components:'
20 * An enhanced interactive Python shell.
20 * An enhanced interactive Python shell.
21 * A decoupled :ref:`two-process communication model <ipythonzmq>`, which
21 * A decoupled :ref:`two-process communication model <ipythonzmq>`, which
22 allows for multiple clients to connect to a computation kernel, most notably
22 allows for multiple clients to connect to a computation kernel, most notably
23 the web-based :ref:`notebook <htmlnotebook>`
23 the web-based notebook.
24 * An architecture for interactive parallel computing.
24 * An architecture for interactive parallel computing.
25
25
26 All of IPython is open source (released under the revised BSD license).
26 All of IPython is open source (released under the revised BSD license).
@@ -97,8 +97,7 b' for floating matplotlib windows or::'
97 for plotting support with automatically inlined figures. Note that it is now
97 for plotting support with automatically inlined figures. Note that it is now
98 possible also to activate pylab support at runtime via ``%pylab``, so you do
98 possible also to activate pylab support at runtime via ``%pylab``, so you do
99 not need to make this decision when starting the server.
99 not need to make this decision when starting the server.
100
100
101 See :ref:`the Notebook docs <htmlnotebook>` for technical details.
102
101
103 .. _two_process_console:
102 .. _two_process_console:
104
103
@@ -173,8 +172,8 b' Other important new features'
173 ----------------------------
172 ----------------------------
174
173
175 * **SSH Tunnels**: In 0.11, the :mod:`IPython.parallel` Client could tunnel its
174 * **SSH Tunnels**: In 0.11, the :mod:`IPython.parallel` Client could tunnel its
176 connections to the Controller via ssh. Now, the QtConsole :ref:`supports
175 connections to the Controller via ssh. Now, the QtConsole supports ssh tunneling,
177 <ssh_tunnels>` ssh tunneling, as do parallel engines.
176 as do parallel engines.
178
177
179 * **relaxed command-line parsing**: 0.11 was released with overly-strict
178 * **relaxed command-line parsing**: 0.11 was released with overly-strict
180 command-line parsing, preventing the ability to specify arguments with spaces,
179 command-line parsing, preventing the ability to specify arguments with spaces,
@@ -164,10 +164,6 b' To use nbconvert to convert various file formats::'
164 See ``ipython nbconvert --help`` for more information.
164 See ``ipython nbconvert --help`` for more information.
165 nbconvert depends on `pandoc`_ for many of the translations to and from various formats.
165 nbconvert depends on `pandoc`_ for many of the translations to and from various formats.
166
166
167 .. seealso::
168
169 :ref:`nbconvert`
170
171 .. _pandoc: http://johnmacfarlane.net/pandoc/
167 .. _pandoc: http://johnmacfarlane.net/pandoc/
172
168
173 Notebook
169 Notebook
@@ -149,11 +149,11 b' which can be started from the Help menu.'
149 Security
149 Security
150 ********
150 ********
151
151
152 2.0 introduces a :ref:`security model <notebook_security>` for notebooks,
152 2.0 introduces a security model for notebooks,
153 to prevent untrusted code from executing on users' behalf when notebooks open.
153 to prevent untrusted code from executing on users' behalf when notebooks open.
154 A quick summary of the model:
154 A quick summary of the model:
155
155
156 - Trust is determined by :ref:`signing notebooks<signing_notebooks>`.
156 - Trust is determined by signing notebooks.
157 - Untrusted HTML output is sanitized.
157 - Untrusted HTML output is sanitized.
158 - Untrusted Javascript is never executed.
158 - Untrusted Javascript is never executed.
159 - HTML and Javascript in Markdown are never trusted.
159 - HTML and Javascript in Markdown are never trusted.
@@ -278,7 +278,7 b' Backwards incompatible changes'
278 Adapters are included, so IPython frontends can still talk to kernels that
278 Adapters are included, so IPython frontends can still talk to kernels that
279 implement protocol version 4.
279 implement protocol version 4.
280
280
281 * The :ref:`notebook format <nbformat>` has been updated from version 3 to version 4.
281 * The notebook format has been updated from version 3 to version 4.
282 Read-only support for v4 notebooks has been backported to IPython 2.4.
282 Read-only support for v4 notebooks has been backported to IPython 2.4.
283 Notable changes:
283 Notable changes:
284
284
General Comments 0
You need to be logged in to leave comments. Login now