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 /src/doc_reform/output/paths_output.d | |
parent | multilingual pods, zipped source (diff) |
cosmetic
Diffstat (limited to 'src/doc_reform/output/paths_output.d')
-rw-r--r-- | src/doc_reform/output/paths_output.d | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/doc_reform/output/paths_output.d b/src/doc_reform/output/paths_output.d index 048f9e9..26b3509 100644 --- a/src/doc_reform/output/paths_output.d +++ b/src/doc_reform/output/paths_output.d @@ -139,7 +139,7 @@ template DocReformPathsHTML() { mixin DocReformRgxInit; static auto rgx = Rgx(); auto DocReformPathsHTML()( - string root_pth, + string output_path_root, string lng, ) { auto doc_tree = DocReformDocRootTreeHTML!()(lng); @@ -147,34 +147,34 @@ template DocReformPathsHTML() { string suffix = ".html"; struct _PathsStruct { string doc_root() { - return ((root_pth.chainPath(doc_tree.doc_root)).asNormalizedPath).array; + return ((output_path_root.chainPath(doc_tree.doc_root)).asNormalizedPath).array; } string harvest(string fn_harvest) { return doc_root ~ "/" ~ fn_harvest; } string base() { - return ((root_pth.chainPath(doc_tree.base)).asNormalizedPath).array; + return ((output_path_root.chainPath(doc_tree.base)).asNormalizedPath).array; } string image() { - return ((root_pth.chainPath(doc_tree.image)).asNormalizedPath).array; + return ((output_path_root.chainPath(doc_tree.image)).asNormalizedPath).array; } string css() { - return ((root_pth.chainPath(doc_tree.css)).asNormalizedPath).array; + return ((output_path_root.chainPath(doc_tree.css)).asNormalizedPath).array; } string fn_seg_css() { - return ((root_pth.chainPath(doc_tree.fn_seg_css)).asNormalizedPath).array; + return ((output_path_root.chainPath(doc_tree.fn_seg_css)).asNormalizedPath).array; } string fn_scroll_css() { - return ((root_pth.chainPath(doc_tree.fn_scroll_css)).asNormalizedPath).array; + return ((output_path_root.chainPath(doc_tree.fn_scroll_css)).asNormalizedPath).array; } string seg(string fn_src) { - return ((root_pth.chainPath(doc_tree.seg(fn_src))).asNormalizedPath).array; + return ((output_path_root.chainPath(doc_tree.seg(fn_src))).asNormalizedPath).array; } string fn_scroll(string fn_src) { - return ((root_pth.chainPath(doc_tree.fn_scroll(fn_src))).asNormalizedPath).array; + return ((output_path_root.chainPath(doc_tree.fn_scroll(fn_src))).asNormalizedPath).array; } string fn_seg(string fn_src, string seg_filename) { - return ((root_pth.chainPath(doc_tree.fn_seg(fn_src, seg_filename))).asNormalizedPath).array; + return ((output_path_root.chainPath(doc_tree.fn_seg(fn_src, seg_filename))).asNormalizedPath).array; } string tail_seg(string fn_src) { return doc_tree.tail_seg(fn_src); |