aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/default_paths.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2020-01-25 13:34:47 -0500
committerRalph Amissah <ralph@amissah.com>2020-02-26 09:59:18 -0500
commited71ef0ac032456c882bea44b04c02863cb90a46 (patch)
treeb6a27cbb13a31a2e3e436aa9d75d125aa586a2c5 /org/default_paths.org
parentaddress compilation issues with dmd (v2.090.0) (diff)
code ctRegex calls, tidying
Diffstat (limited to 'org/default_paths.org')
-rw-r--r--org/default_paths.org52
1 files changed, 26 insertions, 26 deletions
diff --git a/org/default_paths.org b/org/default_paths.org
index 1ab7a0a..acfdebf 100644
--- a/org/default_paths.org
+++ b/org/default_paths.org
@@ -45,8 +45,8 @@ import
#+NAME: template_paths_src
#+BEGIN_SRC d
template PodManifest() {
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
@safe auto PodManifest(O)(
O _opt_actions,
string _pth=""
@@ -120,9 +120,9 @@ pod
#+NAME: template_paths_src
#+BEGIN_SRC d
template PathMatters() {
- mixin spineRgxInit;
+ mixin spineRgxIn;
mixin InternalMarkup;
- static auto rgx = Rgx();
+ static auto rgx = RgxI();
static auto mkup = InlineMarkup();
@safe auto PathMatters(O,E)(
O _opt_actions,
@@ -468,8 +468,8 @@ template PathMatters() {
#+NAME: template_paths_src
#+BEGIN_SRC d
template ConfigFilePaths() {
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
@safe auto ConfigFilePaths(M,E)(
M _manifested,
E _env,
@@ -642,8 +642,8 @@ filelist for processing [things to ponder]
#+NAME: template_paths_src
#+BEGIN_SRC d
template spinePathsSRC() {
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
@safe auto spinePathsSRC(D,Fn)(
D _pwd,
Fn _fn_src_and_path,
@@ -697,8 +697,8 @@ template spinePathsSRC() {
#+NAME: template_paths_pods
#+BEGIN_SRC d
template spinePathsPods() {
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
string _suffix = ".zip";
auto spinePathsPods(M)(M doc_matters) {
string _base_dir_pod = (doc_matters.output_path.length > 0)
@@ -1078,8 +1078,8 @@ template spineOutPathsFnPd() {
#+NAME: template_paths_html
#+BEGIN_SRC d
template spineDocRootTreeHTML() {
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
auto spineDocRootTreeHTML()(string lng) {
auto lng_pth = spineOutPaths!()("", lng);
string base_dir = "html";
@@ -1144,8 +1144,8 @@ template spineDocRootTreeHTML() {
#+NAME: template_paths_html
#+BEGIN_SRC d
template spinePathsHTML() {
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
auto spinePathsHTML()(
string output_path_root,
string lng,
@@ -1211,8 +1211,8 @@ template spinePathsHTML() {
#+BEGIN_SRC d
template spineUrlsHTML() {
import std.format;
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
auto spineUrlsHTML()(
string url_doc_root,
string lng,
@@ -1318,8 +1318,8 @@ template spineUrlsHTML() {
#+NAME: template_paths_epub
#+BEGIN_SRC d
template spinePathsEPUB() {
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
auto spinePathsEPUB()(
string output_pth_root,
string lng,
@@ -1429,8 +1429,8 @@ template spinePathsEPUB() {
#+NAME: template_paths_odf
#+BEGIN_SRC d
template spinePathsODT() {
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
auto spinePathsODT(M)(
M doc_matters,
) {
@@ -1499,8 +1499,8 @@ template spinePathsODT() {
#+NAME: template_paths_latex
#+BEGIN_SRC d
template spinePathsLaTeX() {
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
auto spinePathsLaTeX(M)(
M doc_matters,
) {
@@ -1535,8 +1535,8 @@ template spinePathsLaTeX() {
#+NAME: template_paths_sqlite
#+BEGIN_SRC d
template spinePathsSQLiteDiscrete() {
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
auto spinePathsSQLiteDiscrete()(
string output_pth_root,
string lng,
@@ -1567,8 +1567,8 @@ template spinePathsSQLiteDiscrete() {
#+NAME: template_paths_sqlite
#+BEGIN_SRC d
template spinePathsSQLite() {
- mixin spineRgxInit;
- static auto rgx = Rgx();
+ mixin spineRgxIn;
+ static auto rgx = RgxI();
auto spinePathsSQLite(DbN, Po)(
DbN db_name,
Po output_pth_root,