|
From: <ry...@us...> - 2009-10-16 17:31:59
|
Revision: 7889
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7889&view=rev
Author: ryanmay
Date: 2009-10-16 17:31:42 +0000 (Fri, 16 Oct 2009)
Log Message:
-----------
Make AutoDateFormatter actually use any specified timezone setting. This was only working correctly when no timezone was specified.
Modified Paths:
--------------
trunk/matplotlib/CHANGELOG
trunk/matplotlib/lib/matplotlib/dates.py
Modified: trunk/matplotlib/CHANGELOG
===================================================================
--- trunk/matplotlib/CHANGELOG 2009-10-16 04:38:36 UTC (rev 7888)
+++ trunk/matplotlib/CHANGELOG 2009-10-16 17:31:42 UTC (rev 7889)
@@ -1,6 +1,10 @@
+2009-10-16 Make AutoDateFormatter actually use any specified
+ timezone setting.This was only working correctly
+ when no timezone was specified. - RMM
+
2009-09-27 Beginnings of a capability to test the pdf backend. - JKS
-2009-09-27 Add a savefig.extension rcparam to control the default
+2009-09-27 Add a savefig.extension rcparam to control the default
filename extension used by savefig. - JKS
===============================================
@@ -15,18 +19,18 @@
against exceptions in case a dvi font is missing some metrics. - JKS
2009-09-15 Implement draw_text and draw_tex method of backend_base using
- the textpath module. Implement draw_tex method of the svg
+ the textpath module. Implement draw_tex method of the svg
backend. - JJL
2009-09-15 Don't fail on AFM files containing floating-point bounding boxes - JKS
-2009-09-13 AxesGrid : add modified version of colorbar. Add colorbar
+2009-09-13 AxesGrid : add modified version of colorbar. Add colorbar
location howto. - JJL
-2009-09-07 AxesGrid : implemented axisline style.
+2009-09-07 AxesGrid : implemented axisline style.
Added a demo examples/axes_grid/demo_axisline_style.py- JJL
-2009-09-04 Make the textpath class as a separate moduel
+2009-09-04 Make the textpath class as a separate moduel
(textpath.py). Add support for mathtext and tex.- JJL
2009-09-01 Added support for Gouraud interpolated triangles.
Modified: trunk/matplotlib/lib/matplotlib/dates.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/dates.py 2009-10-16 04:38:36 UTC (rev 7888)
+++ trunk/matplotlib/lib/matplotlib/dates.py 2009-10-16 17:31:42 UTC (rev 7889)
@@ -450,7 +450,7 @@
fmt = self.scaled[k]
break
- self._formatter = DateFormatter(fmt)
+ self._formatter = DateFormatter(fmt, self._tz)
return self._formatter(x, pos)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|