aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/default_paths.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/default_paths.org')
-rw-r--r--org/default_paths.org62
1 files changed, 31 insertions, 31 deletions
diff --git a/org/default_paths.org b/org/default_paths.org
index 9859758..932b034 100644
--- a/org/default_paths.org
+++ b/org/default_paths.org
@@ -42,7 +42,7 @@ import doc_reform.meta.rgx;
#+name: template_paths_src
#+BEGIN_SRC d
template PodManifest() {
- mixin SiSUrgxInit;
+ mixin DocReformRgxInit;
static auto rgx = Rgx();
auto PodManifest(P)(
P _pth
@@ -111,7 +111,7 @@ sisupod
#+name: template_paths_src
#+BEGIN_SRC d
template PathMatters() {
- mixin SiSUrgxInit;
+ mixin DocReformRgxInit;
static auto rgx = Rgx();
auto PathMatters(O,E)(
O _opt_actions,
@@ -441,7 +441,7 @@ template PathMatters() {
#+name: template_paths_src
#+BEGIN_SRC d
template ConfigFilePaths() {
- mixin SiSUrgxInit;
+ mixin DocReformRgxInit;
static auto rgx = Rgx();
auto ConfigFilePaths(M,E)(
M _manifest,
@@ -601,10 +601,10 @@ filelist for processing [things to ponder]
#+name: template_paths_src
#+BEGIN_SRC d
-template SiSUpathsSRC() {
- mixin SiSUrgxInit;
+template DocReformPathsSRC() {
+ mixin DocReformRgxInit;
static auto rgx = Rgx();
- auto SiSUpathsSRC(D,Fn)(
+ auto DocReformPathsSRC(D,Fn)(
D _pwd,
Fn _fn_src_and_path,
) {
@@ -656,11 +656,11 @@ template SiSUpathsSRC() {
#+name: template_paths_sisupods
#+BEGIN_SRC d
-template SiSUpathsSisupods() {
- mixin SiSUrgxInit;
+template DocReformPathsSisupods() {
+ mixin DocReformRgxInit;
static auto rgx = Rgx();
string _suffix = ".zip";
- auto SiSUpathsSisupods(Dm)(Dm doc_matters) {
+ auto DocReformPathsSisupods(Dm)(Dm doc_matters) {
string _base_dir_pod = (doc_matters.output_path.length > 0)
? doc_matters.output_path ~ "/sisupod"
: "/sisupod";
@@ -932,8 +932,8 @@ import doc_reform.meta.rgx;
#+name: template_paths_out
#+BEGIN_SRC d
-template SiSUoutPaths() {
- auto SiSUoutPaths(Po,Lng)(
+template DocReformOutPaths() {
+ auto DocReformOutPaths(Po,Lng)(
Po output_pth_root,
Lng lng,
) {
@@ -950,8 +950,8 @@ template SiSUoutPaths() {
return _PathsStruct();
}
}
-template SiSUoutPathSQLite() {
- auto SiSUoutPathSQLite(Po)(
+template DocReformOutPathSQLite() {
+ auto DocReformOutPathSQLite(Po)(
Po output_pth_root,
) {
struct _PathsStruct {
@@ -973,9 +973,9 @@ template SiSUoutPathSQLite() {
#+name: template_paths_out
#+BEGIN_SRC d
-template SiSUoutPathsFnPd() {
+template DocReformOutPathsFnPd() {
/+ TODO stuff to work out here +/
- auto SiSUoutPathsFnPd(Fn,Pn)(
+ auto DocReformOutPathsFnPd(Fn,Pn)(
Fn fn_src_pth,
Pn pod_name
) {
@@ -1016,14 +1016,14 @@ template SiSUoutPathsFnPd() {
#+name: template_paths_html
#+BEGIN_SRC d
-template SiSUpathsHTML() {
- mixin SiSUrgxInit;
+template DocReformPathsHTML() {
+ mixin DocReformRgxInit;
static auto rgx = Rgx();
- auto SiSUpathsHTML(Po,Lng)(
+ auto DocReformPathsHTML(Po,Lng)(
Po output_pth_root,
Lng lng,
) {
- auto out_pth = SiSUoutPaths!()(output_pth_root, lng);
+ auto out_pth = DocReformOutPaths!()(output_pth_root, lng);
string base_dir = "html";
string suffix = ".html";
struct _PathsStruct {
@@ -1064,14 +1064,14 @@ template SiSUpathsHTML() {
#+name: template_paths_epub
#+BEGIN_SRC d
-template SiSUpathsEPUB() {
- mixin SiSUrgxInit;
+template DocReformPathsEPUB() {
+ mixin DocReformRgxInit;
static auto rgx = Rgx();
- auto SiSUpathsEPUB(Po,Lng)(
+ auto DocReformPathsEPUB(Po,Lng)(
Po output_pth_root,
Lng lng,
) {
- auto out_pth = SiSUoutPaths!()( output_pth_root, lng);
+ auto out_pth = DocReformOutPaths!()( output_pth_root, lng);
string base_dir = "epub";
struct _PathsStruct {
string base() {
@@ -1171,10 +1171,10 @@ template SiSUpathsEPUB() {
#+name: template_paths_sqlite
#+BEGIN_SRC d
-template SiSUpathsSQLiteDiscrete() {
- mixin SiSUrgxInit;
+template DocReformPathsSQLiteDiscrete() {
+ mixin DocReformRgxInit;
static auto rgx = Rgx();
- auto SiSUpathsSQLiteDiscrete(Po,Lng)(
+ auto DocReformPathsSQLiteDiscrete(Po,Lng)(
Po output_pth_root,
Lng lng,
) {
@@ -1183,7 +1183,7 @@ template SiSUpathsSQLiteDiscrete() {
return fn_src.baseName.stripExtension;
}
string base() {
- auto out_pth = SiSUoutPaths!()(output_pth_root, lng);
+ auto out_pth = DocReformOutPaths!()(output_pth_root, lng);
string base_dir = "sqlite";
return asNormalizedPath((out_pth.output_base).chainPath(base_dir)).array;
}
@@ -1203,10 +1203,10 @@ template SiSUpathsSQLiteDiscrete() {
#+name: template_paths_sqlite
#+BEGIN_SRC d
-template SiSUpathsSQLite() {
- mixin SiSUrgxInit;
+template DocReformPathsSQLite() {
+ mixin DocReformRgxInit;
static auto rgx = Rgx();
- auto SiSUpathsSQLite(DbN, Po)(
+ auto DocReformPathsSQLite(DbN, Po)(
DbN db_name,
Po output_pth_root,
) {
@@ -1215,7 +1215,7 @@ template SiSUpathsSQLite() {
return fn_src.baseName.stripExtension;
}
string base() {
- auto out_pth = SiSUoutPathSQLite!()(output_pth_root); // decide whether to have separate files for each language
+ auto out_pth = DocReformOutPathSQLite!()(output_pth_root); // decide whether to have separate files for each language
string base_dir = "sqlite";
return asNormalizedPath((out_pth.output_root).chainPath(base_dir)).array;
}