SF.net SVN: matplotlib:[6442] trunk/matplotlib
Revision: 6442 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6442&view=rev Author: mdboom Date: 2008-11-24 20:12:55 + (Mon, 24 Nov 2008) Log Message: --- [ 2314869 ] Log base-2 axes fail with certain axis limits Modified Paths: -- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/ticker.py Modified: trunk/matplotlib/CHANGELOG === --- trunk/matplotlib/CHANGELOG 2008-11-24 03:53:14 UTC (rev 6441) +++ trunk/matplotlib/CHANGELOG 2008-11-24 20:12:55 UTC (rev 6442) @@ -1,3 +1,5 @@ +2008-11-24 Fix crash in log ticking. - MGD + 2008-11-20 Added some static helper methods BrokenHBarCollection.span_masked and PolyCollection.fill_between_where for visualizing logical Modified: trunk/matplotlib/lib/matplotlib/ticker.py === --- trunk/matplotlib/lib/matplotlib/ticker.py 2008-11-24 03:53:14 UTC (rev 6441) +++ trunk/matplotlib/lib/matplotlib/ticker.py 2008-11-24 20:12:55 UTC (rev 6442) @@ -1037,7 +1037,7 @@ decades = np.arange(math.floor(vmin), math.ceil(vmax)+stride, stride) -if len(subs) > 1 or subs[0] != 1.0: +if len(subs) > 1 or (len(subs == 1) and subs[0] != 1.0): ticklocs = [] for decadeStart in b**decades: ticklocs.extend( subs*decadeStart ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ___ Matplotlib-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins
SF.net SVN: matplotlib:[6443] trunk/matplotlib/CHANGELOG
Revision: 6443 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6443&view=rev Author: mdboom Date: 2008-11-24 20:14:21 + (Mon, 24 Nov 2008) Log Message: --- [ 2314869 ] Log base-2 axes fail with certain axis limits Modified Paths: -- trunk/matplotlib/CHANGELOG Modified: trunk/matplotlib/CHANGELOG === --- trunk/matplotlib/CHANGELOG 2008-11-24 20:12:55 UTC (rev 6442) +++ trunk/matplotlib/CHANGELOG 2008-11-24 20:14:21 UTC (rev 6443) @@ -103,7 +103,6 @@ === 2008-09-11 Fix use of backticks in PS - MGD ->>> .merge-right.r6086 2008-09-07 Changed full arrows slightly to avoid an xpdf rendering problem reported by Friedrich Hagedorn. - JKS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ___ Matplotlib-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins
SF.net SVN: matplotlib:[6444] trunk/matplotlib/CHANGELOG
Revision: 6444 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6444&view=rev Author: mdboom Date: 2008-11-24 20:18:38 + (Mon, 24 Nov 2008) Log Message: --- Remove conflict markers from CHANGELOG. Modified Paths: -- trunk/matplotlib/CHANGELOG Modified: trunk/matplotlib/CHANGELOG === --- trunk/matplotlib/CHANGELOG 2008-11-24 20:14:21 UTC (rev 6443) +++ trunk/matplotlib/CHANGELOG 2008-11-24 20:18:38 UTC (rev 6444) @@ -29,6 +29,8 @@ 2008-11-09 Fix a possible EINTR problem in dviread, which might help when saving pdf files from the qt backend. - JKS +2008-11-05 Fix bug with zoom to rectangle and twin axes - MGD + 2008-10-24 Added Jae Joon's fancy arrow, box and annotation enhancements -- see examples/pylab_examples/annotation_demo2.py @@ -53,10 +55,6 @@ 2008-10-08 Add path simplification support to paths with gaps. - EF -=== -2008-11-05 Fix bug with zoom to rectangle and twin axes - MGD - ->>> .merge-right.r6428 2008-10-05 Fix problem with AFM files that don't specify the font's full name or family name. - JKS @@ -100,9 +98,6 @@ 2008-09-10 Add "filled" kwarg to Path.intersects_path and Path.intersects_bbox. - MGD -=== -2008-09-11 Fix use of backticks in PS - MGD - 2008-09-07 Changed full arrows slightly to avoid an xpdf rendering problem reported by Friedrich Hagedorn. - JKS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ___ Matplotlib-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins
SF.net SVN: matplotlib:[6445] trunk/matplotlib
Revision: 6445
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6445&view=rev
Author: jdh2358
Date: 2008-11-25 04:03:59 + (Tue, 25 Nov 2008)
Log Message:
---
point to the right url for the rc file
Modified Paths:
--
trunk/matplotlib/CHANGELOG
trunk/matplotlib/doc/_templates/gallery.html
trunk/matplotlib/doc/_templates/indexsidebar.html
trunk/matplotlib/doc/make.py
trunk/matplotlib/doc/users/customizing.rst
trunk/matplotlib/lib/matplotlib/__init__.py
trunk/matplotlib/matplotlibrc.template
Modified: trunk/matplotlib/CHANGELOG
===
--- trunk/matplotlib/CHANGELOG 2008-11-24 20:18:38 UTC (rev 6444)
+++ trunk/matplotlib/CHANGELOG 2008-11-25 04:03:59 UTC (rev 6445)
@@ -1,9 +1,8 @@
2008-11-24 Fix crash in log ticking. - MGD
-2008-11-20 Added some static helper methods
- BrokenHBarCollection.span_masked and
- PolyCollection.fill_between_where for visualizing logical
- regions. See examples/api/fill_where_demo.py - JDH
+2008-11-20 Added static helper method BrokenHBarCollection.span_where
+ and Axes/pyplot method fill_between. See
+ examples/pylab/fill_between.py - JDH
2008-11-12 Add x_isdata and y_isdata attributes to Artist instances,
and use them to determine whether either or both
Modified: trunk/matplotlib/doc/_templates/gallery.html
===
--- trunk/matplotlib/doc/_templates/gallery.html2008-11-24 20:18:38 UTC
(rev 6444)
+++ trunk/matplotlib/doc/_templates/gallery.html2008-11-25 04:03:59 UTC
(rev 6445)
@@ -49,6 +49,8 @@
+
+
@@ -157,6 +159,8 @@
+
+
@@ -223,9 +227,9 @@
-
+
-
+
@@ -419,6 +423,8 @@
+
+
Modified: trunk/matplotlib/doc/_templates/indexsidebar.html
===
--- trunk/matplotlib/doc/_templates/indexsidebar.html 2008-11-24 20:18:38 UTC
(rev 6444)
+++ trunk/matplotlib/doc/_templates/indexsidebar.html 2008-11-25 04:03:59 UTC
(rev 6445)
@@ -33,7 +33,7 @@
For details on what's new, see the detailed changelog. Anything that could
-required changes to your existing codes is logged in the api changes file.
Other stuff
Modified: trunk/matplotlib/doc/make.py
===
--- trunk/matplotlib/doc/make.py2008-11-24 20:18:38 UTC (rev 6444)
+++ trunk/matplotlib/doc/make.py2008-11-25 04:03:59 UTC (rev 6445)
@@ -17,9 +17,6 @@
def sf():
'push a copy to the sf site'
shutil.copy('../CHANGELOG', 'build/html/_static/CHANGELOG')
-shutil.copy('../API_CHANGES', 'build/html/_static/API_CHANGES')
-shutil.copy('../MIGRATION.txt', 'build/html/_static/MIGRATION.txt')
-
os.system('cd build/html; rsync -avz . jdh2358,[EMAIL
PROTECTED]:/home/groups/m/ma/matplotlib/htdocs/ -essh --cvs-exclude')
def sfpdf():
@@ -44,6 +41,7 @@
check_build()
if not os.path.exists('examples/index.rst'):
examples()
+shutil.copy('mpl_data/matplotlibrc', '_static/matplotlibrc')
#figs()
if os.system('sphinx-build -b html -d build/doctrees . build/html'):
raise SystemExit("Building HTML failed.")
Modified: trunk/matplotlib/doc/users/customizing.rst
===
--- trunk/matplotlib/doc/users/customizing.rst 2008-11-24 20:18:38 UTC (rev
6444)
+++ trunk/matplotlib/doc/users/customizing.rst 2008-11-25 04:03:59 UTC (rev
6445)
@@ -61,6 +61,10 @@
.. _matplotlibrc-sample:
A sample matplotlibrc file
---
+
+.. htmlonly::
+
+`(download) <../_static/matplotlibrc>`__
+
.. literalinclude:: ../mpl_data/matplotlibrc
Modified: trunk/matplotlib/lib/matplotlib/__init__.py
===
--- trunk/matplotlib/lib/matplotlib/__init__.py 2008-11-24 20:18:38 UTC (rev
6444)
+++ trunk/matplotlib/lib/matplotlib/__init__.py 2008-11-25 04:03:59 UTC (rev
6445)
@@ -666,7 +666,7 @@
Bad key "%s" on line %d in
%s.
You probably need to get an updated matplotlibrc file from
-http://matplotlib.sf.net/matplotlibrc or from the matplotlib source
+http://matplotlib.sf.net/_static/matplotlibrc or from the matplotlib source
distribution""" % (key, cnt, fname)
if ret['datapath'] is None:
Modified: trunk/matplotlib/matplotlibrc.template
===
--- trunk/matplotlib/matplotlibrc.template 2008-11-24 20:18:38 UTC (rev
6444)
+++ trunk/matplotlib/matplotlibrc.template 2008-11-25 04:03:59 UTC (rev
6445)
@@ -10,13 +10,16 @@
# (win32 systems).
#
# This file is best viewed in a editor which supports python mode
-# syntax highlighting # Blank lines, or lines starting
