mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-06 06:37:36 +03:00
Insert branches into <select> in template
This commit is contained in:
parent
f3508e4947
commit
664ddc6737
3 changed files with 46 additions and 53 deletions
|
@ -1,15 +1,16 @@
|
||||||
window.addEventListener("load", function() {
|
window.addEventListener("load", function() {
|
||||||
let select = document.querySelector("header .documentBranch select");
|
function resetSelect(select) {
|
||||||
while (select.length > 0) {
|
for (let option of select.options) {
|
||||||
select.remove(0);
|
option.selected = option.defaultSelected;
|
||||||
}
|
|
||||||
for (let branch of documentBranches) {
|
|
||||||
select.add(new Option(branch, branch, branch === documentBranch, branch === documentBranch), 0);
|
|
||||||
}
|
|
||||||
select.addEventListener("change", function() {
|
|
||||||
if (select.value !== documentBranch) {
|
|
||||||
location.assign(encodeURIComponent(select.value + ".html"));
|
|
||||||
select.value = documentBranch;
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
let select = document.querySelector("header .documentBranch select");
|
||||||
|
resetSelect(select);
|
||||||
|
select.addEventListener("change", function() {
|
||||||
|
let option = select.selectedOptions.item(0);
|
||||||
|
if (option && !option.defaultSelected) {
|
||||||
|
location.assign(option.value);
|
||||||
|
}
|
||||||
|
resetSelect(select);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -9,7 +9,6 @@ Gracefully handles conflicting commits.
|
||||||
|
|
||||||
import contextlib
|
import contextlib
|
||||||
import glob
|
import glob
|
||||||
import html
|
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
@ -17,7 +16,7 @@ import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
from tempfile import TemporaryDirectory
|
from tempfile import NamedTemporaryFile, TemporaryDirectory
|
||||||
|
|
||||||
REMOTE = "origin"
|
REMOTE = "origin"
|
||||||
GIT_CONFIG = {"protocol.version": "2",
|
GIT_CONFIG = {"protocol.version": "2",
|
||||||
|
@ -41,41 +40,34 @@ PANDOC_SHA256 = ("2001d93463c003f8fee6c36b1bfeccd5"
|
||||||
BRANCH_ORDERING = [ # Format: (REGEX, ORDER, DEFAULT)
|
BRANCH_ORDERING = [ # Format: (REGEX, ORDER, DEFAULT)
|
||||||
(r"v?\d+(?:\.\d+)*(?:\.x)*", 0, True),
|
(r"v?\d+(?:\.\d+)*(?:\.x)*", 0, True),
|
||||||
(r".*", 1, False)]
|
(r".*", 1, False)]
|
||||||
|
PROG = "documentation-generator"
|
||||||
|
|
||||||
def escape_js(s):
|
|
||||||
return s.translate(str.maketrans({
|
|
||||||
"\t": "\\t",
|
|
||||||
"\v": "\\v",
|
|
||||||
"\0": "\\0",
|
|
||||||
"\b": "\\b",
|
|
||||||
"\f": "\\f",
|
|
||||||
"\n": "\\n",
|
|
||||||
"\r": "\\r",
|
|
||||||
"\'": "\\'",
|
|
||||||
"\"": "\\\"",
|
|
||||||
"\\": "\\\\"}))
|
|
||||||
|
|
||||||
|
|
||||||
def convert_doc(src_path, to_path, branch, branches):
|
def convert_doc(src_path, to_path, branch, branches):
|
||||||
raw_html = subprocess.run([
|
with NamedTemporaryFile(mode="w", prefix="%s-" % PROG,
|
||||||
PANDOC_EXE,
|
suffix=".json") as metadata_file:
|
||||||
"--sandbox",
|
json.dump({
|
||||||
"--from=gfm",
|
"document-css": False,
|
||||||
"--to=html5",
|
"branch": branch,
|
||||||
os.path.abspath(src_path),
|
"branches": [{"default": b == branch,
|
||||||
"--toc",
|
"href": urllib.parse.quote_plus("%s.html" % b),
|
||||||
"--template=%s" % os.path.basename(TEMPLATE_PATH),
|
"name": b} for b in branches]}, metadata_file)
|
||||||
"--metadata=document-css=false",
|
metadata_file.flush()
|
||||||
"--section-divs",
|
raw_html = subprocess.run([
|
||||||
"--shift-heading-level-by=%d" % SHIFT_HEADING,
|
PANDOC_EXE,
|
||||||
"--toc-depth=%d" % (TOC_DEPTH+SHIFT_HEADING),
|
"--sandbox",
|
||||||
"--filter=%s" % os.path.abspath(FILTER_EXE),
|
"--from=gfm",
|
||||||
"--variable=branch_html=%s" % html.escape(branch),
|
"--to=html5",
|
||||||
"--variable=branch_js=%s" % escape_js(branch),
|
os.path.abspath(src_path),
|
||||||
*("--variable=branches_js=%s" % escape_js(b) for b in branches)],
|
"--toc",
|
||||||
cwd=os.path.dirname(TEMPLATE_PATH),
|
"--template=%s" % os.path.basename(TEMPLATE_PATH),
|
||||||
stdout=subprocess.PIPE, check=True).stdout
|
"--metadata-file=%s" % os.path.abspath(metadata_file.name),
|
||||||
|
"--section-divs",
|
||||||
|
"--shift-heading-level-by=%d" % SHIFT_HEADING,
|
||||||
|
"--toc-depth=%d" % (TOC_DEPTH+SHIFT_HEADING),
|
||||||
|
"--filter=%s" % os.path.abspath(FILTER_EXE)],
|
||||||
|
cwd=os.path.dirname(TEMPLATE_PATH),
|
||||||
|
stdout=subprocess.PIPE, check=True).stdout
|
||||||
raw_html = subprocess.run([POSTPROCESSOR_EXE], input=raw_html,
|
raw_html = subprocess.run([POSTPROCESSOR_EXE], input=raw_html,
|
||||||
stdout=subprocess.PIPE, check=True).stdout
|
stdout=subprocess.PIPE, check=True).stdout
|
||||||
with open(to_path, "wb") as f:
|
with open(to_path, "wb") as f:
|
||||||
|
@ -153,7 +145,7 @@ def main():
|
||||||
run_git_fetch_and_restart_if_changed(remote_commits, target_branch)
|
run_git_fetch_and_restart_if_changed(remote_commits, target_branch)
|
||||||
branches = [ref[len("refs/remotes/%s/" % REMOTE):] for ref in run_git(
|
branches = [ref[len("refs/remotes/%s/" % REMOTE):] for ref in run_git(
|
||||||
"rev-parse", "--symbolic-full-name", "--remotes=%s" % REMOTE)]
|
"rev-parse", "--symbolic-full-name", "--remotes=%s" % REMOTE)]
|
||||||
with TemporaryDirectory() as temp:
|
with TemporaryDirectory(prefix="%s-" % PROG) as temp:
|
||||||
branch_docs = {}
|
branch_docs = {}
|
||||||
for branch in branches[:]:
|
for branch in branches[:]:
|
||||||
checkout(branch)
|
checkout(branch)
|
||||||
|
|
|
@ -15,24 +15,24 @@ $endif$
|
||||||
<noscript><link href="assets/screen-noscript.css" media="screen" rel="stylesheet"></noscript>
|
<noscript><link href="assets/screen-noscript.css" media="screen" rel="stylesheet"></noscript>
|
||||||
<link href="https://github.com/Kozea/Radicale/releases.atom" type="application/atom+xml" rel="alternate" title="Radicale Releases">
|
<link href="https://github.com/Kozea/Radicale/releases.atom" type="application/atom+xml" rel="alternate" title="Radicale Releases">
|
||||||
<link href="assets/icon.png" type="image/png" rel="icon">
|
<link href="assets/icon.png" type="image/png" rel="icon">
|
||||||
<title>Radicale $branch_html$ Documentation</title>
|
<title>Radicale $branch$ Documentation</title>
|
||||||
<meta name="description" content="Free and Open-Source CalDAV and CardDAV Server">
|
<meta name="description" content="Free and Open-Source CalDAV and CardDAV Server">
|
||||||
<script src="assets/navigation.js"></script>
|
<script src="assets/navigation.js"></script>
|
||||||
<script src="assets/document-branches.js"></script>
|
<script src="assets/document-branches.js"></script>
|
||||||
<script src="assets/narrow-menu.js"></script>
|
<script src="assets/narrow-menu.js"></script>
|
||||||
<script src="assets/navigation-scroll-fix.js"></script>
|
<script src="assets/navigation-scroll-fix.js"></script>
|
||||||
<script>
|
|
||||||
const documentBranch = "$branch_js$";
|
|
||||||
const documentBranches = ["$branches_js[", "]$"];
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<div class="logoContainer">
|
<div class="logoContainer">
|
||||||
<h1>
|
<h1>
|
||||||
Radicale
|
Radicale
|
||||||
<span class="documentBranch">
|
<span class="documentBranch">
|
||||||
<span>$branch_html$</span>
|
<span>$branch$</span>
|
||||||
<select></select>
|
<select>
|
||||||
|
$for(branches)$
|
||||||
|
<option value="$it.href$"$if(it.default)$ selected$endif$>$it.name$</option>
|
||||||
|
$endfor$
|
||||||
|
</select>
|
||||||
</span>
|
</span>
|
||||||
</h1>
|
</h1>
|
||||||
<p>Free and Open-Source CalDAV and CardDAV Server</p>
|
<p>Free and Open-Source CalDAV and CardDAV Server</p>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue