SF.net SVN: matplotlib:[6608] branches/v0_98_5_maint

2008-12-15 Thread mdboom
Revision: 6608
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6608&view=rev
Author:   mdboom
Date: 2008-12-15 14:16:27 + (Mon, 15 Dec 2008)

Log Message:
---
Fix gridlines not moving correctly during pan and zoom

Modified Paths:
--
branches/v0_98_5_maint/CHANGELOG
branches/v0_98_5_maint/lib/matplotlib/transforms.py

Modified: branches/v0_98_5_maint/CHANGELOG
===
--- branches/v0_98_5_maint/CHANGELOG2008-12-15 06:26:18 UTC (rev 6607)
+++ branches/v0_98_5_maint/CHANGELOG2008-12-15 14:16:27 UTC (rev 6608)
@@ -1,3 +1,5 @@
+2008-12-15 Fix grid lines not moving correctly during pan and zoom - MGD
+
 2008-12-12 Fixed warning in hist() with numpy 1.2 - MM
 
 =

Modified: branches/v0_98_5_maint/lib/matplotlib/transforms.py
===
--- branches/v0_98_5_maint/lib/matplotlib/transforms.py 2008-12-15 06:26:18 UTC 
(rev 6607)
+++ branches/v0_98_5_maint/lib/matplotlib/transforms.py 2008-12-15 14:16:27 UTC 
(rev 6608)
@@ -120,8 +120,7 @@
 root = stack.pop()
 # Stop at subtrees that have already been invalidated
 if root._invalid != value or root.pass_through:
-value |= root._invalid
-root._invalid = value
+root._invalid = self.INVALID
 stack.extend(root._parents.keys())
 
 def set_children(self, *children):


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6610] trunk/matplotlib

2008-12-15 Thread mdboom
Revision: 6610
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6610&view=rev
Author:   mdboom
Date: 2008-12-15 14:21:15 + (Mon, 15 Dec 2008)

Log Message:
---
Merged revisions 6589,6608-6609 via svnmerge from 
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_98_5_maint


  r6589 | mmetz_bn | 2008-12-12 08:58:24 -0500 (Fri, 12 Dec 2008) | 1 line
  
  fix warning in hist for numpy 1.2

  r6608 | mdboom | 2008-12-15 09:16:27 -0500 (Mon, 15 Dec 2008) | 2 lines
  
  Fix gridlines not moving correctly during pan and zoom

  r6609 | mdboom | 2008-12-15 09:18:03 -0500 (Mon, 15 Dec 2008) | 2 lines
  
  Turn off anti-aliasing when auto-snapping.


Modified Paths:
--
trunk/matplotlib/CHANGELOG
trunk/matplotlib/lib/matplotlib/transforms.py
trunk/matplotlib/src/_backend_agg.cpp

Property Changed:

trunk/matplotlib/
trunk/matplotlib/doc/pyplots/README


Property changes on: trunk/matplotlib
___
Modified: svnmerge-integrated
   - /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6587
   + /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6609
Modified: svn:mergeinfo
   - /branches/v0_91_maint:5753-5771
/branches/v0_98_5_maint:6581,6585,6587
   + /branches/v0_91_maint:5753-5771
/branches/v0_98_5_maint:6581,6585,6587,6589-6609

Modified: trunk/matplotlib/CHANGELOG
===
--- trunk/matplotlib/CHANGELOG  2008-12-15 14:18:03 UTC (rev 6609)
+++ trunk/matplotlib/CHANGELOG  2008-12-15 14:21:15 UTC (rev 6610)
@@ -1,3 +1,7 @@
+2008-12-15 Fix anti-aliasing when auto-snapping - MGD
+
+2008-12-15 Fix grid lines not moving correctly during pan and zoom - MGD
+
 2008-12-12 Preparations to eliminate maskedarray rcParams key: its
use will now generate a warning.  Similarly, importing
the obsolote numerix.npyma will generate a warning. - EF


Property changes on: trunk/matplotlib/doc/pyplots/README
___
Modified: svn:mergeinfo
   - /branches/v0_98_5_maint/doc/pyplots/README:6581,6585,6587
   + /branches/v0_98_5_maint/doc/pyplots/README:6581,6585,6587,6589-6609

Modified: trunk/matplotlib/lib/matplotlib/transforms.py
===
--- trunk/matplotlib/lib/matplotlib/transforms.py   2008-12-15 14:18:03 UTC 
(rev 6609)
+++ trunk/matplotlib/lib/matplotlib/transforms.py   2008-12-15 14:21:15 UTC 
(rev 6610)
@@ -120,8 +120,7 @@
 root = stack.pop()
 # Stop at subtrees that have already been invalidated
 if root._invalid != value or root.pass_through:
-value |= root._invalid
-root._invalid = value
+root._invalid = self.INVALID
 stack.extend(root._parents.keys())
 
 def set_children(self, *children):

Modified: trunk/matplotlib/src/_backend_agg.cpp
===
--- trunk/matplotlib/src/_backend_agg.cpp   2008-12-15 14:18:03 UTC (rev 
6609)
+++ trunk/matplotlib/src/_backend_agg.cpp   2008-12-15 14:21:15 UTC (rev 
6610)
@@ -355,7 +355,7 @@
 }
 
 template
-bool should_snap(const GCAgg& gc, Path& path, const agg::trans_affine& trans) {
+bool should_snap(GCAgg& gc, Path& path, const agg::trans_affine& trans) {
   // If this contains only straight horizontal or vertical lines, it should be
   // quantized to the nearest pixels
   double x0, y0, x1, y1;
@@ -393,6 +393,7 @@
 }
 
 path.rewind(0);
+gc.isaa = false;
 return true;
   case GCAgg::SNAP_FALSE:
 return false;


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6609] branches/v0_98_5_maint

2008-12-15 Thread mdboom
Revision: 6609
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6609&view=rev
Author:   mdboom
Date: 2008-12-15 14:18:03 + (Mon, 15 Dec 2008)

Log Message:
---
Turn off anti-aliasing when auto-snapping.

Modified Paths:
--
branches/v0_98_5_maint/CHANGELOG
branches/v0_98_5_maint/src/_backend_agg.cpp

Modified: branches/v0_98_5_maint/CHANGELOG
===
--- branches/v0_98_5_maint/CHANGELOG2008-12-15 14:16:27 UTC (rev 6608)
+++ branches/v0_98_5_maint/CHANGELOG2008-12-15 14:18:03 UTC (rev 6609)
@@ -1,3 +1,5 @@
+2008-12-15 Fix anti-aliasing when auto-snapping - MGD
+
 2008-12-15 Fix grid lines not moving correctly during pan and zoom - MGD
 
 2008-12-12 Fixed warning in hist() with numpy 1.2 - MM

Modified: branches/v0_98_5_maint/src/_backend_agg.cpp
===
--- branches/v0_98_5_maint/src/_backend_agg.cpp 2008-12-15 14:16:27 UTC (rev 
6608)
+++ branches/v0_98_5_maint/src/_backend_agg.cpp 2008-12-15 14:18:03 UTC (rev 
6609)
@@ -355,7 +355,7 @@
 }
 
 template
-bool should_snap(const GCAgg& gc, Path& path, const agg::trans_affine& trans) {
+bool should_snap(GCAgg& gc, Path& path, const agg::trans_affine& trans) {
   // If this contains only straight horizontal or vertical lines, it should be
   // quantized to the nearest pixels
   double x0, y0, x1, y1;
@@ -393,6 +393,7 @@
 }
 
 path.rewind(0);
+gc.isaa = false;
 return true;
   case GCAgg::SNAP_FALSE:
 return false;


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6611] trunk/matplotlib/doc/devel

2008-12-15 Thread jdh2358
Revision: 6611
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6611&view=rev
Author:   jdh2358
Date: 2008-12-15 14:53:30 + (Mon, 15 Dec 2008)

Log Message:
---
updates to release guide

Modified Paths:
--
trunk/matplotlib/doc/devel/coding_guide.rst
trunk/matplotlib/doc/devel/release_guide.rst

Modified: trunk/matplotlib/doc/devel/coding_guide.rst
===
--- trunk/matplotlib/doc/devel/coding_guide.rst 2008-12-15 14:21:15 UTC (rev 
6610)
+++ trunk/matplotlib/doc/devel/coding_guide.rst 2008-12-15 14:53:30 UTC (rev 
6611)
@@ -1,4 +1,4 @@
-.. _coding-guide:
+M.. _coding-guide:
 
 
 Coding guide
@@ -29,10 +29,10 @@
svn co https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/\
v0_91_maint mpl91 --username=youruser --password=yourpass
 
-The current release of the trunk is in the 0.98.4 maintenance branch::
+The current release of the trunk is in the 0.98.5 maintenance branch::
 
svn co https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/\
-   v0_98_4_maint mpl98.4 --username=youruser --password=yourpass
+   v0_98_5_maint mpl98.5 --username=youruser --password=yourpass
 
 
 Committing changes
@@ -118,6 +118,9 @@
 
  > svn commit -F svnmerge-commit-message.txt
 
+
+.. _setting-up-svnmerge:
+
 Setting up svnmerge
 ~~~
 

Modified: trunk/matplotlib/doc/devel/release_guide.rst
===
--- trunk/matplotlib/doc/devel/release_guide.rst2008-12-15 14:21:15 UTC 
(rev 6610)
+++ trunk/matplotlib/doc/devel/release_guide.rst2008-12-15 14:53:30 UTC 
(rev 6611)
@@ -9,6 +9,9 @@
 * Edit :file:`__init__.py` and bump the version number
 
 
+
+When doing a release
+
 .. _release-testing:
 
 Testing
@@ -27,6 +30,20 @@
 * remove font cache and tex cache from :file:`.matplotlib` and test
   with and without cache on some example script
 
+
+.. _release-branching:
+
+Branching
+
+
+Once all the tests are passing and you are ready to do a release, you
+need to create a release branch and configure svn-merge to use it;
+Michael Droettboom should probably handle this step, but if he is not
+available see instructions at :ref:`setting-up-svnmerge`.  On the
+bracnh, do any additional testing you want to do, and then build
+binaries and source distributions for testing as release candidates.
+
+
 .. _release-packaging:
 
 Packaging
@@ -57,11 +74,35 @@
 
   > svn copy trunk/matplotlib branches/v0_98_4_maint
 
+
+.. _release-candidate-testing:
+
+Release candidate testing:
+
+
+Post the release candidates to
+http://matplotlib.sf.net/release-candidates and post a message to
+matplotlib-users and devel requesting testing.  To post to the server,
+you can do::
+
+> scp somefile.tgz 
jdh2358,[email protected]:/home/groups/m/ma/matplotlib/htdocs/release-candidates/
+
+replacing 'jdh2358' with your sourceforge login.
+
+
+Any changes to fix bugs in the release candidate should be fixed in
+the release branch and merged into the trunk with svn-merge; see
+:ref:`svn-merge`.  When the release candidate is signed off on, build
+the final sdist, binaries and eggs, and upload them to the sourceforge
+release area.
+
+
 .. _release-uploading:
 
 Uploading
 =
 
+
 * Post the win32 and OS-X binaries for testing and make a request on
   matplotlib-devel for testing.  Pester us if we don't respond
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6612] trunk/matplotlib/doc/devel/release_guide.rst

2008-12-15 Thread jdh2358
Revision: 6612
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6612&view=rev
Author:   jdh2358
Date: 2008-12-15 14:58:02 + (Mon, 15 Dec 2008)

Log Message:
---
updates to release guide

Modified Paths:
--
trunk/matplotlib/doc/devel/release_guide.rst

Modified: trunk/matplotlib/doc/devel/release_guide.rst
===
--- trunk/matplotlib/doc/devel/release_guide.rst2008-12-15 14:53:30 UTC 
(rev 6611)
+++ trunk/matplotlib/doc/devel/release_guide.rst2008-12-15 14:58:02 UTC 
(rev 6612)
@@ -49,6 +49,7 @@
 Packaging
 =
 
+
 * Make sure the :file:`MANIFEST.in` us up to date and remove
   :file:`MANIFEST` so it will be rebuilt by MANIFEST.in
 
@@ -68,11 +69,9 @@
 
 * on windows, unix2dos the rc file
 
-* make a branch of the svn revision that is released, in case we need
-  to do a bug fix release.  Eg, from the top level of the mpl svn
-  tree, the one which has "branches", "tags" and "trunk", do::
+* We have a Makefile for the OS X builds in the mpl source dir
+  :file:`release/osx`, so use this to prepare the OS X releases.
 
-  > svn copy trunk/matplotlib branches/v0_98_4_maint
 
 
 .. _release-candidate-testing:


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6613] trunk/matplotlib

2008-12-15 Thread mdboom
Revision: 6613
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6613&view=rev
Author:   mdboom
Date: 2008-12-15 17:58:43 + (Mon, 15 Dec 2008)

Log Message:
---
Make escaped $ work in non-usetex mode

Modified Paths:
--
trunk/matplotlib/doc/users/mathtext.rst
trunk/matplotlib/doc/users/text_intro.rst
trunk/matplotlib/doc/users/usetex.rst
trunk/matplotlib/lib/matplotlib/offsetbox.py
trunk/matplotlib/lib/matplotlib/text.py

Modified: trunk/matplotlib/doc/users/mathtext.rst
===
--- trunk/matplotlib/doc/users/mathtext.rst 2008-12-15 14:58:02 UTC (rev 
6612)
+++ trunk/matplotlib/doc/users/mathtext.rst 2008-12-15 17:58:43 UTC (rev 
6613)
@@ -3,17 +3,19 @@
 Writing mathematical expressions
 
 
-You can use TeX markup in any matplotlib text string.  Note that you
-do not need to have TeX installed, since matplotlib ships its own TeX
-expression parser, layout engine and fonts.  The layout engine is a
-fairly direct adaptation of the layout algorithms in Donald Knuth's
-TeX, so the quality is quite good (matplotlib also provides a
-``usetex`` option for those who do want to call out to TeX to generate
-their text (see :ref:`usetex-tutorial`).
+You can use a subset TeX markup in any matplotlib text string by
+placing it inside a pair of dollar signs ($).
 
-Any text element can use math text.  You need to use raw strings
-(preceed the quotes with an ``'r'``), and surround the string text
-with dollar signs, as in TeX.  Regular text and mathtext can be
+Note that you do not need to have TeX installed, since matplotlib
+ships its own TeX expression parser, layout engine and fonts.  The
+layout engine is a fairly direct adaptation of the layout algorithms
+in Donald Knuth's TeX, so the quality is quite good (matplotlib also
+provides a ``usetex`` option for those who do want to call out to TeX
+to generate their text (see :ref:`usetex-tutorial`).
+
+Any text element can use math text.  You should use raw strings
+(preceed the quotes with an ``'r'``), and surround the math text with
+dollar signs ($), as in TeX.  Regular text and mathtext can be
 interleaved within the same string.  Mathtext can use the Computer
 Modern fonts (from (La)TeX), `STIX `_
 fonts (with are designed to blend well with Times) or a Unicode font
@@ -35,6 +37,26 @@
 
 produces ":math:`\alpha > \beta`".
 
+.. note::
+   Mathtext should be placed between a pair of dollar signs ($).  To
+   make it easy to display monetary values, e.g. "$100.00", if a
+   single dollar sign is present in the entire string, it will be
+   displayed verbatim as a dollar sign.  This is a small change from
+   regular TeX, where the dollar sign in non-math text would have to
+   be escaped ('\$').
+
+.. note::
+   While the syntax inside the pair of dollar signs ($) aims to be
+   TeX-like, the text outside does not.  In particular, characters
+   such as::
+
+ # $ % & ~ _ ^ \ { } \( \) \[ \]
+
+   have special meaning outside of math mode in TeX.  Therefore, these
+   characters will behave differently depending on the rcParam
+   ``text.usetex`` flag.  See the :ref:`usetex tutorial
+   ` for more information.
+
 Subscripts and superscripts
 ---
 

Modified: trunk/matplotlib/doc/users/text_intro.rst
===
--- trunk/matplotlib/doc/users/text_intro.rst   2008-12-15 14:58:02 UTC (rev 
6612)
+++ trunk/matplotlib/doc/users/text_intro.rst   2008-12-15 17:58:43 UTC (rev 
6613)
@@ -18,8 +18,8 @@
 weight, text location and color, etc) with sensible defaults set in
 the rc file.  And significantly for those interested in mathematical
 or scientific figures, matplotlib implements a large number of TeX
-math symbols and commands, to support mathematical expressions
-anywhere in your figure.
+math symbols and commands, to support :ref:`mathematical expressions
+` anywhere in your figure.
 
 
 Basic text commands

Modified: trunk/matplotlib/doc/users/usetex.rst
===
--- trunk/matplotlib/doc/users/usetex.rst   2008-12-15 14:58:02 UTC (rev 
6612)
+++ trunk/matplotlib/doc/users/usetex.rst   2008-12-15 17:58:43 UTC (rev 
6613)
@@ -59,6 +59,14 @@
 command ``\displaystyle``, as in `tex_demo.py`, will produce the same
 results.
 
+.. note::
+   Certain characters require special escaping in TeX, such as::
+
+ # $ % & ~ _ ^ \ { } \( \) \[ \]
+
+   Therefore, these characters will behave differently depending on
+   the rcParam ``text.usetex`` flag.
+
 .. _usetex-unicode:
 
 usetex with unicode

Modified: trunk/matplotlib/lib/matplotlib/offsetbox.py
===
--- trunk/matplotlib/lib/matplotlib/offsetbox.py2008-12-15 14:58:02 UTC 
(rev 6612)
+++ trunk/matplotlib/lib/matplo

SF.net SVN: matplotlib:[6614] branches/v0_98_5_maint

2008-12-15 Thread mdboom
Revision: 6614
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6614&view=rev
Author:   mdboom
Date: 2008-12-15 18:03:34 + (Mon, 15 Dec 2008)

Log Message:
---
Backporting 6613: Making $ work in regular text

Modified Paths:
--
branches/v0_98_5_maint/doc/users/mathtext.rst
branches/v0_98_5_maint/doc/users/text_intro.rst
branches/v0_98_5_maint/doc/users/usetex.rst
branches/v0_98_5_maint/lib/matplotlib/offsetbox.py
branches/v0_98_5_maint/lib/matplotlib/text.py

Modified: branches/v0_98_5_maint/doc/users/mathtext.rst
===
--- branches/v0_98_5_maint/doc/users/mathtext.rst   2008-12-15 17:58:43 UTC 
(rev 6613)
+++ branches/v0_98_5_maint/doc/users/mathtext.rst   2008-12-15 18:03:34 UTC 
(rev 6614)
@@ -3,17 +3,19 @@
 Writing mathematical expressions
 
 
-You can use TeX markup in any matplotlib text string.  Note that you
-do not need to have TeX installed, since matplotlib ships its own TeX
-expression parser, layout engine and fonts.  The layout engine is a
-fairly direct adaptation of the layout algorithms in Donald Knuth's
-TeX, so the quality is quite good (matplotlib also provides a
-``usetex`` option for those who do want to call out to TeX to generate
-their text (see :ref:`usetex-tutorial`).
+You can use a subset TeX markup in any matplotlib text string by
+placing it inside a pair of dollar signs ($).
 
-Any text element can use math text.  You need to use raw strings
-(preceed the quotes with an ``'r'``), and surround the string text
-with dollar signs, as in TeX.  Regular text and mathtext can be
+Note that you do not need to have TeX installed, since matplotlib
+ships its own TeX expression parser, layout engine and fonts.  The
+layout engine is a fairly direct adaptation of the layout algorithms
+in Donald Knuth's TeX, so the quality is quite good (matplotlib also
+provides a ``usetex`` option for those who do want to call out to TeX
+to generate their text (see :ref:`usetex-tutorial`).
+
+Any text element can use math text.  You should use raw strings
+(preceed the quotes with an ``'r'``), and surround the math text with
+dollar signs ($), as in TeX.  Regular text and mathtext can be
 interleaved within the same string.  Mathtext can use the Computer
 Modern fonts (from (La)TeX), `STIX `_
 fonts (with are designed to blend well with Times) or a Unicode font
@@ -35,6 +37,26 @@
 
 produces ":math:`\alpha > \beta`".
 
+.. note::
+   Mathtext should be placed between a pair of dollar signs ($).  To
+   make it easy to display monetary values, e.g. "$100.00", if a
+   single dollar sign is present in the entire string, it will be
+   displayed verbatim as a dollar sign.  This is a small change from
+   regular TeX, where the dollar sign in non-math text would have to
+   be escaped ('\$').
+
+.. note::
+   While the syntax inside the pair of dollar signs ($) aims to be
+   TeX-like, the text outside does not.  In particular, characters
+   such as::
+
+ # $ % & ~ _ ^ \ { } \( \) \[ \]
+
+   have special meaning outside of math mode in TeX.  Therefore, these
+   characters will behave differently depending on the rcParam
+   ``text.usetex`` flag.  See the :ref:`usetex tutorial
+   ` for more information.
+
 Subscripts and superscripts
 ---
 

Modified: branches/v0_98_5_maint/doc/users/text_intro.rst
===
--- branches/v0_98_5_maint/doc/users/text_intro.rst 2008-12-15 17:58:43 UTC 
(rev 6613)
+++ branches/v0_98_5_maint/doc/users/text_intro.rst 2008-12-15 18:03:34 UTC 
(rev 6614)
@@ -18,8 +18,8 @@
 weight, text location and color, etc) with sensible defaults set in
 the rc file.  And significantly for those interested in mathematical
 or scientific figures, matplotlib implements a large number of TeX
-math symbols and commands, to support mathematical expressions
-anywhere in your figure.
+math symbols and commands, to support :ref:`mathematical expressions
+` anywhere in your figure.
 
 
 Basic text commands

Modified: branches/v0_98_5_maint/doc/users/usetex.rst
===
--- branches/v0_98_5_maint/doc/users/usetex.rst 2008-12-15 17:58:43 UTC (rev 
6613)
+++ branches/v0_98_5_maint/doc/users/usetex.rst 2008-12-15 18:03:34 UTC (rev 
6614)
@@ -59,6 +59,14 @@
 command ``\displaystyle``, as in `tex_demo.py`, will produce the same
 results.
 
+.. note::
+   Certain characters require special escaping in TeX, such as::
+
+ # $ % & ~ _ ^ \ { } \( \) \[ \]
+
+   Therefore, these characters will behave differently depending on
+   the rcParam ``text.usetex`` flag.
+
 .. _usetex-unicode:
 
 usetex with unicode

Modified: branches/v0_98_5_maint/lib/matplotlib/offsetbox.py
===
--- branches/v0_98_5_maint/l

SF.net SVN: matplotlib:[6615] trunk/matplotlib

2008-12-15 Thread mdboom
Revision: 6615
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6615&view=rev
Author:   mdboom
Date: 2008-12-15 18:04:45 + (Mon, 15 Dec 2008)

Log Message:
---
Merged revisions 6614 via svnmerge from 
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_98_5_maint


  r6614 | mdboom | 2008-12-15 13:03:34 -0500 (Mon, 15 Dec 2008) | 1 line
  
  Backporting 6613: Making $ work in regular text


Property Changed:

trunk/matplotlib/
trunk/matplotlib/doc/pyplots/README


Property changes on: trunk/matplotlib
___
Modified: svnmerge-integrated
   - /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6609
   + /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6614
Modified: svn:mergeinfo
   - /branches/v0_91_maint:5753-5771
/branches/v0_98_5_maint:6581,6585,6587,6589-6609
   + /branches/v0_91_maint:5753-5771
/branches/v0_98_5_maint:6581,6585,6587,6589-6609,6614


Property changes on: trunk/matplotlib/doc/pyplots/README
___
Modified: svn:mergeinfo
   - /branches/v0_98_5_maint/doc/pyplots/README:6581,6585,6587,6589-6609
   + /branches/v0_98_5_maint/doc/pyplots/README:6581,6585,6587,6589-6609,6614


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6616] branches/v0_98_5_maint/CHANGELOG

2008-12-15 Thread mdboom
Revision: 6616
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6616&view=rev
Author:   mdboom
Date: 2008-12-15 18:06:13 + (Mon, 15 Dec 2008)

Log Message:
---
Forgot to add to CHANGELOG

Modified Paths:
--
branches/v0_98_5_maint/CHANGELOG

Modified: branches/v0_98_5_maint/CHANGELOG
===
--- branches/v0_98_5_maint/CHANGELOG2008-12-15 18:04:45 UTC (rev 6615)
+++ branches/v0_98_5_maint/CHANGELOG2008-12-15 18:06:13 UTC (rev 6616)
@@ -1,3 +1,6 @@
+2008-12-15 Fix \$ in non-math text with usetex off.  Document
+differences between usetex on/off - MGD
+
 2008-12-15 Fix anti-aliasing when auto-snapping - MGD
 
 2008-12-15 Fix grid lines not moving correctly during pan and zoom - MGD


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6617] trunk/matplotlib

2008-12-15 Thread mdboom
Revision: 6617
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6617&view=rev
Author:   mdboom
Date: 2008-12-15 18:06:52 + (Mon, 15 Dec 2008)

Log Message:
---
Merged revisions 6616 via svnmerge from 
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_98_5_maint


  r6616 | mdboom | 2008-12-15 13:06:13 -0500 (Mon, 15 Dec 2008) | 1 line
  
  Forgot to add to CHANGELOG


Modified Paths:
--
trunk/matplotlib/CHANGELOG

Property Changed:

trunk/matplotlib/
trunk/matplotlib/doc/pyplots/README


Property changes on: trunk/matplotlib
___
Modified: svnmerge-integrated
   - /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6614
   + /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6616
Modified: svn:mergeinfo
   - /branches/v0_91_maint:5753-5771
/branches/v0_98_5_maint:6581,6585,6587,6589-6609,6614
   + /branches/v0_91_maint:5753-5771
/branches/v0_98_5_maint:6581,6585,6587,6589-6609,6614,6616

Modified: trunk/matplotlib/CHANGELOG
===
--- trunk/matplotlib/CHANGELOG  2008-12-15 18:06:13 UTC (rev 6616)
+++ trunk/matplotlib/CHANGELOG  2008-12-15 18:06:52 UTC (rev 6617)
@@ -1,3 +1,6 @@
+2008-12-15 Fix \$ in non-math text with usetex off.  Document
+differences between usetex on/off - MGD
+
 2008-12-15 Fix anti-aliasing when auto-snapping - MGD
 
 2008-12-15 Fix grid lines not moving correctly during pan and zoom - MGD


Property changes on: trunk/matplotlib/doc/pyplots/README
___
Modified: svn:mergeinfo
   - /branches/v0_98_5_maint/doc/pyplots/README:6581,6585,6587,6589-6609,6614
   + 
/branches/v0_98_5_maint/doc/pyplots/README:6581,6585,6587,6589-6609,6614,6616


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6618] branches/v0_98_5_maint/MANIFEST.in

2008-12-15 Thread jdh2358
Revision: 6618
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6618&view=rev
Author:   jdh2358
Date: 2008-12-15 19:42:23 + (Mon, 15 Dec 2008)

Log Message:
---
removed deprecated files from manifest

Modified Paths:
--
branches/v0_98_5_maint/MANIFEST.in

Modified: branches/v0_98_5_maint/MANIFEST.in
===
--- branches/v0_98_5_maint/MANIFEST.in  2008-12-15 18:06:52 UTC (rev 6617)
+++ branches/v0_98_5_maint/MANIFEST.in  2008-12-15 19:42:23 UTC (rev 6618)
@@ -1,8 +1,8 @@
-include API_CHANGES CHANGELOG KNOWN_BUGS INSTALL NUMARRAY_ISSUES
+include CHANGELOG KNOWN_BUGS INSTALL
 include INTERACTIVE TODO
 include Makefile  MANIFEST.in MANIFEST
 include matplotlibrc.template matplotlibrc setup.cfg.template
-include __init__.py setupext.py setup.py setupegg.py makeswig.py
+include __init__.py setupext.py setup.py setupegg.py
 include examples/data/*
 include lib/mpl_toolkits
 include lib/matplotlib/mpl-data/matplotlib.conf
@@ -20,5 +20,4 @@
 recursive-include CXX  *.cxx *.hxx *.c *.h
 recursive-include agg24 *
 recursive-include lib *
-recursive-include swig *
 recursive-include ttconv *.cpp *.h


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6619] trunk/matplotlib/doc/users/mathtext.rst

2008-12-15 Thread jdh2358
Revision: 6619
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6619&view=rev
Author:   jdh2358
Date: 2008-12-15 19:46:34 + (Mon, 15 Dec 2008)

Log Message:
---
removed plot example from mathtext - doesn't work in pdf

Modified Paths:
--
trunk/matplotlib/doc/users/mathtext.rst

Modified: trunk/matplotlib/doc/users/mathtext.rst
===
--- trunk/matplotlib/doc/users/mathtext.rst 2008-12-15 19:42:23 UTC (rev 
6618)
+++ trunk/matplotlib/doc/users/mathtext.rst 2008-12-15 19:46:34 UTC (rev 
6619)
@@ -321,8 +321,8 @@
 .. plot:: pyplots/pyplot_mathtext.py
:include-source:
 
-.. plot:: mpl_examples/pylab_examples/mathtext_examples.py
 
 
 
 
+


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6620] trunk/matplotlib

2008-12-15 Thread jdh2358
Revision: 6620
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6620&view=rev
Author:   jdh2358
Date: 2008-12-15 19:52:29 + (Mon, 15 Dec 2008)

Log Message:
---
Merged revisions 6618 via svnmerge from 
https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_98_5_maint


  r6618 | jdh2358 | 2008-12-15 11:42:23 -0800 (Mon, 15 Dec 2008) | 1 line
  
  removed deprecated files from manifest


Modified Paths:
--
trunk/matplotlib/MANIFEST.in

Property Changed:

trunk/matplotlib/


Property changes on: trunk/matplotlib
___
Modified: svnmerge-integrated
   - /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6616
   + /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6619

Modified: trunk/matplotlib/MANIFEST.in
===
--- trunk/matplotlib/MANIFEST.in2008-12-15 19:46:34 UTC (rev 6619)
+++ trunk/matplotlib/MANIFEST.in2008-12-15 19:52:29 UTC (rev 6620)
@@ -1,8 +1,8 @@
-include API_CHANGES CHANGELOG KNOWN_BUGS INSTALL NUMARRAY_ISSUES
+include CHANGELOG KNOWN_BUGS INSTALL
 include INTERACTIVE TODO
 include Makefile  MANIFEST.in MANIFEST
 include matplotlibrc.template matplotlibrc setup.cfg.template
-include __init__.py setupext.py setup.py setupegg.py makeswig.py
+include __init__.py setupext.py setup.py setupegg.py
 include examples/data/*
 include lib/mpl_toolkits
 include lib/matplotlib/mpl-data/matplotlib.conf
@@ -20,5 +20,4 @@
 recursive-include CXX  *.cxx *.hxx *.c *.h
 recursive-include agg24 *
 recursive-include lib *
-recursive-include swig *
 recursive-include ttconv *.cpp *.h


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6621] branches/v0_98_5_maint/setup.py

2008-12-15 Thread jdh2358
Revision: 6621
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6621&view=rev
Author:   jdh2358
Date: 2008-12-15 20:19:01 + (Mon, 15 Dec 2008)

Log Message:
---
hack to prevent distutils from linking our files

Modified Paths:
--
branches/v0_98_5_maint/setup.py

Modified: branches/v0_98_5_maint/setup.py
===
--- branches/v0_98_5_maint/setup.py 2008-12-15 19:52:29 UTC (rev 6620)
+++ branches/v0_98_5_maint/setup.py 2008-12-15 20:19:01 UTC (rev 6621)
@@ -6,6 +6,11 @@
 The matplotlib build options can be modified with a setup.cfg file. See
 setup.cfg.template for more information.
 """
+# distutils is breaking our sdists for files in symlinked dirs.
+# distutils will copy if os.link is not available, so this is a hack
+# to force copying
+import os
+del os.link
 
 # This dict will be updated as we try to select the best option during
 # the build process. However, values in setup.cfg will be used, if


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6622] branches/v0_98_5_maint

2008-12-15 Thread jdh2358
Revision: 6622
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6622&view=rev
Author:   jdh2358
Date: 2008-12-15 20:45:20 + (Mon, 15 Dec 2008)

Log Message:
---
hack to prevent distutils from creating links in our sdist

Modified Paths:
--
branches/v0_98_5_maint/MANIFEST.in
branches/v0_98_5_maint/lib/matplotlib/__init__.py

Modified: branches/v0_98_5_maint/MANIFEST.in
===
--- branches/v0_98_5_maint/MANIFEST.in  2008-12-15 20:19:01 UTC (rev 6621)
+++ branches/v0_98_5_maint/MANIFEST.in  2008-12-15 20:45:20 UTC (rev 6622)
@@ -1,7 +1,7 @@
 include CHANGELOG KNOWN_BUGS INSTALL
 include INTERACTIVE TODO
 include Makefile  MANIFEST.in MANIFEST
-include matplotlibrc.template matplotlibrc setup.cfg.template
+include matplotlibrc.template setup.cfg.template
 include __init__.py setupext.py setup.py setupegg.py
 include examples/data/*
 include lib/mpl_toolkits

Modified: branches/v0_98_5_maint/lib/matplotlib/__init__.py
===
--- branches/v0_98_5_maint/lib/matplotlib/__init__.py   2008-12-15 20:19:01 UTC 
(rev 6621)
+++ branches/v0_98_5_maint/lib/matplotlib/__init__.py   2008-12-15 20:45:20 UTC 
(rev 6622)
@@ -89,7 +89,7 @@
 """
 from __future__ import generators
 
-__version__  = '0.98.5'
+__version__  = '0.98.5.1'
 __revision__ = '$Revision$'
 __date__ = '$Date$'
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6623] trunk/matplotlib/lib/matplotlib/__init__.py

2008-12-15 Thread jdh2358
Revision: 6623
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6623&view=rev
Author:   jdh2358
Date: 2008-12-15 20:46:00 + (Mon, 15 Dec 2008)

Log Message:
---
bumped version number

Modified Paths:
--
trunk/matplotlib/lib/matplotlib/__init__.py

Modified: trunk/matplotlib/lib/matplotlib/__init__.py
===
--- trunk/matplotlib/lib/matplotlib/__init__.py 2008-12-15 20:45:20 UTC (rev 
6622)
+++ trunk/matplotlib/lib/matplotlib/__init__.py 2008-12-15 20:46:00 UTC (rev 
6623)
@@ -89,7 +89,7 @@
 """
 from __future__ import generators
 
-__version__  = '0.98.5'
+__version__  = '0.98.6svn'
 __revision__ = '$Revision$'
 __date__ = '$Date$'
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6624] trunk/matplotlib

2008-12-15 Thread jdh2358
Revision: 6624
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6624&view=rev
Author:   jdh2358
Date: 2008-12-15 20:48:34 + (Mon, 15 Dec 2008)

Log Message:
---
Merged revisions 6621-6622 via svnmerge from 
https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_98_5_maint


  r6621 | jdh2358 | 2008-12-15 12:19:01 -0800 (Mon, 15 Dec 2008) | 1 line
  
  hack to prevent distutils from linking our files

  r6622 | jdh2358 | 2008-12-15 12:45:20 -0800 (Mon, 15 Dec 2008) | 1 line
  
  hack to prevent distutils from creating links in our sdist


Modified Paths:
--
trunk/matplotlib/MANIFEST.in
trunk/matplotlib/setup.py

Property Changed:

trunk/matplotlib/


Property changes on: trunk/matplotlib
___
Modified: svnmerge-integrated
   - /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6619
   + /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6623

Modified: trunk/matplotlib/MANIFEST.in
===
--- trunk/matplotlib/MANIFEST.in2008-12-15 20:46:00 UTC (rev 6623)
+++ trunk/matplotlib/MANIFEST.in2008-12-15 20:48:34 UTC (rev 6624)
@@ -1,7 +1,7 @@
 include CHANGELOG KNOWN_BUGS INSTALL
 include INTERACTIVE TODO
 include Makefile  MANIFEST.in MANIFEST
-include matplotlibrc.template matplotlibrc setup.cfg.template
+include matplotlibrc.template setup.cfg.template
 include __init__.py setupext.py setup.py setupegg.py
 include examples/data/*
 include lib/mpl_toolkits

Modified: trunk/matplotlib/setup.py
===
--- trunk/matplotlib/setup.py   2008-12-15 20:46:00 UTC (rev 6623)
+++ trunk/matplotlib/setup.py   2008-12-15 20:48:34 UTC (rev 6624)
@@ -6,6 +6,11 @@
 The matplotlib build options can be modified with a setup.cfg file. See
 setup.cfg.template for more information.
 """
+# distutils is breaking our sdists for files in symlinked dirs.
+# distutils will copy if os.link is not available, so this is a hack
+# to force copying
+import os
+del os.link
 
 # This dict will be updated as we try to select the best option during
 # the build process. However, values in setup.cfg will be used, if


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6625] branches/v0_98_5_maint/lib/matplotlib/axes.py

2008-12-15 Thread mdboom
Revision: 6625
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6625&view=rev
Author:   mdboom
Date: 2008-12-15 20:49:22 + (Mon, 15 Dec 2008)

Log Message:
---
Fix docstring formatting.

Modified Paths:
--
branches/v0_98_5_maint/lib/matplotlib/axes.py

Modified: branches/v0_98_5_maint/lib/matplotlib/axes.py
===
--- branches/v0_98_5_maint/lib/matplotlib/axes.py   2008-12-15 20:48:34 UTC 
(rev 6624)
+++ branches/v0_98_5_maint/lib/matplotlib/axes.py   2008-12-15 20:49:22 UTC 
(rev 6625)
@@ -3174,7 +3174,7 @@
 Return value is a list of lines that were added.
 
 The following format string characters are accepted to control
-the line style or marker
+the line style or marker:
 
 ===
 character   description
@@ -3208,7 +3208,7 @@
 ===
 
 
-The following color abbreviations are supported::
+The following color abbreviations are supported:
 
 ==  
 character   color
@@ -5593,7 +5593,7 @@
 
 %(PolyCollection)s
 
-.. plot:: mpl_examples/pylab_examples/fill_between.py
+.. plot:: mpl_examples/pylab_examples/fill_between.py
 """
 # Handle united data, such as dates
 self._process_unit_info(xdata=x, ydata=y1, kwargs=kwargs)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins


SF.net SVN: matplotlib:[6626] trunk/matplotlib

2008-12-15 Thread mdboom
Revision: 6626
  http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6626&view=rev
Author:   mdboom
Date: 2008-12-15 21:04:03 + (Mon, 15 Dec 2008)

Log Message:
---
Merged revisions 6625 via svnmerge from 
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_98_5_maint


  r6625 | mdboom | 2008-12-15 15:49:22 -0500 (Mon, 15 Dec 2008) | 2 lines
  
  Fix docstring formatting.


Modified Paths:
--
trunk/matplotlib/lib/matplotlib/axes.py

Property Changed:

trunk/matplotlib/
trunk/matplotlib/doc/pyplots/README


Property changes on: trunk/matplotlib
___
Modified: svnmerge-integrated
   - /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6623
   + /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6625
Modified: svn:mergeinfo
   - /branches/v0_91_maint:5753-5771
/branches/v0_98_5_maint:6581,6585,6587,6589-6609,6614,6616
   + /branches/v0_91_maint:5753-5771
/branches/v0_98_5_maint:6581,6585,6587,6589-6609,6614,6616,6625


Property changes on: trunk/matplotlib/doc/pyplots/README
___
Modified: svn:mergeinfo
   - 
/branches/v0_98_5_maint/doc/pyplots/README:6581,6585,6587,6589-6609,6614,6616
   + 
/branches/v0_98_5_maint/doc/pyplots/README:6581,6585,6587,6589-6609,6614,6616,6625

Modified: trunk/matplotlib/lib/matplotlib/axes.py
===
--- trunk/matplotlib/lib/matplotlib/axes.py 2008-12-15 20:49:22 UTC (rev 
6625)
+++ trunk/matplotlib/lib/matplotlib/axes.py 2008-12-15 21:04:03 UTC (rev 
6626)
@@ -3182,7 +3182,7 @@
 Return value is a list of lines that were added.
 
 The following format string characters are accepted to control
-the line style or marker
+the line style or marker:
 
 ===
 character   description
@@ -3216,7 +3216,7 @@
 ===
 
 
-The following color abbreviations are supported::
+The following color abbreviations are supported:
 
 ==  
 character   color


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins