aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/paths_source.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-05-09 13:01:06 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commit60d6073bcfc4fa91253428094813de0dac41a2b4 (patch)
treecef8e223469724d9e42dea81d6ded5ffc75a9be2 /src/sdp/paths_source.d
parentmodules, collective imports (diff)
0.16.0 files/modules re-arrangeddoc-reform_v0.0.16
Diffstat (limited to 'src/sdp/paths_source.d')
-rw-r--r--src/sdp/paths_source.d60
1 files changed, 0 insertions, 60 deletions
diff --git a/src/sdp/paths_source.d b/src/sdp/paths_source.d
deleted file mode 100644
index b5a60e8..0000000
--- a/src/sdp/paths_source.d
+++ /dev/null
@@ -1,60 +0,0 @@
-/++
- read configuration files<BR>
- - read config files<BR>
- ao_config_files.d
-+/
-module sdp.paths_source;
-import std.array,
- std.path,
- std.regex,
- std.stdio;
-import sdp.ao_rgx;
-template SiSUpathsSRC() {
- mixin SiSUrgxInit;
- auto rgx = Rgx();
- auto SiSUpathsSRC(D,Fn)(
- D _pwd,
- Fn _fn_src,
- ) {
- struct SisuSrcPaths {
- auto pwd() {
- return _pwd;
- }
- auto language() {
- // use command line info as well?
- string _k;
- if (auto m = _fn_src.match(rgx.language_code_and_filename)) {
- _k = m.captures[1];
- } else {
- _k = "en";
- }
- return _k;
- }
- auto doc_root() {
- return "sisudoc";
- }
- auto text_root() {
- return doc_root.chainPath("text").array;
- }
- auto media_root() {
- return doc_root.chainPath("docmedia").array;
- }
- auto conf_root() {
- return doc_root.chainPath("conf").array;
- }
- auto image_root() {
- return media_root.chainPath("image").array;
- }
- auto doc_src_fn_with_path_for_text_root_and_lng() {
- return text_root.chainPath(language).array;
- }
- auto doc_src_with_relative_path() {
- return pwd.chainPath(_fn_src).array;
- }
- auto doc_src_fn() {
- return _fn_src.baseName.array;
- }
- }
- return SisuSrcPaths();
- }
-}