pull/359/merge
simonsan 11 months ago committed by GitHub
commit 012590a7f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,95 +25,94 @@ jobs:
- name: Test code snippets - name: Test code snippets
run: mdbook test run: mdbook test
# TODO: Activate when first translation is available i18n-helpers:
# i18n-helpers: runs-on: ubuntu-latest
# runs-on: ubuntu-latest steps:
# steps: - name: Checkout
# - name: Checkout uses: actions/checkout@v3
# uses: actions/checkout@v3
- name: Install Gettext
# - name: Install Gettext run: sudo apt install gettext
# run: sudo apt install gettext
- name: Setup Rust cache
# - name: Setup Rust cache uses: ./.github/workflows/setup-rust-cache
# uses: ./.github/workflows/setup-rust-cache
- name: Install mdbook
# - name: Install mdbook uses: ./.github/workflows/install-mdbook
# uses: ./.github/workflows/install-mdbook
- name: Generate po/messages.pot
# - name: Generate po/messages.pot run: mdbook build -d po
# run: mdbook build -d po env:
# env: MDBOOK_OUTPUT: '{"xgettext": {"pot-file": "messages.pot"}}'
# MDBOOK_OUTPUT: '{"xgettext": {"pot-file": "messages.pot"}}'
- name: Test messages.pot
# - name: Test messages.pot run: msgfmt --statistics -o /dev/null po/messages.pot
# run: msgfmt --statistics -o /dev/null po/messages.pot
- name: Expand includes without translation
# - name: Expand includes without translation run: mdbook build -d expanded
# run: mdbook build -d expanded env:
# env: MDBOOK_OUTPUT: '{"markdown": {}}'
# MDBOOK_OUTPUT: '{"markdown": {}}'
- name: Expand includes with no-op translation
# - name: Expand includes with no-op translation run: mdbook build -d no-op
# run: mdbook build -d no-op env:
# env: MDBOOK_OUTPUT: '{"markdown": {}}'
# MDBOOK_OUTPUT: '{"markdown": {}}' MDBOOK_PREPROCESSOR__GETTEXT__PO_FILE: po/messages.pot
# MDBOOK_PREPROCESSOR__GETTEXT__PO_FILE: po/messages.pot
- name: Compare no translation to no-op translation
# - name: Compare no translation to no-op translation run: diff --color=always --unified --recursive expanded no-op
# run: diff --color=always --unified --recursive expanded no-op
find-translations:
# find-translations: runs-on: ubuntu-latest
# runs-on: ubuntu-latest outputs:
# outputs: languages: ${{ steps.find-translations.outputs.languages }}
# languages: ${{ steps.find-translations.outputs.languages }} steps:
# steps: - name: Checkout
# - name: Checkout uses: actions/checkout@v3
# uses: actions/checkout@v3
- name: Find translations
# - name: Find translations id: find-translations
# id: find-translations shell: python
# shell: python run: |
# run: | import os, json, pathlib
# import os, json, pathlib languages = [p.stem for p in pathlib.Path("po").iterdir() if p.suffix == ".po"]
# languages = [p.stem for p in pathlib.Path("po").iterdir() if p.suffix == ".po"] github_output = open(os.environ["GITHUB_OUTPUT"], "a")
# github_output = open(os.environ["GITHUB_OUTPUT"], "a") github_output.write("languages=")
# github_output.write("languages=") json.dump(sorted(languages), github_output)
# json.dump(sorted(languages), github_output)
translations:
# translations: runs-on: ubuntu-latest
# runs-on: ubuntu-latest needs:
# needs: - find-translations
# - find-translations strategy:
# strategy: matrix:
# matrix: language: ${{ fromJSON(needs.find-translations.outputs.languages) }}
# language: ${{ fromJSON(needs.find-translations.outputs.languages) }} env:
# env: MDBOOK_BOOK__LANGUAGE: ${{ matrix.language }}
# MDBOOK_BOOK__LANGUAGE: ${{ matrix.language }} steps:
# steps: - name: Checkout
# - name: Checkout uses: actions/checkout@v3
# uses: actions/checkout@v3
- name: Install Gettext
# - name: Install Gettext run: sudo apt install gettext
# run: sudo apt install gettext
- name: Setup Rust cache
# - name: Setup Rust cache uses: ./.github/workflows/setup-rust-cache
# uses: ./.github/workflows/setup-rust-cache
- name: Install mdbook
# - name: Install mdbook uses: ./.github/workflows/install-mdbook
# uses: ./.github/workflows/install-mdbook
- name: Test ${{ matrix.language }} translation
# - name: Test ${{ matrix.language }} translation run: msgfmt --statistics -o /dev/null po/${{ matrix.language }}.po
# run: msgfmt --statistics -o /dev/null po/${{ matrix.language }}.po
- name: Build book with ${{ matrix.language }} translation
# - name: Build book with ${{ matrix.language }} translation run: mdbook build
# run: mdbook build
- name: Upload ${{ matrix.language }} translation
# - name: Upload ${{ matrix.language }} translation uses: actions/upload-artifact@v3
# uses: actions/upload-artifact@v3 with:
# with: name: rust-design-patterns-${{ matrix.language }}
# name: rust-design-patterns-${{ matrix.language }} path: book/
# path: book/
- name: Test code snippets with ${{ matrix.language }} translation
# - name: Test code snippets with ${{ matrix.language }} translation run: mdbook test
# run: mdbook test

@ -2,7 +2,12 @@ name: Deploy mdBook sites to GH Pages
on: on:
push: push:
branches: ["main"] # TODO: Change before merge into main
# branches: ["main"]
branches:
- main
- translation-de
workflow_dispatch: workflow_dispatch:
permissions: permissions:
@ -19,9 +24,12 @@ env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
# TODO: Update the language picker in index.hbs to link new languages. # TODO: Update the language picker in index.hbs to link new languages.
# TODO: As long as https://github.com/google/mdbook-i18n-helpers/issues/12 is not implemented, yet. # TODO: As long as https://github.com/google/mdbook-i18n-helpers/issues/12 is not implemented, yet.
# TODO: Activate when first translation is available
# These are the languages in addition to 'en', which is the main language # These are the languages in addition to 'en', which is the main language
# LANGUAGES: xx # de linked, due to being partly reviewed
# es not linked, due to being mostly unreviewed
# it not linked, due to being mostly unreviewed
# pt-BR not linked, due to being mostly unreviewed
LANGUAGES: de es it pt-BR
jobs: jobs:
publish: publish:
@ -42,16 +50,15 @@ jobs:
- name: Build course in English - name: Build course in English
run: mdbook build -d book run: mdbook build -d book
# TODO: Activate when first translation is available - name: Build all translations
# - name: Build all translations run: |
# run: | for po_lang in ${{ env.LANGUAGES }}; do
# for po_lang in ${{ env.LANGUAGES }}; do echo "::group::Building $po_lang translation"
# echo "::group::Building $po_lang translation" MDBOOK_BOOK__LANGUAGE=$po_lang \
# MDBOOK_BOOK__LANGUAGE=$po_lang \ MDBOOK_OUTPUT__HTML__SITE_URL=/patterns/$po_lang/ \
# MDBOOK_OUTPUT__HTML__SITE_URL=/patterns/$po_lang/ \ mdbook build -d book/$po_lang
# mdbook build -d book/$po_lang echo "::endgroup::"
# echo "::endgroup::" done
# done
- name: Setup Pages - name: Setup Pages
id: pages id: pages

1
.gitignore vendored

@ -1,3 +1,4 @@
# Generated output of mdbook # Generated output of mdbook
/book /book
.DS_Store .DS_Store
po/*.mo

@ -1,6 +1,6 @@
#language-list { #language-list {
left: auto; left: auto;
right: 10px; right: 9em;
} }
#language-list a { #language-list a {

8331
po/de.po

File diff suppressed because it is too large Load Diff

5059
po/es.po

File diff suppressed because it is too large Load Diff

5086
po/it.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -1,278 +1,294 @@
<!DOCTYPE HTML> <!DOCTYPE HTML>
<html lang="{{ language }}" class="sidebar-visible no-js {{ default_theme }}"> <html lang="{{ language }}" class="sidebar-visible no-js {{ default_theme }}">
<head>
<!-- Book generated using mdBook -->
<meta charset="UTF-8">
<title>{{ title }}</title>
{{#if is_print }}
<meta name="robots" content="noindex" />
{{/if}}
{{#if base_url}}
<base href="{{ base_url }}">
{{/if}}
<!-- Custom HTML head -->
{{> head}}
<meta name="description" content="{{ description }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffffff" />
{{#if favicon_svg}}
<link rel="icon" href="{{ path_to_root }}favicon.svg">
{{/if}}
{{#if favicon_png}}
<link rel="shortcut icon" href="{{ path_to_root }}favicon.png">
{{/if}}
<link rel="stylesheet" href="{{ path_to_root }}css/variables.css">
<link rel="stylesheet" href="{{ path_to_root }}css/general.css">
<link rel="stylesheet" href="{{ path_to_root }}css/chrome.css">
{{#if print_enable}}
<link rel="stylesheet" href="{{ path_to_root }}css/print.css" media="print">
{{/if}}
<!-- Fonts -->
<link rel="stylesheet" href="{{ path_to_root }}FontAwesome/css/font-awesome.css">
{{#if copy_fonts}}
<link rel="stylesheet" href="{{ path_to_root }}fonts/fonts.css">
{{/if}}
<!-- Highlight.js Stylesheets -->
<link rel="stylesheet" href="{{ path_to_root }}highlight.css">
<link rel="stylesheet" href="{{ path_to_root }}tomorrow-night.css">
<link rel="stylesheet" href="{{ path_to_root }}ayu-highlight.css">
<!-- Custom theme stylesheets -->
{{#each additional_css}}
<link rel="stylesheet" href="{{ ../path_to_root }}{{ this }}">
{{/each}}
{{#if mathjax_support}}
<!-- MathJax -->
<script async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
{{/if}}
</head>
<body>
<!-- Provide site root to javascript -->
<script>
var path_to_root = "{{ path_to_root }}";
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "{{ preferred_dark_theme }}" : "{{ default_theme }}";
</script>
<!-- Work around some values being stored in localStorage wrapped in quotes -->
<script>
try {
var theme = localStorage.getItem('mdbook-theme');
var sidebar = localStorage.getItem('mdbook-sidebar');
if (theme.startsWith('"') && theme.endsWith('"')) {
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
}
if (sidebar.startsWith('"') && sidebar.endsWith('"')) { <head>
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1)); <!-- Book generated using mdBook -->
} <meta charset="UTF-8">
} catch (e) { } <title>{{ title }}</title>
</script> {{#if is_print }}
<meta name="robots" content="noindex" />
<!-- Set the theme before any content is loaded, prevents flash --> {{/if}}
<script> {{#if base_url}}
var theme; <base href="{{ base_url }}">
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } {{/if}}
if (theme === null || theme === undefined) { theme = default_theme; }
var html = document.querySelector('html'); <!-- Custom HTML head -->
html.classList.remove('no-js') {{> head}}
html.classList.remove('{{ default_theme }}')
html.classList.add(theme); <meta name="description" content="{{ description }}">
html.classList.add('js'); <meta name="viewport" content="width=device-width, initial-scale=1">
</script> <meta name="theme-color" content="#ffffff" />
<!-- Hide / unhide sidebar before it is displayed --> {{#if favicon_svg}}
<script> <link rel="icon" href="{{ path_to_root }}favicon.svg">
var html = document.querySelector('html'); {{/if}}
var sidebar = 'hidden'; {{#if favicon_png}}
if (document.body.clientWidth >= 1080) { <link rel="shortcut icon" href="{{ path_to_root }}favicon.png">
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { } {{/if}}
sidebar = sidebar || 'visible'; <link rel="stylesheet" href="{{ path_to_root }}css/variables.css">
<link rel="stylesheet" href="{{ path_to_root }}css/general.css">
<link rel="stylesheet" href="{{ path_to_root }}css/chrome.css">
{{#if print_enable}}
<link rel="stylesheet" href="{{ path_to_root }}css/print.css" media="print">
{{/if}}
<!-- Fonts -->
<link rel="stylesheet" href="{{ path_to_root }}FontAwesome/css/font-awesome.css">
{{#if copy_fonts}}
<link rel="stylesheet" href="{{ path_to_root }}fonts/fonts.css">
{{/if}}
<!-- Highlight.js Stylesheets -->
<link rel="stylesheet" href="{{ path_to_root }}highlight.css">
<link rel="stylesheet" href="{{ path_to_root }}tomorrow-night.css">
<link rel="stylesheet" href="{{ path_to_root }}ayu-highlight.css">
<!-- Custom theme stylesheets -->
{{#each additional_css}}
<link rel="stylesheet" href="{{ ../path_to_root }}{{ this }}">
{{/each}}
{{#if mathjax_support}}
<!-- MathJax -->
<script async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
{{/if}}
</head>
<body>
<!-- Provide site root to javascript -->
<script>
var path_to_root = "{{ path_to_root }}";
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "{{ preferred_dark_theme }}" : "{{ default_theme }}";
</script>
<!-- Work around some values being stored in localStorage wrapped in quotes -->
<script>
try {
var theme = localStorage.getItem('mdbook-theme');
var sidebar = localStorage.getItem('mdbook-sidebar');
if (theme.startsWith('"') && theme.endsWith('"')) {
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
} }
html.classList.remove('sidebar-visible');
html.classList.add("sidebar-" + sidebar);
</script>
<nav id="sidebar" class="sidebar" aria-label="Table of contents"> if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
<div class="sidebar-scrollbox"> localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
{{#toc}}{{/toc}} }
</div> } catch (e) { }
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> </script>
</nav>
<!-- Set the theme before any content is loaded, prevents flash -->
<script>
var theme;
try { theme = localStorage.getItem('mdbook-theme'); } catch (e) { }
if (theme === null || theme === undefined) { theme = default_theme; }
var html = document.querySelector('html');
html.classList.remove('no-js')
html.classList.remove('{{ default_theme }}')
html.classList.add(theme);
html.classList.add('js');
</script>
<!-- Hide / unhide sidebar before it is displayed -->
<script>
var html = document.querySelector('html');
var sidebar = 'hidden';
if (document.body.clientWidth >= 1080) {
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch (e) { }
sidebar = sidebar || 'visible';
}
html.classList.remove('sidebar-visible');
html.classList.add("sidebar-" + sidebar);
</script>
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
<div class="sidebar-scrollbox">
{{#toc}}{{/toc}}
</div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
</nav>
<div id="page-wrapper" class="page-wrapper">
<div class="page">
{{> header}}
<div id="menu-bar-hover-placeholder"></div>
<div id="menu-bar" class="menu-bar sticky bordered">
<div class="left-buttons">
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents"
aria-label="Toggle Table of Contents" aria-controls="sidebar">
<i class="fa fa-bars"></i>
</button>
<button id="theme-toggle" class="icon-button" type="button" title="Change theme"
aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
<i class="fa fa-paint-brush"></i>
</button>
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
</ul>
{{#if search_enabled}}
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)"
aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S"
aria-controls="searchbar">
<i class="fa fa-search"></i>
</button>
{{/if}}
</div>
<div id="page-wrapper" class="page-wrapper"> <h1 class="menu-title">{{ book_title }}</h1>
<div class="page"> <div class="right-buttons">
{{> header}} <button id="language-toggle" class="icon-button" type="button" title="Change language"
<div id="menu-bar-hover-placeholder"></div> aria-label="Change language" aria-haspopup="true" aria-expanded="false"
<div id="menu-bar" class="menu-bar sticky bordered"> aria-controls="language-list">
<div class="left-buttons"> <i class="fa fa-globe"></i>
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar"> </button>
<i class="fa fa-bars"></i> <ul id="language-list" class="theme-popup" aria-label="Languages" role="menu">
</button> <li role="none"><button role="menuitem" class="theme">
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list"> <a id="en">English</a>
<i class="fa fa-paint-brush"></i> </button>
</button> </li>
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu"> <li role="none"><button role="menuitem" class="theme">
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li> <a id="de">Deutsch</a>
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li> </button>
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li> </li>
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li> {{!-- <li role="none"><button role="menuitem" class="theme">
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li> <a id="pt-BR">Brazilian Portuguese</a>
</ul> </button></li>
{{#if search_enabled}} <li role="none"><button role="menuitem" class="theme">
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar"> <a id="ko">한국어 (Korean)</a>
<i class="fa fa-search"></i> </button></li> --}}
</button> </ul>
{{/if}}
</div> <script>
let langToggle = document.getElementById("language-toggle");
<h1 class="menu-title">{{ book_title }}</h1> let langList = document.getElementById("language-list");
langToggle.addEventListener("click", (event) => {
<div class="right-buttons"> langList.style.display = langList.style.display == "block" ? "none" : "block";
<button id="language-toggle" class="icon-button" type="button" });
title="Change language" aria-label="Change language" let selectedLang = document.getElementById("{{ language }}");
aria-haspopup="true" aria-expanded="false" selectedLang.parentNode.classList.add("theme-selected");
aria-controls="language-list">
<i class="fa fa-globe"></i> // The path to the root, taking the current
</button> // language into account.
<ul id="language-list" class="theme-popup" aria-label="Languages" role="menu"> {{#if(eq language "en")}}
<li role="none"><button role="menuitem" class="theme"> let full_path_to_root = "{{ path_to_root }}";
<a id="en">English</a>
</button></li>
{{!-- <li role="none"><button role="menuitem" class="theme">
<a id="pt-BR">Brazilian Portuguese</a>
</button></li>
<li role="none"><button role="menuitem" class="theme">
<a id="ko">한국어 (Korean)</a>
</button></li> --}}
</ul>
<script>
let langToggle = document.getElementById("language-toggle");
let langList = document.getElementById("language-list");
langToggle.addEventListener("click", (event) => {
langList.style.display = langList.style.display == "block" ? "none" : "block";
});
let selectedLang = document.getElementById("{{ language }}");
selectedLang.parentNode.classList.add("theme-selected");
// The path to the root, taking the current
// language into account.
{{#if (eq language "en")}}
let full_path_to_root = "{{ path_to_root }}";
{{else}}
let full_path_to_root = "{{ path_to_root }}../";
{{/if}}
// The page path (mdbook only gives us
// access to the path to the Markdown file).
let path = "{{ path }}".replace(/\.md$/, ".html");
for (let lang of langList.querySelectorAll("a")) {
if (lang.id == "en") {
lang.href = `${full_path_to_root}${path}`;
} else {
lang.href = `${full_path_to_root}${lang.id}/${path}`;
}
}
</script>
{{#if print_enable}}
<a href="{{ path_to_root }}print.html" title="Print this book" aria-label="Print this book">
<i id="print-button" class="fa fa-print"></i>
</a>
{{/if}}
{{#if git_repository_url}}
<a href="{{git_repository_url}}" title="Git repository" aria-label="Git repository">
<i id="git-repository-button" class="fa {{git_repository_icon}}"></i>
</a>
{{/if}}
{{#if git_repository_edit_url}}
{{#if (eq language "en")}}
<a href="{{git_repository_edit_url}}" title="Suggest an edit" aria-label="Suggest an edit">
<i id="git-edit-button" class="fa fa-edit"></i>
</a>
{{else}} {{else}}
<a href="https://github.com/rust-unofficial/patterns/edit/main/po/{{language}}.po" let full_path_to_root = "{{ path_to_root }}../";
title="Suggest an edit to the translation" aria-label="Suggest an edit to the translation">
<i id="git-edit-button" class="fa fa-edit"></i>
</a>
{{/if}}
{{/if}} {{/if}}
// The page path (mdbook only gives us
// access to the path to the Markdown file).
let path = "{{ path }}".replace(/\.md$/, ".html");
for (let lang of langList.querySelectorAll("a")) {
if (lang.id == "en") {
lang.href = `${full_path_to_root}${path}`;
} else {
lang.href = `${full_path_to_root}${lang.id}/${path}`;
}
}
</script>
{{#if print_enable}}
<a href="{{ path_to_root }}print.html" title="Print this book" aria-label="Print this book">
<i id="print-button" class="fa fa-print"></i>
</a>
{{/if}}
{{#if git_repository_url}}
<a href="{{git_repository_url}}" title="Git repository" aria-label="Git repository">
<i id="git-repository-button" class="fa {{git_repository_icon}}"></i>
</a>
{{/if}}
{{#if git_repository_edit_url}}
{{#if (eq language "en")}}
<a href="{{git_repository_edit_url}}" title="Suggest an edit" aria-label="Suggest an edit">
<i id="git-edit-button" class="fa fa-edit"></i>
</a>
{{else}}
<a href="https://github.com/rust-unofficial/patterns/edit/main/po/{{language}}.po"
title="Suggest an edit to the translation" aria-label="Suggest an edit to the translation">
<i id="git-edit-button" class="fa fa-edit"></i>
</a>
{{/if}}
{{/if}}
</div>
</div> </div>
</div>
{{#if search_enabled}} {{#if search_enabled}}
<div id="search-wrapper" class="hidden"> <div id="search-wrapper" class="hidden">
<form id="searchbar-outer" class="searchbar-outer"> <form id="searchbar-outer" class="searchbar-outer">
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header"> <input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..."
</form> aria-controls="searchresults-outer" aria-describedby="searchresults-header">
<div id="searchresults-outer" class="searchresults-outer hidden"> </form>
<div id="searchresults-header" class="searchresults-header"></div> <div id="searchresults-outer" class="searchresults-outer hidden">
<ul id="searchresults"> <div id="searchresults-header" class="searchresults-header"></div>
</ul> <ul id="searchresults">
</div> </ul>
</div> </div>
{{/if}} </div>
{{/if}}
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM --> <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
<script> <script>
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible'); document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible'); document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) { Array.from(document.querySelectorAll('#sidebar a')).forEach(function (link) {
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1); link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
}); });
</script> </script>
<div id="content" class="content"> <div id="content" class="content">
<main> <main>
{{{ content }}} {{{ content }}}
</main> </main>
<nav class="nav-wrapper" aria-label="Page navigation"> <nav class="nav-wrapper" aria-label="Page navigation">
<!-- Mobile navigation buttons --> <!-- Mobile navigation buttons -->
{{#previous}} {{#previous}}
<a rel="prev" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <a rel="prev" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters previous"
<i class="fa fa-angle-left"></i> title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
</a>
{{/previous}}
{{#next}}
<a rel="next" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i>
</a>
{{/next}}
<div style="clear: both"></div>
</nav>
</div>
</div>
<nav class="nav-wide-wrapper" aria-label="Page navigation">
{{#previous}}
<a rel="prev" href="{{ path_to_root }}{{link}}" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
<i class="fa fa-angle-left"></i> <i class="fa fa-angle-left"></i>
</a> </a>
{{/previous}} {{/previous}}
{{#next}} {{#next}}
<a rel="next" href="{{ path_to_root }}{{link}}" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <a rel="next" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters next"
title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i> <i class="fa fa-angle-right"></i>
</a> </a>
{{/next}} {{/next}}
</nav>
<div style="clear: both"></div>
</nav>
</div>
</div> </div>
{{#if live_reload_endpoint}} <nav class="nav-wide-wrapper" aria-label="Page navigation">
<!-- Livereload script (if served using the cli tool) --> {{#previous}}
<script> <a rel="prev" href="{{ path_to_root }}{{link}}" class="nav-chapters previous" title="Previous chapter"
aria-label="Previous chapter" aria-keyshortcuts="Left">
<i class="fa fa-angle-left"></i>
</a>
{{/previous}}
{{#next}}
<a rel="next" href="{{ path_to_root }}{{link}}" class="nav-chapters next" title="Next chapter"
aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i>
</a>
{{/next}}
</nav>
</div>
{{#if live_reload_endpoint}}
<!-- Livereload script (if served using the cli tool) -->
<script>
const wsProtocol = location.protocol === 'https:' ? 'wss:' : 'ws:'; const wsProtocol = location.protocol === 'https:' ? 'wss:' : 'ws:';
const wsAddress = wsProtocol + "//" + location.host + "/" + "{{{live_reload_endpoint}}}"; const wsAddress = wsProtocol + "//" + location.host + "/" + "{{{live_reload_endpoint}}}";
const socket = new WebSocket(wsAddress); const socket = new WebSocket(wsAddress);
@ -283,83 +299,86 @@
} }
}; };
window.onbeforeunload = function() { window.onbeforeunload = function () {
socket.close(); socket.close();
} }
</script> </script>
{{/if}} {{/if}}
{{#if google_analytics}} {{#if google_analytics}}
<!-- Google Analytics Tag --> <!-- Google Analytics Tag -->
<script> <script>
var localAddrs = ["localhost", "127.0.0.1", ""]; var localAddrs = ["localhost", "127.0.0.1", ""];
// make sure we don't activate google analytics if the developer is // make sure we don't activate google analytics if the developer is
// inspecting the book locally... // inspecting the book locally...
if (localAddrs.indexOf(document.location.hostname) === -1) { if (localAddrs.indexOf(document.location.hostname) === -1) {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (function (i, s, o, g, r, a, m) {
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) (i[r].q = i[r].q || []).push(arguments)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); }, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', '{{google_analytics}}', 'auto'); ga('create', '{{google_analytics}}', 'auto');
ga('send', 'pageview'); ga('send', 'pageview');
} }
</script> </script>
{{/if}} {{/if}}
{{#if playground_line_numbers}} {{#if playground_line_numbers}}
<script> <script>
window.playground_line_numbers = true; window.playground_line_numbers = true;
</script> </script>
{{/if}} {{/if}}
{{#if playground_copyable}} {{#if playground_copyable}}
<script> <script>
window.playground_copyable = true; window.playground_copyable = true;
</script> </script>
{{/if}} {{/if}}
{{#if playground_js}} {{#if playground_js}}
<script src="{{ path_to_root }}ace.js"></script> <script src="{{ path_to_root }}ace.js"></script>
<script src="{{ path_to_root }}editor.js"></script> <script src="{{ path_to_root }}editor.js"></script>
<script src="{{ path_to_root }}mode-rust.js"></script> <script src="{{ path_to_root }}mode-rust.js"></script>
<script src="{{ path_to_root }}theme-dawn.js"></script> <script src="{{ path_to_root }}theme-dawn.js"></script>
<script src="{{ path_to_root }}theme-tomorrow_night.js"></script> <script src="{{ path_to_root }}theme-tomorrow_night.js"></script>
{{/if}} {{/if}}
{{#if search_js}} {{#if search_js}}
<script src="{{ path_to_root }}elasticlunr.min.js"></script> <script src="{{ path_to_root }}elasticlunr.min.js"></script>
<script src="{{ path_to_root }}mark.min.js"></script> <script src="{{ path_to_root }}mark.min.js"></script>
<script src="{{ path_to_root }}searcher.js"></script> <script src="{{ path_to_root }}searcher.js"></script>
{{/if}} {{/if}}
<script src="{{ path_to_root }}clipboard.min.js"></script> <script src="{{ path_to_root }}clipboard.min.js"></script>
<script src="{{ path_to_root }}highlight.js"></script> <script src="{{ path_to_root }}highlight.js"></script>
<script src="{{ path_to_root }}book.js"></script> <script src="{{ path_to_root }}book.js"></script>
<!-- Custom JS scripts --> <!-- Custom JS scripts -->
{{#each additional_js}} {{#each additional_js}}
<script src="{{ ../path_to_root }}{{this}}"></script> <script src="{{ ../path_to_root }}{{this}}"></script>
{{/each}} {{/each}}
{{#if is_print}} {{#if is_print}}
{{#if mathjax_support}} {{#if mathjax_support}}
<script> <script>
window.addEventListener('load', function() { window.addEventListener('load', function () {
MathJax.Hub.Register.StartupHook('End', function() { MathJax.Hub.Register.StartupHook('End', function () {
window.setTimeout(window.print, 100);
});
});
</script>
{{else}}
<script>
window.addEventListener('load', function () {
window.setTimeout(window.print, 100); window.setTimeout(window.print, 100);
}); });
}); </script>
</script> {{/if}}
{{else}} {{/if}}
<script>
window.addEventListener('load', function() { </body>
window.setTimeout(window.print, 100);
}); </html>
</script>
{{/if}}
{{/if}}
</body>
</html>
Loading…
Cancel
Save