8000 last changes for 0.50e · matplotlib/matplotlib@93f79b4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 93f79b4

Browse files
committed
last changes for 0.50e
svn path=/trunk/matplotlib/; revision=124
1 parent ecd0fd6 commit 93f79b4

26 files changed

+40
-37
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.50b
1+
LICENSE AGREEMENT FOR MATPLOTLIB 0.50e
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.50b
12+
prepare derivative works, distribute, and otherwise use matplotlib 0.50e
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.50b alone or in any derivative version prepared by
16+
matplotlib 0.50e 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.50b or any part thereof, and wants to make
20+
or incorporates matplotlib 0.50e 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.50b.
23+
the changes made to matplotlib 0.50e.
2424

25-
4. JDH is making matplotlib 0.50b available to Licensee on an "AS IS"
25+
4. JDH is making matplotlib 0.50e 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.50b WILL NOT
29+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.50e 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.50b FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES
33+
MATPLOTLIB 0.50e FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES
3434
OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
35-
MATPLOTLIB 0.50b, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE
35+
MATPLOTLIB 0.50e, 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.50b, Licensee
47+
8. By copying, installing or otherwise using matplotlib 0.50e, Licensee
4848
agrees to be bound by the terms and conditions of this License
4949
Agreement.

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# Copyright (C) 2003 <jdhunter@ace.bsd.uchicago.edu>
33
# $Header$
44
# $Log$
5+
# Revision 1.17 2004/01/30 21:33:19 jdh2358
6+
# last changes for 0.50e
7+
#
58
# Revision 1.16 2004/01/30 19:58:53 jdh2358
69
# update...
710
#
@@ -100,7 +103,7 @@ htmldocs:
100103
cd htdocs;\
101104
${PYTHON} process_docs.py;\
102105
${PYTHON} convert.py;\
103-
tar cfz site.tar.gz *.html screenshots tut examples
106+
tar cfz site.tar.gz *.html screenshots tut examples gd API_CHANGES
104107

105108
release: ${DISTFILES}
106109
${PYTHON} license.py ${VERSION};\

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/errorbar_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
title('Mean and standard error as a function of distance')
2323

2424

25-
savefig('errorbar_demo')
25+
#savefig('errorbar_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/histogram_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
xlabel('Smarts')
1515
ylabel('Probability')
1616
title('Histogram of IQ: mu=100, sigma=15')
17-
savefig('histogram_demo',dpi=72)
17+
#savefig('histogram_demo',dpi=72)
1818
show()

examples/legend_demo.py

Lines changed: 1 addition & 1 deletion
E377
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

examples/legend_demo2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
legend( (l2, l4), ('oscillatory', 'damped'), 'upper right')
13-
savefig('legend_demo2')
13+
#savefig('legend_demo2')
1414
show()
1515

1616

examples/log_demo.py

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

1212
subplot(313)
1313
loglog(t, exp(-t/10.0))
14-
savefig('log_demo')
14+
#savefig('log_demo')
1515
show()

examples/logo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
axis([1, 1.72,-60, 10])
2121
set(gca(), 'xticklabels', [])
2222
set(gca(), 'yticklabels', [])
23-
savefig('logo2.png', dpi=300)
23+
#savefig('logo2.png', dpi=300)
2424
show()

examples/mri_demo.py

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

1010
pcolor(im, shading='flat')
1111
axis('off')
12-
savefig('mri_demo')
12+
#savefig('mri_demo')
1313
show()

examples/mri_with_eeg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@
5454
xlabel('time (s)')
5555

5656

57-
savefig('mri_with_eeg')
57+
#savefig('mri_with_eeg')
5858
show()

examples/multiple_figs_demo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
set(gca(), 'xticklabels', [])
2222

2323
#figure(1)
24-
savefig('fig1')
24+
#savefig('fig1')
2525
#figure(2)
26-
savefig('fig2')
26+
#savefig('fig2')
2727

2828
show()

examples/pcolor_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def func3(x,y):
1616
pcolor(X, Y, Z, shading='flat')
1717
#axis([-3, 3, -3, 3])
1818
#axis('off')
19-
savefig('pcolor_demo')
19+
#savefig('pcolor_demo')
2020
show()
2121

2222

examples/psd_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
figure(2)
1818
psd(s, 512, 1/dt)
19-
savefig('psd_demo')
19+
#savefig('psd_demo')
2020
show()
2121

2222
"""

examples/pstest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ def f(t):
2626

2727
ylabel('Signal 2', fontsize=12)
2828
xlabel('time (s)', fontsize=12)
29-
savefig('pstest')
29+
#savefig('pstest')
3030
show()
3131

examples/scatter_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
c = rand(30)
77
scatter(x,y,s,c)
88
axis([0, 1, 0, 1])
9-
savefig('scatter_demo')
9+
#savefig('scatter_demo')
1010
show()

examples/simple_plot.py

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

1212
#grid(True)
1313
#set(gca(), 'xticks', (0,.2,.7))
14-
savefig('test2')
14+
#savefig('test2')
1515
show()

examples/stock_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
set(gca(), 'xlim', [0, 3])
1111
title('INTC vs AAPL')
1212
legend( ('INTC', 'AAPL') )
13-
savefig('stock_demo')
13+
#savefig('stock_demo')
1414
show()
1515

1616

examples/subplot_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ def f(t):
2121
xlabel('time (s)')
2222
ylabel('Undamped')
2323

24-
savefig('subplot_demo', dpi=600)
24+
#savefig('subplot_demo', dpi=600)
2525
show()
2626

examples/text_themes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ def f(t):
1919
xlabel('time (s)', font)
2020
ylabel('voltage (mV)', font)
2121

22-
savefig('text_themes')
22+
#savefig('text_themes')
2323
show()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
data.extend(glob.glob('images/*.xpm'))
1010

1111
setup(name="matplotlib",
12-
version= '0.50b',
12+
version= '0.50e',
1313
description = "Matlab style python plotting package",
1414
author = "John D. Hunter",
1515
author_email="jdhunter@ace.bsd.uchicago.edu",

0 commit comments

Comments
 (0)
0