diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2018-11-15 13:53:10 -0500 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-04-10 15:14:15 -0400 | 
| commit | ddf8a89166ab24e031c5fe279b2e6c8cc968c674 (patch) | |
| tree | bc5caeb082dd02f332b283870597d7f6bb233a83 /src/doc_reform | |
| parent | 0.3.2 css themes, --dark & --light (default) (diff) | |
reporting pod & source processing
Diffstat (limited to 'src/doc_reform')
| -rw-r--r-- | src/doc_reform/output/source_pod.d | 11 | 
1 files changed, 8 insertions, 3 deletions
| diff --git a/src/doc_reform/output/source_pod.d b/src/doc_reform/output/source_pod.d index 4303c32..79cff91 100644 --- a/src/doc_reform/output/source_pod.d +++ b/src/doc_reform/output/source_pod.d @@ -30,6 +30,9 @@ template DocReformPod() {          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;          } @@ -227,10 +230,12 @@ template DocReformPod() {        }        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 { | 
