Re: [matplotlib-devel] Experimental, traited config module available in svn

2007-07-30 Thread Eric Firing
Darren Dale wrote: > On Monday 30 July 2007 6:58:17 pm Eric Firing wrote: >> Darren, >> >> It looks like there is a problem with the grid lines. Although the >> matplotlib.conf file is specifying linestyle = ':', and False for the >> axes.grid parameter, everything is coming up with solid lines (

Re: [matplotlib-devel] Experimental, traited config module available in svn

2007-07-30 Thread Darren Dale
On Monday 30 July 2007 6:58:17 pm Eric Firing wrote: > Darren, > > It looks like there is a problem with the grid lines. Although the > matplotlib.conf file is specifying linestyle = ':', and False for the > axes.grid parameter, everything is coming up with solid lines (see > barh_demo.py, for ex

Re: [matplotlib-devel] Experimental, traited config module available in svn

2007-07-30 Thread Darren Dale
On Monday 30 July 2007 7:10:01 pm Eric Firing wrote: > Darren Dale wrote: > > I just committed changes in svn that will allow matplotlib to use the > > experimental traited mplconfig module. The traited config object itself > > is called mplConfig, but I wrapped it in an object called rcParams to >

Re: [matplotlib-devel] Experimental, traited config module available in svn

2007-07-30 Thread Eric Firing
Darren Dale wrote: > I just committed changes in svn that will allow matplotlib to use the > experimental traited mplconfig module. The traited config object itself is > called mplConfig, but I wrapped it in an object called rcParams to make it > compatible with matplotlib, so we can kick the ti

Re: [matplotlib-devel] Experimental, traited config module available in svn

2007-07-30 Thread Eric Firing
Darren, It looks like there is a problem with the grid lines. Although the matplotlib.conf file is specifying linestyle = ':', and False for the axes.grid parameter, everything is coming up with solid lines (see barh_demo.py, for example) by default. It looks like those two keys are not set

Re: [matplotlib-devel] Experimental, traited config module available in svn

2007-07-30 Thread Eric Firing
Darren, When I make a clean build and install, set NEWCONFIG, and try to run I get a permission problem. It looks like the problem is that the global matplotlib.conf is not getting generated and installed at build/install time, but I have not investigated it. Eric convert! Traceback (most re

Re: [matplotlib-devel] Experimental, traited config module available in svn

2007-07-30 Thread Darren Dale
On Monday 30 July 2007 4:49:24 pm Eric Firing wrote: > Darren, > > When I make a clean build and install, set NEWCONFIG, and try to run I > get a permission problem. It looks like the problem is that the global > matplotlib.conf is not getting generated and installed at build/install > time, but I

Re: [matplotlib-devel] Experimental, traited config module available in svn

2007-07-30 Thread Michael Droettboom
Darren Dale wrote: > On Monday 30 July 2007 03:33:11 pm you wrote: > >> Darren Dale wrote: >> >>> I ran backend_driver with the traited config enabled, and the only errors >>> I got were related to broken mathtext support in backend_svg, and I think >>> those are unrelated to my changes. >>

Re: [matplotlib-devel] Experimental, traited config module available in svn

2007-07-30 Thread Michael Droettboom
Darren Dale wrote: > I ran backend_driver with the traited config enabled, and the only errors I > got were related to broken mathtext support in backend_svg, and I think those > are unrelated to my changes. > I think I broke that for a few hours this morning, but it's working for me now. N

[matplotlib-devel] Experimental, traited config module available in svn

2007-07-30 Thread Darren Dale
I just committed changes in svn that will allow matplotlib to use the experimental traited mplconfig module. The traited config object itself is called mplConfig, but I wrapped it in an object called rcParams to make it compatible with matplotlib, so we can kick the tires without extensive chan