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

Skip to content

Commit 6285c5e

Browse files
committed
some updates to site docs for release
svn path=/branches/v0_99_maint/; revision=7404
1 parent f5ae89a commit 6285c5e

6 files changed

Lines changed: 43 additions & 42 deletions

File tree

doc/_templates/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{% extends "layout.html" %}
22
{% set title = 'matplotlib: python plotting' %}
33

4-
4+
55
{% block body %}
6-
<h1>mpl</h1>
6+
<h1>intro</h1>
77

88
<p>matplotlib is a python 2D plotting library which produces
99
publication quality figures in a variety of hardcopy formats and
@@ -41,7 +41,7 @@ <h1>mpl</h1>
4141
<a href="http://scipy.org/Numpy_Example_List_With_Doc">numpy</a> and
4242
<a href="api/mlab_api.html">matplotlib.mlab</a>.</p>
4343

44-
<h3>Plotting commands</h3> <br/>
44+
<h3>plotting commands</h3> <br/>
4545

4646
<table border="1" cellpadding="3" cellspacing="2">
4747

doc/_templates/indexsidebar.html

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,26 @@ <h3>News</h3>
22

33
<p>Please <a href="http://sourceforge.net/project/project_donations.php?group_id=80706">donate</a>
44
to support matplotlib development.</p>
5-
6-
<p> Download <a href="https://sourceforge.net/projects/matplotlib/">matplotlib-0.99.0</a>, see <a href="http://matplotlib.sourceforge.net/users/whats_new.html">what's
7-
new</a> and post any bugs to the <a href="http://sourceforge.net/tracker2/?group_id=80706">tracker</a>
5+
6+
<p>matplotlib 0.99 is available for <a href="http://sourceforge.net/projects/matplotlib">download</a>. See <a href="{{ pathto('users/whats_new') }}">what's new</a> and tips on <a href="{{
7+
pathto('users/installing') }}">installing</a>
88
</p>
99

1010
<p>Watch a <a href="http://videolectures.net/mloss08_hunter_mat">video lecture</a> about matplotlib presented at <a href="http://videolectures.net/mloss08_whistler">NIPS 08 Workshop</a> <i>Machine Learning Open Source Software</i></a>.
1111
</p>
1212

13-
<h3>Download</h3>
14-
<p>Current version: <b>{{ version }}</b></p>
15-
16-
17-
<p>Download matplotlib from the
18-
sourceforge <a href="http://sourceforge.net/projects/matplotlib">project</a>
19-
page (but first take a look at the <a href="{{
20-
pathto('users/installing') }}">installing</a> page). Here's a summary
21-
of <a href="{{ pathto('users/whats_new') }}">what's new</a>. </p>
22-
2313
<p>There are several matplotlib addon <a href="{{
2414
pathto('users/toolkits') }}">toolkits</a>, including the projection
2515
and mapping toolkit
26-
<a href="http://matplotlib.sf.net/basemap/doc/html">basemap</a>.</p>
16+
<a href="http://matplotlib.sf.net/basemap/doc/html">basemap</a>, 3d plotting with <a href="{{
17+
pathto('mpl_toolkits/mplot3d/index') }}">mplot3d</a>, wild and wonderful axes and axis helpers in <a href="{{
18+
pathto('mpl_toolkits/axes_grid/index') }}">axes_grid</a> and more.
19+
</p>
2720

2821

2922
<h3>Need help?</h3>
3023

31-
<p>Check the <a href="{{ pathto('users/index') }}">user</a> guide,
24+
<p>Check the <a href="{{ pathto('users/index') }}">user guide</a>,
3225
the <a href="{{ pathto('faq/index') }}">faq</a>, the <a href="{{
3326
pathto('api/index') }}">api</a> docs,
3427
<a href="http://www.nabble.com/matplotlib---users-f2906.html">archives</a>,

doc/faq/installing_faq.rst

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -293,22 +293,20 @@ Installing OSX binaries
293293
-----------------------
294294

295295
If you want to install matplotlib from one of the binary installers we
296-
build, you have two choices: a mpkg installer, which is a typical
296+
build, you have two choices: a dmg installer, which is a typical
297297
Installer.app, or an binary OSX egg, which you can install via
298298
setuptools easy_install.
299-
300-
The mkpg installer will have a "zip" extension, and will have a name
301-
like file:`matplotlib-0.99.0.rc1-py2.5-macosx10.5_mpkg.zip` depending on
302-
the python, matplotlib, and OSX versions. You need to unzip this file
303-
using either the "unzip" command on OSX, or simply double clicking on
304-
it to run StuffIt Expander. When you double click on the resultant
305-
mpkd directory, which will have a name like
306-
file:`matplotlib-0.99.0.rc1-py2.5-macosx10.5.mpkg`, it will run the
307-
Installer.app, prompt you for a password if you need system wide
308-
installation privileges, and install to a directory like
309-
file:`/Library/Python/2.5/site-packages/`, again depedending on your
310-
python version. This directory may not be in your python path, so you
311-
can test your installation with::
299+
300+
The mkpg installer will have a "dmg" extension, and will have a name
301+
like :file:`matplotlib-0.99.0-py2.5-macosx10.5.dmg` depending on the
302+
python, matplotlib, and OSX versions. Save this file and double
303+
click it, which will open up a folder with a file in it that has the
304+
mpkg extension. Double click this to run the Installer.app, which
305+
will prompt you for a password if you need system wide installation
306+
privileges, and install to a directory like
307+
:file:`/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages`,
308+
again depedending on your python version. This directory should be in
309+
your python path, so you can test your installation with::
312310

313311
> python -c 'import matplotlib; print matplotlib.__version__, matplotlib.__file__'
314312

@@ -320,9 +318,9 @@ If you get an error like::
320318

321319
then you will need to set your PYTHONPATH, eg::
322320

323-
export PYTHONPATH=/Library/Python/2.5/site-packages:$PYTHONPATH
321+
export PYTHONPATH=/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages:$PYTHONPATH
324322

325-
See also ref:`environment-variables`.
323+
See also :ref:`environment-variables`.
326324

327325
.. _easy-install-osx-egg:
328326

doc/users/annotations.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
Annotating text
44
===============
55

6+
For a more detailed introduction to annotations, see
7+
:ref:`plotting-guide-annotation`.
8+
69
The uses of the basic :func:`~matplotlib.pyplot.text` command above
710
place text at an arbitrary position on the Axes. A common use case of
811
text is to annotate some feature of the plot, and the

doc/users/plotting.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,5 +152,4 @@ Annotating plot
152152

153153
:ref:`plotting-guide-annotation`
154154

155-
TODO; see :ref:`how-to-contribute-docs`.
156155

doc/users/whats_new.rst

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
.. _whats-new:
22

3-
***************************
3+
************************
44
What's new in matplotlib
5-
***************************
5+
************************
66

7-
.. _whats-new-svn:
7+
This page just covers the highlights -- for the full story, see the
8+
`CHANGELOG <http://matplotlib.sourceforge.net/_static/CHANGELOG>`_
89

9-
What new in matplotlib-0.99
10-
=============================
10+
new in matplotlib-0.99
11+
======================
1112

1213
.. _whats-new-mplot3d:
1314

@@ -50,10 +51,17 @@ well as "detach" the spine to offset it away from the data. See
5051

5152
.. plot:: pyplots/whats_new_99_spines.py
5253

54+
55+
New documentation
56+
-----------------
57+
58+
jae-Joon Lee has written two new guides :ref:`plotting-guide-legend`
59+
and :ref:`plotting-guide-annotation`.
60+
5361
.. _whats-new-0-98-4:
5462

55-
What new in 0.98.4
56-
==============================
63+
new in 0.98.4
64+
=============
5765

5866
It's been four months since the last matplotlib release, and there are
5967
a lot of new features and bug-fixes.

0 commit comments

Comments
 (0)