From: <md...@us...> - 2007-12-14 20:12:20
|
Revision: 4735 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4735&view=rev Author: mdboom Date: 2007-12-14 12:12:18 -0800 (Fri, 14 Dec 2007) Log Message: ----------- Merged revisions 4726-4734 via svnmerge from http://matplotlib.svn.sf.net/svnroot/matplotlib/trunk/matplotlib ........ r4726 | jdh2358 | 2007-12-13 13:17:33 -0500 (Thu, 13 Dec 2007) | 2 lines removed namespace declaration from toolkits __init__ ........ r4728 | mdboom | 2007-12-13 13:30:45 -0500 (Thu, 13 Dec 2007) | 2 lines Update API_CHANGES and CHANGELOG for stuff since 0.91.1 ........ r4730 | jdh2358 | 2007-12-13 17:40:33 -0500 (Thu, 13 Dec 2007) | 2 lines noted rec2gtk and recexcel moves in CHANGELOG ........ Modified Paths: -------------- branches/transforms/API_CHANGES branches/transforms/CHANGELOG branches/transforms/lib/matplotlib/toolkits/__init__.py Property Changed: ---------------- branches/transforms/ Property changes on: branches/transforms ___________________________________________________________________ Name: svnmerge-integrated - /trunk/matplotlib:1-4725 + /trunk/matplotlib:1-4734 Modified: branches/transforms/API_CHANGES =================================================================== --- branches/transforms/API_CHANGES 2007-12-14 20:08:22 UTC (rev 4734) +++ branches/transforms/API_CHANGES 2007-12-14 20:12:18 UTC (rev 4735) @@ -169,6 +169,9 @@ END OF TRANSFORMS REFACTORING + A warning is issued when an image is drawn on log-scaled + axes, since it will not log-scale the image data. + Moved rec2gtk to matplotlib.toolkits.gtktools Moved rec2excel to matplotlib.toolkits.exceltools @@ -182,8 +185,6 @@ Changed cbook.is_file_like to cbook.is_writable_file_like and corrected behavior. - Moved mlab.csv2rec -> recutils.csv2rec - Added ax kwarg to pyplot.colorbar and Figure.colorbar so that one can specify the axes object from which space for the colorbar is to be taken, if one does not want to make the colorbar axes Modified: branches/transforms/CHANGELOG =================================================================== --- branches/transforms/CHANGELOG 2007-12-14 20:08:22 UTC (rev 4734) +++ branches/transforms/CHANGELOG 2007-12-14 20:12:18 UTC (rev 4735) @@ -1,9 +1,16 @@ -2007-12-10 Fix SVG text rendering bug. +2007-12-13 Moved rec2gtk to matplotlib.toolkits.gtktools and rec2excel + to matplotlib.toolkits.exceltools - JDH -2007-12-10 Increase accuracy of circle and ellipse drawing by using an 8-piece - bezier approximation, rather than a 4-piece one. Fix PDF, SVG and - Cairo backends so they can draw paths (meaning ellipses as well). +2007-12-12 Support alpha-blended text in the Agg and Svg backends - + MGD +2007-12-10 Fix SVG text rendering bug. - MGD + +2007-12-10 Increase accuracy of circle and ellipse drawing by using an + 8-piece bezier approximation, rather than a 4-piece one. + Fix PDF, SVG and Cairo backends so they can draw paths + (meaning ellipses as well). - MGD + 2007-12-07 Issue a warning when drawing an image on a non-linear axis. - MGD 2007-12-06 let widgets.Cursor initialize to the lower x and y bounds @@ -18,6 +25,10 @@ (This was a regression since 0.90 caused by the refactoring of font_manager.py) - MGD +2007-12-05 Support arbitrary rotation of usetex text in Agg backend. - MGD + +2007-12-04 Support '|' as a character in mathtext - MGD + =============================================================== 2007-11-27 Released 0.91.1 at revision 4517 Modified: branches/transforms/lib/matplotlib/toolkits/__init__.py =================================================================== --- branches/transforms/lib/matplotlib/toolkits/__init__.py 2007-12-14 20:08:22 UTC (rev 4734) +++ branches/transforms/lib/matplotlib/toolkits/__init__.py 2007-12-14 20:12:18 UTC (rev 4735) @@ -1,4 +1,4 @@ -try: - __import__('pkg_resources').declare_namespace(__name__) -except ImportError: - pass # must not have setuptools +#try: +# __import__('pkg_resources').declare_namespace(__name__) +#except ImportError: +# pass # must not have setuptools This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |