From e9ff8330d44330ed87bb2cce562f132a9a005f3d Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Wed, 9 Feb 2022 14:18:45 -0500 Subject: xmls, copyright and license display --- src/doc_reform/io_out/epub3.d | 4 +- src/doc_reform/io_out/html.d | 4 +- src/doc_reform/io_out/xmls.d | 108 +++++++++++++++++++++++++++------------ src/doc_reform/io_out/xmls_css.d | 54 +++++++++++++++++--- 4 files changed, 126 insertions(+), 44 deletions(-) (limited to 'src/doc_reform/io_out') diff --git a/src/doc_reform/io_out/epub3.d b/src/doc_reform/io_out/epub3.d index efdf12c..8a8b9e4 100644 --- a/src/doc_reform/io_out/epub3.d +++ b/src/doc_reform/io_out/epub3.d @@ -670,7 +670,7 @@ template outputEPub3() { foreach (docseg; epub_write.doc_epub3_endnotes[seg_filename]) { f.writeln(docseg); } - f.writeln(xhtml_format.tail); + f.writeln(xhtml_format.tail(doc_matters)); } } foreach (docseg; epub_write.doc_epub3[seg_filename]) { @@ -679,7 +679,7 @@ template outputEPub3() { foreach (docseg; epub_write.doc_epub3_endnotes[seg_filename]) { zip_data.write(docseg.dup); } - zip_data.write(xhtml_format.tail.dup); + zip_data.write(xhtml_format.tail(doc_matters).dup); zip_arc_member_file.expandedData = zip_data.toBytes(); zip.addMember(zip_arc_member_file); /+ create the zip file +/ diff --git a/src/doc_reform/io_out/html.d b/src/doc_reform/io_out/html.d index 136229b..4efc91d 100644 --- a/src/doc_reform/io_out/html.d +++ b/src/doc_reform/io_out/html.d @@ -234,7 +234,7 @@ template outputHTML() { doc = xhtml_format.html_head(doc_matters, "scroll") ~ doc_html ~ xhtml_format.dom_close - ~ xhtml_format.tail; + ~ xhtml_format.tail(doc_matters); scroll_write_output(doc, doc_matters); } @trusted void scroll_write_output(D,M)( @@ -543,7 +543,7 @@ template outputHTML() { foreach (docseg; doc_html_endnotes[seg_filename]) { f.writeln(docseg); } - f.writeln(xhtml_format.tail); + f.writeln(xhtml_format.tail(doc_matters)); } } catch (ErrnoException ex) { // handle error diff --git a/src/doc_reform/io_out/xmls.d b/src/doc_reform/io_out/xmls.d index fd9305a..871332d 100644 --- a/src/doc_reform/io_out/xmls.d +++ b/src/doc_reform/io_out/xmls.d @@ -417,13 +417,36 @@ template outputXHTMLs() { o = format(q"┃┃"); return o; } -@safe string tail() { +@safe string tail(M)(M doc_matters) { string o; - o = format(q"┃ + o = format(q"┃
+
+ +
+ %s +
+

+ %s +

+
+
+
+

+ SiSU Spine (object numbering & search) +

+
-┃"); + +┃", + special_characters_text(doc_matters.conf_make_meta.meta.rights_copyright), + ((doc_matters.conf_make_meta.meta.rights_license).empty) ? "" : "
", + ((doc_matters.conf_make_meta.meta.rights_license).empty) ? "" + : "License: " ~ special_characters_text(doc_matters.conf_make_meta.meta.rights_license) + ); return o; } @safe string inline_images(O,M)( @@ -798,48 +821,65 @@ template outputXHTMLs() { ┃", _horizontal_rule, ); - } else if (!(obj.metainfo.identifier.empty)) { - o = format(q"┃%s + } else { + o = ""; + if (obj.metainfo.is_of_section == "toc") { + o ~= format(q"┃ +
+ + +
┃", + special_characters_text(doc_matters.conf_make_meta.meta.rights_copyright), + special_characters_text(doc_matters.conf_make_meta.meta.rights_license) + ); + } + } + if (!(obj.metainfo.identifier.empty)) { + o ~= format(q"┃%s
%s%s %s
┃", - _horizontal_rule, - obj.metainfo.identifier, - (doc_matters.opt.action.ocn_off) - ? "" : ((obj.metainfo.object_number.empty) - ? "" : obj.metainfo.identifier), - ((_xml_type == "epub" && obj.metainfo.heading_lev_markup == 0) ? 1 - : obj.metainfo.heading_lev_markup), - obj.metainfo.is_a, - obj.metainfo.identifier, - obj.metainfo.identifier, - tags, - heading_lev_anchor_tag, - _txt, - ((_xml_type == "epub" && obj.metainfo.heading_lev_markup == 0) ? 1 - : obj.metainfo.heading_lev_markup), - ); - } else { - o = format(q"┃%s + _horizontal_rule, + obj.metainfo.identifier, + (doc_matters.opt.action.ocn_off) + ? "" : ((obj.metainfo.object_number.empty) + ? "" : obj.metainfo.identifier), + ((_xml_type == "epub" && obj.metainfo.heading_lev_markup == 0) ? 1 + : obj.metainfo.heading_lev_markup), + obj.metainfo.is_a, + obj.metainfo.identifier, + obj.metainfo.identifier, + tags, + heading_lev_anchor_tag, + _txt, + ((_xml_type == "epub" && obj.metainfo.heading_lev_markup == 0) ? 1 + : obj.metainfo.heading_lev_markup), + ); + } else { + o ~= format(q"┃%s
%s%s %s
┃", - _horizontal_rule, - ((_xml_type == "epub" && obj.metainfo.heading_lev_markup == 0) ? 1 - : obj.metainfo.heading_lev_markup), - obj.metainfo.is_a, - tags, - heading_lev_anchor_tag, - _txt, - ((_xml_type == "epub" && obj.metainfo.heading_lev_markup == 0) ? 1 - : obj.metainfo.heading_lev_markup), - ); - } + _horizontal_rule, + ((_xml_type == "epub" && obj.metainfo.heading_lev_markup == 0) ? 1 + : obj.metainfo.heading_lev_markup), + obj.metainfo.is_a, + tags, + heading_lev_anchor_tag, + _txt, + ((_xml_type == "epub" && obj.metainfo.heading_lev_markup == 0) ? 1 + : obj.metainfo.heading_lev_markup), + ); + } return o; } @safe string heading_scroll(O,M)( diff --git a/src/doc_reform/io_out/xmls_css.d b/src/doc_reform/io_out/xmls_css.d index bb2cdfc..505287e 100644 --- a/src/doc_reform/io_out/xmls_css.d +++ b/src/doc_reform/io_out/xmls_css.d @@ -762,13 +762,20 @@ p.em { font-style : normal; background : #FFF3B6; } -p.small { +.small, .small_center { font-size : 1.4rem; margin-top : 0px; margin-bottom : 0px; margin-right : 6px; +} +p.small { text-align : left; } +p.small_center { + margin-left : 0px; + margin-right : 0px; + text-align : center; +} .tiny, .tiny_left, .tiny_right, .tiny_center { font-size : 1.2rem; margin-top : 0px; @@ -1485,13 +1492,20 @@ p.em { font-style : normal; background : #FFF3B6; } -p.small { +.small, .small_center { font-size : 1.4rem; margin-top : 0px; margin-bottom : 0px; margin-right : 6px; +} +p.small { text-align : left; } +p.small_center { + margin-left : 0px; + margin-right : 0px; + text-align : center; +} .tiny, .tiny_left, .tiny_right, .tiny_center { font-size : 1.35rem; margin-top : 0px; @@ -2211,13 +2225,20 @@ p.em { font-style : normal; background : #FFF3B6; } -p.small { +.small, .small_center { font-size : 1.4rem; margin-top : 0px; margin-bottom : 0px; margin-right : 6px; +} +p.small { text-align : left; } +p.small_center { + margin-left : 0px; + margin-right : 0px; + text-align : center; +} .tiny, .tiny_left, .tiny_right, .tiny_center { font-size : 1.2rem; margin-top : 0px; @@ -2860,13 +2881,20 @@ p.em { font-style : normal; background : #FFF3B6; } -p.small { +.small, .small_center { font-size : 1.4rem; margin-top : 0px; margin-bottom : 0px; margin-right : 6px; +} +p.small { text-align : left; } +p.small_center { + margin-left : 0px; + margin-right : 0px; + text-align : center; +} .tiny, .tiny_left, .tiny_right, .tiny_center { font-size : 1.35rem; margin-top : 0px; @@ -3512,13 +3540,20 @@ p.em { font-style : normal; background : #FFF3B6; } -p.small { +.small, .small_center { font-size : 1.4rem; margin-top : 0px; margin-bottom : 0px; margin-right : 6px; +} +p.small { text-align : left; } +p.small_center { + margin-left : 0px; + margin-right : 0px; + text-align : center; +} .tiny, .tiny_left, .tiny_right, .tiny_center { font-size : 1.2rem; margin-top : 0px; @@ -4051,13 +4086,20 @@ p.em { font-style : normal; background : #FFF3B6; } -p.small { +.small, .small_center { font-size : 1.4rem; margin-top : 0px; margin-bottom : 0px; margin-right : 6px; +} +p.small { text-align : left; } +p.small_center { + margin-left : 0px; + margin-right : 0px; + text-align : center; +} .tiny, .tiny_left, .tiny_right, .tiny_center { font-size : 1.35rem; margin-top : 0px; -- cgit v1.2.3