Skip to content

Commit 17eaac1

Browse files
committed
update manually
1 parent 60fc648 commit 17eaac1

32 files changed

+589
-3950
lines changed

.buildinfo

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: e849ccc7e4bf7c651d4f9a84608b8d46
4-
tags: fbb0d17656682115ca4d033fb2f83ba1
3+
config: bf15b92533179965869808070eb36363
4+
tags: 645f666f9bcd5a90fca523b33c5a78b7

_sources/donate.rst.txt

-37
Original file line numberDiff line numberDiff line change
@@ -11,40 +11,3 @@ and this fact hinders our development capabilities.
1111
If you have found IPython to be useful in your work, research or company,
1212
please consider making a donation to the project commensurate with your
1313
resources. Any amount helps!
14-
15-
.. raw:: html
16-
17-
<a style="background: #34677c;
18-
border-radius:0px 0px 0px 0px;
19-
font-weight:normal;
20-
font-family:Arial, Helvetica, sans-serif;
21-
border:none;
22-
box-shadow:none;
23-
left: 50%;
24-
margin-left:-72.5px; margin-top: 1em; margin-bottom: 1em;
25-
display: block;
26-
width:145px; height:45px;
27-
line-height:2.8;
28-
position:relative;
29-
font-size:16px;
30-
text-align:center;
31-
cursor:pointer;
32-
color:#fff;
33-
text-decoration: none;
34-
z-index:1"
35-
href="https://numfocus.salsalabs.org/donate-to-ipython/index.html">Donate Now</a>
36-
37-
38-
39-
All donations will be used strictly to fund IPython development, by supporting
40-
tasks such as developer sprints, better installers, improved documentation and
41-
paying for hosting costs for services such as the `IPython Notebook Viewer
42-
<http://nbviewer.ipython.org>`_.
43-
44-
Our donations are managed by the NumFOCUS_ foundation, which passes 100% of your
45-
contribution to the IPython project. NumFOCUS is a 501(c)3 non-profit
46-
foundation, so if you are subject to US Tax law, your contributions will be
47-
tax-deductible.
48-
49-
50-
.. _NumFOCUS: http://numfocus.org

_sources/microsoft-donation-2013.rst.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
We are thrilled to announce that in August 2013, Microsoft made a donation of
1010
$100,000 to sponsor IPython's continued development.
1111

12-
This donation was received through NumFOCUS_, and is the next step in a
12+
This donation was received through NumFOCUS, and is the next step in a
1313
fruitful collaboration IPython has had with Microsoft:
1414

1515
- In 2009 we added integration with Windows HPC Server for IPython's parallel

_static/basic.css

+46-27
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -222,7 +222,7 @@ table.modindextable td {
222222
/* -- general body styles --------------------------------------------------- */
223223

224224
div.body {
225-
min-width: 450px;
225+
min-width: 360px;
226226
max-width: 800px;
227227
}
228228

@@ -237,14 +237,8 @@ a.headerlink {
237237
visibility: hidden;
238238
}
239239

240-
a.brackets:before,
241-
span.brackets > a:before{
242-
content: "[";
243-
}
244-
245-
a.brackets:after,
246-
span.brackets > a:after {
247-
content: "]";
240+
a:visited {
241+
color: #551A8B;
248242
}
249243

250244
h1:hover > a.headerlink,
@@ -335,12 +329,16 @@ p.sidebar-title {
335329
font-weight: bold;
336330
}
337331

332+
nav.contents,
333+
aside.topic,
338334
div.admonition, div.topic, blockquote {
339335
clear: left;
340336
}
341337

342338
/* -- topics ---------------------------------------------------------------- */
343339

340+
nav.contents,
341+
aside.topic,
344342
div.topic {
345343
border: 1px solid #ccc;
346344
padding: 7px;
@@ -379,13 +377,17 @@ div.body p.centered {
379377

380378
div.sidebar > :last-child,
381379
aside.sidebar > :last-child,
380+
nav.contents > :last-child,
381+
aside.topic > :last-child,
382382
div.topic > :last-child,
383383
div.admonition > :last-child {
384384
margin-bottom: 0;
385385
}
386386

387387
div.sidebar::after,
388388
aside.sidebar::after,
389+
nav.contents::after,
390+
aside.topic::after,
389391
div.topic::after,
390392
div.admonition::after,
391393
blockquote::after {
@@ -428,10 +430,6 @@ table.docutils td, table.docutils th {
428430
border-bottom: 1px solid #aaa;
429431
}
430432

431-
table.footnote td, table.footnote th {
432-
border: 0 !important;
433-
}
434-
435433
th {
436434
text-align: left;
437435
padding-right: 5px;
@@ -615,19 +613,26 @@ ul.simple p {
615613
margin-bottom: 0;
616614
}
617615

618-
dl.footnote > dt,
619-
dl.citation > dt {
616+
aside.footnote > span,
617+
div.citation > span {
620618
float: left;
621-
margin-right: 0.5em;
622619
}
623-
624-
dl.footnote > dd,
625-
dl.citation > dd {
620+
aside.footnote > span:last-of-type,
621+
div.citation > span:last-of-type {
622+
padding-right: 0.5em;
623+
}
624+
aside.footnote > p {
625+
margin-left: 2em;
626+
}
627+
div.citation > p {
628+
margin-left: 4em;
629+
}
630+
aside.footnote > p:last-of-type,
631+
div.citation > p:last-of-type {
626632
margin-bottom: 0em;
627633
}
628-
629-
dl.footnote > dd:after,
630-
dl.citation > dd:after {
634+
aside.footnote > p:last-of-type:after,
635+
div.citation > p:last-of-type:after {
631636
content: "";
632637
clear: both;
633638
}
@@ -644,10 +649,6 @@ dl.field-list > dt {
644649
padding-right: 5px;
645650
}
646651

647-
dl.field-list > dt:after {
648-
content: ":";
649-
}
650-
651652
dl.field-list > dd {
652653
padding-left: 0.5em;
653654
margin-top: 0em;
@@ -673,6 +674,16 @@ dd {
673674
margin-left: 30px;
674675
}
675676

677+
.sig dd {
678+
margin-top: 0px;
679+
margin-bottom: 0px;
680+
}
681+
682+
.sig dl {
683+
margin-top: 0px;
684+
margin-bottom: 0px;
685+
}
686+
676687
dl > dd:last-child,
677688
dl > dd:last-child > :last-child {
678689
margin-bottom: 0;
@@ -741,6 +752,14 @@ abbr, acronym {
741752
cursor: help;
742753
}
743754

755+
.translated {
756+
background-color: rgba(207, 255, 207, 0.2)
757+
}
758+
759+
.untranslated {
760+
background-color: rgba(255, 207, 207, 0.2)
761+
}
762+
744763
/* -- code displays --------------------------------------------------------- */
745764

746765
pre {

0 commit comments

Comments
 (0)