From a7321dc8c96ff0006eb79a7181db4ab416e916f3 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Wed, 3 Oct 2018 11:16:23 -0400 Subject: naming DocReform from SiSU --- src/doc_reform/source/paths_source.d | 18 +++++++++--------- src/doc_reform/source/read_source_files.d | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) (limited to 'src/doc_reform/source') diff --git a/src/doc_reform/source/paths_source.d b/src/doc_reform/source/paths_source.d index dc2928f..1131b20 100644 --- a/src/doc_reform/source/paths_source.d +++ b/src/doc_reform/source/paths_source.d @@ -12,7 +12,7 @@ import std.array, std.conv : to; import doc_reform.meta.rgx; template PodManifest() { - mixin SiSUrgxInit; + mixin DocReformRgxInit; static auto rgx = Rgx(); auto PodManifest(P)( P _pth @@ -59,7 +59,7 @@ template PodManifest() { } } template PathMatters() { - mixin SiSUrgxInit; + mixin DocReformRgxInit; static auto rgx = Rgx(); auto PathMatters(O,E)( O _opt_actions, @@ -383,7 +383,7 @@ template PathMatters() { } } template ConfigFilePaths() { - mixin SiSUrgxInit; + mixin DocReformRgxInit; static auto rgx = Rgx(); auto ConfigFilePaths(M,E)( M _manifest, @@ -491,10 +491,10 @@ template ConfigFilePaths() { return ConfFilePaths(); } } -template SiSUpathsSRC() { - mixin SiSUrgxInit; +template DocReformPathsSRC() { + mixin DocReformRgxInit; static auto rgx = Rgx(); - auto SiSUpathsSRC(D,Fn)( + auto DocReformPathsSRC(D,Fn)( D _pwd, Fn _fn_src_and_path, ) { @@ -542,11 +542,11 @@ template SiSUpathsSRC() { } -template SiSUpathsSisupods() { - mixin SiSUrgxInit; +template DocReformPathsSisupods() { + mixin DocReformRgxInit; static auto rgx = Rgx(); string _suffix = ".zip"; - auto SiSUpathsSisupods(Dm)(Dm doc_matters) { + auto DocReformPathsSisupods(Dm)(Dm doc_matters) { string _base_dir_pod = (doc_matters.output_path.length > 0) ? doc_matters.output_path ~ "/sisupod" : "/sisupod"; diff --git a/src/doc_reform/source/read_source_files.d b/src/doc_reform/source/read_source_files.d index 294b081..374c113 100644 --- a/src/doc_reform/source/read_source_files.d +++ b/src/doc_reform/source/read_source_files.d @@ -4,7 +4,7 @@ - if master file scan for addional files to import/insert +/ module doc_reform.source.read_source_files; -static template SiSUrawMarkupContent() { +static template DocReformRawMarkupContent() { import doc_reform.meta.rgx; import @@ -12,7 +12,7 @@ static template SiSUrawMarkupContent() { doc_reform.source.paths_source, std.file, std.path; - mixin SiSUrgxInit; + mixin DocReformRgxInit; static auto rgx = Rgx(); string[] _images=[]; auto _extract_images(S)(S content_block) { @@ -24,7 +24,7 @@ static template SiSUrawMarkupContent() { return images_; } auto rawsrc = RawMarkupContent(); - auto SiSUrawMarkupContent(O,Fn)(O _opt_action, Fn fn_src) { + auto DocReformRawMarkupContent(O,Fn)(O _opt_action, Fn fn_src) { auto _0_header_1_body_content_2_insert_filelist_tuple = rawsrc.sourceContentSplitIntoHeaderAndBody(_opt_action, rawsrc.sourceContent(fn_src), fn_src); return _0_header_1_body_content_2_insert_filelist_tuple; @@ -157,7 +157,7 @@ static template SiSUrawMarkupContent() { char[][] markup_sourcefile_insert_content, string fn_src ) { - mixin SiSUrgxInitFlags; + mixin DocReformRgxInitFlags; char[][] contents_insert; auto type1 = flags_type_init; auto fn_pth_full = fn_src.match(rgx.src_pth_sst_or_ssm); @@ -255,7 +255,7 @@ static template SiSUrawMarkupContent() { string fn_src ) { import std.algorithm; - mixin SiSUrgxInitFlags; + mixin DocReformRgxInitFlags; char[][] contents; auto type = flags_type_init; auto fn_pth_full = fn_src.match(rgx.src_pth_sst_or_ssm); -- cgit v1.2.3