diff options
Diffstat (limited to 'org/output_hub.org')
-rw-r--r-- | org/output_hub.org | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/org/output_hub.org b/org/output_hub.org index e3b4607..d77d671 100644 --- a/org/output_hub.org +++ b/org/output_hub.org @@ -34,7 +34,7 @@ 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); <<output_scheduled_task>> @@ -82,21 +82,19 @@ import doc_reform.output, #+name: output_scheduled_task #+BEGIN_SRC d -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"); } } |