aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/doc_reform/output/hub.d
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc_reform/output/hub.d')
-rw-r--r--src/doc_reform/output/hub.d14
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");
}
}