Skip to content

Commit 1566515

Browse files
committed
Update Web pages
1 parent c68d531 commit 1566515

30 files changed

+1438
-968
lines changed

docs/_images/metatree_example1.png

25.4 KB
Loading

docs/_images/metatree_example2.png

36 KB
Loading

docs/_images/metatree_posterior2.png

61.3 KB
Loading

docs/_sources/bayesml.metatree.rst.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
bayesml.metatree package
22
========================
33

4-
.. image:: ./images/metatree_example.png
4+
.. image:: ./images/metatree_example1.png
5+
.. image:: ./images/metatree_example2.png
56

67
Module contents
78
---------------

docs/_sources/developers.rst.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,19 @@ Plain text
5959
.. code-block::
6060
6161
Y. Nakahara, N. Ichijo, K. Shimada, Y. Iikubo,
62-
S. Saito, K. Kazama, T. Matsushima, ``BayesML 0.2.0,''
62+
S. Saito, K. Kazama, T. Matsushima, BayesML Developers, ``BayesML 0.2.1,''
6363
[Online] https://github.com/yuta-nakahara/BayesML
6464
6565
6666
BibTeX
6767

68-
.. code-block::
68+
.. code-block:: bibtex
6969
7070
@misc{bayesml,
7171
author = {Nakahara Yuta and Ichijo Naoki and Shimada Koshi and
7272
Iikubo Yuji and Saito Shota and Kazama Koki and
73-
Matsushima Toshiyasu}
74-
title = {BayesML 0.2.0},
73+
Matsushima Toshiyasu and {BayesML Developers}},
74+
title = {BayesML 0.2.1},
7575
howpublished = {\url{https://github.com/yuta-nakahara/BayesML}},
7676
year = {2022}
7777
}

docs/_sources/index.rst.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Plain text
150150
.. code-block::
151151
152152
Y. Nakahara, N. Ichijo, K. Shimada, Y. Iikubo,
153-
S. Saito, K. Kazama, T. Matsushima, ``BayesML 0.2.0,''
153+
S. Saito, K. Kazama, T. Matsushima, BayesML Developers, ``BayesML 0.2.1,''
154154
[Online] https://github.com/yuta-nakahara/BayesML
155155
156156
@@ -161,8 +161,8 @@ BibTeX
161161
@misc{bayesml,
162162
author = {Nakahara Yuta and Ichijo Naoki and Shimada Koshi and
163163
Iikubo Yuji and Saito Shota and Kazama Koki and
164-
Matsushima Toshiyasu}
165-
title = {BayesML 0.2.0},
164+
Matsushima Toshiyasu and {BayesML Developers}},
165+
title = {BayesML 0.2.1},
166166
howpublished = {\url{https://github.com/yuta-nakahara/BayesML}},
167167
year = {2022}
168168
}

docs/_static/basic.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -731,8 +731,9 @@ dl.glossary dt {
731731

732732
.classifier:before {
733733
font-style: normal;
734-
margin: 0.5em;
734+
margin: 0 0.5em;
735735
content: ":";
736+
display: inline-block;
736737
}
737738

738739
abbr, acronym {
@@ -756,6 +757,7 @@ span.pre {
756757
-ms-hyphens: none;
757758
-webkit-hyphens: none;
758759
hyphens: none;
760+
white-space: nowrap;
759761
}
760762

761763
div[class*="highlight-"] {
@@ -819,7 +821,7 @@ div.code-block-caption code {
819821

820822
table.highlighttable td.linenos,
821823
span.linenos,
822-
div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */
824+
div.highlight span.gp { /* gp: Generic.Prompt */
823825
user-select: none;
824826
-webkit-user-select: text; /* Safari fallback only */
825827
-webkit-user-select: none; /* Chrome/Safari */

docs/_static/doctools.js

Lines changed: 6 additions & 1 deletion
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-2021 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -264,6 +264,9 @@ var Documentation = {
264264
hideSearchWords : function() {
265265
$('#searchbox .highlight-link').fadeOut(300);
266266
$('span.highlighted').removeClass('highlighted');
267+
var url = new URL(window.location);
268+
url.searchParams.delete('highlight');
269+
window.history.replaceState({}, '', url);
267270
},
268271

269272
/**
@@ -301,12 +304,14 @@ var Documentation = {
301304
window.location.href = prevHref;
302305
return false;
303306
}
307+
break;
304308
case 39: // right
305309
var nextHref = $('link[rel="next"]').prop('href');
306310
if (nextHref) {
307311
window.location.href = nextHref;
308312
return false;
309313
}
314+
break;
310315
}
311316
}
312317
});

docs/_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var DOCUMENTATION_OPTIONS = {
22
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
3-
VERSION: '0.2.0',
3+
VERSION: '0.2.1',
44
LANGUAGE: 'None',
55
COLLAPSE_INDEX: false,
66
BUILDER: 'html',

docs/_static/language_data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This script contains the language-specific data used by searchtools.js,
66
* namely the list of stopwords, stemmer, scorer and splitter.
77
*
8-
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
8+
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
99
* :license: BSD, see LICENSE for details.
1010
*
1111
*/

docs/_static/searchtools.js

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for the full-text search.
66
*
7-
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -282,7 +282,10 @@ var Search = {
282282
complete: function(jqxhr, textstatus) {
283283
var data = jqxhr.responseText;
284284
if (data !== '' && data !== undefined) {
285-
listItem.append(Search.makeSearchSummary(data, searchterms, hlterms));
285+
var summary = Search.makeSearchSummary(data, searchterms, hlterms);
286+
if (summary) {
287+
listItem.append(summary);
288+
}
286289
}
287290
Search.output.append(listItem);
288291
setTimeout(function() {
@@ -325,7 +328,9 @@ var Search = {
325328
var results = [];
326329

327330
for (var prefix in objects) {
328-
for (var name in objects[prefix]) {
331+
for (var iMatch = 0; iMatch != objects[prefix].length; ++iMatch) {
332+
var match = objects[prefix][iMatch];
333+
var name = match[4];
329334
var fullname = (prefix ? prefix + '.' : '') + name;
330335
var fullnameLower = fullname.toLowerCase()
331336
if (fullnameLower.indexOf(object) > -1) {
@@ -339,7 +344,6 @@ var Search = {
339344
} else if (parts[parts.length - 1].indexOf(object) > -1) {
340345
score += Scorer.objPartialMatch;
341346
}
342-
var match = objects[prefix][name];
343347
var objname = objnames[match[1]][2];
344348
var title = titles[match[0]];
345349
// If more than one term searched for, we require other words to be
@@ -498,6 +502,9 @@ var Search = {
498502
*/
499503
makeSearchSummary : function(htmlText, keywords, hlwords) {
500504
var text = Search.htmlToText(htmlText);
505+
if (text == "") {
506+
return null;
507+
}
501508
var textLower = text.toLowerCase();
502509
var start = 0;
503510
$.each(keywords, function() {

0 commit comments

Comments
 (0)