aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_hub.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2024-07-10 08:51:11 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2024-07-10 12:20:03 -0400
commit18bdad0fd7ced5fecb39e9e73d7c4bd9a3956c6f (patch)
treee3399ab289ecc7cf13f09822bf103cc15b55ed2f /org/output_hub.org
parentnix dlang overlay ldc-1.39.0 (diff)
pod zip fixesHEADmain
- serial processing (need to be built serially) - multilingual pods, copy all languages before zip
Diffstat (limited to 'org/output_hub.org')
-rw-r--r--org/output_hub.org16
1 files changed, 4 insertions, 12 deletions
diff --git a/org/output_hub.org b/org/output_hub.org
index b73c582..541cc44 100644
--- a/org/output_hub.org
+++ b/org/output_hub.org
@@ -51,9 +51,7 @@ template outputHub() {
<<output_scheduled_task_odt>>
<<output_scheduled_task_sqlite>>
}
- if (doc_matters.opt.action.vox_gt0) {
- writeln(" ", doc_matters.src.filename_base);
- }
+ if (doc_matters.opt.action.vox_gt0) { writeln(doc_matters.src.filename_base); }
if (!(doc_matters.opt.action.parallelise_subprocesses)) {
foreach(schedule; doc_matters.opt.action.output_task_scheduler) {
Scheduled!()(schedule, doc_abstraction, doc_matters);
@@ -136,17 +134,11 @@ import sisudoc.io_out,
#+BEGIN_SRC d
if (sched == outTask.source_or_pod) {
msg.v("spine (doc reform) source processing... ");
- if (doc_matters.opt.action.pod) {
- msg.v("spine (doc reform) source pod processing... ");
- }
+ if (doc_matters.opt.action.pod) { msg.v("spine (doc reform) source pod processing... "); }
import sisudoc.io_out.source_pod;
spinePod!()(doc_matters);
- if (doc_matters.opt.action.source) {
- msg.vv("spine (doc reform) source done");
- }
- if (doc_matters.opt.action.pod) {
- msg.vv("spine (doc reform) source pod done");
- }
+ if (doc_matters.opt.action.source) { msg.vv("spine (doc reform) source done"); }
+ if (doc_matters.opt.action.pod) { msg.vv("spine (doc reform) source pod done"); }
}
#+END_SRC