|
From: <md...@us...> - 2007-09-07 18:53:59
|
Revision: 3813
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3813&view=rev
Author: mdboom
Date: 2007-09-07 11:53:51 -0700 (Fri, 07 Sep 2007)
Log Message:
-----------
Merged revisions 3810-3812 via svnmerge from
http://matplotlib.svn.sf.net/svnroot/matplotlib/trunk/matplotlib
........
r3811 | mdboom | 2007-09-07 14:07:43 -0400 (Fri, 07 Sep 2007) | 2 lines
Note that .bmp is no longer an alias for .raw
........
r3812 | mdboom | 2007-09-07 14:08:43 -0400 (Fri, 07 Sep 2007) | 2 lines
Turn svg.embed_char_paths on by default.
........
Modified Paths:
--------------
branches/transforms/CHANGELOG
branches/transforms/lib/matplotlib/config/mplconfig.py
branches/transforms/lib/matplotlib/config/rcsetup.py
branches/transforms/lib/matplotlib/rcsetup.py
branches/transforms/matplotlibrc.template
Property Changed:
----------------
branches/transforms/
Property changes on: branches/transforms
___________________________________________________________________
Name: svnmerge-integrated
- /trunk/matplotlib:1-3809
+ /trunk/matplotlib:1-3812
Modified: branches/transforms/CHANGELOG
===================================================================
--- branches/transforms/CHANGELOG 2007-09-07 18:08:43 UTC (rev 3812)
+++ branches/transforms/CHANGELOG 2007-09-07 18:53:51 UTC (rev 3813)
@@ -1,3 +1,5 @@
+2007-09-06 .bmp file format is now longer an alias for .raw
+
2007-09-07 Added clip path support to pdf backend. - JKS
2007-09-06 Fixed a bug in the embedding of Type 1 fonts in PDF.
Modified: branches/transforms/lib/matplotlib/config/mplconfig.py
===================================================================
--- branches/transforms/lib/matplotlib/config/mplconfig.py 2007-09-07 18:08:43 UTC (rev 3812)
+++ branches/transforms/lib/matplotlib/config/mplconfig.py 2007-09-07 18:53:51 UTC (rev 3813)
@@ -101,7 +101,7 @@
class svg(TConfig):
image_inline = T.true
image_noscale = T.false
- embed_chars = T.false
+ embed_chars = T.true
class lines(TConfig):
linewidth = T.Float(1.0)
Modified: branches/transforms/lib/matplotlib/config/rcsetup.py
===================================================================
--- branches/transforms/lib/matplotlib/config/rcsetup.py 2007-09-07 18:08:43 UTC (rev 3812)
+++ branches/transforms/lib/matplotlib/config/rcsetup.py 2007-09-07 18:53:51 UTC (rev 3813)
@@ -466,7 +466,7 @@
'pdf.fonttype' : [3, validate_fonttype], # 3 (Type3) or 42 (Truetype)
'svg.image_inline' : [True, validate_bool], # write raster image data directly into the svg file
'svg.image_noscale' : [False, validate_bool], # suppress scaling of raster data embedded in SVG
- 'svg.embed_char_paths' : [False, validate_bool], # True to save all characters as paths in the SVG
+ 'svg.embed_char_paths' : [True, validate_bool], # True to save all characters as paths in the SVG
'plugins.directory' : ['.matplotlib_plugins', str], # where plugin directory is locate
}
Modified: branches/transforms/lib/matplotlib/rcsetup.py
===================================================================
--- branches/transforms/lib/matplotlib/rcsetup.py 2007-09-07 18:08:43 UTC (rev 3812)
+++ branches/transforms/lib/matplotlib/rcsetup.py 2007-09-07 18:53:51 UTC (rev 3813)
@@ -466,7 +466,7 @@
'pdf.fonttype' : [3, validate_fonttype], # 3 (Type3) or 42 (Truetype)
'svg.image_inline' : [True, validate_bool], # write raster image data directly into the svg file
'svg.image_noscale' : [False, validate_bool], # suppress scaling of raster data embedded in SVG
- 'svg.embed_char_paths' : [False, validate_bool], # True to save all characters as paths in the SVG
+ 'svg.embed_char_paths' : [True, validate_bool], # True to save all characters as paths in the SVG
'plugins.directory' : ['.matplotlib_plugins', str], # where plugin directory is locate
}
Modified: branches/transforms/matplotlibrc.template
===================================================================
--- branches/transforms/matplotlibrc.template 2007-09-07 18:08:43 UTC (rev 3812)
+++ branches/transforms/matplotlibrc.template 2007-09-07 18:53:51 UTC (rev 3813)
@@ -292,7 +292,7 @@
# svg backend params
#svg.image_inline : True # write raster image data directly into the svg file
#svg.image_noscale : False # suppress scaling of raster data embedded in SVG
-#svg.embed_chars : False # embed character outlines in the SVG file
+#svg.embed_chars : True # embed character outlines in the SVG file
# Set the verbose flags. This controls how much information
# matplotlib gives you at runtime and where it goes. The verbosity
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|