Skip to content

Commit 21aa5be

Browse files
committed
Updated website (1.2.0)
1 parent 7aacfe7 commit 21aa5be

34 files changed

+139
-1362
lines changed

_sources/documentation.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Documentation
55
IPython manual
66
--------------
77

8-
* `Current Stable Version (1.1.0) <http://ipython.org/ipython-doc/stable/index.html>`_
8+
* `Current Stable Version (1.2.0) <http://ipython.org/ipython-doc/stable/index.html>`_
99
* `Current Development Version (2.0) <http://ipython.org/ipython-doc/dev/index.html>`_
1010

1111
`This introduction to some key features
@@ -104,6 +104,7 @@ please `provide a citation to IPython <citing.html>`_.
104104
Docs for all releases
105105
---------------------
106106

107+
* `1.2.0 <http://ipython.org/ipython-doc/rel-1.2.0/index.html>`__
107108
* `1.1.0 <http://ipython.org/ipython-doc/rel-1.1.0/index.html>`__
108109
* `1.0.0 <http://ipython.org/ipython-doc/rel-1.0.0/index.html>`__
109110
* `0.13.2 <http://ipython.org/ipython-doc/rel-0.13.2/index.html>`__

_static/IPy_header.png

-9 KB
Binary file not shown.

_static/basic.css

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

9090
img {
9191
border: 0;
92+
max-width: 100%;
9293
}
9394

9495
/* -- search page ----------------------------------------------------------- */
@@ -401,10 +402,6 @@ dl.glossary dt {
401402
margin: 0;
402403
}
403404

404-
.refcount {
405-
color: #060;
406-
}
407-
408405
.optional {
409406
font-size: 1.3em;
410407
}

_static/doctools.js

Lines changed: 5 additions & 14 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-2011 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2013 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,18 +61,6 @@ 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-
7664
/**
7765
* highlight a given string on a jquery object by wrapping it in
7866
* span elements with the given class name.
@@ -180,6 +168,9 @@ var Documentation = {
180168
var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : [];
181169
if (terms.length) {
182170
var body = $('div.body');
171+
if (!body.length) {
172+
body = $('body');
173+
}
183174
window.setTimeout(function() {
184175
$.each(terms, function() {
185176
body.highlightText(this.toLowerCase(), 'highlighted');

_static/fancybox/.gitattributes

Lines changed: 0 additions & 7 deletions
This file was deleted.

_static/fancybox/jquery.fancybox.js

100755100644
File mode changed.

_static/fancybox/jquery.fancybox.pack.js

100755100644
File mode changed.

_static/simons-logo.jpg

-128 KB
Binary file not shown.

_static/sloan-logo.jpg

-136 KB
Binary file not shown.

0 commit comments

Comments
 (0)