aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/out_sqlite.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/out_sqlite.org')
-rw-r--r--org/out_sqlite.org24
1 files changed, 12 insertions, 12 deletions
diff --git a/org/out_sqlite.org b/org/out_sqlite.org
index bebad0e..0f61a03 100644
--- a/org/out_sqlite.org
+++ b/org/out_sqlite.org
@@ -23,8 +23,8 @@
*** hub
**** collection
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/sqlite.d"
-module doc_reform.output.sqlite;
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/sqlite.d"
+module doc_reform.io_out.sqlite;
<<output_imports>>
import d2sqlite3;
import std.typecons : Nullable;
@@ -60,7 +60,7 @@ template SQLiteHubBuildTablesAndPopulate() {
**** discrete
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/sqlite.d"
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/sqlite.d"
template SQLiteHubDiscreteBuildTablesAndPopulate() {
void SQLiteHubDiscreteBuildTablesAndPopulate(D,M)(
const D doc_abstraction,
@@ -89,7 +89,7 @@ template SQLiteHubDiscreteBuildTablesAndPopulate() {
*** db run
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/sqlite.d"
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/sqlite.d"
template SQLiteDbRun() {
void SQLiteDbRun(Db,St,O)(
Db db,
@@ -130,7 +130,7 @@ template SQLiteDbRun() {
*** munge
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/sqlite.d"
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/sqlite.d"
template SQLinsertDelimiter() {
auto SQLinsertDelimiter(string _txt) {
_txt = _txt
@@ -158,7 +158,7 @@ template SQLiteFormatAndLoadObject() {
*** sqlite instructions
**** create
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/sqlite.d"
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/sqlite.d"
template SQLiteTablesReCreate() {
string SQLiteTablesReCreate()() {
string _sql_instruct;
@@ -177,7 +177,7 @@ template SQLiteTablesReCreate() {
**** delete
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/sqlite.d"
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/sqlite.d"
template SQLiteDeleteDocument() {
string SQLiteDeleteDocument(M)(
M doc_matters,
@@ -190,7 +190,7 @@ template SQLiteDeleteDocument() {
**** insert
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/sqlite.d"
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/sqlite.d"
template SQLiteInsertMetadata() {
string SQLiteInsertMetadata(M)(
M doc_matters,
@@ -204,7 +204,7 @@ template SQLiteInsertMetadata() {
**** insert doc objects loop
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/sqlite.d"
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/sqlite.d"
template SQLiteInsertDocObjectsLoop() {
string SQLiteInsertDocObjectsLoop(D,M)(
const D doc_abstraction,
@@ -223,7 +223,7 @@ template SQLiteInsertDocObjectsLoop() {
**** tables create
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/sqlite.d"
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/sqlite.d"
template SQLiteTablesCreate() {
void SQLiteTablesCreate(E,O)(E env, O opt_action) {
import d2sqlite3;
@@ -257,7 +257,7 @@ template SQLiteTablesCreate() {
**** tables drop
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/sqlite.d"
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/sqlite.d"
template SQLiteDbDrop() {
void SQLiteDbDrop(O)(O opt_action) {
writeln("db drop");
@@ -326,7 +326,7 @@ template SQLiteDbDrop() {
#+name: output_imports
#+BEGIN_SRC d
-import doc_reform.output;
+import doc_reform.io_out;
import
std.file,
std.uri,