aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_hub.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/output_hub.org')
-rw-r--r--org/output_hub.org125
1 files changed, 82 insertions, 43 deletions
diff --git a/org/output_hub.org b/org/output_hub.org
index e8709f2..b147cd6 100644
--- a/org/output_hub.org
+++ b/org/output_hub.org
@@ -62,8 +62,8 @@ import sdp.output,
#+name: output_options
#+BEGIN_SRC d
-if ((doc_matters.opt_action.verbose)) {
- writeln(doc_matters.keys_seq.seg);
+if ((doc_matters.opt.action.verbose)) {
+ writeln(doc_matters.xml.keys_seq.seg);
}
#+END_SRC
@@ -72,23 +72,27 @@ if ((doc_matters.opt_action.verbose)) {
#+name: output_options
#+BEGIN_SRC d
-if ((doc_matters.opt_action.source)
-|| (doc_matters.opt_action.sisupod)) {
- if ((doc_matters.opt_action.verbose)
- && (doc_matters.opt_action.source))
- { writeln("sisu source processing... "); }
- if ((doc_matters.opt_action.verbose)
- && (doc_matters.opt_action.sisupod))
- { writeln("sisupod source processing... "); }
+if ((doc_matters.opt.action.source)
+|| (doc_matters.opt.action.sisupod)) {
+ if ((doc_matters.opt.action.verbose)
+ && (doc_matters.opt.action.source)) {
+ writeln("sisu source processing... ");
+ }
+ if ((doc_matters.opt.action.verbose)
+ && (doc_matters.opt.action.sisupod)) {
+ writeln("sisupod source processing... ");
+ }
SiSUpod!()(doc_matters);
- if ((doc_matters.opt_action.verbose)
- && (doc_matters.opt_action.debug_do)
- && (doc_matters.opt_action.source))
- { writeln("sisu source done"); }
- if ((doc_matters.opt_action.verbose)
- && (doc_matters.opt_action.debug_do)
- && (doc_matters.opt_action.sisupod))
- { writeln("sisupod done"); }
+ if ((doc_matters.opt.action.verbose)
+ && (doc_matters.opt.action.debug_do)
+ && (doc_matters.opt.action.source)) {
+ writeln("sisu source done");
+ }
+ if ((doc_matters.opt.action.verbose)
+ && (doc_matters.opt.action.debug_do)
+ && (doc_matters.opt.action.sisupod)) {
+ writeln("sisupod done");
+ }
}
#+END_SRC
@@ -97,9 +101,11 @@ if ((doc_matters.opt_action.source)
#+name: output_options
#+BEGIN_SRC d
-if (doc_matters.opt_action.text) {
+if (doc_matters.opt.action.text) {
/+ mixin outputText; +/
- if ((doc_matters.opt_action.verbose)) { writeln("text processing... "); }
+ if ((doc_matters.opt.action.verbose)) {
+ writeln("text processing... ");
+ }
}
#+END_SRC
@@ -108,23 +114,43 @@ if (doc_matters.opt_action.text) {
#+name: output_options
#+BEGIN_SRC d
-if (doc_matters.opt_action.html) {
- if ((doc_matters.opt_action.verbose)) { writeln("html scroll processing... "); }
+if (doc_matters.opt.action.html) {
+ if ((doc_matters.opt.action.verbose)) {
+ writeln("html scroll processing... ");
+ }
outputHTML!().scroll(doc_abstraction, doc_matters);
- if ((doc_matters.opt_action.verbose) && (doc_matters.opt_action.debug_do)) { writeln("html scroll done"); }
- if ((doc_matters.opt_action.verbose)) { writeln("html seg processing... "); }
+ if ((doc_matters.opt.action.verbose)
+ && (doc_matters.opt.action.debug_do)) {
+ writeln("html scroll done");
+ }
+ if ((doc_matters.opt.action.verbose)) {
+ writeln("html seg processing... ");
+ }
outputHTML!().seg(doc_abstraction, doc_matters);
- if ((doc_matters.opt_action.verbose) && (doc_matters.opt_action.debug_do)) { writeln("html seg done"); }
+ if ((doc_matters.opt.action.verbose)
+ && (doc_matters.opt.action.debug_do)) {
+ writeln("html seg done");
+ }
outputHTML!().css(doc_matters);
-} else if (doc_matters.opt_action.html_seg) {
- if ((doc_matters.opt_action.verbose)) { writeln("html seg processing... "); }
+} else if (doc_matters.opt.action.html_seg) {
+ if ((doc_matters.opt.action.verbose)) {
+ writeln("html seg processing... ");
+ }
outputHTML!().seg(doc_abstraction, doc_matters);
- if ((doc_matters.opt_action.verbose) && (doc_matters.opt_action.debug_do)) { writeln("html seg done"); }
+ if ((doc_matters.opt.action.verbose)
+ && (doc_matters.opt.action.debug_do)) {
+ writeln("html seg done");
+ }
outputHTML!().css(doc_matters);
-} else if (doc_matters.opt_action.html_scroll) {
- if ((doc_matters.opt_action.verbose)) { writeln("html scroll processing... "); }
+} else if (doc_matters.opt.action.html_scroll) {
+ if ((doc_matters.opt.action.verbose)) {
+ writeln("html scroll processing... ");
+ }
outputHTML!().scroll(doc_abstraction, doc_matters);
- if ((doc_matters.opt_action.verbose) && (doc_matters.opt_action.debug_do)) { writeln("html scroll done"); }
+ if ((doc_matters.opt.action.verbose)
+ && (doc_matters.opt.action.debug_do)) {
+ writeln("html scroll done");
+ }
outputHTML!().css(doc_matters);
}
#+END_SRC
@@ -134,11 +160,16 @@ if (doc_matters.opt_action.html) {
#+name: output_options
#+BEGIN_SRC d
-if (doc_matters.opt_action.epub) {
- if ((doc_matters.opt_action.verbose)) { writeln("epub3 processing... "); }
+if (doc_matters.opt.action.epub) {
+ if ((doc_matters.opt.action.verbose)) {
+ writeln("epub3 processing... ");
+ }
outputEPub3!()(doc_abstraction, doc_matters);
// epub.css_write;
- if ((doc_matters.opt_action.verbose) && (doc_matters.opt_action.debug_do)) { writeln("epub3 done"); }
+ if ((doc_matters.opt.action.verbose)
+ && (doc_matters.opt.action.debug_do)) {
+ writeln("epub3 done");
+ }
}
#+END_SRC
@@ -146,7 +177,7 @@ if (doc_matters.opt_action.epub) {
#+name: output_options
#+BEGIN_SRC d
-if (doc_matters.opt_action.pdf) {
+if (doc_matters.opt.action.pdf) {
/+ mixin outputPDF; +/
writeln("pdf processing");
}
@@ -156,7 +187,7 @@ if (doc_matters.opt_action.pdf) {
#+name: output_options
#+BEGIN_SRC d
-if (doc_matters.opt_action.odt) {
+if (doc_matters.opt.action.odt) {
/+ mixin outputODT; +/
writeln("odt processing");
}
@@ -167,8 +198,10 @@ if (doc_matters.opt_action.odt) {
#+name: output_options
#+BEGIN_SRC d
-if (doc_matters.opt_action.sqlite_discrete) {
- if ((doc_matters.opt_action.verbose)) { writeln("sqlite processing... "); }
+if (doc_matters.opt.action.sqlite_discrete) {
+ if ((doc_matters.opt.action.verbose)) {
+ writeln("sqlite processing... ");
+ }
SQLiteDiscreteBuildTablesAndPopulate!()(doc_abstraction, doc_matters);
}
#+END_SRC
@@ -177,8 +210,10 @@ if (doc_matters.opt_action.sqlite_discrete) {
#+name: output_options
#+BEGIN_SRC d
-if (doc_matters.opt_action.sqlite_update) {
- if ((doc_matters.opt_action.verbose)) { writeln("sqlite processing... "); }
+if (doc_matters.opt.action.sqlite_update) {
+ if ((doc_matters.opt.action.verbose)) {
+ writeln("sqlite processing... ");
+ }
SQLiteBuildTablesAndPopulate!()(doc_abstraction, doc_matters);
}
#+END_SRC
@@ -189,11 +224,15 @@ if (doc_matters.opt_action.sqlite_update) {
#+name: output_options_op
#+BEGIN_SRC d
if ((opt_action.sqlite_create)) {
- if ((opt_action.verbose)) { writeln("sqlite create table... "); }
+ if ((opt_action.verbose)) {
+ writeln("sqlite create table... ");
+ }
SQLiteTablesCreate!()();
}
if ((opt_action.sqlite_drop)) {
- if ((opt_action.verbose)) { writeln("sqlite drop table... "); }
+ if ((opt_action.verbose)) {
+ writeln("sqlite drop table... ");
+ }
SQLiteTablesDrop!()();
}
#+END_SRC
@@ -202,7 +241,7 @@ if ((opt_action.sqlite_drop)) {
#+name: output_options
#+BEGIN_SRC d
-if (doc_matters.opt_action.postgresql) {
+if (doc_matters.opt.action.postgresql) {
/+ mixin outputPostgreSQL; +/
writeln("pgsql processing");
}