@@ -578,7 +578,6 @@ that the bug reports will be a conversation. If you do not want to
578578register with github, please email bug reports to the `mailing list
579579580580
581-
582581The easiest way to submit patches to Matplotlib is through pull
583582requests on github. Please see the :ref: `developers-guide-index ` for
584583the details.
@@ -599,7 +598,7 @@ corners. This is where you come in.
599598There is a good chance you know more about Matplotlib usage in some
600599areas, the stuff you do every day, than many of the core developers
601600who wrote most of the documentation. Just pulled your hair out
602- compiling Matplotlib for windows ? Write a FAQ or a section for the
601+ compiling Matplotlib for Windows ? Write a FAQ or a section for the
603602:ref: `installing-faq ` page. Are you a digital signal processing wizard?
604603Write a tutorial on the signal analysis plotting functions like
605604:func: `~matplotlib.pyplot.xcorr `, :func: `~matplotlib.pyplot.psd ` and
@@ -637,7 +636,7 @@ or look at the open issues on github.
637636Matplotlib in a web application server
638637======================================
639638
640- Many users report initial problems trying to use maptlotlib in web
639+ Many users report initial problems trying to use Matplotlib in web
641640application servers, because by default Matplotlib ships configured to
642641work with a graphical user interface which may require an X11
643642connection. Since many barebones application servers do not have X11
@@ -657,14 +656,14 @@ Agg is to call::
657656 matplotlib.use('Agg')
658657 import matplotlib.pyplot as plt
659658
660- For more on configuring your backend, see
661- :ref: `what-is-a-backend `.
659+ For more on configuring your backend, see :ref: `what-is-a-backend `.
662660
663661Alternatively, you can avoid pylab/pyplot altogether, which will give
664662you a little more control, by calling the API directly as shown in
665663:doc: `/gallery/user_interfaces/canvasagg `.
666664
667- You can either generate hardcopy on the filesystem by calling savefig::
665+ You can either generate hardcopy on the filesystem by calling
666+ `.Figure.savefig() `::
668667
669668 # do this before importing pylab or pyplot
670669 import matplotlib
@@ -692,21 +691,6 @@ Pillow for further processing::
692691 im = Image.open(imgdata)
693692
694693
695- Matplotlib with apache
696- ----------------------
697-
698- TODO; see :ref: `how-to-contribute-docs `.
699-
700- Matplotlib with django
701- ----------------------
702-
703- TODO; see :ref: `how-to-contribute-docs `.
704-
705- Matplotlib with zope
706- --------------------
707-
708- TODO; see :ref: `how-to-contribute-docs `.
709-
710694.. _howto-click-maps :
711695
712696Clickable images for HTML
0 commit comments