diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-04-20 20:50:11 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-04-20 20:50:28 -0400 | 
| commit | cd6c5db8ff3660b54a7f1295940770036cea54f4 (patch) | |
| tree | b51ace43723f82559f70e2152631b084a7f72606 /src/doc_reform | |
| parent | spine_build_scaffold: nix related housekeeping (diff) | |
spine options, pod uses source file structure
Diffstat (limited to 'src/doc_reform')
| -rw-r--r-- | src/doc_reform/io_out/hub.d | 4 | ||||
| -rw-r--r-- | src/doc_reform/io_out/source_pod.d | 14 | ||||
| -rwxr-xr-x | src/doc_reform/spine.d | 2 | 
3 files changed, 8 insertions, 12 deletions
| diff --git a/src/doc_reform/io_out/hub.d b/src/doc_reform/io_out/hub.d index 5ece133..5b2d74b 100644 --- a/src/doc_reform/io_out/hub.d +++ b/src/doc_reform/io_out/hub.d @@ -71,9 +71,7 @@ template outputHub() {      void Scheduled(D,I)(int sched, D doc_abstraction, I doc_matters) {        auto msg = Msg!()(doc_matters);        if (sched == outTask.source_or_pod) { -        if (doc_matters.opt.action.source) { -          msg.v("spine (doc reform) source processing... "); -        } +        msg.v("spine (doc reform) source processing... ");          if (doc_matters.opt.action.pod) {            msg.v("spine (doc reform) source pod processing... ");          } diff --git a/src/doc_reform/io_out/source_pod.d b/src/doc_reform/io_out/source_pod.d index c8a8e16..363051b 100644 --- a/src/doc_reform/io_out/source_pod.d +++ b/src/doc_reform/io_out/source_pod.d @@ -104,7 +104,7 @@ template spinePod() {          // used both by pod zipped (& pod filesystem (unzipped) which makes its own recursive dirs)          pths_pod.pod_dir_().mkdirRecurse;        } -      if (doc_matters.opt.action.source) { +      if (doc_matters.opt.action.source_or_pod) {          if (!(doc_matters.opt.action.quiet)) {            writeln(" ", pths_pod.fn_pod_filelist(doc_matters.src.filename).filesystem_open_zpod);          } @@ -154,7 +154,7 @@ template spinePod() {              debug(io) {                writeln("(io debug) src out found: ", fn_src_in);              } -            if (doc_matters.opt.action.source) { +            if (doc_matters.opt.action.source_or_pod) {                fn_src_in.copy(fn_src_out_filesystem);              }              if (doc_matters.opt.action.pod) { @@ -181,7 +181,7 @@ template spinePod() {            debug(io) {              writeln("(io debug) src out found: ", fn_src_in);            } -          if (doc_matters.opt.action.source) { +          if (doc_matters.opt.action.source_or_pod) {              fn_src_in.copy(fn_src_out_filesystem);            }            if (doc_matters.opt.action.pod) { @@ -230,7 +230,7 @@ template spinePod() {                //   writeln("language:      ", _l);                // }              } -            if (doc_matters.opt.action.source) { +            if (doc_matters.opt.action.source_or_pod) {                pod_filelist_yaml_string.writeln(_pm);              }              if (doc_matters.opt.action.pod) { @@ -255,7 +255,7 @@ template spinePod() {            filelist_src_out_pod_arr ~= fn_src_out_pod_zip_base;            filelist_src_zpod_arr ~= fn_src_out_inside_pod;            string _pod_to_markup_file = doc_matters.src.pod_name ~ "/" ~ "media/text/" ~ doc_matters.src.language ~ "/" ~ doc_matters.src.filename; -          if (doc_matters.opt.action.source) { +          if (doc_matters.opt.action.source_or_pod) {              fn_src_in.copy(fn_src_out_filesystem);            }            if (doc_matters.opt.action.pod) { @@ -308,7 +308,7 @@ template spinePod() {                    string _pth_mkup_src_in = _path_to_pod ~ _podname ~ "/" ~ _root_to_lang ~ _lang ~ "/" ~ _filename;                    string _pth_mkup_src_out = "pod/" ~ _root_to_lang ~ _lang ~ "/" ~ _filename;                    if (exists(_pth_mkup_src_in)) { -                    if (doc_matters.opt.action.source) { +                    if (doc_matters.opt.action.source_or_pod) {                        auto fn_src_out_filesystem // you need to change language sources                          = pths_pod.fn_doc_insert(                            doc_matters.src.filename, // doc_matters.src.filename @@ -346,7 +346,7 @@ template spinePod() {                  debug(io) {                    writeln("(io debug) src out found: ", fn_src_in);                  } -                if (doc_matters.opt.action.source) { +                if (doc_matters.opt.action.source_or_pod) {                    fn_src_in.copy(fn_src_out_filesystem);                  }                  if (doc_matters.opt.action.pod) { diff --git a/src/doc_reform/spine.d b/src/doc_reform/spine.d index b62af46..d3deee7 100755 --- a/src/doc_reform/spine.d +++ b/src/doc_reform/spine.d @@ -535,11 +535,9 @@ string program_name = "spine";          || latex          || odt          || manifest -        || pod          || show_make          || show_metadata          || show_summary -        || source          || source_or_pod          || sqlite_discrete          || sqlite_update | 
