diff options
author | Ralph Amissah <ralph@amissah.com> | 2017-08-09 06:09:18 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 |
commit | f3806668388a3d955261d9782c2cb5659b0f15e3 (patch) | |
tree | 3bd9614e6bf16c18a309e06d0fc81282b5fd6fde /org/output_hub.org | |
parent | css, separate files and reorganization (diff) |
sqlite, introduced, far to godoc-reform_v0.0.18
Diffstat (limited to 'org/output_hub.org')
-rw-r--r-- | org/output_hub.org | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/org/output_hub.org b/org/output_hub.org index 8f06194..037a169 100644 --- a/org/output_hub.org +++ b/org/output_hub.org @@ -49,6 +49,7 @@ template outputHubOp() { import sdp.output, sdp.output.epub3, sdp.output.html, + sdp.output.sqlite, sdp.output.xmls, sdp.output.source_sisupod, sdp.output.create_zip_file, @@ -166,7 +167,7 @@ if (doc_matters.opt_action["odt"]) { #+BEGIN_SRC d if (doc_matters.opt_action["sqlite"]) { if ((doc_matters.opt_action["verbose"])) { writeln("sqlite processing... "); } - // SQLtableLoad!()(doc_abstraction, doc_matters); + SQLiteBuildTablesAndPopulate!()(doc_abstraction, doc_matters); } #+END_SRC @@ -176,11 +177,11 @@ if (doc_matters.opt_action["sqlite"]) { #+BEGIN_SRC d if ((config["sqlite-create"])) { if ((config["verbose"])) { writeln("sqlite create table... "); } - // SQLtableCreate!()(); + SQLiteTablesCreate!()(); } if ((config["sqlite-drop"])) { if ((config["verbose"])) { writeln("sqlite drop table... "); } - // SQLtableDrop!()(); + SQLiteTablesDrop!()(); } #+END_SRC |