> # add british equivs
> for k, v in cnames.items():
>if k.find('gray')>=0:
>k = k.replace('gray', 'grey')
>cnames[k] = v
Neat, that's a much better idea.
> Note that in pylab, you can get some extra information by doing
>
help(colors)
Thanks. I really like all the new
John Hunter wrote:
> Thanks for the suggestion -- I did this automagically with
# add british equivs
for k, v in cnames.items():
if k.find('gray')>=0:
k = k.replace('gray', 'grey')
cnames[k] = v
Just noticed that 'lightgrey' is still in the cnames dict, which means
that 'lig
On 2/12/07, Andrew Straw <[EMAIL PROTECTED]> wrote:
> Great, thanks for checking that in.
>
> It looks like images/*.png didn't make it in.
OK, I committed these. I'm not sure why they didn't go in the first
time since they were in my mpl-data/images dir when I added it. Give
it a test drive.
-
On 2/13/07, John Hunter <[EMAIL PROTECTED]> wrote:
> On 2/12/07, Andrew Straw <[EMAIL PROTECTED]> wrote:
> > Great, thanks for checking that in.
> >
> > It looks like images/*.png didn't make it in.
>
> OK, I committed these. I'm not sure why they didn't go in the first
> time since they were in m
I suppose the year of the last entries of CHANGELOG is 2007, not 2006.
Regards,
Nicolas Grilly
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology
On 2/13/07, Nicolas Grilly <[EMAIL PROTECTED]> wrote:
> Here is a patch I promised some time ago, to improve the PDF backend.
Jouni,
I'm going to leave this up to you, but Nicolas this looks very nice. Thanks!
JDH
-
Using