diff options
Diffstat (limited to 'org/default_paths.org')
-rw-r--r-- | org/default_paths.org | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/org/default_paths.org b/org/default_paths.org index 65a0c0f..597f162 100644 --- a/org/default_paths.org +++ b/org/default_paths.org @@ -13,7 +13,8 @@ #+TAGS: assert(a) class(c) debug(d) mixin(m) sdp(s) tangle(T) template(t) WEB(W) noexport(n) [[./sdp.org][sdp]] [[./][org/]] -* 0. source paths :paths:dir:source: +* 0. source paths :module:sdp:paths_source: +** 0. module template #+BEGIN_SRC d :tangle ../src/sdp/paths_source.d /++ @@ -21,11 +22,12 @@ - read config files<BR> ao_config_files.d +/ +module sdp.paths_source; import std.array, std.path, std.regex, std.stdio; -import ao_rgx; +import sdp.ao_rgx; template SiSUpathsSRC() { mixin SiSUrgxInit; auto rgx = Rgx(); @@ -77,18 +79,19 @@ template SiSUpathsSRC() { } #+END_SRC -* 1. output paths :paths:dir:output: -** 0. tangle, template output paths +* 1. output paths :module:sdp:paths_output: +** 0. module template #+BEGIN_SRC d :tangle ../src/sdp/paths_output.d /++ default settings +/ +module sdp.paths_output; import std.array, std.path, std.regex, std.stdio; -import ao_rgx; +import sdp.ao_rgx; <<template_paths_sisupod>> <<template_paths_sisupod_zipped_archive>> <<template_paths_sisupod_unzipped_filesystem>> |