diff options
Diffstat (limited to 'org')
| -rw-r--r-- | org/default_misc.org | 3 | ||||
| -rw-r--r-- | org/doc_reform.org | 2 | ||||
| -rw-r--r-- | org/output_harvest_metadata.org | 33 | 
3 files changed, 22 insertions, 16 deletions
| diff --git a/org/default_misc.org b/org/default_misc.org index 8233191..1c68a8d 100644 --- a/org/default_misc.org +++ b/org/default_misc.org @@ -152,6 +152,9 @@ template DocReformHarvest() {          string   path_html_segtoc     = "";          string   path_html_scroll     = "";          string   path_epub            = ""; +        string   path_abs_html_segtoc = ""; +        string   path_abs_html_scroll = ""; +        string   path_abs_epub        = "";          string   url_html_seg         = "";          string   url_html_scroll      = "";          string   url_epub             = ""; diff --git a/org/doc_reform.org b/org/doc_reform.org index 7a85e20..0db3aa1 100644 --- a/org/doc_reform.org +++ b/org/doc_reform.org @@ -211,10 +211,10 @@ import    std.process;  import    doc_reform.meta, +  doc_reform.meta.metadoc_harvest,    doc_reform.meta.metadoc_harvests_authors,    doc_reform.meta.metadoc_harvests_topics,    doc_reform.meta.metadoc_summary, -  doc_reform.meta.metadoc_harvest,    doc_reform.meta.metadoc_from_src,    doc_reform.meta.conf_make_meta_structs,    doc_reform.meta.conf_make_meta_toml, diff --git a/org/output_harvest_metadata.org b/org/output_harvest_metadata.org index 1b57082..199a504 100644 --- a/org/output_harvest_metadata.org +++ b/org/output_harvest_metadata.org @@ -232,20 +232,22 @@ writefln(  #+name: meta_metadoc_harvest  #+BEGIN_SRC d  import doc_reform.output.paths_output; -auto pth_html_abs               = DocReformPathsHTML!()(doc_matters.output_path, doc_matters.src.language); -auto pth_html_rel               = DocReformDocRootTreeHTML!()(doc_matters.src.language); -hvst.harvest.title              = doc_matters.conf_make_meta.meta.title_full; -hvst.harvest.author             = doc_matters.conf_make_meta.meta.creator_author; -hvst.harvest.author_surname     = doc_matters.conf_make_meta.meta.creator_author_surname; -hvst.harvest.author_surname_fn  = doc_matters.conf_make_meta.meta.creator_author_surname_fn; -hvst.harvest.author_arr         = doc_matters.conf_make_meta.meta.creator_author_arr; -hvst.harvest.language_original  = doc_matters.conf_make_meta.meta.original_language; -hvst.harvest.language           = doc_matters.src.language; -hvst.harvest.uid                = doc_matters.src.doc_uid; -hvst.harvest.date_published     = doc_matters.conf_make_meta.meta.date_published; -hvst.harvest.topic_register_arr = doc_matters.conf_make_meta.meta.classify_topic_register_arr; -hvst.harvest.path_html_scroll   = pth_html_rel.fn_scroll(doc_matters.src.filename); -hvst.harvest.path_html_segtoc   = pth_html_rel.fn_seg(doc_matters.src.filename, "toc"); +auto pth_html_abs                  = DocReformPathsHTML!()(doc_matters.output_path, doc_matters.src.language); +auto pth_html_rel                  = DocReformDocRootTreeHTML!()(doc_matters.src.language); +hvst.harvest.title                 = doc_matters.conf_make_meta.meta.title_full; +hvst.harvest.author                = doc_matters.conf_make_meta.meta.creator_author; +hvst.harvest.author_surname        = doc_matters.conf_make_meta.meta.creator_author_surname; +hvst.harvest.author_surname_fn     = doc_matters.conf_make_meta.meta.creator_author_surname_fn; +hvst.harvest.author_arr            = doc_matters.conf_make_meta.meta.creator_author_arr; +hvst.harvest.language_original     = doc_matters.conf_make_meta.meta.original_language; +hvst.harvest.language              = doc_matters.src.language; +hvst.harvest.uid                   = doc_matters.src.doc_uid; +hvst.harvest.date_published        = doc_matters.conf_make_meta.meta.date_published; +hvst.harvest.topic_register_arr    = doc_matters.conf_make_meta.meta.classify_topic_register_arr; +hvst.harvest.path_html_scroll      = pth_html_rel.fn_scroll(doc_matters.src.filename); +hvst.harvest.path_html_segtoc      = pth_html_rel.fn_seg(doc_matters.src.filename, "toc"); +hvst.harvest.path_abs_html_scroll  = pth_html_abs.fn_scroll(doc_matters.src.filename); +hvst.harvest.path_abs_html_segtoc  = pth_html_abs.fn_seg(doc_matters.src.filename, "toc");  return hvst.harvest;  #+END_SRC @@ -683,12 +685,13 @@ template DocReformMetaDocHarvestsAuthors() {              doc_harvest.language,            );          } -        _author_date_title ~= format(q"ā%s %s "%s" [%s]ā", +        _author_date_title ~= format(q"ā%s %s "%s" [%s]%sā",            doc_harvest.author_surname_fn,            (doc_harvest.date_published.length > 0)              ? "(" ~ doc_harvest.date_published ~ ")" : "",            doc_harvest.title,            doc_harvest.language, +          (_opt_action.very_verbose) ? "\n  " ~ doc_harvest.path_abs_html_scroll : "",          );        }        foreach (k; _au.keys.sort) { | 
