Skip to content

Commit 2128077

Browse files
committed
Updated website (automated commit)
1 parent 08f55bf commit 2128077

34 files changed

+119
-142
lines changed

_sources/index.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ Announcements
7171

7272
- **Book**: Cyrille Rossant has published the `IPython Interactive Computing and Visualization Cookbook <books.html>`_, an advanced-level guide to IPython for data science, and the sequel of his previous book on IPython. We thank Packt Publishing for donating a portion of the proceeds from this book to support IPython's development.
7373

74-
- **IPython 2.2**: A security and bugfix release for IPython 2.x, released 6th
75-
August 2014.
74+
- **IPython 2.3**: A security and bugfix release for IPython 2.x, released 1st
75+
October 2014.
7676

7777
- **IPython 2.0**: We are proud to announce the availability of IPython 2.0,
7878
a major new release including HTML widgets and multi-directory navigation.

_sources/news.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
News
33
====
44

5+
IPython 2.3
6+
-----------
7+
8+
IPython 2.3 includes bugfixes for 2.x, most importantly a fix for maths
9+
rendering in notebooks exported to HTML by nbconvert. It was released on October
10+
1, 2014.
11+
512
Release of the IPython Cookbook
613
-------------------------------
714

_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-2014 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-2014 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/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-2011 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/

books.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
32
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
43
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
54

@@ -27,7 +26,7 @@
2726

2827
<script type="text/javascript">
2928
var DOCUMENTATION_OPTIONS = {
30-
URL_ROOT: '',
29+
URL_ROOT: './',
3130
VERSION: '',
3231
COLLAPSE_INDEX: false,
3332
FILE_SUFFIX: '.html',
@@ -102,7 +101,7 @@
102101
<h3>Versions</h3>
103102

104103
<div class="tile"><h4>Stable</h4>
105-
2.2 &ndash; August 2014<br/>
104+
2.3 &ndash; October 2014<br/>
106105
<a href="install.html">Install</a>
107106
</div>
108107

@@ -272,7 +271,7 @@ <h2>IPython Minibook<a class="headerlink" href="#ipython-minibook" title="Permal
272271

273272
<div class="footer">
274273
&copy; Copyright the IPython development team.
275-
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
274+
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.3.
276275
</div>
277276
</div>
278277

citing.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
32
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
43
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
54

@@ -27,7 +26,7 @@
2726

2827
<script type="text/javascript">
2928
var DOCUMENTATION_OPTIONS = {
30-
URL_ROOT: '',
29+
URL_ROOT: './',
3130
VERSION: '',
3231
COLLAPSE_INDEX: false,
3332
FILE_SUFFIX: '.html',
@@ -104,7 +103,7 @@
104103
<h3>Versions</h3>
105104

106105
<div class="tile"><h4>Stable</h4>
107-
2.2 &ndash; August 2014<br/>
106+
2.3 &ndash; October 2014<br/>
108107
<a href="install.html">Install</a>
109108
</div>
110109

@@ -237,20 +236,21 @@ <h1>Citing IPython<a class="headerlink" href="#citing-ipython" title="Permalink
237236
please acknowledge that fact by citing the project. As of now, the canonical
238237
academic reference for IPython is <a class="reference external" href="http://fperez.org/papers/ipython07_pe-gr_cise.pdf">this paper</a>, for which here are both
239238
a BibTex and a plaintext reference you can use:</p>
240-
<div class="highlight-python"><pre>@Article{PER-GRA:2007,
241-
Author = {P\'erez, Fernando and Granger, Brian E.},
239+
<div class="highlight-python"><div class="highlight"><pre>@Article{PER-GRA:2007,
240+
Author = {P\&#39;erez, Fernando and Granger, Brian E.},
242241
Title = {{IP}ython: a System for Interactive Scientific Computing},
243242
Journal = {Computing in Science and Engineering},
244243
Volume = {9},
245244
Number = {3},
246245
Pages = {21--29},
247246
month = may,
248247
year = 2007,
249-
url = "http://ipython.org",
250-
ISSN = "1521-9615",
248+
url = &quot;http://ipython.org&quot;,
249+
ISSN = &quot;1521-9615&quot;,
251250
doi = {10.1109/MCSE.2007.53},
252251
publisher = {IEEE Computer Society},
253-
}</pre>
252+
}
253+
</pre></div>
254254
</div>
255255
<p>or in plaintext:</p>
256256
<blockquote>
@@ -273,7 +273,7 @@ <h1>Citing IPython<a class="headerlink" href="#citing-ipython" title="Permalink
273273

274274
<div class="footer">
275275
&copy; Copyright the IPython development team.
276-
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
276+
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.3.
277277
</div>
278278
</div>
279279

0 commit comments

Comments
 (0)