Browse Source

build based on 5c15d88

gh-pages
Documenter.jl 1 year ago
parent
commit
20fcd43dd1
  1. 2
      v2
  2. 2
      v2.20
  3. 1
      v2.20.1/.documenter-siteinfo.json
  4. 7
      v2.20.1/assets/custom.css
  5. 1064
      v2.20.1/assets/documenter.js
  6. BIN
      v2.20.1/assets/favicon.ico
  7. BIN
      v2.20.1/assets/logo.png
  8. 1
      v2.20.1/assets/themes/catppuccin-frappe.css
  9. 1
      v2.20.1/assets/themes/catppuccin-latte.css
  10. 1
      v2.20.1/assets/themes/catppuccin-macchiato.css
  11. 1
      v2.20.1/assets/themes/catppuccin-mocha.css
  12. 7
      v2.20.1/assets/themes/documenter-dark.css
  13. 9
      v2.20.1/assets/themes/documenter-light.css
  14. 84
      v2.20.1/assets/themeswap.js
  15. 52
      v2.20.1/assets/warner.js
  16. 13
      v2.20.1/changelog/index.html
  17. 29
      v2.20.1/customprocessing/index.html
  18. 24
      v2.20.1/documenter/index.html
  19. 32
      v2.20.1/fileformat/index.html
  20. 541
      v2.20.1/generated/example.ipynb
  21. 30
      v2.20.1/generated/example.jl
  22. 46
      v2.20.1/generated/example/a050f900.svg
  23. 19
      v2.20.1/generated/example/index.html
  24. 2
      v2.20.1/generated/name/index.html
  25. 99
      v2.20.1/generated/notebook.ipynb
  26. 5
      v2.20.1/generated/outputformats.jl
  27. 2
      v2.20.1/index.html
  28. BIN
      v2.20.1/objects.inv
  29. 12
      v2.20.1/outputformats.jl
  30. 62
      v2.20.1/outputformats/index.html
  31. 32
      v2.20.1/pipeline/index.html
  32. 2
      v2.20.1/reference/index.html
  33. 3
      v2.20.1/search_index.js
  34. 1
      v2.20.1/siteinfo.js
  35. 30
      v2.20.1/tips/index.html
  36. 2
      versions.js

2
v2

@ -1 +1 @@ @@ -1 +1 @@
v2.20.0
v2.20.1

2
v2.20

@ -1 +1 @@ @@ -1 +1 @@
v2.20.0
v2.20.1

1
v2.20.1/.documenter-siteinfo.json

@ -0,0 +1 @@ @@ -0,0 +1 @@
{"documenter":{"julia_version":"1.11.1","generation_timestamp":"2024-10-17T21:30:13","documenter_version":"1.7.0"}}

7
v2.20.1/assets/custom.css

@ -0,0 +1,7 @@ @@ -0,0 +1,7 @@
div#documenter .docs-sidebar .docs-logo > img {
max-height: 10em;
}
div#documenter .docs-sidebar .docs-package-name {
padding-top: 1rem;
}
/*1.0rem 0 0.5rem 0;*/

1064
v2.20.1/assets/documenter.js

File diff suppressed because it is too large Load Diff

BIN
v2.20.1/assets/favicon.ico

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
v2.20.1/assets/logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

1
v2.20.1/assets/themes/catppuccin-frappe.css

File diff suppressed because one or more lines are too long

1
v2.20.1/assets/themes/catppuccin-latte.css

File diff suppressed because one or more lines are too long

1
v2.20.1/assets/themes/catppuccin-macchiato.css

File diff suppressed because one or more lines are too long

1
v2.20.1/assets/themes/catppuccin-mocha.css

File diff suppressed because one or more lines are too long

7
v2.20.1/assets/themes/documenter-dark.css

File diff suppressed because one or more lines are too long

9
v2.20.1/assets/themes/documenter-light.css

File diff suppressed because one or more lines are too long

84
v2.20.1/assets/themeswap.js

@ -0,0 +1,84 @@ @@ -0,0 +1,84 @@
// Small function to quickly swap out themes. Gets put into the <head> tag..
function set_theme_from_local_storage() {
// Initialize 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.
theme = window.localStorage.getItem("documenter-theme");
}
// Check if the users preference is for dark color scheme
var darkPreference =
window.matchMedia("(prefers-color-scheme: dark)").matches === true;
// Initialize a few variables for the loop:
//
// - active: will contain the index of the theme that should be active. Note that there
// is no guarantee that localStorage contains sane values. If `active` stays `null`
// we either could not find the theme or it is the default (primary) theme anyway.
// Either way, we then need to stick to the primary theme.
//
// - 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 primaryLightTheme = null;
var primaryDarkTheme = 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
// which must contain the name of the theme. The names in localStorage much match this.
var themename = ss.ownerNode.getAttribute("data-theme-name");
// attribute not set => non-theme stylesheet => ignore
if (themename === null) continue;
// To distinguish the default (primary) theme, it needs to have the data-theme-primary
// attribute set.
if (ss.ownerNode.getAttribute("data-theme-primary") !== null) {
primaryLightTheme = themename;
}
// Check if the theme is primary dark theme so that we could store its name in darkTheme
if (ss.ownerNode.getAttribute("data-theme-primary-dark") !== null) {
primaryDarkTheme = themename;
}
// If we find a matching theme (and it's not the default), we'll set active to non-null
if (themename === theme) active = i;
// Store the style sheets of inactive themes so that we could disable them
if (themename !== theme) disabled.push(ss);
}
var activeTheme = null;
if (active !== null) {
// If we did find an active theme, we'll (1) add the theme--$(theme) class to <html>
document.getElementsByTagName("html")[0].className = "theme--" + theme;
activeTheme = theme;
} else {
// If we did _not_ find an active theme, then we need to fall back to the primary theme
// which can either be dark or light, depending on the user's OS preference.
var activeTheme = darkPreference ? primaryDarkTheme : primaryLightTheme;
// In case it somehow happens that the relevant primary theme was not found in the
// preceding loop, we abort without doing anything.
if (activeTheme === null) {
console.error("Unable to determine primary theme.");
return;
}
// When switching to the primary light theme, then we must not have a class name
// for the <html> tag. That's only for non-primary or the primary dark theme.
if (darkPreference) {
document.getElementsByTagName("html")[0].className =
"theme--" + activeTheme;
} else {
document.getElementsByTagName("html")[0].className = "";
}
}
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
// which must contain the name of the theme. The names in localStorage much match this.
var themename = ss.ownerNode.getAttribute("data-theme-name");
// attribute not set => non-theme stylesheet => ignore
if (themename === null) continue;
// we'll disable all the stylesheets, except for the active one
ss.disabled = !(themename == activeTheme);
}
}
set_theme_from_local_storage();

52
v2.20.1/assets/warner.js

@ -0,0 +1,52 @@ @@ -0,0 +1,52 @@
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 stable release, but for either the development version or an older release.<br><a href="' +
href +
'">Click here to go to the documentation for the latest stable release.</a>';
div.appendChild(closer);
document.body.appendChild(div);
}
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", maybeAddWarning);
} else {
maybeAddWarning();
}

13
v2.20.1/changelog/index.html

File diff suppressed because one or more lines are too long

29
v2.20.1/customprocessing/index.html

File diff suppressed because one or more lines are too long

24
v2.20.1/documenter/index.html

File diff suppressed because one or more lines are too long

32
v2.20.1/fileformat/index.html

File diff suppressed because one or more lines are too long

541
v2.20.1/generated/example.ipynb

File diff suppressed because one or more lines are too long

30
v2.20.1/generated/example.jl

@ -0,0 +1,30 @@ @@ -0,0 +1,30 @@
x = 1//3
y = 2//5
x + y
x * y
function foo()
println("This string is printed to stdout.")
return [1, 2, 3, 4]
end
foo()
1 + 1;
using Plots
x = range(0, stop=6π, length=1000)
y1 = sin.(x)
y2 = cos.(x)
plot(x, [y1, y2])
x = 123
function pre(s::String)
s = replace(s, "x = 123" => "y = 321")
return s
end
# This file was generated using Literate.jl, https://github.com/fredrikekre/Literate.jl

46
v2.20.1/generated/example/a050f900.svg

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 48 KiB

19
v2.20.1/generated/example/index.html

File diff suppressed because one or more lines are too long

2
v2.20.1/generated/name/index.html

File diff suppressed because one or more lines are too long

99
v2.20.1/generated/notebook.ipynb

@ -0,0 +1,99 @@ @@ -0,0 +1,99 @@
{
"cells": [
{
"cell_type": "markdown",
"source": [
"# Rational numbers\n",
"\n",
"In julia rational numbers can be constructed with the `//` operator.\n",
"Lets define two rational numbers, `x` and `y`:"
],
"metadata": {}
},
{
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": "1//3"
},
"metadata": {},
"execution_count": 1
}
],
"cell_type": "code",
"source": [
"x = 1//3"
],
"metadata": {},
"execution_count": 1
},
{
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": "2//5"
},
"metadata": {},
"execution_count": 2
}
],
"cell_type": "code",
"source": [
"y = 2//5"
],
"metadata": {},
"execution_count": 2
},
{
"cell_type": "markdown",
"source": [
"When adding `x` and `y` together we obtain a new rational number:"
],
"metadata": {}
},
{
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": "11//15"
},
"metadata": {},
"execution_count": 3
}
],
"cell_type": "code",
"source": [
"z = x + y"
],
"metadata": {},
"execution_count": 3
},
{
"cell_type": "markdown",
"source": [
"---\n",
"\n",
"*This notebook was generated using [Literate.jl](https://github.com/fredrikekre/Literate.jl).*"
],
"metadata": {}
}
],
"nbformat_minor": 3,
"metadata": {
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.11.1"
},
"kernelspec": {
"name": "julia-1.11",
"display_name": "Julia 1.11.1",
"language": "julia"
}
},
"nbformat": 4
}

5
v2.20.1/generated/outputformats.jl

@ -0,0 +1,5 @@ @@ -0,0 +1,5 @@
x = 1//3
y = 2//5
z = x + y

2
v2.20.1/index.html

File diff suppressed because one or more lines are too long

BIN
v2.20.1/objects.inv

Binary file not shown.

12
v2.20.1/outputformats.jl

@ -0,0 +1,12 @@ @@ -0,0 +1,12 @@
# # Rational numbers
#
# In julia rational numbers can be constructed with the `//` operator.
# Lets define two rational numbers, `x` and `y`:
x = 1//3
#-
y = 2//5
# When adding `x` and `y` together we obtain a new rational number:
z = x + y

62
v2.20.1/outputformats/index.html

File diff suppressed because one or more lines are too long

32
v2.20.1/pipeline/index.html

File diff suppressed because one or more lines are too long

2
v2.20.1/reference/index.html

File diff suppressed because one or more lines are too long

3
v2.20.1/search_index.js

File diff suppressed because one or more lines are too long

1
v2.20.1/siteinfo.js

@ -0,0 +1 @@ @@ -0,0 +1 @@
var DOCUMENTER_CURRENT_VERSION = "v2.20.1";

30
v2.20.1/tips/index.html

File diff suppressed because one or more lines are too long

2
versions.js

@ -28,5 +28,5 @@ var DOC_VERSIONS = [ @@ -28,5 +28,5 @@ var DOC_VERSIONS = [
"v0.1",
"dev",
];
var DOCUMENTER_NEWEST = "v2.20.0";
var DOCUMENTER_NEWEST = "v2.20.1";
var DOCUMENTER_STABLE = "v2";

Loading…
Cancel
Save