Skip to content

Commit a2f5f17

Browse files
Deploy to GitHub pages
1 parent 63ec235 commit a2f5f17

Some content is hidden

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

77 files changed

+2085
-1643
lines changed

.buildinfo

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

.doctrees/deploying/firmware.doctree

119 Bytes
Binary file not shown.

.doctrees/deploying/gateware.doctree

-4.13 KB
Binary file not shown.

.doctrees/environment.pickle

344 KB
Binary file not shown.

.doctrees/firmware/index.doctree

131 Bytes
Binary file not shown.
-1.71 KB
Binary file not shown.

.doctrees/gateware/flash.doctree

2.28 MB
Binary file not shown.
2.29 MB
Binary file not shown.
-153 Bytes
Binary file not shown.
2.3 MB
Binary file not shown.

.doctrees/gateware/index.doctree

19 Bytes
Binary file not shown.

.doctrees/gateware/luna.doctree

2.3 MB
Binary file not shown.
Binary file not shown.
Binary file not shown.
-22 Bytes
Binary file not shown.
-175 Bytes
Binary file not shown.

.doctrees/gettingStarted.doctree

-42 Bytes
Binary file not shown.

.doctrees/index.doctree

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

_static/basic.css

+47-39
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
/*
2-
* basic.css
3-
* ~~~~~~~~~
4-
*
52
* Sphinx stylesheet -- basic theme.
6-
*
7-
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
8-
* :license: BSD, see LICENSE for details.
9-
*
103
*/
114

125
/* -- main layout ----------------------------------------------------------- */
@@ -115,15 +108,11 @@ img {
115108
/* -- search page ----------------------------------------------------------- */
116109

117110
ul.search {
118-
margin: 10px 0 0 20px;
119-
padding: 0;
111+
margin-top: 10px;
120112
}
121113

122114
ul.search li {
123-
padding: 5px 0 5px 20px;
124-
background-image: url(file.png);
125-
background-repeat: no-repeat;
126-
background-position: 0 7px;
115+
padding: 5px 0;
127116
}
128117

129118
ul.search li a {
@@ -222,7 +211,7 @@ table.modindextable td {
222211
/* -- general body styles --------------------------------------------------- */
223212

224213
div.body {
225-
min-width: 450px;
214+
min-width: 360px;
226215
max-width: 800px;
227216
}
228217

@@ -237,14 +226,8 @@ a.headerlink {
237226
visibility: hidden;
238227
}
239228

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

250233
h1:hover > a.headerlink,
@@ -335,12 +318,16 @@ p.sidebar-title {
335318
font-weight: bold;
336319
}
337320

321+
nav.contents,
322+
aside.topic,
338323
div.admonition, div.topic, blockquote {
339324
clear: left;
340325
}
341326

342327
/* -- topics ---------------------------------------------------------------- */
343328

329+
nav.contents,
330+
aside.topic,
344331
div.topic {
345332
border: 1px solid #ccc;
346333
padding: 7px;
@@ -379,13 +366,17 @@ div.body p.centered {
379366

380367
div.sidebar > :last-child,
381368
aside.sidebar > :last-child,
369+
nav.contents > :last-child,
370+
aside.topic > :last-child,
382371
div.topic > :last-child,
383372
div.admonition > :last-child {
384373
margin-bottom: 0;
385374
}
386375

387376
div.sidebar::after,
388377
aside.sidebar::after,
378+
nav.contents::after,
379+
aside.topic::after,
389380
div.topic::after,
390381
div.admonition::after,
391382
blockquote::after {
@@ -428,10 +419,6 @@ table.docutils td, table.docutils th {
428419
border-bottom: 1px solid #aaa;
429420
}
430421

431-
table.footnote td, table.footnote th {
432-
border: 0 !important;
433-
}
434-
435422
th {
436423
text-align: left;
437424
padding-right: 5px;
@@ -615,19 +602,26 @@ ul.simple p {
615602
margin-bottom: 0;
616603
}
617604

618-
dl.footnote > dt,
619-
dl.citation > dt {
605+
aside.footnote > span,
606+
div.citation > span {
620607
float: left;
621-
margin-right: 0.5em;
622608
}
623-
624-
dl.footnote > dd,
625-
dl.citation > dd {
609+
aside.footnote > span:last-of-type,
610+
div.citation > span:last-of-type {
611+
padding-right: 0.5em;
612+
}
613+
aside.footnote > p {
614+
margin-left: 2em;
615+
}
616+
div.citation > p {
617+
margin-left: 4em;
618+
}
619+
aside.footnote > p:last-of-type,
620+
div.citation > p:last-of-type {
626621
margin-bottom: 0em;
627622
}
628-
629-
dl.footnote > dd:after,
630-
dl.citation > dd:after {
623+
aside.footnote > p:last-of-type:after,
624+
div.citation > p:last-of-type:after {
631625
content: "";
632626
clear: both;
633627
}
@@ -644,10 +638,6 @@ dl.field-list > dt {
644638
padding-right: 5px;
645639
}
646640

647-
dl.field-list > dt:after {
648-
content: ":";
649-
}
650-
651641
dl.field-list > dd {
652642
padding-left: 0.5em;
653643
margin-top: 0em;
@@ -673,6 +663,16 @@ dd {
673663
margin-left: 30px;
674664
}
675665

666+
.sig dd {
667+
margin-top: 0px;
668+
margin-bottom: 0px;
669+
}
670+
671+
.sig dl {
672+
margin-top: 0px;
673+
margin-bottom: 0px;
674+
}
675+
676676
dl > dd:last-child,
677677
dl > dd:last-child > :last-child {
678678
margin-bottom: 0;
@@ -741,6 +741,14 @@ abbr, acronym {
741741
cursor: help;
742742
}
743743

744+
.translated {
745+
background-color: rgba(207, 255, 207, 0.2)
746+
}
747+
748+
.untranslated {
749+
background-color: rgba(255, 207, 207, 0.2)
750+
}
751+
744752
/* -- code displays --------------------------------------------------------- */
745753

746754
pre {

_static/css/badge_only.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)