Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f38065d

Browse files
committed
Merge pull request #1243 from mdboom/issue1243
Fixed broken doc links
2 parents 4a0c11c + 950ac54 commit f38065d

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

doc/contents.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Overview
88
:Release: |version|
99
:Date: |today|
1010

11-
Download `PDF <http://matplotlib.sf.net/Matplotlib.pdf>`_
11+
Download `PDF <Matplotlib.pdf>`_
1212

1313

1414
.. toctree::

doc/devel/release_guide.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ Packaging
8888

8989
* We have a Makefile for the win32 mingw builds in the mpl source dir
9090
:file:`release/win32` which you can use this to prepare the windows
91-
releases, but this is currently broken for python2.6 as described at
92-
http://www.nabble.com/binary-installers-for-python2.6--libpng-segfault%2C-MSVCR90.DLL-and-%09mingw-td23971661.html
91+
releases.
9392

9493
.. _release-candidate-testing:
9594

doc/faq/howto_faq.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -756,8 +756,10 @@ Cite Matplotlib
756756
===============
757757

758758
If you want to refer to matplotlib in a publication, you can use
759-
"Matplotlib: A 2D Graphics Environment" by J. D. Hunter In Computing in Science &
760-
Engineering, Vol. 9, No. 3. (2007), pp. 90-95 (see `citeulike <http://www.citeulike.org/user/jabl/article/2878517>`_)::
759+
"Matplotlib: A 2D Graphics Environment" by J. D. Hunter In Computing
760+
in Science & Engineering, Vol. 9, No. 3. (2007), pp. 90-95 (see `IEEE
761+
Xplore
762+
<http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=4160265&url=http%3A%2F%2Fieeexplore.ieee.org%2Fxpls%2Fabs_all.jsp%3Farnumber%3D4160265>`_)::
761763

762764
@article{Hunter:2007,
763765
Address = {10662 LOS VAQUEROS CIRCLE, PO BOX 3014, LOS ALAMITOS, CA 90720-1314 USA},

lib/matplotlib/contour.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def clabel(self, *args, **kwargs):
7171
Optional keyword arguments:
7272
7373
*fontsize*:
74-
See http://matplotlib.sf.net/fonts.html
74+
size in points or relative size eg 'smaller', 'x-large'
7575
7676
*colors*:
7777
- if *None*, the color of each label matches the color of

lib/matplotlib/dates.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
:class:`matplotlib.dates.rrulewrapper`. The
8787
:class:`rrulewrapper` is a simple wrapper around a
8888
:class:`dateutils.rrule` (`dateutil
89-
<https://moin.conectiva.com.br/DateUtil>`_) which allow almost
89+
<http://labix.org/python-dateutil>`_) which allow almost
9090
arbitrary date tick specifications. See `rrule example
9191
<../examples/pylab_examples/date_demo_rrule.html>`_.
9292
@@ -302,13 +302,13 @@ def drange(dstart, dend, delta):
302302
delta.microseconds/MUSECONDS_PER_DAY)
303303
f1 = _to_ordinalf(dstart)
304304
f2 = _to_ordinalf(dend)
305-
305+
306306
num = int(np.ceil((f2-f1)/step)) #calculate the difference between dend and dstart in times of delta
307307
dinterval_end = dstart + num*delta #calculate end of the interval which will be generated
308308
if dinterval_end >= dend: #ensure, that an half open interval will be generated [dstart, dend)
309309
dinterval_end -= delta #if the endpoint is greated than dend, just subtract one delta
310310
num -= 1
311-
311+
312312
f2 = _to_ordinalf(dinterval_end) #new float-endpoint
313313
return np.linspace(f1, f2, num+1)
314314

0 commit comments

Comments
 (0)