Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f578117

Browse files
committed
Fix version list
1 parent 079997c commit f578117

File tree

1 file changed

+43
-8
lines changed

1 file changed

+43
-8
lines changed

index.html

Lines changed: 43 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<html xmlns="http://www.w3.org/1999/xhtml">
66
<head>
77
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8-
8+
99
<title>matplotlib: python plotting &mdash; Matplotlib 1.2.1 documentation</title>
10-
10+
1111
<link rel="stylesheet" href="_static/mpl.css" type="text/css" />
1212
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
13-
13+
1414
<script type="text/javascript">
1515
var DOCUMENTATION_OPTIONS = {
1616
URL_ROOT: './',
@@ -26,7 +26,7 @@
2626
<link rel="search" type="application/opensearchdescription+xml"
2727
title="Search within Matplotlib 1.2.1 documentation"
2828
href="_static/opensearch.xml"/>
29-
<link rel="top" title="Matplotlib 1.2.1 documentation" href="#" />
29+
<link rel="top" title="Matplotlib 1.2.1 documentation" href="#" />
3030
</head>
3131
<body>
3232
<!-- Piwik -->
@@ -48,6 +48,41 @@
4848
}
4949
</script>
5050
<!-- End Piwik Tag -->
51+
52+
<script>
53+
function getSnippet(id, url) {
54+
var req = false;
55+
// For Safari, Firefox, and other non-MS browsers
56+
if (window.XMLHttpRequest) {
57+
try {
58+
req = new XMLHttpRequest();
59+
} catch (e) {
60+
req = false;
61+
}
62+
} else if (window.ActiveXObject) {
63+
// For Internet Explorer on Windows
64+
try {
65+
req = new ActiveXObject("Msxml2.XMLHTTP");
66+
} catch (e) {
67+
try {
68+
req = new ActiveXObject("Microsoft.XMLHTTP");
69+
} catch (e) {
70+
req = false;
71+
}
72+
}
73+
}
74+
var element = document.getElementById(id);
75+
if (req) {
76+
// Synchronous request, wait till we have it all
77+
req.open('GET', url, false);
78+
req.send(null);
79+
element.innerHTML = req.responseText;
80+
}
81+
}
82+
</script>
83+
84+
85+
5186
<link rel="shortcut icon" href="_static/favicon.ico">
5287

5388
<!-- The "Fork me on github" ribbon -->
@@ -77,7 +112,7 @@ <h3>Navigation</h3>
77112
<li><a href="gallery.html">gallery</a>|&nbsp;</li>
78113
<li><a href="citing.html">citation</a>|&nbsp;</li>
79114
<li><a href="contents.html">docs</a> &raquo;</li>
80-
115+
81116
</ul>
82117
</div>
83118

@@ -103,7 +138,7 @@ <h3>Quick search</h3>
103138
<div class="documentwrapper">
104139
<div class="bodywrapper">
105140
<div class="body">
106-
141+
107142

108143
<h1>John Hunter (1968-2012)</h1>
109144

@@ -298,7 +333,7 @@ <h3>Navigation</h3>
298333
<li><a href="gallery.html">gallery</a>|&nbsp;</li>
299334
<li><a href="citing.html">citation</a>|&nbsp;</li>
300335
<li><a href="contents.html">docs</a> &raquo;</li>
301-
336+
302337
</ul>
303338
</div>
304339
<div class="footer">
@@ -307,4 +342,4 @@ <h3>Navigation</h3>
307342
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
308343
</div>
309344
</body>
310-
</html>
345+
</html>

0 commit comments

Comments
 (0)