diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2019-10-22 19:32:45 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-11-18 14:59:47 -0500 |
commit | 02714184258c9be072857ddcc03bc114b2e843d1 (patch) | |
tree | 9818170940f4db2334c54059869819f07f57a10d /org/source_files_read.org | |
parent | multilingual pods, zipped source (diff) |
cosmetic
Diffstat (limited to 'org/source_files_read.org')
-rw-r--r-- | org/source_files_read.org | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/org/source_files_read.org b/org/source_files_read.org index ebc6a4d..8549cda 100644 --- a/org/source_files_read.org +++ b/org/source_files_read.org @@ -51,11 +51,11 @@ static template readConfigSite() { doc_reform.meta.rgx; <<imports_std>> mixin DocReformRgxInit; - final auto readConfigSite(M,E)(M _manifest, E _env) { + final auto readConfigSite(M,E)(M _manifested, E _env) { static auto rgx = Rgx(); string config_file_str; string conf_filename = "NONE"; - auto _conf_file_details = ConfigFilePaths!()(_manifest, _env); + auto _conf_file_details = ConfigFilePaths!()(_manifested, _env); string[] possible_config_path_locations = _conf_file_details.possible_config_path_locations.config_local_site; foreach(conf_fn; [_conf_file_details.config_filename_site]) { foreach(pth; possible_config_path_locations) { @@ -108,11 +108,11 @@ static template readConfigDoc() { doc_reform.meta.rgx; <<imports_std>> mixin DocReformRgxInit; - final auto readConfigDoc(M,E)(M _manifest, E _env) { + final auto readConfigDoc(M,E)(M _manifested, E _env) { static auto rgx = Rgx(); string config_file_str; string conf_filename = "NONE"; - auto _conf_file_details = ConfigFilePaths!()(_manifest, _env); + auto _conf_file_details = ConfigFilePaths!()(_manifested, _env); string[] possible_config_path_locations = _conf_file_details.possible_config_path_locations.dr_document_make; foreach(conf_fn; [_conf_file_details.config_filename_document]) { foreach(pth; possible_config_path_locations) { @@ -183,21 +183,21 @@ static template configYAML() { static template configReadSiteYAML() { <<imports_std>> import dyaml; - final YAMLDocument configReadSiteYAML(M,E)(M _manifest, E _env) { - string _configuration = configReadInSiteYAML!()(_manifest, _env); - auto _conf_file_details = ConfigFilePaths!()(_manifest, _env); - string _conf_yaml = _conf_file_details.config_filename_site; - YAMLDocument _yaml_conf = configYAML!()(_configuration, _conf_yaml); + final YAMLDocument configReadSiteYAML(M,E)(M _manifested, E _env) { + string _configuration = configReadInSiteYAML!()(_manifested, _env); + auto _conf_file_details = ConfigFilePaths!()(_manifested, _env); + string _conf_yaml_fn = _conf_file_details.config_filename_site; + YAMLDocument _yaml_conf = configYAML!()(_configuration, _conf_yaml_fn); return _yaml_conf; } } static template configReadDocYAML() { <<imports_std>> - final YAMLDocument configReadDocYAML(M,E)(M _manifest, E _env) { - string _configuration = configReadInDocYAML!()(_manifest, _env); - auto _conf_file_details = ConfigFilePaths!()(_manifest, _env); - string _conf_yaml = _conf_file_details.config_filename_document; - YAMLDocument _yaml_conf = configYAML!()(_configuration, _conf_yaml); + final YAMLDocument configReadDocYAML(M,E)(M _manifested, E _env) { + string _configuration = configReadInDocYAML!()(_manifested, _env); + auto _conf_file_details = ConfigFilePaths!()(_manifested, _env); + string _conf_yaml_fn = _conf_file_details.config_filename_document; + YAMLDocument _yaml_conf = configYAML!()(_configuration, _conf_yaml_fn); return _yaml_conf; } } |