##// END OF EJS Templates
Fix various warnings for broken references etc
Thomas Kluyver -
Show More
@@ -485,7 +485,7 b' def back_unicode_name_matches(text):'
485 485 Note that snowman is not a valid python3 combining character but will be expanded.
486 486 Though it will not recombine back to the snowman character by the completion machinery.
487 487
488 This will not either back-complete standard sequences like \n, \b ...
488 This will not either back-complete standard sequences like \\n, \\b ...
489 489
490 490 Used on Python 3 only.
491 491 """
@@ -86,11 +86,11 b' class PylabMagics(Magics):'
86 86
87 87 In [3]: %matplotlib qt
88 88
89 You can list the available backends using the -l/--list option
89 You can list the available backends using the -l/--list option::
90 90
91 91 In [4]: %matplotlib --list
92 92 Available matplotlib backends: ['osx', 'qt4', 'qt5', 'gtk3', 'notebook', 'wx', 'qt', 'nbagg',
93 'gtk', 'tk', 'inline']
93 'gtk', 'tk', 'inline']
94 94 """
95 95 args = magic_arguments.parse_argstring(self.matplotlib, line)
96 96 if args.list:
@@ -190,6 +190,8 b' Profiles allow you to use IPython for different tasks, keeping separate config'
190 190 files and history for each one. More details in :ref:`the profiles section
191 191 <profiles>`.
192 192
193 .. _startup_files:
194
193 195 Startup Files
194 196 -------------
195 197
@@ -11,7 +11,7 b' GitHub stats for 2015/02/27 - 2015/04/03 (since 3.0)'
11 11 These lists are automatically generated, and may be incomplete or contain duplicates.
12 12
13 13 We closed 46 issues and merged 133 pull requests.
14 The full list can be seen `on GitHub <https://github.com/ipython/ipython/milestones/3.1>`_.
14 The full list can be seen `on GitHub <https://github.com/ipython/ipython/milestones/3.1>`__.
15 15
16 16 The following 33 authors contributed 344 commits:
17 17
@@ -58,7 +58,7 b' GitHub stats for 2014/04/02 - 2015/02/13 (since 2.0)'
58 58 These lists are automatically generated, and may be incomplete or contain duplicates.
59 59
60 60 We closed 469 issues and merged 925 pull requests.
61 The full list can be seen `on GitHub <https://github.com/ipython/ipython/milestones/3.0>`_.
61 The full list can be seen `on GitHub <https://github.com/ipython/ipython/milestones/3.0>`__.
62 62
63 63 The following 155 authors contributed 5975 commits.
64 64
@@ -253,8 +253,8 b' Twisted is itself a Python library. So while Twisted is a very capable'
253 253 framework, we think ZeroMQ fits our needs much better and we hope you will find
254 254 the change to be a significant improvement in the long run.
255 255
256 Our manual contains :ref:`a full description of how to use IPython for parallel
257 computing <parallel_overview>`, and the `tutorial`__ presented by Min
256 Our manual contains a full description of how to use IPython for parallel
257 computing, and the `tutorial`__ presented by Min
258 258 Ragan-Kelley at the SciPy 2011 conference provides a hands-on complement to the
259 259 reference docs.
260 260
@@ -287,7 +287,7 b' that assigning values is pure Python assignment. Simple flags exist for'
287 287 commonly used options, these are always prefixed with '--'.
288 288
289 289 The IPython command-line help has the details of all the options (via
290 ``ipythyon --help``), but a simple example should clarify things; the ``pylab``
290 ``ipython --help``), but a simple example should clarify things; the ``pylab``
291 291 flag can be used to start in pylab mode with the qt4 backend::
292 292
293 293 ipython --pylab=qt
@@ -283,7 +283,7 b' that provide specialized magics. These typically require additional software'
283 283 to run and must be manually loaded via ``%load_ext <extension name>``, but are
284 284 extremely useful. The following extensions are provided:
285 285
286 **Cython magics** (extension :ref:`cythonmagic <extensions_cythonmagic>`)
286 **Cython magics** (extension ``cythonmagic``)
287 287 This extension provides magics to automatically build and compile Python
288 288 extension modules using the Cython_ language. You must install Cython
289 289 separately, as well as a C compiler, for this to work. The examples
@@ -425,7 +425,7 b' of the internal execution parts:'
425 425 The parallel tools now default to using ``NoDB`` as the storage backend for
426 426 intermediate results. This means that the default usage case will have a
427 427 significantly reduced memory footprint, though certain advanced features are
428 not available with this backend. For more details, see :ref:`parallel_db`.
428 not available with this backend.
429 429
430 430 The parallel magics now display all output, so you can do parallel plotting or
431 431 other actions with complex display. The ``px`` magic has now both line and cell
@@ -530,10 +530,7 b' The directory ``docs/resources`` in the source distribution contains SVG and'
530 530 PNG versions of our file icons, as well as an ``Info.plist.example`` file with
531 531 instructions to install them on Mac OSX. This is a first draft of our icons,
532 532 and we encourage contributions from users with graphic talent to improve them
533 in the future:
534
535 .. image:: ../../resources/ipynb_icon_128x128.png
536 :alt: IPython notebook file icon.
533 in the future.
537 534
538 535
539 536 New top-level `locate` command
@@ -212,7 +212,7 b' if __name__ == "__main__":'
212 212
213 213 print("We closed %d issues and merged %d pull requests." % (n_issues, n_pulls))
214 214 if milestone:
215 print("The full list can be seen `on GitHub <https://github.com/%s/milestone/%s>`"
215 print("The full list can be seen `on GitHub <https://github.com/%s/milestone/%s>`__"
216 216 % (project, milestone)
217 217 )
218 218
General Comments 0
You need to be logged in to leave comments. Login now