Re: [matplotlib-devel] new legend interface and WXAgg interactive mode

2008-09-17 Thread Gregor Thalhammer
John Hunter schrieb: >> Second, I am using interactive mode and WXAgg in windows. So my startup >> script does this: >> import matplotlib as _mpl >> _mpl.use('WXAgg') >> import pylab as _p >> _p.ion() >> Before, when I would then type >> gca().plot([1,2,1]) >> > > I would not expect a draw her

Re: [matplotlib-devel] fancy box around text

2008-09-17 Thread Jae-Joon Lee
Hi, I uploaded my patch. https://sourceforge.net/tracker/index.php?func=detail&aid=2116614&group_id=80706&atid=560722 I added a FancyBboxPatch class in the patches.py. And changed text.Text class to support it. Two examples are attached with this email. I hope I have put enough documentation, bu

[matplotlib-devel] SVN Certificate problems

2008-09-17 Thread Ryan May
Hi, Is anyone else seeing some odd messages when trying to use SVN right now? Here's what I see: >svn up Error validating server certificate for 'https://matplotlib.svn.sourceforge.net:443': - The certificate is not issued by a trusted authority. Use the fingerprint to validate the cert

Re: [matplotlib-devel] fancy box around text

2008-09-17 Thread John Hunter
On Wed, Sep 17, 2008 at 1:30 PM, Jae-Joon Lee <[EMAIL PROTECTED]> wrote: > Hi, > > I uploaded my patch. > > https://sourceforge.net/tracker/index.php?func=detail&aid=2116614&group_id=80706&atid=560722 Hi Jae Joon -- thanks for uploading this. I have read through it once and it looks pretty good

Re: [matplotlib-devel] SVN Certificate problems

2008-09-17 Thread John Hunter
On Wed, Sep 17, 2008 at 1:44 PM, Ryan May <[EMAIL PROTECTED]> wrote: > Hi, > > Is anyone else seeing some odd messages when trying to use SVN right > now? Here's what I see: > I just did an svn up w/o incident JDH - This SF

Re: [matplotlib-devel] fancy box around text

2008-09-17 Thread Jae-Joon Lee
Thanks John, I made a single diff file and uploaded it. https://sourceforge.net/tracker/index.php?func=detail&aid=2116614&group_id=80706&atid=560722 Regards, -JJ On Wed, Sep 17, 2008 at 3:01 PM, John Hunter <[EMAIL PROTECTED]> wrote: > On Wed, Sep 17, 2008 at 1:30 PM, Jae-Joon Lee <[EMAIL

Re: [matplotlib-devel] fancy box around text

2008-09-17 Thread Jae-Joon Lee
One thing I forgot to mention is that, in the Text class, draw() method calls _draw_bbox() method. If I call the _draw_bbox() methods after gc in draw() is created, then _draw_bbox call somehow changes the gc in the original draw() method, which I think is not supposed to happen. I haven't looked a

Re: [matplotlib-devel] fancy box around text

2008-09-17 Thread John Hunter
s On Wed, Sep 17, 2008 at 2:50 PM, Jae-Joon Lee <[EMAIL PROTECTED]> wrote: > One thing I forgot to mention is that, in the Text class, draw() > method calls _draw_bbox() method. If I call the _draw_bbox() methods > after gc in draw() is created, then _draw_bbox call somehow changes > the gc in the

Re: [matplotlib-devel] fancy box around text

2008-09-17 Thread John Hunter
On Wed, Sep 17, 2008 at 2:49 PM, Jae-Joon Lee <[EMAIL PROTECTED]> wrote: >>> I uploaded my patch. >>> >>> https://sourceforge.net/tracker/index.php?func=detail&aid=2116614&group_id=80706&atid=560722 OK, I've applied it. I reformatted some of the docstrings and incorporated a bunch of the comment

[matplotlib-devel] doc build fails after sphinx update

2008-09-17 Thread Eric Firing
Mike, After updating sphinx to 66492 from svn, I can't build the mpl docs: [EMAIL PROTECTED]:~/programs/py/mpl/mpl_trunk/doc$ python make.py Extension error: Could not import extension mathmpl (exception: No module named ma) Building HTML failed. Any idea what the problem is? Thanks. Eric --

[matplotlib-devel] color mix

2008-09-17 Thread Jae-Joon Lee
Hello, Attached is a small patch to add a simple color mix operation support. For example, "red!30!white" mixes 30% of red with 70% of white. The syntax is borrowed from latex xcolor package (http://www.ukern.de/tex/xcolor.html). I found it quite handy with the fancy box thing. plt.text(0.6, 0.5,

Re: [matplotlib-devel] doc build fails after sphinx update

2008-09-17 Thread Eric Firing
Mike et al., You can ignore my message. Something is wrong with my numpy installation--an old version is being found. The fact that the problem started when I updated sphinx, and it did something with easy_install, makes me wonder whether that is what started the trouble. I haven't figured

Re: [matplotlib-devel] fancy box around text

2008-09-17 Thread Jae-Joon Lee
Thanks John, Everything seems fine. Thanks again, -JJ On Wed, Sep 17, 2008 at 4:53 PM, John Hunter <[EMAIL PROTECTED]> wrote: > On Wed, Sep 17, 2008 at 2:49 PM, Jae-Joon Lee <[EMAIL PROTECTED]> wrote: > I uploaded my patch. https://sourceforge.net/tracker/index.php?func=detail&ai