Skip to content

Commit 5c28ad5

Browse files
committed
deploy: 6df92a5
1 parent 6c79b12 commit 5c28ad5

File tree

64 files changed

+1276
-1371
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1276
-1371
lines changed

TODO.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<!DOCTYPE html>
44

55

6-
<html data-content_root="" >
6+
<html lang="en" data-content_root="" >
77

88
<head>
99
<meta charset="utf-8" />
10-
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
10+
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
1111

1212
<title>&lt;no title&gt; &#8212; napari-cellseg3d Documentation</title>
1313

@@ -45,6 +45,7 @@
4545
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
4646
<script src="_static/jquery.js"></script>
4747
<script src="_static/underscore.js"></script>
48+
<script src="_static/_sphinx_javascript_frameworks_compat.js"></script>
4849
<script src="_static/doctools.js"></script>
4950
<script src="_static/clipboard.min.js"></script>
5051
<script src="_static/copybutton.js"></script>
@@ -65,7 +66,7 @@
6566
<link rel="index" title="Index" href="genindex.html" />
6667
<link rel="search" title="Search" href="search.html" />
6768
<meta name="viewport" content="width=device-width, initial-scale=1"/>
68-
<meta name="docsearch:language" content="None"/>
69+
<meta name="docsearch:language" content="en"/>
6970
</head>
7071

7172

_sources/source/code/_autosummary/napari_cellseg3d.code_plugins.plugin_review_dock.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ napari\_cellseg3d.code\_plugins.plugin\_review\_dock
55

66

77

8+
.. rubric:: Module Attributes
9+
10+
.. autosummary::
11+
12+
logger
13+
814

915

1016

_sources/source/code/_autosummary/napari_cellseg3d.interface.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@
55

66

77

8+
.. rubric:: Module Attributes
9+
10+
.. autosummary::
11+
12+
LEFT_AL
13+
RIGHT_AL
14+
HCENTER_AL
15+
CENTER_AL
16+
ABS_AL
17+
BOTT_AL
18+
TOP_AL
19+
820

921

1022

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
/*
2+
* _sphinx_javascript_frameworks_compat.js
3+
* ~~~~~~~~~~
4+
*
5+
* Compatability shim for jQuery and underscores.js.
6+
*
7+
* WILL BE REMOVED IN Sphinx 6.0
8+
* xref RemovedInSphinx60Warning
9+
*
10+
*/
11+
12+
/**
13+
* select a different prefix for underscore
14+
*/
15+
$u = _.noConflict();
16+
17+
18+
/**
19+
* small helper function to urldecode strings
20+
*
21+
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL
22+
*/
23+
jQuery.urldecode = function(x) {
24+
if (!x) {
25+
return x
26+
}
27+
return decodeURIComponent(x.replace(/\+/g, ' '));
28+
};
29+
30+
/**
31+
* small helper function to urlencode strings
32+
*/
33+
jQuery.urlencode = encodeURIComponent;
34+
35+
/**
36+
* This function returns the parsed url parameters of the
37+
* current request. Multiple values per key are supported,
38+
* it will always return arrays of strings for the value parts.
39+
*/
40+
jQuery.getQueryParameters = function(s) {
41+
if (typeof s === 'undefined')
42+
s = document.location.search;
43+
var parts = s.substr(s.indexOf('?') + 1).split('&');
44+
var result = {};
45+
for (var i = 0; i < parts.length; i++) {
46+
var tmp = parts[i].split('=', 2);
47+
var key = jQuery.urldecode(tmp[0]);
48+
var value = jQuery.urldecode(tmp[1]);
49+
if (key in result)
50+
result[key].push(value);
51+
else
52+
result[key] = [value];
53+
}
54+
return result;
55+
};
56+
57+
/**
58+
* highlight a given string on a jquery object by wrapping it in
59+
* span elements with the given class name.
60+
*/
61+
jQuery.fn.highlightText = function(text, className) {
62+
function highlight(node, addItems) {
63+
if (node.nodeType === 3) {
64+
var val = node.nodeValue;
65+
var pos = val.toLowerCase().indexOf(text);
66+
if (pos >= 0 &&
67+
!jQuery(node.parentNode).hasClass(className) &&
68+
!jQuery(node.parentNode).hasClass("nohighlight")) {
69+
var span;
70+
var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg");
71+
if (isInSVG) {
72+
span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
73+
} else {
74+
span = document.createElement("span");
75+
span.className = className;
76+
}
77+
span.appendChild(document.createTextNode(val.substr(pos, text.length)));
78+
node.parentNode.insertBefore(span, node.parentNode.insertBefore(
79+
document.createTextNode(val.substr(pos + text.length)),
80+
node.nextSibling));
81+
node.nodeValue = val.substr(0, pos);
82+
if (isInSVG) {
83+
var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect");
84+
var bbox = node.parentElement.getBBox();
85+
rect.x.baseVal.value = bbox.x;
86+
rect.y.baseVal.value = bbox.y;
87+
rect.width.baseVal.value = bbox.width;
88+
rect.height.baseVal.value = bbox.height;
89+
rect.setAttribute('class', className);
90+
addItems.push({
91+
"parent": node.parentNode,
92+
"target": rect});
93+
}
94+
}
95+
}
96+
else if (!jQuery(node).is("button, select, textarea")) {
97+
jQuery.each(node.childNodes, function() {
98+
highlight(this, addItems);
99+
});
100+
}
101+
}
102+
var addItems = [];
103+
var result = this.each(function() {
104+
highlight(this, addItems);
105+
});
106+
for (var i = 0; i < addItems.length; ++i) {
107+
jQuery(addItems[i].parent).before(addItems[i].target);
108+
}
109+
return result;
110+
};
111+
112+
/*
113+
* backward compatibility for jQuery.browser
114+
* This will be supported until firefox bug is fixed.
115+
*/
116+
if (!jQuery.browser) {
117+
jQuery.uaMatch = function(ua) {
118+
ua = ua.toLowerCase();
119+
120+
var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
121+
/(webkit)[ \/]([\w.]+)/.exec(ua) ||
122+
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
123+
/(msie) ([\w.]+)/.exec(ua) ||
124+
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) ||
125+
[];
126+
127+
return {
128+
browser: match[ 1 ] || "",
129+
version: match[ 2 ] || "0"
130+
};
131+
};
132+
jQuery.browser = {};
133+
jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true;
134+
}

_static/basic.css

Lines changed: 39 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -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,16 +237,6 @@ 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: "]";
248-
}
249-
250240
h1:hover > a.headerlink,
251241
h2:hover > a.headerlink,
252242
h3:hover > a.headerlink,
@@ -334,12 +324,16 @@ aside.sidebar {
334324
p.sidebar-title {
335325
font-weight: bold;
336326
}
327+
nav.contents,
328+
aside.topic,
337329

338330
div.admonition, div.topic, blockquote {
339331
clear: left;
340332
}
341333

342334
/* -- topics ---------------------------------------------------------------- */
335+
nav.contents,
336+
aside.topic,
343337

344338
div.topic {
345339
border: 1px solid #ccc;
@@ -379,13 +373,19 @@ div.body p.centered {
379373

380374
div.sidebar > :last-child,
381375
aside.sidebar > :last-child,
376+
nav.contents > :last-child,
377+
aside.topic > :last-child,
378+
382379
div.topic > :last-child,
383380
div.admonition > :last-child {
384381
margin-bottom: 0;
385382
}
386383

387384
div.sidebar::after,
388385
aside.sidebar::after,
386+
nav.contents::after,
387+
aside.topic::after,
388+
389389
div.topic::after,
390390
div.admonition::after,
391391
blockquote::after {
@@ -428,10 +428,6 @@ table.docutils td, table.docutils th {
428428
border-bottom: 1px solid #aaa;
429429
}
430430

431-
table.footnote td, table.footnote th {
432-
border: 0 !important;
433-
}
434-
435431
th {
436432
text-align: left;
437433
padding-right: 5px;
@@ -615,6 +611,7 @@ ul.simple p {
615611
margin-bottom: 0;
616612
}
617613

614+
/* Docutils 0.17 and older (footnotes & citations) */
618615
dl.footnote > dt,
619616
dl.citation > dt {
620617
float: left;
@@ -632,6 +629,33 @@ dl.citation > dd:after {
632629
clear: both;
633630
}
634631

632+
/* Docutils 0.18+ (footnotes & citations) */
633+
aside.footnote > span,
634+
div.citation > span {
635+
float: left;
636+
}
637+
aside.footnote > span:last-of-type,
638+
div.citation > span:last-of-type {
639+
padding-right: 0.5em;
640+
}
641+
aside.footnote > p {
642+
margin-left: 2em;
643+
}
644+
div.citation > p {
645+
margin-left: 4em;
646+
}
647+
aside.footnote > p:last-of-type,
648+
div.citation > p:last-of-type {
649+
margin-bottom: 0em;
650+
}
651+
aside.footnote > p:last-of-type:after,
652+
div.citation > p:last-of-type:after {
653+
content: "";
654+
clear: both;
655+
}
656+
657+
/* Footnotes & citations ends */
658+
635659
dl.field-list {
636660
display: grid;
637661
grid-template-columns: fit-content(30%) auto;

0 commit comments

Comments
 (0)