diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-10-16 12:26:36 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-10-17 19:07:20 -0400 |
commit | ab80f734713d5571f9014d17ec1f04d09b38011e (patch) | |
tree | 63e2e2a358834033fcee54bb58fd08ed6e9b4201 /src/doc_reform/output/hub.d | |
parent | 0.8.2 yaml pod.manifest, read site config first (diff) |
multilingual pods, zipped source
Diffstat (limited to 'src/doc_reform/output/hub.d')
-rw-r--r-- | src/doc_reform/output/hub.d | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/doc_reform/output/hub.d b/src/doc_reform/output/hub.d index a4a402b..227cd3b 100644 --- a/src/doc_reform/output/hub.d +++ b/src/doc_reform/output/hub.d @@ -15,24 +15,22 @@ template outputHub() { mixin Msg; auto msg = Msg!()(doc_matters); static auto rgx = Rgx(); - enum outTask { pod, source, sqlite, sqlite_multi, latex, odt, epub, html_scroll, html_seg, html_stuff } + enum outTask { source_or_pod, sqlite, sqlite_multi, latex, odt, epub, html_scroll, html_seg, html_stuff } void Scheduled(D,I)(int sched, D doc_abstraction, I doc_matters) { auto msg = Msg!()(doc_matters); - if (sched == outTask.source - || sched == outTask.pod - ) { - if (sched == outTask.source) { + if (sched == outTask.source_or_pod) { + if (doc_matters.opt.action.source) { msg.v("doc reform source processing... "); } - if (sched == outTask.pod) { + if (doc_matters.opt.action.pod) { msg.v("doc reform source pod processing... "); } import doc_reform.output.source_pod; DocReformPod!()(doc_matters); - if (sched == outTask.source) { + if (doc_matters.opt.action.source) { msg.vv("doc reform source done"); } - if (sched == outTask.pod) { + if (doc_matters.opt.action.pod) { msg.vv("doc reform source pod done"); } } |