From f3806668388a3d955261d9782c2cb5659b0f15e3 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Wed, 9 Aug 2017 06:09:18 -0400 Subject: sqlite, introduced, far to go --- org/default_paths.org | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'org/default_paths.org') diff --git a/org/default_paths.org b/org/default_paths.org index ddf9bfe..7dfef88 100644 --- a/org/default_paths.org +++ b/org/default_paths.org @@ -100,6 +100,7 @@ import sdp.meta.rgx; <> <> <> +<> #+END_SRC ** _sisupod_ (output bundled source) :sisupod: @@ -442,3 +443,35 @@ template SiSUpathsEPUB() { } } #+END_SRC + +** _sqlite_ :sqlite: + +#+name: template_paths_sqlite +#+BEGIN_SRC d +template SiSUpathsSQLite() { + mixin SiSUrgxInit; + static auto rgx = Rgx(); + auto SiSUpathsSQLite(Ps,Lng)( + Ps src_pth_info, + Lng lng, + ) { + auto out_pth = SiSUoutPaths!()(src_pth_info, lng); + string base_dir = "sqlite"; + struct _PathsStruct { + string base_filename(string fn_src) { + return fn_src.baseName.stripExtension; + } + string base() { + return (out_pth.output_base).chainPath(base_dir).array; + } + string seg(string fn_src) { + return base.chainPath(base_filename(fn_src)).array; + } + string sqlite_file(string fn_src) { + return base.chainPath(base_filename(fn_src) ~ ".sqlite").array; + } + } + return _PathsStruct(); + } +} +#+END_SRC -- cgit v1.2.3