8000 mminor updates to docs · matplotlib/matplotlib@d020fac · GitHub
[go: up one dir, main page]

Skip to content

Commit d020fac

Browse files
committed
mminor updates to docs
svn path=/trunk/matplotlib/; revision=91
1 parent fcfa120 commit d020fac

19 files changed

+33
-29
lines changed

LICENSE

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LICENSE AGREEMENT FOR MATPLOTLIB 0.32b
1+
LICENSE AGREEMENT FOR MATPLOTLIB 0.40i
22
--------------------------------------
33

44
1. This LICENSE AGREEMENT is between the John D. Hunter ("JDH"), and
@@ -9,30 +9,30 @@ documentation.
99
2. Subject to the terms and conditions of this License Agreement, JDH
1010
hereby grants Licensee a nonexclusive, royalty-free, world-wide
1111
license to reproduce, analyze, test, perform and/or display publicly,
12-
prepare derivative works, distribute, and otherwise use matplotlib 0.32b
12+
prepare derivative works, distribute, and otherwise use matplotlib 0.40i
1313
alone or in any derivative version, provided, however, that JDH's
1414
License Agreement and JDH's notice of copyright, i.e., "Copyright (c)
1515
2002, 2003 John D. Hunter; All Rights Reserved" are retained in
16-
matplotlib 0.32b alone or in any derivative version prepared by
16+
matplotlib 0.40i alone or in any derivative version prepared by
1717
Licensee.
1818

1919
3. In the event Licensee prepares a derivative work that is based on
20-
or incorporates matplotlib 0.32b or any part thereof, and wants to make
20+
or incorporates matplotlib 0.40i or any part thereof, and wants to make
2121
the derivative work available to others as provided herein, then
2222
Licensee hereby agrees to include in any such work a brief summary of
23-
the changes made to matplotlib 0.32b.
23+
the changes made to matplotlib 0.40i.
2424

25-
4. JDH is making matplotlib 0.32b available to Licensee on an "AS IS"
25+
4. JDH is making matplotlib 0.40i available to Licensee on an "AS IS"
2626
basis. JDH MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
2727
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, JDH MAKES NO AND
2828
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
29-
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.32b WILL NOT
29+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.40i WILL NOT
3030
INFRINGE ANY THIRD PARTY RIGHTS.
3131

3232
5. JDH SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF
33-
MATPLOTLIB 0.32b FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES
33+
MATPLOTLIB 0.40i FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES
3434
OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
35-
MATPLOTLIB 0.32b, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE
35+
MATPLOTLIB 0.40i, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE
3636
POSSIBILITY THEREOF.
3737

3838
6. This License Agreement will automatically terminate upon a material
@@ -44,6 +44,6 @@ Licensee. This License Agreement does not grant permission to use JDH
4444
trademarks or trade name in a trademark sense to endorse or promote
4545
products or services of Licensee, or any third party.
4646

47-
8. By copying, installing or otherwise using matplotlib 0.32b, Licensee
47+
8. By copying, installing or otherwise using matplotlib 0.40i, Licensee
4848
agrees to be bound by the terms and conditions of this License
4949
Agreement.

MANIFEST

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ examples/data_helper.py
2121
examples/dynamic_demo.py
2222
examples/embedding_in_gtk.py
2323
examples/embedding_in_gtk2.py
24+
examples/embedding_in_wx.py
2425
examples/errorbar_demo.py
2526
examples/figtext.py
2627
examples/gdtest.py

TODO

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,5 +154,8 @@
154154
-- DONE 2003-11-20 - problem with stale _set_font. legend axes box
155155
doesn't resize on save in GTK backend -- see htdocs legend_demo.py
156156

157+
-- DONE 2003-11-21 - make a dash-dot dict for the GC
157158

158-
-- make a dash-dot dict for the GC
159+
-- dashes broken in GTK backend on win32?
160+
161+
-- finish XVFB architecture

examples/arctest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ def f(t):
1111
l = plot(t1, f(t1), 'ro')
1212
set(l, 'markersize', 30)
1313
set(l, 'markerfacecolor', 'b')
14-
savefig('arctest', dpi=150)
14+
#savefig('arctest', dpi=150)
1515
show()
1616

examples/axes_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@
3737
set(a, 'xticks', [])
3838
set(a, 'yticks', [])
3939

40-
savefig('axes_demo', dpi=150)
40+
#savefig('axes_demo', dpi=150)
4141
show()

examples/axes_props.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# keyword args are legal too
2828
#set(xticklabels, color='r', fontsize=12)
2929

30-
savefig('axprops_demo')
30+
#savefig('axprops_demo')
3131
show()
3232

3333

@@ -58,7 +58,7 @@
5858
label.set_color('r')
5959
label.set_fontsize(12)
6060
61-
savefig('axprops_demo')
61+
#savefig('axprops_demo')
6262
show()
6363
6464
"""

examples/barchart_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222

2323
legend( (p1[0], p2[0]), ('Men', 'Women') )
2424
#axis([-10, 10, -10, 100])
25-
savefig('barchart_demo')
25+
#savefig('barchart_demo')
2626
show()

examples/figtext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ def f(t):
2525
title('subplot 2')
2626
ylabel('Undamped')
2727

28-
savefig('figtext')
28+
#savefig('figtext')
2929
show()
3030

examples/gdtest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ def f(t):
3030
ax = gca()
3131

3232

33-
savefig('gdtest', dpi=150)
33+
#savefig('gdtest', dpi=150)
3434
show()

examples/legend_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
set(gca(), 'yticklabels', [])
2121
set(gca(), 'xticklabels', [])
2222

23-
savefig('legend_demo')
23+
#savefig('legend_demo')
2424
show()
2525

2626

0 commit comments

Comments
 (0)
0