diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2023-06-10 22:54:47 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2023-06-23 18:12:49 -0400 |
commit | 516165c0969641479eeadde09bc8258aa5ff8b25 (patch) | |
tree | 6ee890d85371928de7bd21a11618e5afae4f9502 /org/out_metadata.org | |
parent | make set_depends (dyaml update) (diff) |
unicode, changes in use of symbols to represent things
Diffstat (limited to 'org/out_metadata.org')
-rw-r--r-- | org/out_metadata.org | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/org/out_metadata.org b/org/out_metadata.org index f8b0e3a..aa57303 100644 --- a/org/out_metadata.org +++ b/org/out_metadata.org @@ -88,7 +88,7 @@ metadata_ ~= format(q"┃<body lang="en" xml:lang="en"> ┃"); metadata_ ~= "<div class=\"flex-menu-bar\"><div class=\"flex-menu-option\">"; if (doc_matters.opt.action.html_link_curate) { - metadata_ ~= format(q"┃<p>[<a href="../../../index.html"> <b>≅</b> HOME </a>] Curated metadata: + metadata_ ~= format(q"┃<p>[<a href="../../../index.html"> <b>≅</b> ≅ HOME </a>] ⌘ Curated metadata: [<a href="../../authors.html"> Authors </a>] [<a href="../../topics.html"> Topics </a>]</p> ┃"); @@ -137,9 +137,9 @@ if (doc_matters.opt.action.html_link_markup_source) { ~ " pod tree </a>]"; } metadata_ ~= "<p class=\"lev1\">● outputs: [<a href=\"" ~ doc_matters.src.filename_base ~ ".html\">" - ~ " ▣ html scroll </a>] " + ~ " ▤ html scroll </a>] " ~ "[<a href=\"" ~ doc_matters.src.filename_base ~ "/toc.html\">" - ~ " ▤ html seg </a>]" + ~ " ※ html seg </a>]" ~ "[<a href=\"../../" ~ pth_epub.internal_base ~ "/" ~ doc_matters.src.filename_base ~ "." ~ doc_matters.src.language ~ ".epub\">" ~ " ◆ epub </a>]"; if ((doc_matters.opt.action.html_link_pdf) || (doc_matters.opt.action.html_link_pdf_a4)) { @@ -379,7 +379,7 @@ string theme_light_1 = format(q"┃ <html> <head> <meta charset="utf-8"> -<title>Curated metadata - Topics</title> +<title>⌘ Curated metadata - Topics</title> #+END_SRC #+NAME: curated_topics_html_head_2 @@ -557,6 +557,19 @@ string theme_light_1 = format(q"┃ string _form; if (doc_matters.opt.action.html_link_search) { o = format(q"┃ + <div class="flex-menu-option"> + <!-- SiSU Spine Search --> + <form action="%s" target="_top" method="POST" accept-charset="UTF-8" id="searchtxt"> + <font size="2">🔎 + <input type="text" name="sf" size="24" maxlength="255">%s + <input type="hidden" name="sml" value="1000"> + <input type="hidden" name="ec" value="on"> + <input type="hidden" name="url" value="on"> + <input type="hidden" name="rt" value="txt"> + <button type="submit" form="searchtxt" name="fn" value="%s"> • ⚏ </button> + </font></form> + <!-- SiSU Spine Search --> + </div> <div class="flex-menu-option"> <!-- SiSU Spine Search --> <form action="%s" target="_top" method="POST" accept-charset="UTF-8" id="search"> @@ -565,8 +578,8 @@ string theme_light_1 = format(q"┃ <input type="hidden" name="sml" value="1000"> <input type="hidden" name="ec" value="on"> <input type="hidden" name="url" value="on"> -<button type="submit" form="search" name="fn" value="%s">doc</button> -<button type="submit" form="search">※ db</button> +<button type="submit" form="search" name="fn" value="%s">• ፨</button> +<button type="submit" form="search">㏈ ፨</button> </font></form> <!-- SiSU Spine Search --> </div>┃", @@ -577,6 +590,13 @@ string theme_light_1 = format(q"┃ ~ doc_matters.conf_make_meta.conf.w_srv_db_sqlite_filename ~ "\">", doc_matters.src.filename_base, + doc_matters.conf_make_meta.conf.w_srv_cgi_action, + (doc_matters.conf_make_meta.conf.w_srv_db_sqlite_filename.empty) + ? "" + : "\n <input type=\"hidden\" name=\"db\" value=\"" + ~ doc_matters.conf_make_meta.conf.w_srv_db_sqlite_filename + ~ "\">", + doc_matters.src.filename_base, ); } else { o = ""; |