aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/doc_reform.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2018-10-03 11:16:23 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2019-04-10 15:14:15 -0400
commita7321dc8c96ff0006eb79a7181db4ab416e916f3 (patch)
treea51168fcb61018db2429d9bbe024ab1624f0f764 /org/doc_reform.org
parent0.1.0 renamed doc-reform, doc_reform (& rad) (diff)
naming DocReform from SiSU
Diffstat (limited to 'org/doc_reform.org')
-rw-r--r--org/doc_reform.org32
1 files changed, 16 insertions, 16 deletions
diff --git a/org/doc_reform.org b/org/doc_reform.org
index eb10646..47a26c7 100644
--- a/org/doc_reform.org
+++ b/org/doc_reform.org
@@ -175,10 +175,10 @@ mixin CompileTimeInfo;
#+NAME: doc_reform_mixin
#+BEGIN_SRC d
-mixin SiSUrgxInit;
-mixin contentJSONtoSiSUstruct;
-mixin SiSUbiblio;
-mixin SiSUrgxInitFlags;
+mixin DocReformRgxInit;
+mixin contentJSONtoDocReformStruct;
+mixin DocReformBiblio;
+mixin DocReformRgxInitFlags;
mixin outputHub;
#+END_SRC
@@ -620,8 +620,8 @@ foreach(arg; args[1..$]) {
auto _config_document_struct = readConfigDoc!()(_manifest, _env); // document config file
auto _config_local_site_struct = readConfigSite!()(_manifest, _env); // local site config
ConfCompositePlus _make_and_meta_struct;
-_make_and_meta_struct = configParseTOMLreturnSiSUstruct!()(_make_and_meta_struct, _config_document_struct);
-_make_and_meta_struct = configParseTOMLreturnSiSUstruct!()(_make_and_meta_struct, _config_local_site_struct);
+_make_and_meta_struct = configParseTOMLreturnDocReformStruct!()(_make_and_meta_struct, _config_document_struct);
+_make_and_meta_struct = configParseTOMLreturnDocReformStruct!()(_make_and_meta_struct, _config_local_site_struct);
#+END_SRC
*** opt actions independent of processing files (no files no processing loop)
@@ -681,7 +681,7 @@ enforce(
debug(steps) {
writeln("--->\nstepX commence → (document abstraction)");
}
-auto t = SiSUabstraction!()(_env, _opt_action, manifest);
+auto t = DocReformAbstraction!()(_env, _opt_action, manifest);
static assert(!isTypeTuple!(t));
static assert(t.length==2);
auto doc_abstraction = t[dAM.abstraction];
@@ -698,7 +698,7 @@ debug(steps) {
#+BEGIN_SRC d
/+ ↓ debugs +/
if (doc_matters.opt.action.verbose) {
- SiSUabstractionSummary!()(doc_abstraction, doc_matters);
+ DocReformAbstractionSummary!()(doc_abstraction, doc_matters);
}
#+END_SRC
@@ -711,7 +711,7 @@ if (doc_matters.opt.action.verbose) {
if ((doc_matters.opt.action.debug_do)
|| (doc_matters.opt.action.verbose)
) {
- SiSUdebugs!()(doc_abstraction, doc_matters);
+ DocReformDebugs!()(doc_abstraction, doc_matters);
}
#+END_SRC
@@ -760,14 +760,14 @@ break; // terminate, stop
#+BEGIN_SRC d :tangle ../src/doc_reform/meta/metadoc.d
module doc_reform.meta.metadoc;
-template SiSUabstraction() {
+template DocReformAbstraction() {
<<imports_doc_reform>>
<<doc_reform_mixin>>
enum headBody { header, body_content, insert_file_list, image_list }
enum makeMeta { make, meta }
enum docAbst { doc_abstraction, section_keys, segnames, segnames_0_4, images }
static auto rgx = Rgx();
- auto SiSUabstraction(E,O,M)(
+ auto DocReformAbstraction(E,O,M)(
E _env,
O _opt_action,
M _manifest
@@ -819,7 +819,7 @@ debug(steps) {
);
}
auto _header_body_insertfilelist_imagelist
- = SiSUrawMarkupContent!()(_opt_action, _manifest.src.path_and_fn);
+ = DocReformRawMarkupContent!()(_opt_action, _manifest.src.path_and_fn);
static assert(!isTypeTuple!(_header_body_insertfilelist_imagelist));
static assert(_header_body_insertfilelist_imagelist.length==4);
debug(steps) {
@@ -881,7 +881,7 @@ debug(steps) {
debug(steps) {
writeln("step3 commence → (document abstraction (da); da keys; segnames; doc_matters)");
}
-auto da = SiSUdocAbstraction!()(
+auto da = DocReformDocAbstraction!()(
_header_body_insertfilelist_imagelist[headBody.body_content],
_make_and_meta_struct,
_opt_action,
@@ -941,7 +941,7 @@ struct DocumentMatters {
return _manifest.src;
}
auto src_path_info() {
- return SiSUpathsSRC!()(_manifest.env.pwd, _manifest.src.file_with_absolute_path); // would like (to have and use) relative path
+ return DocReformPathsSRC!()(_manifest.env.pwd, _manifest.src.file_with_absolute_path); // would like (to have and use) relative path
}
auto srcs() {
struct SRC_ {
@@ -995,8 +995,8 @@ debug(steps) {
#+BEGIN_SRC d :tangle ../src/doc_reform/meta/metadoc_summary.d
module doc_reform.meta.metadoc_summary;
-template SiSUabstractionSummary() {
- auto SiSUabstractionSummary(S,T)(
+template DocReformAbstractionSummary() {
+ auto DocReformAbstractionSummary(S,T)(
auto ref const S doc_abstraction,
auto ref T doc_matters,
) {