|
From: <ds...@us...> - 2008-06-13 12:11:34
|
Revision: 5500
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5500&view=rev
Author: dsdale
Date: 2008-06-13 05:11:33 -0700 (Fri, 13 Jun 2008)
Log Message:
-----------
added api file for matplotlib configuration
Modified Paths:
--------------
trunk/matplotlib/doc/users/customizing.rst
Added Paths:
-----------
trunk/matplotlib/doc/api/matplotlib_configuration_api.rst
Added: trunk/matplotlib/doc/api/matplotlib_configuration_api.rst
===================================================================
--- trunk/matplotlib/doc/api/matplotlib_configuration_api.rst (rev 0)
+++ trunk/matplotlib/doc/api/matplotlib_configuration_api.rst 2008-06-13 12:11:33 UTC (rev 5500)
@@ -0,0 +1,24 @@
+************************
+matplotlib configuration
+************************
+
+
+:mod:`matplotlib`
+=================
+
+.. autofunction:: matplotlib.get_backend
+.. autofunction:: matplotlib.get_configdir
+.. autofunction:: matplotlib.interactive
+.. autofunction:: matplotlib.rc
+.. autofunction:: matplotlib.rcdefaults
+.. autoclass:: matplotlib.RcParams
+.. autofunction:: matplotlib.use
+.. autoclass:: matplotlib.Verbose
+
+
+:mod:`matplotlib.rcsetup`
+=============================
+
+.. automodule:: matplotlib.rcsetup
+ :members:
+ :undoc-members:
\ No newline at end of file
Modified: trunk/matplotlib/doc/users/customizing.rst
===================================================================
--- trunk/matplotlib/doc/users/customizing.rst 2008-06-12 22:06:09 UTC (rev 5499)
+++ trunk/matplotlib/doc/users/customizing.rst 2008-06-13 12:11:33 UTC (rev 5500)
@@ -20,13 +20,12 @@
specific customizations that you do not want to apply elsewhere.
2. :file:`.matplotlib/matplotlibrc`, for the user's default customizations. See
:ref:`locating-matplotlib-config-dir`.
-3. :file:`{INSTALL}/matplotlib/mpl-data/matplotlibrc`, where
- :file:`{INSTALL}` is something like
- :file:`/usr/lib/python2.5/site-packages` on Linux, and maybe
- :file:`C:\\Python25\\Lib\\site-packages` on Windows. Every time you
- install matplotlib, this file will be overwritten, so if you want
- your customizations to be saved, please move this file to you
- :file:`.matplotlib` directory.
+3. :file:`{INSTALL}/matplotlib/mpl-data/matplotlibrc`, where :file:`{INSTALL}`
+ is something like :file:`/usr/lib/python2.5/site-packages` on Linux, and
+ maybe :file:`C:\\Python25\\Lib\\site-packages` on Windows. Every time you
+ install matplotlib, this file will be overwritten, so if you want your
+ customizations to be saved, please move this file to you :file:`.matplotlib`
+ directory.
See below for a sample :ref:`matplotlibrc file<matplotlibrc-sample>`.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|