aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/sdp.d
diff options
context:
space:
mode:
Diffstat (limited to 'src/sdp/sdp.d')
-rwxr-xr-xsrc/sdp/sdp.d17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/sdp/sdp.d b/src/sdp/sdp.d
index 375f91f..330fe7a 100755
--- a/src/sdp/sdp.d
+++ b/src/sdp/sdp.d
@@ -98,6 +98,10 @@ void main(string[] args) {
"backmatter" : true,
"skip-output" : false,
];
+ string[string] settings = [
+ "output-dir" : "",
+ "lang" : "all",
+ ];
auto helpInfo = getopt(args,
std.getopt.config.passThrough,
"assert", "--assert set optional assertions on", &opts["assertions"],
@@ -138,6 +142,8 @@ void main(string[] args) {
"section-blurb", "--section-blurb process document blurb (default)", &opts["section_blurb"],
"backmatter", "--section-backmatter process document backmatter (default)", &opts["backmatter"],
"skip-output", "--skip-output", &opts["skip-output"],
+ "output-dir", "--output-dir=[dir path]", &settings["output-dir"],
+ "lang", "--lang=[lang code e.g. =en or =en,es]", &settings["lang"],
);
if (helpInfo.helpWanted) {
defaultGetoptPrinter("Some information about the program.", helpInfo.options);
@@ -174,10 +180,15 @@ void main(string[] args) {
foreach (contents_location; contents_locations_arr) {
assert(contents_location.match(rgx.src_pth),
"not a recognised file: «" ~
- contents_location ~ "»"
+ contents_location ~ "»"
);
auto contents_location_pth_ = (contents_location).to!string;
- fns_src ~= (((tmp_dir_).chainPath(contents_location_pth_)).array).to!(char[]);
+ auto lang_rgx_ = regex(r"/(" ~ settings["lang"].split(",").join("|") ~ ")/");
+ if (settings["lang"] == "all"
+ || (contents_location_pth_).match(lang_rgx_)
+ ) {
+ fns_src ~= (((tmp_dir_).chainPath(contents_location_pth_)).array).to!(char[]);
+ }
}
} else if (arg.match(rgx.src_pth_zip)) {
// fns_src ~= arg; // gather input markup source file names for processing
@@ -218,7 +229,7 @@ void main(string[] args) {
"not a sisu markup filename: «" ~
fn_src ~ "»"
);
- auto t = SiSUabstraction!()(fn_src, opts, env);
+ auto t = SiSUabstraction!()(fn_src, opts, settings, env);
static assert(!isTypeTuple!(t));
static assert(t.length==2);
auto doc_abstraction = t[dAM.abstraction];