mirror of
https://github.com/MillironX/XAM.jl.git
synced 2024-11-14 22:33:14 +00:00
build based on ccc9112
This commit is contained in:
parent
29f02a21dd
commit
9ee35af43d
12 changed files with 266 additions and 78 deletions
|
@ -1,15 +1,15 @@
|
|||
// Generated by Documenter.jl
|
||||
requirejs.config({
|
||||
paths: {
|
||||
'highlight-julia': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.10/languages/julia.min',
|
||||
'headroom': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.10.3/headroom.min',
|
||||
'highlight-julia': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/languages/julia.min',
|
||||
'headroom': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.12.0/headroom.min',
|
||||
'jqueryui': 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min',
|
||||
'katex-auto-render': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/contrib/auto-render.min',
|
||||
'jquery': 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min',
|
||||
'headroom-jquery': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.10.3/jQuery.headroom.min',
|
||||
'katex': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/katex.min',
|
||||
'highlight': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.10/highlight.min',
|
||||
'highlight-julia-repl': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.10/languages/julia-repl.min',
|
||||
'katex-auto-render': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.13.11/contrib/auto-render.min',
|
||||
'jquery': 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min',
|
||||
'headroom-jquery': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.12.0/jQuery.headroom.min',
|
||||
'katex': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.13.11/katex.min',
|
||||
'highlight': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/highlight.min',
|
||||
'highlight-julia-repl': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/languages/julia-repl.min',
|
||||
},
|
||||
shim: {
|
||||
"highlight-julia": {
|
||||
|
@ -65,9 +65,9 @@ $(document).ready(function() {
|
|||
|
||||
})
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
require(['jquery', 'highlight', 'highlight-julia', 'highlight-julia-repl'], function($, hljs) {
|
||||
require(['jquery', 'highlight', 'highlight-julia', 'highlight-julia-repl'], function($) {
|
||||
$(document).ready(function() {
|
||||
hljs.initHighlighting();
|
||||
hljs.highlightAll();
|
||||
})
|
||||
|
||||
})
|
||||
|
@ -208,6 +208,10 @@ $(document).ready(function() {
|
|||
$('#documenter-themepicker option').each(function(i,e) {
|
||||
e.selected = (e.value === theme);
|
||||
})
|
||||
} else {
|
||||
$('#documenter-themepicker option').each(function(i,e) {
|
||||
e.selected = $("html").hasClass(`theme--${e.value}`);
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
// Generated by Documenter.jl
|
||||
requirejs.config({
|
||||
paths: {
|
||||
'lunr': 'https://cdnjs.cloudflare.com/ajax/libs/lunr.js/2.3.6/lunr.min',
|
||||
'lodash': 'https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.15/lodash.min',
|
||||
'jquery': 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min',
|
||||
'lunr': 'https://cdnjs.cloudflare.com/ajax/libs/lunr.js/2.3.9/lunr.min',
|
||||
'lodash': 'https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min',
|
||||
'jquery': 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min',
|
||||
}
|
||||
});
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -181,7 +181,7 @@ $(document).ready(function() {
|
|||
var store = {}
|
||||
|
||||
documenterSearchIndex['docs'].forEach(function(e) {
|
||||
store[e.location] = {title: e.title, category: e.category}
|
||||
store[e.location] = {title: e.title, category: e.category, page: e.page}
|
||||
})
|
||||
|
||||
$(function(){
|
||||
|
@ -221,7 +221,11 @@ $(document).ready(function() {
|
|||
data = store[result.ref]
|
||||
link = $('<a class="docs-label">'+data.title+'</a>')
|
||||
link.attr('href', documenterBaseURL+'/'+result.ref)
|
||||
if (data.category != "page"){
|
||||
cat = $('<span class="docs-category">('+data.category+', '+data.page+')</span>')
|
||||
} else {
|
||||
cat = $('<span class="docs-category">('+data.category+')</span>')
|
||||
}
|
||||
li = $('<li>').append(link).append(" ").append(cat)
|
||||
searchresults.append(li)
|
||||
})
|
||||
|
|
|
@ -753,19 +753,19 @@ a.has-text-danger:hover, a.has-text-danger:focus {
|
|||
font-weight: 700 !important; }
|
||||
|
||||
.is-family-primary {
|
||||
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
|
||||
.is-family-secondary {
|
||||
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
|
||||
.is-family-sans-serif {
|
||||
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
|
||||
.is-family-monospace {
|
||||
font-family: "Roboto Mono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; }
|
||||
font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; }
|
||||
|
||||
.is-family-code {
|
||||
font-family: "Roboto Mono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; }
|
||||
font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; }
|
||||
|
||||
.is-block {
|
||||
display: block !important; }
|
||||
|
@ -1070,9 +1070,13 @@ html.theme--documenter-dark {
|
|||
*
|
||||
* The main container is <div> that is identified by id #documenter.
|
||||
*/
|
||||
/* a11y-dark theme */
|
||||
/* Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css */
|
||||
/* @author: ericwbailey */
|
||||
/*!
|
||||
Theme: a11y-dark
|
||||
Author: @ericwbailey
|
||||
Maintainer: @ericwbailey
|
||||
|
||||
Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css
|
||||
*/
|
||||
/* Comment */
|
||||
/* Red */
|
||||
/* Orange */
|
||||
|
@ -1103,12 +1107,12 @@ html.theme--documenter-dark {
|
|||
html.theme--documenter-dark input,
|
||||
html.theme--documenter-dark select,
|
||||
html.theme--documenter-dark textarea {
|
||||
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif; }
|
||||
font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif; }
|
||||
html.theme--documenter-dark code,
|
||||
html.theme--documenter-dark pre {
|
||||
-moz-osx-font-smoothing: auto;
|
||||
-webkit-font-smoothing: auto;
|
||||
font-family: "Roboto Mono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace; }
|
||||
font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace; }
|
||||
html.theme--documenter-dark body {
|
||||
color: #fff;
|
||||
font-size: 1em;
|
||||
|
@ -7277,6 +7281,30 @@ html.theme--documenter-dark {
|
|||
opacity: 0.2; }
|
||||
html.theme--documenter-dark .docstring > section:hover a.docs-sourcelink {
|
||||
opacity: 1; }
|
||||
html.theme--documenter-dark .documenter-example-output {
|
||||
background-color: #1f2424; }
|
||||
html.theme--documenter-dark .outdated-warning-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
||||
z-index: 999;
|
||||
background-color: #282f2f;
|
||||
border-bottom: 3px solid #9e1b0d;
|
||||
padding: 10px 35px;
|
||||
text-align: center;
|
||||
font-size: 15px; }
|
||||
html.theme--documenter-dark .outdated-warning-overlay .outdated-warning-closer {
|
||||
position: absolute;
|
||||
top: calc(50% - 10px);
|
||||
right: 18px;
|
||||
cursor: pointer;
|
||||
width: 12px; }
|
||||
html.theme--documenter-dark .outdated-warning-overlay a {
|
||||
color: #1abc9c; }
|
||||
html.theme--documenter-dark .outdated-warning-overlay a:hover {
|
||||
color: #1dd2af; }
|
||||
html.theme--documenter-dark .content pre {
|
||||
border: 1px solid #5e6d6f; }
|
||||
html.theme--documenter-dark .content code {
|
||||
|
@ -7303,11 +7331,15 @@ html.theme--documenter-dark {
|
|||
html.theme--documenter-dark .katex .katex-mathml {
|
||||
top: 0;
|
||||
right: 0; }
|
||||
html.theme--documenter-dark .katex-display, html.theme--documenter-dark mjx-container, html.theme--documenter-dark .MathJax_Display {
|
||||
margin: 0.5em 0 !important; }
|
||||
html.theme--documenter-dark html {
|
||||
-moz-osx-font-smoothing: auto;
|
||||
-webkit-font-smoothing: auto; }
|
||||
html.theme--documenter-dark #documenter .docs-main > article {
|
||||
overflow-wrap: break-word; }
|
||||
html.theme--documenter-dark #documenter .docs-main > article .math-container {
|
||||
overflow-x: auto; }
|
||||
@media screen and (min-width: 1056px) {
|
||||
html.theme--documenter-dark #documenter .docs-main {
|
||||
max-width: 52rem;
|
||||
|
@ -7379,6 +7411,7 @@ html.theme--documenter-dark {
|
|||
margin-bottom: 0.4em; }
|
||||
html.theme--documenter-dark #documenter .docs-main .docs-footer {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
border-top: 1px solid #5e6d6f;
|
||||
|
@ -7392,6 +7425,13 @@ html.theme--documenter-dark {
|
|||
flex-grow: 1; }
|
||||
html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-nextpage {
|
||||
text-align: right; }
|
||||
html.theme--documenter-dark #documenter .docs-main .docs-footer .flexbox-break {
|
||||
flex-basis: 100%;
|
||||
height: 0; }
|
||||
html.theme--documenter-dark #documenter .docs-main .docs-footer .footer-message {
|
||||
font-size: 0.8em;
|
||||
margin: 0.5em auto 0 auto;
|
||||
text-align: center; }
|
||||
html.theme--documenter-dark #documenter .docs-sidebar {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
@ -7434,6 +7474,8 @@ html.theme--documenter-dark {
|
|||
padding: 0.5rem 0; }
|
||||
html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name .docs-autofit {
|
||||
max-width: 16.2rem; }
|
||||
html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name a, html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name a:hover {
|
||||
color: #fff; }
|
||||
html.theme--documenter-dark #documenter .docs-sidebar .docs-version-selector {
|
||||
border-top: 1px solid #5e6d6f;
|
||||
display: none;
|
||||
|
@ -7560,6 +7602,9 @@ html.theme--documenter-dark {
|
|||
overflow-y: scroll;
|
||||
text-rendering: optimizeLegibility;
|
||||
text-size-adjust: 100%; }
|
||||
html.theme--documenter-dark .hljs {
|
||||
background: #2b2b2b;
|
||||
color: #f8f8f2; }
|
||||
html.theme--documenter-dark .hljs-comment,
|
||||
html.theme--documenter-dark .hljs-quote {
|
||||
color: #d4d0ab; }
|
||||
|
@ -7574,7 +7619,6 @@ html.theme--documenter-dark {
|
|||
color: #ffa07a; }
|
||||
html.theme--documenter-dark .hljs-number,
|
||||
html.theme--documenter-dark .hljs-built_in,
|
||||
html.theme--documenter-dark .hljs-builtin-name,
|
||||
html.theme--documenter-dark .hljs-literal,
|
||||
html.theme--documenter-dark .hljs-type,
|
||||
html.theme--documenter-dark .hljs-params,
|
||||
|
@ -7594,12 +7638,6 @@ html.theme--documenter-dark {
|
|||
html.theme--documenter-dark .hljs-keyword,
|
||||
html.theme--documenter-dark .hljs-selector-tag {
|
||||
color: #dcc6e0; }
|
||||
html.theme--documenter-dark .hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
background: #2b2b2b;
|
||||
color: #f8f8f2;
|
||||
padding: 0.5em; }
|
||||
html.theme--documenter-dark .hljs-emphasis {
|
||||
font-style: italic; }
|
||||
html.theme--documenter-dark .hljs-strong {
|
||||
|
@ -7608,7 +7646,6 @@ html.theme--documenter-dark {
|
|||
html.theme--documenter-dark .hljs-addition,
|
||||
html.theme--documenter-dark .hljs-attribute,
|
||||
html.theme--documenter-dark .hljs-built_in,
|
||||
html.theme--documenter-dark .hljs-builtin-name,
|
||||
html.theme--documenter-dark .hljs-bullet,
|
||||
html.theme--documenter-dark .hljs-comment,
|
||||
html.theme--documenter-dark .hljs-link,
|
||||
|
|
|
@ -310,13 +310,13 @@ button,
|
|||
input,
|
||||
select,
|
||||
textarea {
|
||||
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif; }
|
||||
font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif; }
|
||||
|
||||
code,
|
||||
pre {
|
||||
-moz-osx-font-smoothing: auto;
|
||||
-webkit-font-smoothing: auto;
|
||||
font-family: "Roboto Mono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace; }
|
||||
font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace; }
|
||||
|
||||
body {
|
||||
color: #222222;
|
||||
|
@ -853,19 +853,19 @@ a.has-text-danger:hover, a.has-text-danger:focus {
|
|||
font-weight: 700 !important; }
|
||||
|
||||
.is-family-primary {
|
||||
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
|
||||
.is-family-secondary {
|
||||
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
|
||||
.is-family-sans-serif {
|
||||
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; }
|
||||
|
||||
.is-family-monospace {
|
||||
font-family: "Roboto Mono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; }
|
||||
font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; }
|
||||
|
||||
.is-family-code {
|
||||
font-family: "Roboto Mono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; }
|
||||
font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; }
|
||||
|
||||
.is-block {
|
||||
display: block !important; }
|
||||
|
@ -7138,7 +7138,7 @@ h1:hover .docs-heading-anchor-permalink, h2:hover .docs-heading-anchor-permalink
|
|||
.admonition.is-default > .admonition-body {
|
||||
color: #fff; }
|
||||
.admonition.is-info {
|
||||
background-color: #b8dffa;
|
||||
background-color: #def0fd;
|
||||
border-color: #209cee; }
|
||||
.admonition.is-info > .admonition-header {
|
||||
background-color: #209cee;
|
||||
|
@ -7146,7 +7146,7 @@ h1:hover .docs-heading-anchor-permalink, h2:hover .docs-heading-anchor-permalink
|
|||
.admonition.is-info > .admonition-body {
|
||||
color: rgba(0, 0, 0, 0.7); }
|
||||
.admonition.is-success {
|
||||
background-color: #9beeb8;
|
||||
background-color: #bdf4d1;
|
||||
border-color: #22c35b; }
|
||||
.admonition.is-success > .admonition-header {
|
||||
background-color: #22c35b;
|
||||
|
@ -7162,15 +7162,15 @@ h1:hover .docs-heading-anchor-permalink, h2:hover .docs-heading-anchor-permalink
|
|||
.admonition.is-warning > .admonition-body {
|
||||
color: rgba(0, 0, 0, 0.7); }
|
||||
.admonition.is-danger {
|
||||
background-color: #ff857e;
|
||||
background-color: #ffaba7;
|
||||
border-color: #da0b00; }
|
||||
.admonition.is-danger > .admonition-header {
|
||||
background-color: #da0b00;
|
||||
color: #fff; }
|
||||
.admonition.is-danger > .admonition-body {
|
||||
color: #fff; }
|
||||
color: rgba(0, 0, 0, 0.7); }
|
||||
.admonition.is-compat {
|
||||
background-color: #99e6f0;
|
||||
background-color: #bdeff5;
|
||||
border-color: #1db5c9; }
|
||||
.admonition.is-compat > .admonition-header {
|
||||
background-color: #1db5c9;
|
||||
|
@ -7239,6 +7239,33 @@ h1:hover .docs-heading-anchor-permalink, h2:hover .docs-heading-anchor-permalink
|
|||
.docstring > section:hover a.docs-sourcelink {
|
||||
opacity: 1; }
|
||||
|
||||
.documenter-example-output {
|
||||
background-color: white; }
|
||||
|
||||
.outdated-warning-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
||||
z-index: 999;
|
||||
background-color: #ffaba7;
|
||||
color: rgba(0, 0, 0, 0.7);
|
||||
border-bottom: 3px solid #da0b00;
|
||||
padding: 10px 35px;
|
||||
text-align: center;
|
||||
font-size: 15px; }
|
||||
.outdated-warning-overlay .outdated-warning-closer {
|
||||
position: absolute;
|
||||
top: calc(50% - 10px);
|
||||
right: 18px;
|
||||
cursor: pointer;
|
||||
width: 12px; }
|
||||
.outdated-warning-overlay a {
|
||||
color: #2e63b8; }
|
||||
.outdated-warning-overlay a:hover {
|
||||
color: #363636; }
|
||||
|
||||
.content pre {
|
||||
border: 1px solid #dbdbdb; }
|
||||
|
||||
|
@ -7274,6 +7301,9 @@ h1:hover .docs-heading-anchor-permalink, h2:hover .docs-heading-anchor-permalink
|
|||
top: 0;
|
||||
right: 0; }
|
||||
|
||||
.katex-display, mjx-container, .MathJax_Display {
|
||||
margin: 0.5em 0 !important; }
|
||||
|
||||
html {
|
||||
-moz-osx-font-smoothing: auto;
|
||||
-webkit-font-smoothing: auto; }
|
||||
|
@ -7284,6 +7314,8 @@ html {
|
|||
*/
|
||||
#documenter .docs-main > article {
|
||||
overflow-wrap: break-word; }
|
||||
#documenter .docs-main > article .math-container {
|
||||
overflow-x: auto; }
|
||||
|
||||
@media screen and (min-width: 1056px) {
|
||||
#documenter .docs-main {
|
||||
|
@ -7360,6 +7392,7 @@ html {
|
|||
|
||||
#documenter .docs-main .docs-footer {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
border-top: 1px solid #dbdbdb;
|
||||
|
@ -7373,6 +7406,13 @@ html {
|
|||
flex-grow: 1; }
|
||||
#documenter .docs-main .docs-footer .docs-footer-nextpage {
|
||||
text-align: right; }
|
||||
#documenter .docs-main .docs-footer .flexbox-break {
|
||||
flex-basis: 100%;
|
||||
height: 0; }
|
||||
#documenter .docs-main .docs-footer .footer-message {
|
||||
font-size: 0.8em;
|
||||
margin: 0.5em auto 0 auto;
|
||||
text-align: center; }
|
||||
|
||||
#documenter .docs-sidebar {
|
||||
display: flex;
|
||||
|
@ -7416,6 +7456,8 @@ html {
|
|||
padding: 0.5rem 0; }
|
||||
#documenter .docs-sidebar .docs-package-name .docs-autofit {
|
||||
max-width: 16.2rem; }
|
||||
#documenter .docs-sidebar .docs-package-name a, #documenter .docs-sidebar .docs-package-name a:hover {
|
||||
color: #0a0a0a; }
|
||||
#documenter .docs-sidebar .docs-version-selector {
|
||||
border-top: 1px solid #dbdbdb;
|
||||
display: none;
|
||||
|
@ -7537,29 +7579,54 @@ html {
|
|||
#documenter .docs-main #documenter-search-results .docs-highlight {
|
||||
background-color: yellow; }
|
||||
|
||||
/*
|
||||
|
||||
Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
|
||||
|
||||
/*!
|
||||
Theme: Default
|
||||
Description: Original highlight.js style
|
||||
Author: (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
|
||||
Maintainer: @highlightjs/core-team
|
||||
Website: https://highlightjs.org/
|
||||
License: see project LICENSE
|
||||
Touched: 2021
|
||||
*/
|
||||
.hljs {
|
||||
/*
|
||||
This is left on purpose making default.css the single file that can be lifted
|
||||
as-is from the repository directly without the need for a build step
|
||||
|
||||
Typically this "required" baseline CSS is added by `makestuff.js` during build.
|
||||
*/
|
||||
pre code.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 0.5em;
|
||||
background: #F0F0F0; }
|
||||
padding: 1em; }
|
||||
|
||||
/* Base color: saturation 0; */
|
||||
.hljs,
|
||||
.hljs-subst {
|
||||
code.hljs {
|
||||
padding: 3px 5px; }
|
||||
|
||||
/* end baseline CSS */
|
||||
.hljs {
|
||||
background: #F0F0F0;
|
||||
color: #444; }
|
||||
|
||||
/* Base color: saturation 0; */
|
||||
.hljs-subst {
|
||||
/* default */ }
|
||||
|
||||
/* purposely ignored */
|
||||
.hljs-comment {
|
||||
color: #888888; }
|
||||
|
||||
.hljs-tag,
|
||||
.hljs-punctuation {
|
||||
color: #444a; }
|
||||
|
||||
.hljs-tag .hljs-name,
|
||||
.hljs-tag .hljs-attr {
|
||||
color: #444; }
|
||||
|
||||
.hljs-keyword,
|
||||
.hljs-attribute,
|
||||
.hljs-selector-tag,
|
||||
.hljs-meta-keyword,
|
||||
.hljs-meta .hljs-keyword,
|
||||
.hljs-doctag,
|
||||
.hljs-name {
|
||||
font-weight: bold; }
|
||||
|
@ -7586,6 +7653,7 @@ Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
|
|||
.hljs-template-variable,
|
||||
.hljs-link,
|
||||
.hljs-selector-attr,
|
||||
.hljs-operator,
|
||||
.hljs-selector-pseudo {
|
||||
color: #BC6060; }
|
||||
|
||||
|
@ -7603,7 +7671,7 @@ Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
|
|||
.hljs-meta {
|
||||
color: #1f7199; }
|
||||
|
||||
.hljs-meta-string {
|
||||
.hljs-meta .hljs-string {
|
||||
color: #4d99bf; }
|
||||
|
||||
/* Misc effects */
|
||||
|
|
|
@ -1,10 +1,20 @@
|
|||
// Small function to quickly swap out themes. Gets put into the <head> tag..
|
||||
function set_theme_from_local_storage() {
|
||||
// Browser does not support Web Storage, bail early.
|
||||
if(typeof(window.localStorage) === "undefined") return;
|
||||
// Intialize the theme to null, which means default
|
||||
var theme = null;
|
||||
// If the browser supports the localstorage and is not disabled then try to get the
|
||||
// documenter theme
|
||||
if(window.localStorage != null) {
|
||||
// Get the user-picked theme from localStorage. May be `null`, which means the default
|
||||
// theme.
|
||||
var theme = window.localStorage.getItem("documenter-theme");
|
||||
theme = window.localStorage.getItem("documenter-theme");
|
||||
}
|
||||
// Check if the browser supports user color preference
|
||||
var darkPreference = false;
|
||||
// Check if the users preference is for dark color scheme
|
||||
if(window.matchMedia('(prefers-color-scheme: dark)').matches === true) {
|
||||
darkPreference = true;
|
||||
}
|
||||
// Initialize a few variables for the loop:
|
||||
//
|
||||
// - active: will contain the index of the theme that should be active. Note that there
|
||||
|
@ -14,7 +24,7 @@ function set_theme_from_local_storage() {
|
|||
//
|
||||
// - disabled: style sheets that should be disabled (i.e. all the theme style sheets
|
||||
// that are not the currently active theme)
|
||||
var active = null; var disabled = [];
|
||||
var active = null; var disabled = []; var darkTheme = null;
|
||||
for (var i = 0; i < document.styleSheets.length; i++) {
|
||||
var ss = document.styleSheets[i];
|
||||
// The <link> tag of each style sheet is expected to have a data-theme-name attribute
|
||||
|
@ -25,8 +35,12 @@ function set_theme_from_local_storage() {
|
|||
// To distinguish the default (primary) theme, it needs to have the data-theme-primary
|
||||
// attribute set.
|
||||
var isprimary = (ss.ownerNode.getAttribute("data-theme-primary") !== null);
|
||||
// Check if the theme is primary dark theme
|
||||
var isDarkTheme = (ss.ownerNode.getAttribute("data-theme-primary-dark") !== null);
|
||||
// If ss is for dark theme then set the value of darkTheme to the name of the theme
|
||||
if(isDarkTheme) darkTheme = themename;
|
||||
// If we find a matching theme (and it's not the default), we'll set active to non-null
|
||||
if(!isprimary && themename === theme) active = i;
|
||||
if(themename === theme) active = i;
|
||||
// Store the style sheets of inactive themes so that we could disable them
|
||||
if(themename !== theme) disabled.push(ss);
|
||||
}
|
||||
|
@ -38,5 +52,15 @@ function set_theme_from_local_storage() {
|
|||
ss.disabled = true;
|
||||
});
|
||||
}
|
||||
else if(darkTheme !== null && darkPreference === true) {
|
||||
// If we did find an active theme, we'll (1) add the theme--$(theme) class to <html>
|
||||
document.getElementsByTagName('html')[0].className = "theme--" + darkTheme;
|
||||
// and (2) disable all the other theme stylesheets
|
||||
disabled.forEach(function(ss){
|
||||
if (ss.ownerNode.getAttribute("data-theme-name") !== darkTheme) {
|
||||
ss.disabled = true;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
set_theme_from_local_storage();
|
||||
|
|
49
dev/assets/warner.js
Normal file
49
dev/assets/warner.js
Normal file
|
@ -0,0 +1,49 @@
|
|||
function maybeAddWarning () {
|
||||
// DOCUMENTER_NEWEST is defined in versions.js, DOCUMENTER_CURRENT_VERSION and DOCUMENTER_STABLE
|
||||
// in siteinfo.js.
|
||||
// If either of these are undefined something went horribly wrong, so we abort.
|
||||
if (
|
||||
window.DOCUMENTER_NEWEST === undefined ||
|
||||
window.DOCUMENTER_CURRENT_VERSION === undefined ||
|
||||
window.DOCUMENTER_STABLE === undefined
|
||||
) {
|
||||
return
|
||||
};
|
||||
|
||||
// Current version is not a version number, so we can't tell if it's the newest version. Abort.
|
||||
if (!/v(\d+\.)*\d+/.test(window.DOCUMENTER_CURRENT_VERSION)) {
|
||||
return
|
||||
};
|
||||
|
||||
// Current version is newest version, so no need to add a warning.
|
||||
if (window.DOCUMENTER_NEWEST === window.DOCUMENTER_CURRENT_VERSION) {
|
||||
return
|
||||
};
|
||||
|
||||
// Add a noindex meta tag (unless one exists) so that search engines don't index this version of the docs.
|
||||
if (document.body.querySelector('meta[name="robots"]') === null) {
|
||||
const meta = document.createElement('meta');
|
||||
meta.name = 'robots';
|
||||
meta.content = 'noindex';
|
||||
|
||||
document.getElementsByTagName('head')[0].appendChild(meta);
|
||||
};
|
||||
|
||||
const div = document.createElement('div');
|
||||
div.classList.add('outdated-warning-overlay');
|
||||
const closer = document.createElement('button');
|
||||
closer.classList.add('outdated-warning-closer', 'delete');
|
||||
closer.addEventListener('click', function () {
|
||||
document.body.removeChild(div);
|
||||
});
|
||||
const href = window.documenterBaseURL + '/../' + window.DOCUMENTER_STABLE;
|
||||
div.innerHTML = 'This documentation is not for the latest version. <br> <a href="' + href + '">Go to the latest documentation</a>.';
|
||||
div.appendChild(closer);
|
||||
document.body.appendChild(div);
|
||||
};
|
||||
|
||||
if (document.readyState === 'loading') {
|
||||
document.addEventListener('DOMContentLoaded', maybeAddWarning);
|
||||
} else {
|
||||
maybeAddWarning();
|
||||
};
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,2 +1,2 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><title>Search · XAM.jl</title><link href="https://fonts.googleapis.com/css?family=Lato|Roboto+Mono" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/fontawesome.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/solid.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/brands.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/katex.min.css" rel="stylesheet" type="text/css"/><script>documenterBaseURL=".."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" data-main="../assets/documenter.js"></script><script src="../siteinfo.js"></script><script src="../../versions.js"></script><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-dark.css" data-theme-name="documenter-dark"/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-light.css" data-theme-name="documenter-light" data-theme-primary/><script src="../assets/themeswap.js"></script></head><body><div id="documenter"><nav class="docs-sidebar"><a class="docs-logo" href="../"><img src="../assets/logo.svg" alt="XAM.jl logo"/></a><div class="docs-package-name"><span class="docs-autofit">XAM.jl</span></div><form class="docs-search" action><input class="docs-search-query" id="documenter-search-query" name="q" type="text" placeholder="Search docs"/></form><ul class="docs-menu"><li><a class="tocitem" href="../">Home</a></li><li><a class="tocitem" href="../man/hts-files/">SAM and BAM</a></li><li><a class="tocitem" href="../man/api/">API Reference</a></li></ul><div class="docs-version-selector field has-addons"><div class="control"><span class="docs-label button is-static is-size-7">Version</span></div><div class="docs-selector control is-expanded"><div class="select is-fullwidth is-size-7"><select id="documenter-version-selector"></select></div></div></div></nav><div class="docs-main"><header class="docs-navbar"><nav class="breadcrumb"><ul class="is-hidden-mobile"><li class="is-active"><a href>Search</a></li></ul><ul class="is-hidden-tablet"><li class="is-active"><a href>Search</a></li></ul></nav><div class="docs-right"><a class="docs-settings-button fas fa-cog" id="documenter-settings-button" href="#" title="Settings"></a><a class="docs-sidebar-button fa fa-bars is-hidden-desktop" id="documenter-sidebar-button" href="#"></a></div></header><article><p id="documenter-search-info">Loading search...</p><ul id="documenter-search-results"></ul></article></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <span class="colophon-date" title="Thursday 24 June 2021 13:02">Thursday 24 June 2021</span>. Using Julia version 1.4.2.</p></section><footer class="modal-card-foot"></footer></div></div></div></body><script src="../search_index.js"></script><script src="../assets/search.js"></script></html>
|
||||
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><title>Search · XAM.jl</title><script data-outdated-warner src="../assets/warner.js"></script><link href="https://cdnjs.cloudflare.com/ajax/libs/lato-font/3.0.0/css/lato-font.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/juliamono/0.039/juliamono-regular.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/fontawesome.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/solid.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/brands.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.13.11/katex.min.css" rel="stylesheet" type="text/css"/><script>documenterBaseURL=".."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" data-main="../assets/documenter.js"></script><script src="../siteinfo.js"></script><script src="../../versions.js"></script><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-dark.css" data-theme-name="documenter-dark" data-theme-primary-dark/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="../assets/themes/documenter-light.css" data-theme-name="documenter-light" data-theme-primary/><script src="../assets/themeswap.js"></script></head><body><div id="documenter"><nav class="docs-sidebar"><a class="docs-logo" href="../"><img src="../assets/logo.svg" alt="XAM.jl logo"/></a><div class="docs-package-name"><span class="docs-autofit"><a href="../">XAM.jl</a></span></div><form class="docs-search" action><input class="docs-search-query" id="documenter-search-query" name="q" type="text" placeholder="Search docs"/></form><ul class="docs-menu"><li><a class="tocitem" href="../">Home</a></li><li><a class="tocitem" href="../man/hts-files/">SAM and BAM</a></li><li><a class="tocitem" href="../man/api/">API Reference</a></li></ul><div class="docs-version-selector field has-addons"><div class="control"><span class="docs-label button is-static is-size-7">Version</span></div><div class="docs-selector control is-expanded"><div class="select is-fullwidth is-size-7"><select id="documenter-version-selector"></select></div></div></div></nav><div class="docs-main"><header class="docs-navbar"><nav class="breadcrumb"><ul class="is-hidden-mobile"><li class="is-active"><a href>Search</a></li></ul><ul class="is-hidden-tablet"><li class="is-active"><a href>Search</a></li></ul></nav><div class="docs-right"><a class="docs-settings-button fas fa-cog" id="documenter-settings-button" href="#" title="Settings"></a><a class="docs-sidebar-button fa fa-bars is-hidden-desktop" id="documenter-sidebar-button" href="#"></a></div></header><article><p id="documenter-search-info">Loading search...</p><ul id="documenter-search-results"></ul></article><nav class="docs-footer"><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <span class="colophon-date" title="Tuesday 29 June 2021 03:28">Tuesday 29 June 2021</span>. Using Julia version 1.6.1.</p></section><footer class="modal-card-foot"></footer></div></div></div></body><script src="../search_index.js"></script><script src="../assets/search.js"></script></html>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -3,3 +3,5 @@ var DOC_VERSIONS = [
|
|||
"v0.2",
|
||||
"dev",
|
||||
];
|
||||
var DOCUMENTER_NEWEST = "v0.2.7";
|
||||
var DOCUMENTER_STABLE = "stable";
|
||||
|
|
Loading…
Reference in a new issue