##// END OF EJS Templates
Merge pull request #4022 from ivanov/doc-links...
Paul Ivanov -
r12185:6537445b merge
parent child Browse files
Show More
@@ -156,14 +156,15 b' class="notebook_app"'
156 156 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Help</a>
157 157 <ul class="dropdown-menu">
158 158 <li><a href="http://ipython.org/documentation.html" target="_blank">IPython Help</a></li>
159 <li><a href="http://ipython.org/ipython-doc/stable/interactive/htmlnotebook.html" target="_blank">Notebook Help</a></li>
159 <li><a href="http://ipython.org/ipython-doc/stable/interactive/notebook.html" target="_blank">Notebook Help</a></li>
160 160 <li id="keyboard_shortcuts"><a href="#">Keyboard Shortcuts</a></li>
161 161 <li class="divider"></li>
162 162 <li><a href="http://docs.python.org" target="_blank">Python</a></li>
163 163 <li><a href="http://docs.scipy.org/doc/numpy/reference/" target="_blank">NumPy</a></li>
164 164 <li><a href="http://docs.scipy.org/doc/scipy/reference/" target="_blank">SciPy</a></li>
165 <li><a href="http://matplotlib.org/" target="_blank">Matplotlib</a></li>
165 166 <li><a href="http://docs.sympy.org/dev/index.html" target="_blank">SymPy</a></li>
166 <li><a href="http://matplotlib.sourceforge.net/" target="_blank">Matplotlib</a></li>
167 <li><a href="http://pandas.pydata.org/pandas-docs/stable/" target="_blank">pandas</a></li>
167 168 </ul>
168 169 </li>
169 170 </ul>
@@ -44,7 +44,7 b' for playing with examples from documentation, such as matplotlib.'
44 44
45 45 .. sourcecode:: ipython
46 46
47 In [6]: %load http://matplotlib.sourceforge.net/plot_directive/mpl_examples/mplot3d/contour3d_demo.py
47 In [6]: %load http://matplotlib.org/plot_directive/mpl_examples/mplot3d/contour3d_demo.py
48 48
49 49 In [7]: from mpl_toolkits.mplot3d import axes3d
50 50 ...: import matplotlib.pyplot as plt
@@ -1013,7 +1013,7 b' object, do::'
1013 1013
1014 1014 %gui wx
1015 1015
1016 For information on IPython's Matplotlib integration (and the ``matplotlib``
1016 For information on IPython's matplotlib_ integration (and the ``matplotlib``
1017 1017 mode) see :ref:`this section <matplotlib_support>`.
1018 1018
1019 1019 For developers that want to use IPython's GUI event loop integration in the
@@ -1088,7 +1088,7 b' neither v2 PyQt nor PySide work.'
1088 1088 Plotting with matplotlib
1089 1089 ========================
1090 1090
1091 `Matplotlib`_ provides high quality 2D and 3D plotting for Python. Matplotlib
1091 matplotlib_ provides high quality 2D and 3D plotting for Python. matplotlib_
1092 1092 can produce plots on screen using a variety of GUI toolkits, including Tk,
1093 1093 PyGTK, PyQt4 and wxPython. It also provides a number of commands useful for
1094 1094 scientific computing, all with a syntax compatible with that of the popular
@@ -1104,8 +1104,6 b' backend value, which produces static figures inlined inside the application'
1104 1104 window instead of matplotlib's interactive figures that live in separate
1105 1105 windows.
1106 1106
1107 .. _Matplotlib: http://matplotlib.sourceforge.net
1108
1109 1107 .. _interactive_demos:
1110 1108
1111 1109 Interactive demos with IPython
@@ -1163,3 +1161,4 b' divisions are allowed. If you want to be able to open an IPython'
1163 1161 instance at an arbitrary point in a program, you can use IPython's
1164 1162 embedding facilities, see :func:`IPython.embed` for details.
1165 1163
1164 .. include:: ../links.txt
@@ -31,7 +31,7 b''
31 31 .. _graphviz: http://www.graphviz.org
32 32 .. _Sphinx: http://sphinx.pocoo.org
33 33 .. _`Sphinx reST`: http://sphinx.pocoo.org/rest.html
34 .. _sampledoc: http://matplotlib.sourceforge.net/sampledoc
34 .. _sampledoc: http://matplotlib.org/sampledoc
35 35 .. _reST: http://docutils.sourceforge.net/rst.html
36 36 .. _docutils: http://docutils.sourceforge.net
37 37 .. _lyx: http://www.lyx.org
@@ -12,7 +12,7 b' interactive numerical work. Second, it is easy (often times trivial) to'
12 12 integrate legacy C/C++/Fortran code into Python. Third, a large number of
13 13 high-quality open source projects provide all the needed building blocks for
14 14 numerical computing: numerical arrays (NumPy), algorithms (SciPy), 2D/3D
15 Visualization (Matplotlib, Mayavi, Chaco), Symbolic Mathematics (Sage, Sympy)
15 Visualization (matplotlib_, Mayavi, Chaco), Symbolic Mathematics (Sage, Sympy)
16 16 and others.
17 17
18 18 The IPython project is a core part of this open-source toolchain and is
@@ -86,7 +86,7 b' In addition, the following dependencies are needed to run the demos described'
86 86 in this document.
87 87
88 88 * NumPy and SciPy (http://www.scipy.org)
89 * Matplotlib (http://matplotlib.sourceforge.net/)
89 * matplotlib_ (http://matplotlib.org)
90 90
91 91 The easiest way of obtaining these dependencies is through the Enthought
92 92 Python Distribution (EPD) (http://www.enthought.com/products/epd.php). EPD is
@@ -358,3 +358,4 b" The :meth:`map` method has the same signature as Python's builtin :func:`map`"
358 358 function, but runs the calculation in parallel. More involved examples of using
359 359 :class:`DirectView` are provided in the examples that follow.
360 360
361 .. include:: ../links.txt
General Comments 0
You need to be logged in to leave comments. Login now