aboutsummaryrefslogtreecommitdiffhomepage
path: root/org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2018-11-15 13:53:10 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2019-04-10 15:14:15 -0400
commitddf8a89166ab24e031c5fe279b2e6c8cc968c674 (patch)
treebc5caeb082dd02f332b283870597d7f6bb233a83 /org
parent0.3.2 css themes, --dark & --light (default) (diff)
reporting pod & source processing
Diffstat (limited to 'org')
-rw-r--r--org/output_src_pod.org11
1 files changed, 8 insertions, 3 deletions
diff --git a/org/output_src_pod.org b/org/output_src_pod.org
index c699786..0767cfd 100644
--- a/org/output_src_pod.org
+++ b/org/output_src_pod.org
@@ -79,6 +79,9 @@ if (!exists(pths_pod.pod_dir_())) {
pths_pod.pod_dir_().mkdirRecurse;
}
if (doc_matters.opt.action.source) {
+ if (!(doc_matters.opt.action.quiet)) {
+ writeln(" ", pths_pod.fn_pod_filelist(doc_matters.src.filename).filesystem_open_zpod);
+ }
if (!exists(pths_pod.text_root(doc_matters.src.filename).filesystem_open_zpod)) {
pths_pod.text_root(doc_matters.src.filename).filesystem_open_zpod.mkdirRecurse;
}
@@ -288,10 +291,12 @@ auto fn_pod = pths_pod.pod_filename(doc_matters.src.filename).zpod;
#+BEGIN_SRC d
if (exists(fn_pod)) {
try {
- if (doc_matters.opt.action.verbose) {
+ if (!(doc_matters.opt.action.quiet)) {
auto data = (cast(byte[]) (fn_pod).read);
- writeln(doc_matters.src.filename, " >> ");
- writefln("%-(%02x%) %s", data.sha256Of, fn_pod);
+ if (doc_matters.opt.action.verbose) {
+ writeln(" ", doc_matters.src.filename, " > ");
+ }
+ writefln(" %s\n %-(%02x%)", fn_pod, data.sha256Of);
}
debug(pod) {
try {