From: <jd...@us...> - 2008-05-25 21:24:27
|
Revision: 5269 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5269&view=rev Author: jdh2358 Date: 2008-05-25 14:24:24 -0700 (Sun, 25 May 2008) Log Message: ----------- added faq placeholder Modified Paths: -------------- trunk/matplotlib/doc/index.rst trunk/matplotlib/doc/make.py Added Paths: ----------- trunk/matplotlib/doc/faq/ trunk/matplotlib/doc/faq/index.rst trunk/matplotlib/doc/faq/installing_faq.rst trunk/matplotlib/doc/faq/plotting_faq.rst Added: trunk/matplotlib/doc/faq/index.rst =================================================================== --- trunk/matplotlib/doc/faq/index.rst (rev 0) +++ trunk/matplotlib/doc/faq/index.rst 2008-05-25 21:24:24 UTC (rev 5269) @@ -0,0 +1,16 @@ +.. _api-index: + +#################### + The Matplotlib FAQ +#################### + +:Release: |version| +:Date: |today| + +Frequently asked questions about matplotlib + +.. toctree:: + + installing_faq.rst + plotting_faq.rst + Added: trunk/matplotlib/doc/faq/installing_faq.rst =================================================================== --- trunk/matplotlib/doc/faq/installing_faq.rst (rev 0) +++ trunk/matplotlib/doc/faq/installing_faq.rst 2008-05-25 21:24:24 UTC (rev 5269) @@ -0,0 +1,7 @@ +**************** +Installation FAQ +**************** + + + + Added: trunk/matplotlib/doc/faq/plotting_faq.rst =================================================================== --- trunk/matplotlib/doc/faq/plotting_faq.rst (rev 0) +++ trunk/matplotlib/doc/faq/plotting_faq.rst 2008-05-25 21:24:24 UTC (rev 5269) @@ -0,0 +1,5 @@ +************ +Plotting FAQ +************ + + Modified: trunk/matplotlib/doc/index.rst =================================================================== --- trunk/matplotlib/doc/index.rst 2008-05-25 21:14:01 UTC (rev 5268) +++ trunk/matplotlib/doc/index.rst 2008-05-25 21:24:24 UTC (rev 5269) @@ -11,6 +11,7 @@ :maxdepth: 2 users/index.rst + faq/index.rst devel/index.rst api/index.rst Modified: trunk/matplotlib/doc/make.py =================================================================== --- trunk/matplotlib/doc/make.py 2008-05-25 21:14:01 UTC (rev 5268) +++ trunk/matplotlib/doc/make.py 2008-05-25 21:24:24 UTC (rev 5269) @@ -6,7 +6,7 @@ import sys def check_build(): - build_dirs = ['build', 'build/doctrees', 'build/html', 'build/latex', + build_dirs = ['build', 'build/doctrees', 'build/html', 'build/latex', '_static', '_templates'] for d in build_dirs: try: @@ -19,23 +19,26 @@ def html(): check_build() + figs() os.system('sphinx-build -b html -d build/doctrees . build/html') def latex(): + check_build() + figs() if sys.platform != 'win32': # LaTeX format. os.system('sphinx-build -b latex -d build/doctrees . build/latex') - + # Produce pdf. os.chdir('build/latex') - + # Copying the makefile produced by sphinx... os.system('pdflatex Matplotlib.tex') os.system('pdflatex Matplotlib.tex') os.system('makeindex -s python.ist Matplotlib.idx') os.system('makeindex -s python.ist modMatplotlib.idx') os.system('pdflatex Matplotlib.tex') - + os.chdir('../..') else: print 'latex build has not been tested on windows' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |