@@ -49,51 +49,8 @@ oriented interface or via a set of functions familiar to MATLAB users.
4949Documentation
5050-------------
5151
52- This is the documentation for Matplotlib version |version |.
53-
5452To get started, read the :doc: `User's Guide <users/index >`.
5553
56- .. raw :: html
57-
58- <p id =" other_versions" ></p >
59-
60- <script >
61- function getSnippet (id , url ) {
62- var req = false ;
63- // For Safari, Firefox, and other non-MS browsers
64- if (window .XMLHttpRequest ) {
65- try {
66- req = new XMLHttpRequest ();
67- } catch (e) {
68- req = false ;
69- }
70- } else if (window .ActiveXObject ) {
71- // For Internet Explorer on Windows
72- try {
73- req = new ActiveXObject (" Msxml2.XMLHTTP" );
74- } catch (e) {
75- try {
76- req = new ActiveXObject (" Microsoft.XMLHTTP" );
77- } catch (e) {
78- req = false ;
79- }
80- }
81- }
82- var element = document .getElementById (id);
83- if (req) {
84- // Synchronous request, wait till we have it all
85- req .open (' GET' , url, false );
86- req .send (null );
87- if (req .status == 200 ) {
88- element .innerHTML = req .responseText ;
89- } else {
90- element .innerHTML = " <mark>Could not find Snippet to insert at " + url + " </mark>"
91- }
92- }
93- }
94- getSnippet (' other_versions' , ' /versions.html' );
95- </script >
96-
9754Trying to learn how to do a particular kind of plot? Check out the
9855:doc: `examples gallery <gallery/index >` or the :doc: `list of plotting commands
9956<api/pyplot_summary>`.
0 commit comments