Skip to content

Commit 6049a72

Browse files
committed
Updated website (automated commit)
1 parent 287948f commit 6049a72

34 files changed

+1338
-110
lines changed

_sources/index.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ collection`_. Our `notebook gallery`__ is an excellent way to see the many
5151
things you can do with IPython while learning about a variety of topics, from
5252
basic programming to advanced statistics or quantum mechanics.
5353

54-
.. _official example collection: https://github.com/ipython/ipython/tree/master/examples/notebooks#a-collection-of-notebooks-for-using-ipython-effectively
54+
.. _official example collection: http://nbviewer.ipython.org/github/ipython/ipython/blob/master/examples/Index.ipynb
5555

5656
.. __: https://github.com/ipython/ipython/wiki/A-gallery-of-interesting-IPython-Notebooks
5757

_static/basic.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -89,7 +89,6 @@ div.sphinxsidebar #searchbox input[type="submit"] {
8989

9090
img {
9191
border: 0;
92-
max-width: 100%;
9392
}
9493

9594
/* -- search page ----------------------------------------------------------- */
@@ -402,6 +401,10 @@ dl.glossary dt {
402401
margin: 0;
403402
}
404403

404+
.refcount {
405+
color: #060;
406+
}
407+
405408
.optional {
406409
font-size: 1.3em;
407410
}

_static/doctools.js

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for all documentation.
66
*
7-
* :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -32,7 +32,7 @@ if (!window.console || !console.firebug) {
3232
*/
3333
jQuery.urldecode = function(x) {
3434
return decodeURIComponent(x).replace(/\+/g, ' ');
35-
};
35+
}
3636

3737
/**
3838
* small helper function to urlencode strings
@@ -61,6 +61,18 @@ jQuery.getQueryParameters = function(s) {
6161
return result;
6262
};
6363

64+
/**
65+
* small function to check if an array contains
66+
* a given item.
67+
*/
68+
jQuery.contains = function(arr, item) {
69+
for (var i = 0; i < arr.length; i++) {
70+
if (arr[i] == item)
71+
return true;
72+
}
73+
return false;
74+
};
75+
6476
/**
6577
* highlight a given string on a jquery object by wrapping it in
6678
* span elements with the given class name.
@@ -168,9 +180,6 @@ var Documentation = {
168180
var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : [];
169181
if (terms.length) {
170182
var body = $('div.body');
171-
if (!body.length) {
172-
body = $('body');
173-
}
174183
window.setTimeout(function() {
175184
$.each(terms, function() {
176185
body.highlightText(this.toLowerCase(), 'highlighted');

_static/fancybox/.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Denote all files that are truly binary and should not be modified.
5+
*.png binary
6+
*.jpg binary
7+
*.gif binary

_static/fancybox/jquery.fancybox.js

100644100755
File mode changed.

_static/fancybox/jquery.fancybox.pack.js

100644100755
File mode changed.

_static/simons-logo.jpg

128 KB
Loading

_static/sloan-logo.jpg

136 KB
Loading

_static/underscore.js

Lines changed: 1226 additions & 31 deletions
Large diffs are not rendered by default.

_static/websupport.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* sphinx.websupport utilties for all documentation.
66
*
7-
* :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/

0 commit comments

Comments
 (0)