Menu

Tree [r7610] / trunk / matplotlib /
 History

HTTPS access


File Date Author Commit
 CXX 2009-08-22 jdh2358 [r7524] Merged revisions 7489-7490,7498-7502,7506,7517,...
 agg24 2009-08-22 jdh2358 [r7524] Merged revisions 7489-7490,7498-7502,7506,7517,...
 doc 2009-08-30 jouni [r7597] Improve multipage pdf documentation
 examples 2009-08-30 leejjoon [r7606] add TextPath class in text.py. Update demo_text...
 lib 2009-08-31 jdh2358 [r7609] update make.osx to find the local freetype etc
 license 2007-11-28 cmoad [r4474] version bumps
 release 2009-08-20 jouni [r7510] Use curl instead of wget in release/osx/Makefil...
 sandbox 2008-05-16 jdh2358 [r5163] purged some dead code dirs; these can live in t...
 src 2009-08-22 jouni [r7518] Changed the way the target OS X version is dete...
 test 2009-08-31 jdh2358 [r7610] make the buildbot point to devbb
 ttconv 2009-04-30 mdboom [r7073] Merged revisions 7072 via svnmerge from
 unit 2009-03-29 efiring [r7012] Added Karen Tracey's threading_test.py.
 CHANGELOG 2009-08-30 astraw [r7595] testing: add support for KnownFailures
 DEVNOTES 2006-07-21 astraw [r2588] add notes about building a setuptools-compatibl...
 FILETYPES 2007-09-06 mdboom [r3801] Fix typo
 INSTALL 2008-01-08 jdh2358 [r4813] fixed perrys typos
 INTERACTIVE 2003-05-12 jdh2358 [r13] lots of interactive fixes and an INTERACTIVE howto
 KNOWN_BUGS 2004-02-19 jdh2358 [r152] added freetype2 to agg
 MANIFEST.in 2008-12-19 jdh2358 [r6682] Merged revisions 6679-6680 via svnmerge from
 MIGRATION.txt 2008-05-30 jdh2358 [r5333] Merged revisions 5312-5313,5329 via svnmerge from
 Makefile 2009-08-23 jdh2358 [r7534] Merged revisions 7533 via svnmerge from
 README.osx 2009-08-23 jdh2358 [r7534] Merged revisions 7533 via svnmerge from
 README.txt 2008-05-25 jdh2358 [r5268] rewrote the readme to describe the dir layout
 SEGFAULTS 2006-04-20 jdh2358 [r2312] added help file for diagnosing segfaults
 TODO 2008-12-12 mdboom [r6582] Merged revisions 6581 via svnmerge from
 __init__.py 2005-03-05 jdh2358 [r1043] fixed whacked init
 boilerplate.py 2009-08-15 efiring [r7494] pyplot tracks current image at the figure and a...
 license.py 2007-06-07 nnemec [r3371] remove trailing spaces
 make.osx 2009-08-31 jdh2358 [r7609] update make.osx to find the local freetype etc
 matplotlibrc.template 2009-06-13 heeres [r7216] mplot3d: fix Axes3D.grid(), add axes3d.grid to ...
 setup.cfg.template 2008-12-12 dsdale [r6584] removed configobj and enthought.traits
 setup.py 2009-08-30 astraw [r7595] testing: add support for KnownFailures
 setupegg.py 2008-01-10 jswhit [r4836] move toolkits to mpl_toolkits, make mpl_toolkit...
 setupext.py 2009-08-23 jdh2358 [r7532] Merged revisions 7519,7521-7523,7528-7530 via s...

Read Me

Overview of the matplotlib src tree
===================================

This is the source directory for matplotlib, which contains the
following files and directories.

* doc - the matplotlib documentation.  See doc/users for the user's
  documentation and doc/devel for the developers documentation

* examples - a bunch of examples using matplotib.  See
  examples/README.txt for information

* setup.cfg.template - used to configure the matplotlib build process.
  Copy this file to setup.cfg if you want to override the default
  build behavior

* matplotlibrc.template - a template file used to generate the
  matplotlibrc config file at build time.  The matplotlibrc file will
  be installed in matplotlib/mpl-data/matplotlibrc

* lib - the python src code.  matplotlib ships several third party
  packages here.  The subdirectory lib/matplotlib contains the python
  src code for matplotlib

* src - the matplotlib extension code, mostly C++

* ttconv - some truetype font utilities

* license - all the licenses for code included with matplotlib.
  matplotlib uses only BSD compatible code

* unit - some unit tests

* CHANGELOG - all the significant changes to matplotlib, organized by
  release.  The top of this file will show you the most recent changes

* API_CHANGES - any change that alters the API is listed here.  The
  entries are organized by release, with most recent entries first

* MIGRATION.txt - instructions on moving from the 0.91 code to the
  0.98 trunk.

* SEGFAULTS - some tips for how to diagnose and debug segfaults

* setup.py - the matplotlib build script

* setupext.py - some helper code for setup.py to build the matplotlib
  extensions

* boilerplate.py - some code to automatically generate the pyplot
  wrappers

* DEVNOTES - deprecated developer notes.  TODO: update and move to the
  doc/devel framework

* FILETYPES - This is a table of the output formats supported by each
  backend.  TODO: move to doc/users

* INTERACTIVE - instructions on using matplotlib interactively, eg
  from the python shell.  TODO: update and move to doc/users.