##// 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 179 The bang can also be present in the right hand side of an assignment, just
180 180 after the equal sign, or separated from it by a white space. In which case the
181 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 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 20 * An enhanced interactive Python shell.
21 21 * A decoupled :ref:`two-process communication model <ipythonzmq>`, which
22 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 24 * An architecture for interactive parallel computing.
25 25
26 26 All of IPython is open source (released under the revised BSD license).
@@ -97,8 +97,7 b' for floating matplotlib windows or::'
97 97 for plotting support with automatically inlined figures. Note that it is now
98 98 possible also to activate pylab support at runtime via ``%pylab``, so you do
99 99 not need to make this decision when starting the server.
100
101 See :ref:`the Notebook docs <htmlnotebook>` for technical details.
100
102 101
103 102 .. _two_process_console:
104 103
@@ -173,8 +172,8 b' Other important new features'
173 172 ----------------------------
174 173
175 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
177 <ssh_tunnels>` ssh tunneling, as do parallel engines.
175 connections to the Controller via ssh. Now, the QtConsole supports ssh tunneling,
176 as do parallel engines.
178 177
179 178 * **relaxed command-line parsing**: 0.11 was released with overly-strict
180 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 164 See ``ipython nbconvert --help`` for more information.
165 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 167 .. _pandoc: http://johnmacfarlane.net/pandoc/
172 168
173 169 Notebook
@@ -149,11 +149,11 b' which can be started from the Help menu.'
149 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 153 to prevent untrusted code from executing on users' behalf when notebooks open.
154 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 157 - Untrusted HTML output is sanitized.
158 158 - Untrusted Javascript is never executed.
159 159 - HTML and Javascript in Markdown are never trusted.
@@ -278,7 +278,7 b' Backwards incompatible changes'
278 278 Adapters are included, so IPython frontends can still talk to kernels that
279 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 282 Read-only support for v4 notebooks has been backported to IPython 2.4.
283 283 Notable changes:
284 284
General Comments 0
You need to be logged in to leave comments. Login now