8000 fexed wx to work on windows and linux · matplotlib/matplotlib@125a5ff · GitHub
[go: up one dir, main page]

Skip to content

Commit 125a5ff

Browse files
committed
fexed wx to work on windows and linux
svn path=/trunk/matplotlib/; revision=148
1 parent 973651b commit 125a5ff

File tree

13 files changed

+386
-41
lines changed

13 files changed

+386
-41
lines changed

API_CHANGES

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,16 @@ Migrating code:
6565
FigureCanvas, not a Figure. The examples embedding_in_gtk.py,
6666
embedding_in_gtk2.py, and mpl_with_glade.py all reflect the new
6767
API so use these as a guide.
68+
69+
All prior calls to
70+
71+
figure.draw() and
72+
figure.print_figure(args)
73+
74+
should now be
75+
76+
canvas.draw() and
77+
canvas.print_figure(args)
6878

6979
Apologies for the inconvenience. This refactorization brings
7080
significant more freedom in developing matplotlib and should bring

DEVNOTES

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ http://matplotlib.sourceforge.net
2424
sf> tar xvfz site.tar.gz
2525

2626

27-
### Doing a release
28-
0) Run examples/batch_figs.py w/o errors
27+
### Doing a release
28+
29+
0) Run examples/batch_figs.py w/o errors; run the backend specific
30+
demos (object_picker, anim , embedding*)
2931

3032
0) Remove MANIFEST so it will be rebuilt by MANIFEST.in
3133

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

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

MANIFEST

Lines changed: 313 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,3 +403,316 @@ ttfquery/license.txt
403403
ttfquery/metadata_query.py
404404
ttfquery/ttffiles.py
405405
ttfquery/ttffiles.pyc
406+
win32src/freetype1/freetype/.cvsignore
407+
win32src/freetype1/freetype/freetype.h
408+
win32src/freetype1/freetype/ft_conf.h
409+
win32src/freetype1/freetype/fterrid.h
410+
win32src/freetype1/freetype/ftnameid.h
411+
win32src/freetype1/freetype/header.h
412+
win32src/freetype1/freetype/ttapi.c
413+
win32src/freetype1/freetype/ttcache.c
414+
win32src/freetype1/freetype/ttcache.h
415+
win32src/freetype1/freetype/ttcalc.c
416+
win32src/freetype1/freetype/ttcalc.h
417+
win32src/freetype1/freetype/ttcmap.c
418+
win32src/freetype1/freetype/ttcmap.h
419+
win32src/freetype1/freetype/ttconfig.h
420+
win32src/freetype1/freetype/ttdebug.c
421+
win32src/freetype1/freetype/ttdebug.h
422+
win32src/freetype1/freetype/ttengine.h
423+
win32src/freetype1/freetype/ttextend.c
424+
win32src/freetype1/freetype/ttextend.h
425+
win32src/freetype1/freetype/ttf.def
426+
win32src/freetype1/freetype/ttfile.c
427+
win32src/freetype1/freetype/ttfile.h
428+
win32src/freetype1/freetype/ttgload.c
429+
win32src/freetype1/freetype/ttgload.h
430+
win32src/freetype1/freetype/ttinterp.c
431+
win32src/freetype1/freetype/ttinterp.h
432+
win32src/freetype1/freetype/ttload.c
433+
win32src/freetype1/freetype/ttload.h
434+
win32src/freetype1/freetype/ttmemory.c
435+
win32src/freetype1/freetype/ttmemory.h
436+
win32src/freetype1/freetype/ttmutex.c
437+
win32src/freetype1/freetype/ttmutex.h
438+
win32src/freetype1/freetype/ttobjs.c
439+
win32src/freetype1/freetype/ttobjs.h
440+
win32src/freetype1/freetype/ttraster.c
441+
win32src/freetype1/freetype/ttraster.h
442+
win32src/freetype1/freetype/tttables.h
443+
win32src/freetype1/freetype/tttags.h
444+
win32src/freetype1/freetype/tttypes.h
445+
win32src/freetype1/freetype/arch/amigaos/Makefile.gcc
446+
win32src/freetype1/freetype/arch/amigaos/freetype.c
447+
win32src/freetype1/freetype/arch/amigaos/ft_conf.h
448+
win32src/freetype1/freetype/arch/ansi/freetype.c
449+
win32src/freetype1/freetype/arch/ansi/ft_conf.h
450+
win32src/freetype1/freetype/arch/beos/Makefile
451+
win32src/freetype1/freetype/arch/beos/freetype.c
452+
win32src/freetype1/freetype/arch/beos/ft_conf.h
453+
win32src/freetype1/freetype/arch/beos/ttmutex.c
454+
win32src/freetype1/freetype/arch/debugger/Makefile
455+
win32src/freetype1/freetype/arch/debugger/freetype.c
456+
win32src/freetype1/freetype/arch/debugger/ft_conf.h
457+
win32src/freetype1/freetype/arch/mac/README
458+
win32src/freetype1/freetype/arch/mac/freetype.c
459+
win32src/freetype1/freetype/arch/mac/ft_conf.h
460+
win32src/freetype1/freetype/arch/mac/ttmmap.c
461+
win32src/freetype1/freetype/arch/msdos/Makefile.BC
462+
win32src/freetype1/freetype/arch/msdos/Makefile.MS
463+
win32src/freetype1/freetype/arch/msdos/Makefile.TC
464+
win32src/freetype1/freetype/arch/msdos/Makefile.VC
465+
win32src/freetype1/freetype/arch/msdos/Makefile.dm
466+
win32src/freetype1/freetype/arch/msdos/Makefile.gcc
467+
win32src/freetype1/freetype/arch/msdos/Makefile.wat
468+
win32src/freetype1/freetype/arch/msdos/depend.dos
469+
win32src/freetype1/freetype/arch/msdos/freetype.c
470+
win32src/freetype1/freetype/arch/msdos/ft_conf.h
471+
win32src/freetype1/freetype/arch/msdos/hugefile.c
472+
win32src/freetype1/freetype/arch/msdos/hugemem.c
473+
win32src/freetype1/freetype/arch/msdos/makedep
474+
win32src/freetype1/freetype/arch/os2/Makefile.dm
475+
win32src/freetype1/freetype/arch/os2/Makefile.emx
476+
win32src/freetype1/freetype/arch/os2/Makefile.icc
477+
win32src/freetype1/freetype/arch/os2/Makefile.wat
478+
win32src/freetype1/freetype/arch/os2/freetype.c
479+
win32src/freetype1/freetype/arch/os2/ft_conf.h
480+
win32src/freetype1/freetype/arch/os2/os2file.c
481+
win32src/freetype1/freetype/arch/unix/.cvsignore
482+
win32src/freetype1/freetype/arch/unix/Makefile.in
483+
win32src/freetype1/freetype/arch/unix/freetype.c
484+
win32src/freetype1/freetype/arch/unix/ttmmap.c
485+
win32src/freetype1/freetype/arch/vms/README
486+
win32src/freetype1/freetype/arch/vms/descrip.mms
487+
win32src/freetype1/freetype/arch/vms/ft_conf.h
488+
win32src/freetype1/freetype/arch/win16/Makefile.BC
489+
win32src/freetype1/freetype/arch/win16/Makefile.MS
490+
win32src/freetype1/freetype/arch/win16/Makefile.VC
491+
win32src/freetype1/freetype/arch/win16/depend.win
492+
win32src/freetype1/freetype/arch/win16/freetype.c
493+
win32src/freetype1/freetype/arch/win16/ft_conf.h
494+
win32src/freetype1/freetype/arch/win16/hugefile.c
495+
win32src/freetype1/freetype/arch/win16/hugemem.c
496+
win32src/freetype1/freetype/arch/win16/makedef
497+
win32src/freetype1/freetype/arch/win16/makedep
498+
win32src/freetype1/freetype/arch/win16/ttf.def
499+
win32src/freetype1/freetype/arch/win32/Makefile.BC
500+
win32src/freetype1/freetype/arch/win32/Makefile.CL
501+
win32src/freetype1/freetype/arch/win32/Makefile.Min
502+
win32src/freetype1/freetype/arch/win32/Makefile.VC
503+
win32src/freetype1/freetype/arch/win32/Makefile.gcc
504+
win32src/freetype1/freetype/arch/win32/depend.win
505+
win32src/freetype1/freetype/arch/win32/freetype.c
506+
win32src/freetype1/freetype/arch/win32/freetype.dsp
507+
win32src/freetype1/freetype/arch/win32/freetype.dsw
508+
win32src/freetype1/freetype/arch/win32/freetype.ide
509+
win32src/freetype1/freetype/arch/win32/freetype.mak
510+
win32src/freetype1/freetype/arch/win32/freetype.mdp
511+
win32src/freetype1/freetype/arch/win32/ft_conf.h
512+
win32src/freetype1/freetype/arch/win32/makedef
513+
win32src/freetype1/freetype/arch/win32/makedep
514+
win32src/freetype1/freetype/arch/win32/ttf.def
515+
win32src/freetype1/freetype/extend/ftxcmap.c
516+
win32src/freetype1/freetype/extend/ftxcmap.h
517+
win32src/freetype1/freetype/extend/ftxerr18.c
518+
win32src/freetype1/freetype/extend/ftxerr18.h
519+
win32src/freetype1/freetype/extend/ftxgasp.c
520+
win32src/freetype1/freetype/extend/ftxgasp.h
521+
win32src/freetype1/freetype/extend/ftxgdef.c
522+
win32src/freetype1/freetype/extend/ftxgdef.h
523+
win32src/freetype1/freetype/extend/ftxgpos.c
524+
win32src/freetype1/freetype/extend/ftxgpos.h
525+
win32src/freetype1/freetype/extend/ftxgsub.c
526+
win32src/freetype1/freetype/extend/ftxgsub.h
527+
win32src/freetype1/freetype/extend/ftxkern.c
528+
win32src/freetype1/freetype/extend/ftxkern.h
529+
win32src/freetype1/freetype/extend/ftxopen.c
530+
win32src/freetype1/freetype/extend/ftxopen.h
531+
win32src/freetype1/freetype/extend/ftxopenf.h
532+
win32src/freetype1/freetype/extend/ftxpost.c
533+
win32src/freetype1/freetype/extend/ftxpost.h
534+
win32src/freetype1/freetype/extend/ftxsbit.c
535+
win32src/freetype1/freetype/extend/ftxsbit.h
536+
win32src/freetype1/freetype/extend/ftxwidth.c
537+
win32src/freetype1/freetype/extend/ftxwidth.h
538+
win32src/freetype1/freetype/extend/readme.1st
539+
win32src/libpng/LICENSE
540+
win32src/libpng/libpng.rc
541+
win32src/libpng/libpng12.rc
542+
win32src/libpng/libpngpf.3
543+
win32src/libpng/png.c
544+
win32src/libpng/png.h
545+
win32src/libpng/pngasmrd.h
546+
win32src/libpng/pngconf.h
547+
win32src/libpng/pngerror.c
548+
win32src/libpng/pnggccrd.c
549+
win32src/libpng/pngget.c
550+
win32src/libpng/pngmem.c
551+
win32src/libpng/pngpread.c
552+
win32src/libpng/pngread.c
553+
win32src/libpng/pngrio.c
554+
win32src/libpng/pngrtran.c
555+
win32src/libpng/pngrutil.c
556+
win32src/libpng/pngset.c
557+
win32src/libpng/pngtrans.c
558+
win32src/libpng/pngvcrd.c
559+
win32src/libpng/pngwio.c
560+
win32src/libpng/pngwrite.c
561+
win32src/libpng/pngwtran.c
562+
win32src/libpng/pngwutil.c
563+
win32src/zlib/README
564+
win32src/zlib/adler32.c
565+
win32src/zlib/compress.c
566+
win32src/zlib/crc32.c
567+
win32src/zlib/crc32.h
568+
win32src/zlib/deflate.c
569+
win32src/zlib/deflate.h
570+
win32src/zlib/gzio.c
571+
win32src/zlib/infback.c
572+
win32src/zlib/inffast.c
573+
win32src/zlib/inffast.h
574+
win32src/zlib/inffixed.h
575+
win32src/zlib/inflate.c
576+
win32src/zlib/inflate.h
577+
win32src/zlib/inftrees.c
578+
win32src/zlib/inftrees.h
579+
win32src/zlib/trees.c
580+
win32src/zlib/trees.h
581+
win32src/zlib/uncompr.c
582+
win32src/zlib/zconf.h
583+
win32src/zlib/zconf.in.h
584+
win32src/zlib/zlib.h
585+
win32src/zlib/zlib1.def
586+
win32src/zlib/zlib1.rc
587+
win32src/zlib/zutil.c
588+
win32src/zlib/zutil.h
589+
win32src/zlib/amiga/Makefile.pup
590+
win32src/zlib/amiga/Makefile.sas
591+
win32src/zlib/as400/bndsrc
592+
win32src/zlib/as400/compile.clp
593+
win32src/zlib/as400/readme.txt
594+
win32src/zlib/as400/zlib.inc
595+
win32src/zlib/contrib/README.contrib
596+
win32src/zlib/contrib/visual-basic.txt
597+
win32src/zlib/contrib/ada/mtest.adb
598+
win32src/zlib/contrib/ada/read.adb
599+
win32src/zlib/contrib/ada/readme.txt
600+
win32src/zlib/contrib/ada/test.adb
601+
win32src/zlib/contrib/ada/zlib-streams.adb
602+
win32src/zlib/contrib/ada/zlib-streams.ads
603+
win32src/zlib/contrib/ada/zlib-thin.adb
604+
win32src/zlib/contrib/ada/zlib-thin.ads
605+
win32src/zlib/contrib/ada/zlib.adb
606+
win32src/zlib/contrib/ada/zlib.ads
607+
win32src/zlib/contrib/ada/zlib.gpr
608+
win32src/zlib/contrib/asm586/README.586
609+
win32src/zlib/contrib/asm586/match.S
610+
win32src/zlib/contrib/asm686/README.686
611+
win32src/zlib/contrib/asm686/match.S
612+
win32src/zlib/contrib/blast/Kopie van Makefile
613+
win32src/zlib/contrib/blast/Makefile
614+
win32src/zlib/contrib/blast/README
615+
win32src/zlib/contrib/blast/blast.c
616+
win32src/zlib/contrib/blast/blast.h
617+
win32src/zlib/contrib/blast/test.pk
618+
win32src/zlib/contrib/blast/test.txt
619+
win32src/zlib/contrib/delphi/ZLib.pas
620+
win32src/zlib/contrib/delphi/ZLibConst.pas
621+
win32src/zlib/contrib/delphi/readme.txt
622+
win32src/zlib/contrib/delphi/zlibd32.mak
623+
win32src/zlib/contrib/gzappend/gzappend.c
624+
win32src/zlib/contrib/infback9/README
625+
win32src/zlib/contrib/infback9/infback9.c
626+
win32src/zlib/contrib/infback9/infback9.h
627+
win32src/zlib/contrib/infback9/inffix9.h
628+
win32src/zlib/contrib/infback9/inflate9.h
629+
win32src/zlib/contrib/infback9/inftree9.c
630+
win32src/zlib/contrib/infback9/inftree9.h
631+
win32src/zlib/contrib/inflate86/inffas86.c
632+
win32src/zlib/contrib/inflate86/inffast.S
633+
win32src/zlib/contrib/iostream/test.cpp
634+
win32src/zlib/contrib/iostream/zfstream.cpp
635+
win32src/zlib/contrib/iostream/zfstream.h
636+
win32src/zlib/contrib/iostream2/zstream.h
637+
win32src/zlib/contrib/iostream2/zstream_test.cpp
638+
win32src/zlib/contrib/iostream3/README
639+
win32src/zlib/contrib/iostream3/TODO
640+
win32src/zlib/contrib/iostream3/test.cc
641+
win32src/zlib/contrib/iostream3/zfstream.cc
642+
win32src/zlib/contrib/iostream3/zfstream.h
643+
win32src/zlib/contrib/masm686/match.asm
644+
win32src/zlib/contrib/masmx86/gvmat32.asm
645+
win32src/zlib/contrib/masmx86/gvmat32c.c
646+
win32src/zlib/contrib/masmx86/inffas32.asm
647+
win32src/zlib/contrib/masmx86/mkasm.bat
648+
win32src/zlib/contrib/masmx86/readme.txt
649+
win32src/zlib/contrib/minizip/ChangeLogUnzip
650+
win32src/zlib/contrib/minizip/Makefile
651+
win32src/zlib/contrib/minizip/Makefile.orig
652+
win32src/zlib/contrib/minizip/Makefile.rej
653+
win32src/zlib/contrib/minizip/crypt.h
654+
win32src/zlib/contrib/minizip/ioapi.c
655+
win32src/zlib/contrib/minizip/ioapi.h
656+
win32src/zlib/contrib/minizip/iowin32.c
657+
win32src/zlib/contrib/minizip/iowin32.h
658+
win32src/zlib/contrib/minizip/miniunz.c
659+
win32src/zlib/contrib/minizip/miniunz.c.orig
660+
win32src/zlib/contrib/minizip/miniunz.c.rej
661+
win32src/zlib/contrib/minizip/minizip.c
662+
win32src/zlib/contrib/minizip/minizip.c.orig
663+
win32src/zlib/contrib/minizip/readme.old
664+
win32src/zlib/contrib/minizip/readme.txt
665+
win32src/zlib/contrib/minizip/test.zip
666+
win32src/zlib/contrib/minizip/unzip.c
667+
win32src/zlib/contrib/minizip/unzip.h
668+
win32src/zlib/contrib/minizip/zip.c
669+
win32src/zlib/contrib/minizip/zip.c.orig
670+
win32src/zlib/contrib/minizip/zip.h
671+
win32src/zlib/contrib/pascal/example.pas
672+
win32src/zlib/contrib/pascal/readme.txt
673+
win32src/zlib/contrib/pascal/zlibd32.mak
674+
win32src/zlib/contrib/pascal/zlibpas.pas
675+
win32src/zlib/contrib/puff/Makefile
676+
win32src/zlib/contrib/puff/README
677+
win32src/zlib/contrib/puff/puff.c
678+
win32src/zlib/contrib/puff/puff.h
679+
win32src/zlib/contrib/puff/zeros.raw
680+
win32src/zlib/contrib/testzlib/testzlib.c
681+
win32src/zlib/contrib/testzlib/testzlib.sln
682+
win32src/zlib/contrib/testzlib/testzlib.vcproj
683+
win32src/zlib/contrib/untgz/Makefile
684+
win32src/zlib/contrib/untgz/Makefile.msc
685+
win32src/zlib/contrib/untgz/Makefile.orig
686+
win32src/zlib/contrib/untgz/Makefile.rej
687+
win32src/zlib/contrib/untgz/untgz.c
688+
win32src/zlib/contrib/untgz/untgz.c.orig
689+
win32src/zlib/contrib/vstudio/readme.txt
690+
win32src/zlib/contrib/vstudio/vc7/gvmat32.obj
691+
win32src/zlib/contrib/vstudio/vc7/inffas32.obj
692+
win32src/zlib/contrib/vstudio/vc7/miniunz.vcproj
693+
win32src/zlib/contrib/vstudio/vc7/minizip.vcproj
694+
win32src/zlib/contrib/vstudio/vc7/zlib.rc
695+
win32src/zlib/contrib/vstudio/vc7/zlibstat.vcproj
696+
win32src/zlib/contrib/vstudio/vc7/zlibvc.def
697+
win32src/zlib/contrib/vstudio/vc7/zlibvc.sln
698+
win32src/zlib/contrib/vstudio/vc7/zlibvc.vcproj
699+
win32src/zlib/msdos/Makefile.bor
700+
win32src/zlib/msdos/Makefile.dj2
701+
win32src/zlib/msdos/Makefile.emx
702+
win32src/zlib/msdos/Makefile.msc
703+
win32src/zlib/msdos/Makefile.tc
704+
win32src/zlib/old/Make_vms.com
705+
win32src/zlib/old/Makefile.riscos
706+
win32src/zlib/old/README
707+
win32src/zlib/old/descrip.mms
708+
win32src/zlib/old/zlib.html
709+
win32src/zlib/old/os2/Makefile.os2
710+
win32src/zlib/old/os2/zlib.def
711+
win32src/zlib/qnx/package.qpg
712+
win32src/zlib/win32/DLL_FAQ.txt
713+
win32src/zlib/win32/Makefile.bor
714+
win32src/zlib/win32/Makefile.emx
715+
win32src/zlib/win32/Makefile.gcc
716+
win32src/zlib/win32/Makefile.msc
717+
win32src/zlib/win32/zlib.def
718+
win32src/zlib/win32/zlib1.rc

0 commit comments

Comments
 (0)
0