From 3b59675bb48254d9ce31edcda2f2b559bff00519 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Fri, 19 Jul 2019 11:56:24 -0400 Subject: 0.8.0 name change in code use dr (doc reform) instead of sisu --- org/source_files_read.org | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'org/source_files_read.org') diff --git a/org/source_files_read.org b/org/source_files_read.org index 110b1a2..e7eb02a 100644 --- a/org/source_files_read.org +++ b/org/source_files_read.org @@ -42,7 +42,7 @@ module doc_reform.source.read_config_files; <> #+END_SRC -*** 0. read config files (config_local_site & sisu_document_make) toml +*** 0. read config files (config_local_site & dr_document_make) toml **** 1. site configuration #+name: meta_config_file_hub @@ -102,7 +102,7 @@ static template readConfigDoc() { string config_file_str; string conf_filename = "NONE"; auto _conf_file_details = ConfigFilePaths!()(_manifest, _env); - string[] possible_config_path_locations = _conf_file_details.possible_config_path_locations.sisu_document_make; + string[] possible_config_path_locations = _conf_file_details.possible_config_path_locations.dr_document_make; foreach(conf_fn; [_conf_file_details.config_filename_document_toml]) { foreach(pth; possible_config_path_locations) { auto conf_file = asNormalizedPath(chainPath(pth.to!string, conf_fn)).array; @@ -142,7 +142,7 @@ static template readConfigDoc() { #+END_SRC ** A. TOML :toml: -*** 1. TOML read config files (config_local_site & sisu_document_make) :file:config: +*** 1. TOML read config files (config_local_site & dr_document_make) :file:config: **** TOML config_local_site #+name: meta_config_file_in @@ -180,7 +180,7 @@ static template configReadInSiteTOML() { } #+END_SRC -**** TOML sisu_document_make +**** TOML dr_document_make #+name: meta_config_file_in #+BEGIN_SRC d @@ -189,7 +189,7 @@ static template configReadInDocTOML() { final string configReadInDocTOML(M,E)(M manifest, E env) { auto conf_file_details = ConfigFilePaths!()(manifest, env); string conf_toml = conf_file_details.config_filename_document_toml; - string[] possible_config_path_locations = conf_file_details.possible_config_path_locations.sisu_document_make; + string[] possible_config_path_locations = conf_file_details.possible_config_path_locations.dr_document_make; string config_file_str; debug(io) { writeln("WARNING (io debug) in config filename: ", conf_toml); @@ -237,7 +237,7 @@ static template configTOML() { } #+END_SRC -*** 3. TOML config (config_local_site & sisu_document_make) :file:config:hub: +*** 3. TOML config (config_local_site & dr_document_make) :file:config:hub: #+name: meta_config_file_hub #+BEGIN_SRC d @@ -450,7 +450,7 @@ auto markupSourceReadIn(in string fn_src) { static auto rgx = Rgx(); enforce( fn_src.match(rgx.src_pth_sst_or_ssm), - "not a sisu markup filename: «" ~ + "not a dr markup filename: «" ~ fn_src ~ "»" ); auto source_txt_str = readInMarkupSource(fn_src); @@ -494,7 +494,7 @@ final char[][] getInsertMarkupSourceContentRawLineArray( ) { enforce( fn_src_insert.match(rgx_file), - "not a sisu markup filename: «" ~ + "not a dr markup filename: «" ~ fn_src_insert ~ "»" ); auto source_txt_str = readInMarkupSource(fn_src_insert); -- cgit v1.2.3