8000 added xvfb for gtk · matplotlib/matplotlib@28ec387 · GitHub
[go: up one dir, main page]

Skip to content

Commit 28ec387

Browse files
committed
added xvfb for gtk
svn path=/trunk/matplotlib/; revision=96
1 parent 39ca8e2 commit 28ec387

File tree

7 files changed

+41
-14
lines changed

7 files changed

+41
-14
lines changed

CHANGELOG

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@
119119
Fixed a bug in that prevented the manual setting of ticklabel
120120
strings from working properly
121121

122+
2003-11-02 - Do a nearest neighbor color pick on GD when
123+
allocate fails
124+
122125
2003-11-02
123126
- Added pcolor plot
124127
- Added MRI example
@@ -141,4 +144,27 @@
141144

142145
2003-11-16 Finsihed porting GD to new axes API
143146

147+
148+
2003-11-20 - add TM for matlab on website and in docs
149+
150+
151+
2003-11-20 - make a nice errorbar and scatter screenshot
152+
153+
2003-11-20 - auto line style cycling for multiple line types
154+
broken
155+
156+
2003-11-18 (using inkrect) :logical rect too big on gtk backend
157+
158+
2003-11-18 ticks don't reach edge of axes in gtk mode --
159+
rounding error?
160+
161+
2003-11-20 - port Gary's errorbar code to new API before 0.40
162+
163+
2003-11-20 - problem with stale _set_font. legend axes box
164+
doesn't resize on save in GTK backend -- see htdocs legend_demo.py
165+
166+
2003-11-21 - make a dash-dot dict for the GC
167+
168+
2003-12-15 - fix install path bug
169+
144170

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

25-
4. JDH is making matplotlib 0.40i available to Licensee on an "AS IS"
25+
4. JDH is making matplotlib 0.40 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.40i WILL NOT
29+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.40 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.40i FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES
33+
MATPLOTLIB 0.40 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES
3434
OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
35-
MATPLOTLIB 0.40i, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE
35+
MATPLOTLIB 0.40, 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.40i, Licensee
47+
8. By copying, installing or otherwise using matplotlib 0.40, 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
@@ -52,6 +52,7 @@ examples/text_handles.py
5252
examples/text_themes.py
5353
examples/vline_demo.py
5454
examples/wx_demo.py
55+
examples/xvfb_demo.py
5556
examples/data/AAPL.dat
5657
examples/data/INTC.dat
5758
examples/data/eeg.dat

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

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

22-
#savefig('subplot_demo')
22+
savefig('subplot_demo')
2323
show()
2424

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.40',
12+
version= '0.41a',
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