SF.net SVN: matplotlib:[6481] trunk/matplotlib/doc/README.txt
Revision: 6481 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6481&view=rev Author: astraw Date: 2008-12-03 08:27:12 + (Wed, 03 Dec 2008) Log Message: --- add info about how to build HTML documentation Modified Paths: -- trunk/matplotlib/doc/README.txt Modified: trunk/matplotlib/doc/README.txt === --- trunk/matplotlib/doc/README.txt 2008-12-03 07:40:09 UTC (rev 6480) +++ trunk/matplotlib/doc/README.txt 2008-12-03 08:27:12 UTC (rev 6481) @@ -32,3 +32,9 @@ * mpl_examples - a link to the matplotlib examples in case any documentation wants to literal include them + +To build the HTML documentation, install sphinx (0.5 or greater +required), then type "python make.py html" in this directory. Wait +for the initial run (which builds the example gallery) to be done, +then run "python make.py html" again. The top file of the results will +be ./build/html/index.html 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:[6482] trunk/matplotlib/doc/_templates/index.html
Revision: 6482 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6482&view=rev Author: astraw Date: 2008-12-03 09:07:27 + (Wed, 03 Dec 2008) Log Message: --- docs: add hexbin link in main overview page Modified Paths: -- trunk/matplotlib/doc/_templates/index.html Modified: trunk/matplotlib/doc/_templates/index.html === --- trunk/matplotlib/doc/_templates/index.html 2008-12-03 08:27:12 UTC (rev 6481) +++ trunk/matplotlib/doc/_templates/index.html 2008-12-03 09:07:27 UTC (rev 6482) @@ -490,6 +490,17 @@ +hexbin + + + + +make a 2D hexagonal binning plot + + + + + hist 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:[6483] trunk/matplotlib/lib/matplotlib/projections/ geo.py
Revision: 6483 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6483&view=rev Author: mdboom Date: 2008-12-03 15:33:53 + (Wed, 03 Dec 2008) Log Message: --- Fix degree display in geographic transforms, also. Modified Paths: -- trunk/matplotlib/lib/matplotlib/projections/geo.py Modified: trunk/matplotlib/lib/matplotlib/projections/geo.py === --- trunk/matplotlib/lib/matplotlib/projections/geo.py 2008-12-03 09:07:27 UTC (rev 6482) +++ trunk/matplotlib/lib/matplotlib/projections/geo.py 2008-12-03 15:33:53 UTC (rev 6483) @@ -29,8 +29,10 @@ def __call__(self, x, pos=None): degrees = (x / np.pi) * 180.0 degrees = round(degrees / self._round_to) * self._round_to -# \u00b0 : degree symbol -return u"%d\u00b0" % degrees +if rcParams['text.usetex'] and not rcParams['text.latex.unicode']: +return r"$%0.0f^\circ$" % degrees +else: +return u"%0.0f\u00b0" % degrees RESOLUTION = 75 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:[6484] trunk/matplotlib/lib/matplotlib/backends/ backend_wx.py
Revision: 6484 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6484&view=rev Author: jdh2358 Date: 2008-12-03 18:38:03 + (Wed, 03 Dec 2008) Log Message: --- committed Gregor's enter notify update for backend wx Modified Paths: -- trunk/matplotlib/lib/matplotlib/backends/backend_wx.py Modified: trunk/matplotlib/lib/matplotlib/backends/backend_wx.py === --- trunk/matplotlib/lib/matplotlib/backends/backend_wx.py 2008-12-03 15:33:53 UTC (rev 6483) +++ trunk/matplotlib/lib/matplotlib/backends/backend_wx.py 2008-12-03 18:38:03 UTC (rev 6484) @@ -743,6 +743,7 @@ bind(self, wx.EVT_LEFT_UP, self._onLeftButtonUp) bind(self, wx.EVT_MOTION, self._onMotion) bind(self, wx.EVT_LEAVE_WINDOW, self._onLeave) +bind(self, wx.EVT_ENTER_WINDOW, self._onEnter) bind(self, wx.EVT_IDLE, self._onIdle) self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM) @@ -1268,7 +1269,11 @@ evt.Skip() FigureCanvasBase.leave_notify_event(self, guiEvent = evt) +def _onEnter(self, evt): +"""Mouse has entered the window.""" +FigureCanvasBase.enter_notify_event(self, guiEvent = evt) + # # The following functions and classes are for pylab compatibility 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:[6485] trunk/matplotlib/examples/pylab_examples/ fancyarrow_demo.py
Revision: 6485 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6485&view=rev Author: jdh2358 Date: 2008-12-03 18:50:49 + (Wed, 03 Dec 2008) Log Message: --- use standard axes creation func Modified Paths: -- trunk/matplotlib/examples/pylab_examples/fancyarrow_demo.py Modified: trunk/matplotlib/examples/pylab_examples/fancyarrow_demo.py === --- trunk/matplotlib/examples/pylab_examples/fancyarrow_demo.py 2008-12-03 18:38:03 UTC (rev 6484) +++ trunk/matplotlib/examples/pylab_examples/fancyarrow_demo.py 2008-12-03 18:50:49 UTC (rev 6485) @@ -7,9 +7,9 @@ fig1 = plt.figure(1, (4, figheight)) fontsize = 0.3 * fig1.dpi -ax = plt.Axes(fig1, [0, 0, 1, 1], frameon=False, aspect=1.) -fig1.add_axes(ax) +ax = fig1.add_axes([0, 0, 1, 1], frameon=False, aspect=1.) + ax.set_xlim(0, 4) ax.set_ylim(0, figheight) @@ -17,9 +17,7 @@ y = (float(len(styles)) -0.25 - i) # /figheight p = mpatches.Circle((3.2, y), 0.2, fc="w") ax.add_patch(p) -#ax.plot([0.8], [y], "o", mec="b", mfc="w", ms=20, transform=fig1.transFigure) -#ax.scatter([0.8], [y], s=20*20, marker="o", edgecolors=["b"], facecolors=["w"], -# ) + ax.annotate(stylename, (3.2, y), (2., y), #xycoords="figure fraction", textcoords="figure fraction", 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:[6486] trunk/matplotlib/README.git
Revision: 6486 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6486&view=rev Author: astraw Date: 2008-12-04 01:52:51 + (Thu, 04 Dec 2008) Log Message: --- add github instructions Added Paths: --- trunk/matplotlib/README.git Added: trunk/matplotlib/README.git === --- trunk/matplotlib/README.git (rev 0) +++ trunk/matplotlib/README.git 2008-12-04 01:52:51 UTC (rev 6486) @@ -0,0 +1,16 @@ +To clone from the `matplotlib github mirror`_ into the directory +``mpl.git``, enter the following commands. These instructions assume +you already have a github login (-- they use the personal [EMAIL PROTECTED] clone URL instead of the git://github.com clone URL):: + + # This will create your copy in the mpl.git directory + git clone [EMAIL PROTECTED]:astraw/matplotlib.git mpl.git + cd mpl.git + git config --add remote.origin.fetch +refs/remotes/*:refs/remotes/* + git fetch + git svn init --trunk=trunk/matplotlib --tags=tags https://matplotlib.svn.sourceforge.net/svnroot/matplotlib + + # Now just get the latest svn revisions from the SourceForge SVN repository + git svn fetch -r 6300:HEAD + +.. _matplotlib github mirror: http://github.com/astraw/matplotlib 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:[6487] trunk/matplotlib/README.git
Revision: 6487 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6487&view=rev Author: astraw Date: 2008-12-04 01:58:58 + (Thu, 04 Dec 2008) Log Message: --- further improvements to github instructions Modified Paths: -- trunk/matplotlib/README.git Modified: trunk/matplotlib/README.git === --- trunk/matplotlib/README.git 2008-12-04 01:52:51 UTC (rev 6486) +++ trunk/matplotlib/README.git 2008-12-04 01:58:58 UTC (rev 6487) @@ -1,7 +1,8 @@ -To clone from the `matplotlib github mirror`_ into the directory -``mpl.git``, enter the following commands. These instructions assume -you already have a github login (-- they use the personal [EMAIL PROTECTED] clone URL instead of the git://github.com clone URL):: +There is an experimental `matplotlib github mirror`_ of the subversion +repository. To make a local clone it the directory ``mpl.git``, enter +the following commands. These instructions assume you already have a +github login (-- they use the personal [EMAIL PROTECTED] clone URL +instead of the git://github.com clone URL):: # This will create your copy in the mpl.git directory git clone [EMAIL PROTECTED]:astraw/matplotlib.git mpl.git @@ -14,3 +15,15 @@ git svn fetch -r 6300:HEAD .. _matplotlib github mirror: http://github.com/astraw/matplotlib + +To update your git repository with the latest svn updates from SourceForge:: + + git svn rebase + +To list what changes will be committed to svn:: + + git svn dcommit -n + +To commit your changes to svn:: + + git svn dcommit 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
