Skip to content

Commit 3e8ec24

Browse files
author
Documenter.jl
committed
build based on f7557d2
1 parent 913e12e commit 3e8ec24

File tree

36 files changed

+109
-92
lines changed

36 files changed

+109
-92
lines changed

dev/.documenter-siteinfo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"documenter":{"julia_version":"1.11.5","generation_timestamp":"2025-05-02T04:17:12","documenter_version":"1.10.2"}}
1+
{"documenter":{"julia_version":"1.11.6","generation_timestamp":"2025-08-01T03:54:49","documenter_version":"1.14.1"}}

dev/accumulators/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@
4444
intersect(a1, a2) # multiset intersection (sometimes called infimum or greatest common divisor)
4545
# returns a new multiset with the counts being the lowest of those in `a1` or `a2`.
4646
# Note that this means things not occurring in both with be removed (count zero).
47-
# `min(a1[v], a2[v])` over all `v` in the universe</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../fenwick/">« Fenwick Tree</a><a class="docs-footer-nextpage" href="../disjoint_sets/">Disjoint-Sets »</a><div class="flexbox-break"></div><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="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="catppuccin-latte">catppuccin-latte</option><option value="catppuccin-frappe">catppuccin-frappe</option><option value="catppuccin-macchiato">catppuccin-macchiato</option><option value="catppuccin-mocha">catppuccin-mocha</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.10.2 on <span class="colophon-date" title="Friday 2 May 2025 04:17">Friday 2 May 2025</span>. Using Julia version 1.11.5.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
47+
# `min(a1[v], a2[v])` over all `v` in the universe</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../fenwick/">« Fenwick Tree</a><a class="docs-footer-nextpage" href="../disjoint_sets/">Disjoint-Sets »</a><div class="flexbox-break"></div><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="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="catppuccin-latte">catppuccin-latte</option><option value="catppuccin-frappe">catppuccin-frappe</option><option value="catppuccin-macchiato">catppuccin-macchiato</option><option value="catppuccin-mocha">catppuccin-mocha</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.14.1 on <span class="colophon-date" title="Friday 1 August 2025 03:54">Friday 1 August 2025</span>. Using Julia version 1.11.6.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>

dev/assets/documenter.js

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/themes/catppuccin-frappe.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/themes/catppuccin-latte.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/themes/catppuccin-macchiato.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/themes/catppuccin-mocha.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/themes/documenter-dark.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/themes/documenter-light.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/assets/warner.js

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function maybeAddWarning() {
22
// DOCUMENTER_NEWEST is defined in versions.js, DOCUMENTER_CURRENT_VERSION and DOCUMENTER_STABLE
3-
// in siteinfo.js.
4-
// If either of these are undefined something went horribly wrong, so we abort.
3+
// in siteinfo.js. DOCUMENTER_IS_DEV_VERSION is optional and defined in siteinfo.js.
4+
// If the required variables are undefined something went horribly wrong, so we abort.
55
if (
66
window.DOCUMENTER_NEWEST === undefined ||
77
window.DOCUMENTER_CURRENT_VERSION === undefined ||
@@ -30,17 +30,33 @@ function maybeAddWarning() {
3030
}
3131

3232
const div = document.createElement("div");
33-
div.classList.add("outdated-warning-overlay");
33+
// Base class is added by default
34+
div.classList.add("warning-overlay-base");
3435
const closer = document.createElement("button");
3536
closer.classList.add("outdated-warning-closer", "delete");
3637
closer.addEventListener("click", function () {
3738
document.body.removeChild(div);
3839
});
3940
const href = window.documenterBaseURL + "/../" + window.DOCUMENTER_STABLE;
40-
div.innerHTML =
41-
'This documentation is not for the latest stable release, but for either the development version or an older release.<br><a href="' +
41+
42+
// Determine if this is a development version or an older release
43+
let warningMessage = "";
44+
if (window.DOCUMENTER_IS_DEV_VERSION === true) {
45+
div.classList.add("dev-warning-overlay");
46+
warningMessage =
47+
"This documentation is for the <strong>development version</strong> and may contain unstable or unreleased features.<br>";
48+
} else {
49+
div.classList.add("outdated-warning-overlay");
50+
warningMessage =
51+
"This documentation is for an <strong>older version</strong> that may be missing recent changes.<br>";
52+
}
53+
54+
warningMessage +=
55+
'<a href="' +
4256
href +
4357
'">Click here to go to the documentation for the latest stable release.</a>';
58+
59+
div.innerHTML = warningMessage;
4460
div.appendChild(closer);
4561
document.body.appendChild(div);
4662
}

0 commit comments

Comments
 (0)