Skip to content

Commit 4de6f7a

Browse files
committed
update docs
1 parent c4bcaf7 commit 4de6f7a

12 files changed

+493
-110
lines changed

_sources/testgres.rst.txt

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,19 @@ testgres.node
5959
.. automethod:: __init__
6060

6161
.. autoclass:: testgres.node.ProcessProxy
62-
:members:
62+
:members:
63+
64+
testgres.pubsub
65+
---------------
66+
67+
.. automodule:: testgres.pubsub
68+
69+
.. autoclass:: testgres.node.Publication
70+
:members:
71+
72+
.. automethod:: __init__
73+
74+
.. autoclass:: testgres.node.Subscription
75+
:members:
76+
77+
.. automethod:: __init__

_static/alabaster.css

Lines changed: 52 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,9 @@
1-
2-
3-
4-
5-
6-
7-
8-
9-
10-
11-
12-
13-
14-
15-
16-
17-
18-
19-
20-
21-
22-
23-
24-
25-
26-
27-
28-
29-
30-
31-
32-
33-
34-
35-
36-
37-
38-
39-
40-
41-
42-
43-
44-
45-
46-
47-
48-
49-
50-
51-
52-
531
@import url("basic.css");
542

553
/* -- page layout ----------------------------------------------------------- */
564

575
body {
58-
font-family: 'goudy old style', 'minion pro', 'bell mt', Georgia, 'Hiragino Mincho Pro', serif;
6+
font-family: Georgia, serif;
597
font-size: 17px;
608
background-color: #fff;
619
color: #000;
@@ -159,7 +107,7 @@ div.sphinxsidebarwrapper p.blurb {
159107

160108
div.sphinxsidebar h3,
161109
div.sphinxsidebar h4 {
162-
font-family: 'Garamond', 'Georgia', serif;
110+
font-family: Georgia, serif;
163111
color: #444;
164112
font-size: 24px;
165113
font-weight: normal;
@@ -203,7 +151,7 @@ div.sphinxsidebar ul li.toctree-l2 > a {
203151

204152
div.sphinxsidebar input {
205153
border: 1px solid #CCC;
206-
font-family: 'goudy old style', 'minion pro', 'bell mt', Georgia, 'Hiragino Mincho Pro', serif;
154+
font-family: Georgia, serif;
207155
font-size: 1em;
208156
}
209157

@@ -236,7 +184,7 @@ div.body h3,
236184
div.body h4,
237185
div.body h5,
238186
div.body h6 {
239-
font-family: 'Garamond', 'Georgia', serif;
187+
font-family: Georgia, serif;
240188
font-weight: normal;
241189
margin: 30px 0px 10px 0px;
242190
padding: 0;
@@ -277,7 +225,7 @@ div.admonition tt.xref, div.admonition code.xref, div.admonition a tt {
277225
}
278226

279227
div.admonition p.admonition-title {
280-
font-family: 'Garamond', 'Georgia', serif;
228+
font-family: Georgia, serif;
281229
font-weight: normal;
282230
font-size: 24px;
283231
margin: 0 0 10px 0;
@@ -690,4 +638,51 @@ table.docutils.citation, table.docutils.citation td, table.docutils.citation th
690638
-moz-box-shadow: none;
691639
-webkit-box-shadow: none;
692640
box-shadow: none;
641+
}
642+
643+
644+
/* relbar */
645+
646+
.related {
647+
line-height: 30px;
648+
width: 100%;
649+
font-size: 0.9rem;
650+
}
651+
652+
.related.top {
653+
border-bottom: 1px solid #EEE;
654+
margin-bottom: 20px;
655+
}
656+
657+
.related.bottom {
658+
border-top: 1px solid #EEE;
659+
}
660+
661+
.related ul {
662+
padding: 0;
663+
margin: 0;
664+
list-style: none;
665+
}
666+
667+
.related li {
668+
display: inline;
669+
}
670+
671+
nav#rellinks {
672+
float: right;
673+
}
674+
675+
nav#rellinks li+li:before {
676+
content: "|";
677+
}
678+
679+
nav#breadcrumbs li+li:before {
680+
content: "\00BB";
681+
}
682+
683+
/* Hide certain items when printing */
684+
@media print {
685+
div.related {
686+
display: none;
687+
}
693688
}

_static/doctools.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ jQuery.fn.highlightText = function(text, className) {
7070
if (node.nodeType === 3) {
7171
var val = node.nodeValue;
7272
var pos = val.toLowerCase().indexOf(text);
73-
if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) {
73+
if (pos >= 0 &&
74+
!jQuery(node.parentNode).hasClass(className) &&
75+
!jQuery(node.parentNode).hasClass("nohighlight")) {
7476
var span;
7577
var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg");
7678
if (isInSVG) {

_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var DOCUMENTATION_OPTIONS = {
2-
URL_ROOT: '',
2+
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
33
VERSION: '1.5',
44
LANGUAGE: 'None',
55
COLLAPSE_INDEX: false,

_static/pygments.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,10 @@
4747
.highlight .mh { color: #208050 } /* Literal.Number.Hex */
4848
.highlight .mi { color: #208050 } /* Literal.Number.Integer */
4949
.highlight .mo { color: #208050 } /* Literal.Number.Oct */
50+
.highlight .sa { color: #4070a0 } /* Literal.String.Affix */
5051
.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */
5152
.highlight .sc { color: #4070a0 } /* Literal.String.Char */
53+
.highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */
5254
.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
5355
.highlight .s2 { color: #4070a0 } /* Literal.String.Double */
5456
.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
@@ -59,7 +61,9 @@
5961
.highlight .s1 { color: #4070a0 } /* Literal.String.Single */
6062
.highlight .ss { color: #517918 } /* Literal.String.Symbol */
6163
.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
64+
.highlight .fm { color: #06287e } /* Name.Function.Magic */
6265
.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */
6366
.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */
6467
.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */
68+
.highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */
6569
.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy